opcache-gui/composer.json
Jack W-H c9664f24db Allow for the Opcache GUI to be autoloaded via Composer (#23)
* Updated composer.json to allow for autoloading

* Updated class to add namespacing
2017-03-27 15:16:00 +01:00

34 lines
859 B
JSON

{
"name": "amnuts/opcache-gui",
"description": "A clean, effective and responsive interface for Zend OPcache, with real(ish)-time monitoring, filtering and the ability to invalidate files",
"keywords": ["opcache", "cache", "gui", "opcodes", "interface"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Andrew Collington",
"email": "andy@amnuts.com",
"homepage": "http://www.amnuts.com/",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/amnuts/opcache-gui/graphs/contributors"
}
],
"support": {
"email": "andy@amnuts.com",
"issues": "https://github.com/amnuts/opcache-gui/issues"
},
"require": {
"ext-Zend-OPcache": "*",
"php": ">=5.4"
},
"autoload": {
"psr-4" : {
"OpcacheGui\\" : "/"
}
}
}