-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
37 lines (37 loc) · 1.11 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
{
"name": "smart-core/accelerator-cache-bundle",
"type": "symfony-bundle",
"description": "Provides a command line task to clear PHP Accelerators cache from the console",
"keywords": ["apc", "task", "opcache", "wincache"],
"homepage": "https://github.com/Smart-Core/AcceleratorCacheBundle",
"license": "MIT",
"authors": [
{
"name": "Thibault Duplessis",
"homepage": "https://github.com/ornicar"
},
{
"name": "Contributors",
"homepage": "https://github.com/Smart-Core/AcceleratorCacheBundle/contributors"
}
],
"require": {
"symfony/framework-bundle": ">=2.1",
"symfony/console": ">=2.1"
},
"require-dev": {
"composer/composer": "1.0.*@dev",
"phpunit/phpunit": "~6.3",
"matthiasnoback/symfony-dependency-injection-test": "~2.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"SmartCore\\Bundle\\AcceleratorCacheBundle\\": ""
}
}
}