1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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" } |
1 2 3 4 5 | <?php require_once 'vendor/autoload.php'; $config = new IniParser(); var_dump($config); |