-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
68 lines (68 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "magetest/magento-phpspec-extension",
"description": "Magento PHPSpec extension",
"keywords": ["BDD", "SpecBDD", "TDD", "spec", "specification", "tests", "testing"],
"type": "library",
"license": "MIT",
"require": {
"php": "^7.0",
"phpspec/phpspec": "^4.0 <4.1.0",
"phpspec/prophecy": "^1.6",
"symfony/dependency-injection": "^3.2",
"symfony/config": "^3.2",
"shanethehat/pretty-xml": "~1.0.2"
},
"require-dev": {
"magetest/magento": "~1.8.1.0",
"behat/behat": "~3.3",
"phpunit/phpunit": "^5.7|^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"MageTest\\PhpSpec\\MagentoExtension": "src",
"": [
"vendor/magetest/magento/src/app",
"vendor/magetest/magento/src/lib",
"vendor/magetest/magento/src/app/code/local",
"vendor/magetest/magento/src/app/code/community",
"vendor/magetest/magento/src/app/code/core"
],
"Mage": "vendor/magetest/magento/src/app/code/core",
"Console" : "vendor/phpspec/phpspec/features/bootstrap/"
}
},
"authors": [
{
"name": "Alistair Stead",
"email": "[email protected]"
},
{
"name": "Marcello Duarte",
"email": "[email protected]"
},
{
"name": "Šarūnas Valaškevičius",
"email": "[email protected]"
},
{
"name": "Daniel Kidanemariam",
"email": "[email protected]"
},
{
"name": "Mark Slocock",
"email": "[email protected]"
},
{
"name": "Marco De Bortoli",
"email": "[email protected]"
},
{
"name": "Other contributors",
"homepage": "https://github.com/MageTest/MageSpec/contributors"
}
]
}