forked from eMAGTechLabs/annotation-cache-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.11 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
42
43
44
45
46
{
"name": "emag/cache-bundle",
"description": "CacheBundle by eMAGTechLabs",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandru Bumbacea",
"email": "alexandru.bumbacea@emag.ro"
}
],
"require": {
"php": ">=7.0",
"ocramius/proxy-manager": "2.*",
"psr/log": "1.*",
"psr/cache": "1.0.*",
"doctrine/annotations": "1.3.*"
},
"suggest": {
"symfony/cache": "3.*"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"squizlabs/php_codesniffer": "2.*",
"phpmd/phpmd" : "@stable",
"phing/phing": "@stable",
"sebastian/phpcpd": "~2",
"symfony/cache": "3.*",
"satooshi/php-coveralls": "~1.0",
"symfony/monolog-bundle": "@stable",
"symfony/framework-bundle": "@stable"
},
"autoload": {
"psr-4": { "Emag\\CacheBundle\\": "src/" },
"psr-0": { "Emag\\CacheBundle\\Annotation\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Emag\\CacheBundle\\Tests\\Helpers\\": "tests/Helpers/",
"Emag\\CacheBundle\\Tests\\IgnoredHelpers\\": "tests/IgnoredHelpers/"
}
},
"config": {
"optimize-autoloader": true
}
}