-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
57 lines (57 loc) · 1.64 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
{
"name": "deity/falcon-magento",
"description": "Deity Magento API",
"type": "magento2-module",
"version": "1.0.2",
"license": [
"OSL-3.0"
],
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Deity\\MagentoApi\\": "src",
"Deity\\MagentoCmd\\": "cmd"
}
},
"autoload-dev": {
"psr-4": {
"Deity\\MagentoApi\\": ["tests/integration", "tests/api-functional"]
}
},
"scripts": {
"release": "Deity\\MagentoCmd\\Command::run"
},
"require": {
"magento/framework": "^101.0",
"magento/module-authorization": "^100.0.0",
"magento/module-catalog": "^102.0.0",
"magento/module-catalog-url-rewrite": "^100.0.0",
"magento/module-configurable-product": "^100.0.0",
"magento/module-bundle": "^100.0.0",
"magento/module-cms": "^102.0.0",
"magento/module-customer": "^101.0.0",
"magento/module-paypal": "^100.0.0",
"magento/module-quote": "^101.0.0",
"magento/module-sales": "^101.0.0",
"magento/module-store": "^100.0.0"
},
"require-dev": {
"phpro/grumphp": "^0.13.1",
"magento/marketplace-eqp": "dev-master@dev",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phan/phan": "^0.10.3",
"phpmd/phpmd": "^2.6"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"magento-eqp": {
"type": "vcs",
"url": "https://github.com/magento/marketplace-eqp.git"
}
}
}