-
-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathcomposer.json
38 lines (38 loc) · 1.02 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"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": "[email protected]",
"homepage": "https://blog.amnuts.com/",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/amnuts/opcache-gui/graphs/contributors"
}
],
"support": {
"email": "[email protected]",
"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",
"build-french": "php build/build.php --lang fr",
"build-spanish": "php build/build.php --lang es"
}
}