forked from Matthimatiker/OpcacheBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (38 loc) · 1.09 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
39
40
41
{
"name": "matthimatiker/opcache-bundle",
"description": "Displays the state of the PHP opcache in the Symfony profiler toolbar.",
"type": "symfony-bundle",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Matthias Molitor",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0.0",
"symfony/http-kernel": "^2.7.0 | ^3.0.0 | ^4.0",
"symfony/config": "^2.7.0 | ^3.0.0 | ^4.0",
"symfony/dependency-injection": "^2.7.0 | ^3.0.0 | ^4.0",
"twig/twig": "^2.0.0",
"symfony/web-profiler-bundle": "^2.7.0 | ^3.0.0 | ^4.0",
"symfony/templating": "^2.7.0 | ^3.0.0 | ^4.0",
"symfony/asset": "^2.7.0 | ^3.0.0 | ^4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"satooshi/php-coveralls": "^1.0.0"
},
"autoload": {
"psr-4": {
"Matthimatiker\\OpcacheBundle\\": "."
}
},
"config": {
"platform": {
"php": "7.0.0"
}
}
}