forked from OXID-eSales/graphql-base-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.94 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
{
"name": "oxid-esales/graphql-base",
"description": "OXID eSales GraphQL base module",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "eShop", "GraphQL"],
"homepage": "https://www.oxid-esales.com",
"license": ["GPL-3.0"],
"extra": {
"oxideshop": {
"target-directory": "oe/graphql-base",
"blacklist-filter": [
"tests/**/*"
]
}
},
"require": {
"php": "^7.3",
"ext-json": "*",
"thecodingmachine/graphqlite": "^4.1.2",
"lcobucci/jwt": "^3.4.1",
"ecodev/graphql-upload": "^5.0.0",
"laminas/laminas-diactoros": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20|^8.5|^9",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpstan/phpstan": "^0.12.26",
"oxid-esales/oxideshop-ce": "dev-master",
"friendsofphp/php-cs-fixer": "^2.18.2",
"oxid-esales/oxideshop-unified-namespace-generator": "^v3.0.0",
"infection/infection": "^0.13.0|^0.14.0|^0.15.0|^0.18|^0.19|^0.20|^0.21|^0.22|^0.23"
},
"autoload": {
"psr-4": {
"OxidEsales\\GraphQL\\Base\\": "src",
"OxidEsales\\GraphQL\\Base\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"prefer-dist": true,
"scripts": {
"fix:fixer": "php-cs-fixer fix",
"fix": [
"@fix:fixer"
],
"test:lint": "php-cs-fixer fix --dry-run --diff-format=udiff",
"test:syntax": "parallel-lint src/ tests/ metadata.php",
"test:static": "phpstan --memory-limit=-1 analyse src/",
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit/",
"test:infection": "infection --min-msi=78 --min-covered-msi=97",
"test": [
"@test:syntax",
"@test:lint",
"@test:static",
"@test:unit",
"@test:infection"
]
}
}