├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── Tests └── WebProfilerTest.php ├── WebProfilerServiceProvider.php ├── composer.json └── phpunit.xml.dist /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | phpunit.xml 4 | /Tests/cache 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/README.rst -------------------------------------------------------------------------------- /Tests/WebProfilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/Tests/WebProfilerTest.php -------------------------------------------------------------------------------- /WebProfilerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/WebProfilerServiceProvider.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexphp/Silex-WebProfiler/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------