This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.65 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
{
"name": "graycore/magento2-orders-graphql",
"description": "A Magento 2 module that adds a fully featured GraphQL orders endpoint.",
"type": "magento2-module",
"require": {
"php": ">=7.0.0",
"magento/framework": "*",
"magento/module-graph-ql": "*",
"magento/module-quote": "*",
"magento/module-sales": "*",
"magento/module-store": "*"
},
"scripts": {
"test": "phpunit --bootstrap vendor/autoload.php test",
"unit-test": "vendor/bin/phpunit ./Test/Unit",
"lint": "phpcs . --standard=Magento2 --ignore='vendor/*'",
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
]
},
"license": [
"MIT"
],
"minimum-stability": "stable",
"archive": {
"exclude": [
"/docs",
"/Test",
"README.md"
]
},
"repositories": {
"repo.magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Graycore\\OrderGraphQl\\": ""
}
},
"require-dev": {
"magento/magento-coding-standard": "^5.0",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "7.2.0",
"ext-mbstring": "7.2.0",
"ext-bcmath": "7.2.0",
"ext-gd": "7.2.0",
"ext-curl": "7.2.0"
}
}
}