-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.29 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": "phpro/mage2-module-sales-state-events",
"description": "Adds events for state changes for orders, invoices and credit memos",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "PHPro NV",
"email": "[email protected]",
"homepage": "https://www.phpro.be/"
}
],
"require": {
"php": "^7.1 || ^8.0",
"magento/framework": "^100.1|^101.0|^102.0|^103.0",
"magento/module-sales": "^100.1|^101.0|^102.0|^103.0"
},
"require-dev": {
"magento/marketplace-eqp": "^1.0",
"phpunit/phpunit": "^6.2",
"phpro/grumphp": "^0.13"
},
"autoload": {
"psr-4": {
"Phpro\\SalesStateEvents\\": ""
},
"files": [
"registration.php"
]
},
"config": {
"platform": {
"ext-gd": "7.2",
"ext-xsl": "7.2",
"ext-bcmath": "7.2",
"ext-pdo_mysql": "7.2",
"ext-soap": "7.2",
"ext-zip": "7.2"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "git",
"url": "https://github.com/magento/marketplace-eqp"
}
]
}