(no commit message) master origin/HEAD origin/master
authorTill Klampaeckel <till@php.net>
Thu, 9 Aug 2012 11:04:30 +0000 (04:04 -0700)
committerTill Klampaeckel <till@php.net>
Thu, 9 Aug 2012 11:04:30 +0000 (04:04 -0700)
composer.json [new file with mode: 0644]
test.php [new file with mode: 0644]

diff --git a/composer.json b/composer.json
new file mode 100644 (file)
index 0000000..a592327
--- /dev/null
@@ -0,0 +1,19 @@
+{
+    "name": "till/composer-zf-test",
+    "authors": [
+        {
+            "name": "till",
+            "email": "till@php.net"
+        }
+    ],
+       "repositories": [
+               {
+                       "type": "vcs",
+                       "url": "http://github.com/till/IniParser"
+               }
+       ],
+    "require": {
+               "till/iniparser":"dev-master"
+    },
+       "minimum-stability": "dev"
+}
\ No newline at end of file
diff --git a/test.php b/test.php
new file mode 100644 (file)
index 0000000..fd3b0e6
--- /dev/null
+++ b/test.php
@@ -0,0 +1,5 @@
+<?php
+require_once 'vendor/autoload.php';
+
+$config = new IniParser();
+var_dump($config);
\ No newline at end of file