├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── module.config.php └── zenddevelopertools.local.php.dist ├── src ├── Collector │ ├── AbstractCollector.php │ ├── AutoHideInterface.php │ ├── CollectorInterface.php │ ├── ConfigCollector.php │ ├── DbCollector.php │ ├── EventCollectorInterface.php │ ├── ExceptionCollector.php │ ├── MailCollector.php │ ├── MemoryCollector.php │ ├── RequestCollector.php │ └── TimeCollector.php ├── Controller │ └── IndexController.php ├── EventLogging │ ├── EventContextInterface.php │ └── EventContextProvider.php ├── Exception │ ├── CollectorException.php │ ├── ExceptionInterface.php │ ├── InvalidOptionException.php │ ├── ParameterMissingException.php │ ├── ProfilerException.php │ └── SerializableException.php ├── Listener │ ├── EventLoggingListenerAggregate.php │ ├── FirePhpListener.php │ ├── FlushListener.php │ ├── ProfilerListener.php │ ├── StorageListener.php │ └── ToolbarListener.php ├── MatchInterface.php ├── Module.php ├── Options.php ├── Profiler.php ├── ProfilerEvent.php ├── Report.php ├── ReportInterface.php ├── Storage │ └── StorageInterface.php ├── Stub │ └── ClosureStub.php └── View │ └── Helper │ ├── DetailArray.php │ ├── Memory.php │ └── Time.php └── view └── zend-developer-tools ├── assets └── icons │ ├── glyphish-icons │ ├── LICENSE.txt │ └── small │ │ ├── 162-receipt.png │ │ ├── 18-envelope.png │ │ ├── 184-warning.png │ │ ├── 20-gear2.png │ │ ├── 33-cabinet.png │ │ └── 78-stopwatch.png │ └── wireframe-mono │ ├── LICENSE.txt │ └── small │ └── db.png └── toolbar ├── config.phtml ├── db.phtml ├── error.phtml ├── mail.phtml ├── memory.phtml ├── request.phtml ├── script.phtml ├── style.phtml ├── time.phtml ├── toolbar.css ├── toolbar.js ├── toolbar.phtml └── zendframework.phtml /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/composer.json -------------------------------------------------------------------------------- /config/module.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/config/module.config.php -------------------------------------------------------------------------------- /config/zenddevelopertools.local.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/config/zenddevelopertools.local.php.dist -------------------------------------------------------------------------------- /src/Collector/AbstractCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/AbstractCollector.php -------------------------------------------------------------------------------- /src/Collector/AutoHideInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/AutoHideInterface.php -------------------------------------------------------------------------------- /src/Collector/CollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/CollectorInterface.php -------------------------------------------------------------------------------- /src/Collector/ConfigCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/ConfigCollector.php -------------------------------------------------------------------------------- /src/Collector/DbCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/DbCollector.php -------------------------------------------------------------------------------- /src/Collector/EventCollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/EventCollectorInterface.php -------------------------------------------------------------------------------- /src/Collector/ExceptionCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/ExceptionCollector.php -------------------------------------------------------------------------------- /src/Collector/MailCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/MailCollector.php -------------------------------------------------------------------------------- /src/Collector/MemoryCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/MemoryCollector.php -------------------------------------------------------------------------------- /src/Collector/RequestCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/RequestCollector.php -------------------------------------------------------------------------------- /src/Collector/TimeCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Collector/TimeCollector.php -------------------------------------------------------------------------------- /src/Controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Controller/IndexController.php -------------------------------------------------------------------------------- /src/EventLogging/EventContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/EventLogging/EventContextInterface.php -------------------------------------------------------------------------------- /src/EventLogging/EventContextProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/EventLogging/EventContextProvider.php -------------------------------------------------------------------------------- /src/Exception/CollectorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Exception/CollectorException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Exception/InvalidOptionException.php -------------------------------------------------------------------------------- /src/Exception/ParameterMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Exception/ParameterMissingException.php -------------------------------------------------------------------------------- /src/Exception/ProfilerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Exception/ProfilerException.php -------------------------------------------------------------------------------- /src/Exception/SerializableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Exception/SerializableException.php -------------------------------------------------------------------------------- /src/Listener/EventLoggingListenerAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Listener/EventLoggingListenerAggregate.php -------------------------------------------------------------------------------- /src/Listener/FirePhpListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Listener/FirePhpListener.php -------------------------------------------------------------------------------- /src/Listener/FlushListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Listener/FlushListener.php -------------------------------------------------------------------------------- /src/Listener/ProfilerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Listener/ProfilerListener.php -------------------------------------------------------------------------------- /src/Listener/StorageListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Listener/StorageListener.php -------------------------------------------------------------------------------- /src/Listener/ToolbarListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Listener/ToolbarListener.php -------------------------------------------------------------------------------- /src/MatchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/MatchInterface.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Options.php -------------------------------------------------------------------------------- /src/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Profiler.php -------------------------------------------------------------------------------- /src/ProfilerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/ProfilerEvent.php -------------------------------------------------------------------------------- /src/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Report.php -------------------------------------------------------------------------------- /src/ReportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/ReportInterface.php -------------------------------------------------------------------------------- /src/Storage/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Storage/StorageInterface.php -------------------------------------------------------------------------------- /src/Stub/ClosureStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/Stub/ClosureStub.php -------------------------------------------------------------------------------- /src/View/Helper/DetailArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/View/Helper/DetailArray.php -------------------------------------------------------------------------------- /src/View/Helper/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/View/Helper/Memory.php -------------------------------------------------------------------------------- /src/View/Helper/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/src/View/Helper/Time.php -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/LICENSE.txt -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/small/162-receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/small/162-receipt.png -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/small/18-envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/small/18-envelope.png -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/small/184-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/small/184-warning.png -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/small/20-gear2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/small/20-gear2.png -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/small/33-cabinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/small/33-cabinet.png -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/glyphish-icons/small/78-stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/glyphish-icons/small/78-stopwatch.png -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/wireframe-mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/wireframe-mono/LICENSE.txt -------------------------------------------------------------------------------- /view/zend-developer-tools/assets/icons/wireframe-mono/small/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/assets/icons/wireframe-mono/small/db.png -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/config.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/config.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/db.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/db.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/error.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/error.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/mail.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/mail.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/memory.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/memory.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/request.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/request.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/script.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/script.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/style.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/style.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/time.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/time.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/toolbar.css -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/toolbar.js -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/toolbar.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/toolbar.phtml -------------------------------------------------------------------------------- /view/zend-developer-tools/toolbar/zendframework.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-developer-tools/HEAD/view/zend-developer-tools/toolbar/zendframework.phtml --------------------------------------------------------------------------------