├── .gitignore ├── .travis.yml ├── README.md ├── assets └── zf-snap-php-debug-bar.css ├── composer.json ├── config ├── aliases.config.php └── zfsnapphpdebugbar.config.php ├── docs └── img │ ├── application-config.png │ ├── config.png │ ├── database.png │ ├── demo.gif │ ├── exceptions.png │ ├── messages.png │ ├── request.png │ ├── route.png │ └── timeline.png ├── phpunit.xml.dist ├── src ├── Collector │ └── DoctrineCollectorFactory.php ├── Controller │ ├── Resources.php │ └── ResourcesFactory.php ├── Delegator │ └── DoctrineConfigurationDelegatorFactory.php ├── Exception │ └── ThrowableException.php ├── Functions.php ├── Listener │ ├── ExceptionListener.php │ ├── MeasureListener.php │ ├── RenderOnShutdownListener.php │ └── RouteListener.php ├── Log │ └── Writer │ │ ├── PhpDebugBar.php │ │ └── PhpDebugBarFactory.php ├── Module.php ├── Service │ └── PhpDebugBarFactory.php └── View │ └── Helper │ ├── DebugBar.php │ └── DebugBarFactory.php └── tests ├── Functional ├── DebugBarTest.php └── DummyController.php └── assets ├── application.config.php ├── global.config.php ├── local.config.php.dist └── views ├── layout.phtml └── view.phtml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/README.md -------------------------------------------------------------------------------- /assets/zf-snap-php-debug-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/assets/zf-snap-php-debug-bar.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/composer.json -------------------------------------------------------------------------------- /config/aliases.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/config/aliases.config.php -------------------------------------------------------------------------------- /config/zfsnapphpdebugbar.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/config/zfsnapphpdebugbar.config.php -------------------------------------------------------------------------------- /docs/img/application-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/application-config.png -------------------------------------------------------------------------------- /docs/img/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/config.png -------------------------------------------------------------------------------- /docs/img/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/database.png -------------------------------------------------------------------------------- /docs/img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/demo.gif -------------------------------------------------------------------------------- /docs/img/exceptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/exceptions.png -------------------------------------------------------------------------------- /docs/img/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/messages.png -------------------------------------------------------------------------------- /docs/img/request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/request.png -------------------------------------------------------------------------------- /docs/img/route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/route.png -------------------------------------------------------------------------------- /docs/img/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/docs/img/timeline.png -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Collector/DoctrineCollectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Collector/DoctrineCollectorFactory.php -------------------------------------------------------------------------------- /src/Controller/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Controller/Resources.php -------------------------------------------------------------------------------- /src/Controller/ResourcesFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Controller/ResourcesFactory.php -------------------------------------------------------------------------------- /src/Delegator/DoctrineConfigurationDelegatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Delegator/DoctrineConfigurationDelegatorFactory.php -------------------------------------------------------------------------------- /src/Exception/ThrowableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Exception/ThrowableException.php -------------------------------------------------------------------------------- /src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Functions.php -------------------------------------------------------------------------------- /src/Listener/ExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Listener/ExceptionListener.php -------------------------------------------------------------------------------- /src/Listener/MeasureListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Listener/MeasureListener.php -------------------------------------------------------------------------------- /src/Listener/RenderOnShutdownListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Listener/RenderOnShutdownListener.php -------------------------------------------------------------------------------- /src/Listener/RouteListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Listener/RouteListener.php -------------------------------------------------------------------------------- /src/Log/Writer/PhpDebugBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Log/Writer/PhpDebugBar.php -------------------------------------------------------------------------------- /src/Log/Writer/PhpDebugBarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Log/Writer/PhpDebugBarFactory.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Service/PhpDebugBarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/Service/PhpDebugBarFactory.php -------------------------------------------------------------------------------- /src/View/Helper/DebugBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/View/Helper/DebugBar.php -------------------------------------------------------------------------------- /src/View/Helper/DebugBarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/src/View/Helper/DebugBarFactory.php -------------------------------------------------------------------------------- /tests/Functional/DebugBarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/tests/Functional/DebugBarTest.php -------------------------------------------------------------------------------- /tests/Functional/DummyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/tests/Functional/DummyController.php -------------------------------------------------------------------------------- /tests/assets/application.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/tests/assets/application.config.php -------------------------------------------------------------------------------- /tests/assets/global.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/tests/assets/global.config.php -------------------------------------------------------------------------------- /tests/assets/local.config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/tests/assets/local.config.php.dist -------------------------------------------------------------------------------- /tests/assets/views/layout.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/ZfSnapPhpDebugBar/HEAD/tests/assets/views/layout.phtml -------------------------------------------------------------------------------- /tests/assets/views/view.phtml: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------