opcache-gui/composer.json
Andrew Collington bb8e29dbc9
Added sorting to cached file list (#62)
* Added ext-json to composer.json as it's a required funciton.

* Added filtering option for files list

* Updated version numbers
2020-11-28 16:16:58 +00:00

37 lines
937 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": ">=7.1.0",
"ext-json": "*"
},
"autoload": {
"psr-4" : {
"Amnuts\\" : "src/"
}
},
"scripts": {
"build": "php build/build.php"
}
}