├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bench.png ├── composer.json ├── phpbench.json ├── phpunit.xml.dist ├── src ├── AhcEnvBench.php ├── SymfonyEnvBench.php └── VlucasEnvBench.php └── tests └── test.env /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/README.md -------------------------------------------------------------------------------- /bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/bench.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/composer.json -------------------------------------------------------------------------------- /phpbench.json: -------------------------------------------------------------------------------- 1 | { 2 | "bootstrap": "vendor/autoload.php" 3 | } 4 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AhcEnvBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/src/AhcEnvBench.php -------------------------------------------------------------------------------- /src/SymfonyEnvBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/src/SymfonyEnvBench.php -------------------------------------------------------------------------------- /src/VlucasEnvBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/src/VlucasEnvBench.php -------------------------------------------------------------------------------- /tests/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env-bench/HEAD/tests/test.env --------------------------------------------------------------------------------