-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "amacgregor/promocode",
"description": "Improved error messages for coupon codes",
"type": "magento2-module",
"version": "1.0.0",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"config": {
"bin-dir": "bin"
},
"require-dev": {
"behat/behat": "~3.0.13",
"phpspec/phpspec": "~2.1.0-RC2",
"phpunit/phpunit": "~4.5",
"behat/mink": "~1.6.0",
"behat/mink-extension": "~2.0.0",
"behat/mink-goutte-driver": "~1.1.0",
"behat/mink-selenium2-driver": "*",
"peridot-php/webdriver-manager": "dev-master",
"bossa/phpspec2-expect": "1.*",
"magetest/magento": "2.0.1.*"
},
"require": {
"php": "~5.5.0|~5.6.0",
"magento/magento-composer-installer": "*",
"nesbot/carbon": "~1.18"
},
"extra": {
"map": [
[
"src",
"Imagine/Promocode"
]
]
},
"autoload": {
"psr-0": {
"Imagine\\Promocode": "src/",
"Magento\\" : "vendor/magetest/magento/src/app/code/",
"Magento\\Framework\\": "vendor/magetest/magento/src/lib/internal/",
"Carbon\\": "vendor/nesbot/carbon/src/"
}
}
}