├── .gitignore ├── .travis.yml ├── Config ├── Lite.php └── Lite │ ├── Exception.php │ └── Exception │ ├── InvalidArgument.php │ ├── Runtime.php │ └── UnexpectedValue.php ├── README.md ├── composer.json ├── docs └── examples ├── package.xml └── tests ├── Config_LiteTest.php └── test.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | pirum-package.xml 2 | pear 3 | test.php 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/.travis.yml -------------------------------------------------------------------------------- /Config/Lite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/Config/Lite.php -------------------------------------------------------------------------------- /Config/Lite/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/Config/Lite/Exception.php -------------------------------------------------------------------------------- /Config/Lite/Exception/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/Config/Lite/Exception/InvalidArgument.php -------------------------------------------------------------------------------- /Config/Lite/Exception/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/Config/Lite/Exception/Runtime.php -------------------------------------------------------------------------------- /Config/Lite/Exception/UnexpectedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/Config/Lite/Exception/UnexpectedValue.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/composer.json -------------------------------------------------------------------------------- /docs/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/docs/examples -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/package.xml -------------------------------------------------------------------------------- /tests/Config_LiteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/tests/Config_LiteTest.php -------------------------------------------------------------------------------- /tests/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Config_Lite/HEAD/tests/test.cfg --------------------------------------------------------------------------------