-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.42 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
{
"name": "ecomdev/phpspec-magento-di-adapter",
"description": "An adapter for DI features of Magento\\Framework to write easier your examples with PHPSpec. Does not use ObjectManager, only emulates some of its features",
"type": "library",
"keywords": [
"phpspec", "magento"
],
"require": {
"php": "~5.6|~7.0",
"magento/framework": "~100.0",
"zendframework/zend-stdlib": "~2.4.6",
"zendframework/zend-code": "~2.4.6",
"mikey179/vfsStream": "^1.6"
},
"require-dev": {
"phpspec/phpspec": "~3.0",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "~2.0",
"satooshi/php-coveralls": "dev-master",
"henrikbjorn/phpspec-code-coverage": "*",
"phpspec/nyan-formatters": "*",
"ecomdev/phpspec-file-matcher": "*"
},
"license": "OSL-3.0",
"authors": [
{
"name": "Ivan Chepurnyi",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"EcomDev\\PHPSpec\\MagentoDiAdapter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\EcomDev\\PHPSpec\\MagentoDiAdapter\\": "spec/"
}
},
"config": {
"bin-dir": "bin/"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}