├── .gitignore ├── .travis.yml ├── EXPERIMENTAL ├── LICENSE ├── README.md ├── config.m4 ├── config.w32 ├── env.c ├── env.h ├── env.php ├── package.xml ├── php5 └── php_env.c ├── php7 └── php_env.c ├── php_env.h └── tests ├── 001.phpt ├── 002.ini ├── 002.phpt ├── 003.ini └── 003.phpt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/.travis.yml -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/config.w32 -------------------------------------------------------------------------------- /env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/env.c -------------------------------------------------------------------------------- /env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/env.h -------------------------------------------------------------------------------- /env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/env.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/package.xml -------------------------------------------------------------------------------- /php5/php_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/php5/php_env.c -------------------------------------------------------------------------------- /php7/php_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/php7/php_env.c -------------------------------------------------------------------------------- /php_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/php_env.h -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tests/002.ini: -------------------------------------------------------------------------------- 1 | FOO=BAR 2 | -------------------------------------------------------------------------------- /tests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/tests/002.phpt -------------------------------------------------------------------------------- /tests/003.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/tests/003.ini -------------------------------------------------------------------------------- /tests/003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/env/HEAD/tests/003.phpt --------------------------------------------------------------------------------