-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ecomdev/magento-psr6-bridge",
"description": "A bridge between Magento framework and PSR-6 cache compatible libraries.",
"type": "magento2-module",
"require": {
"php": "~5.6|>=7.0",
"psr/cache": "^1.0",
"ecomdev/cache-key": "^1.1"
},
"require-dev": {
"phpspec/phpspec": "^2.4",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "^2.3",
"satooshi/php-coveralls": "dev-master",
"mikey179/vfsStream": "^1.6",
"henrikbjorn/phpspec-code-coverage": "^2.0",
"phpspec/nyan-formatters": "^1.0",
"ecomdev/phpspec-magento-di-adapter": "~0.1",
"magento/zendframework1": "*"
},
"version": "0.2.1",
"license": "OSL-3.0",
"authors": [
{
"name": "Ivan Chepurnyi",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"EcomDev\\MagentoPsr6Bridge\\": "src/"
},
"files": [
"src/registration.php"
]
},
"autoload-dev": {
"psr-4": {
"spec\\EcomDev\\MagentoPsr6Bridge\\": "spec/"
}
},
"config": {
"bin-dir": "bin/"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}