This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
55 lines (55 loc) · 1.72 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
{
"name": "oxid-esales/graphql-catalogue",
"description": "OXID eSales GraphQL catalogue 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-catalogue",
"blacklist-filter": [
"tests/**/*"
]
}
},
"require": {
"php": "^7.1",
"doctrine/dbal": "^v2.7",
"oxid-esales/graphql-base": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20|^8.5|^9",
"friendsofphp/php-cs-fixer": "^2.16.1",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpstan/phpstan": "^0.12.26",
"oxid-esales/oxideshop-ce": "^6.5",
"oxid-esales/oxideshop-unified-namespace-generator": "^2.0",
"sensiolabs-de/deptrac-shim": "^0.6.0|^0.9.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"OxidEsales\\GraphQL\\Catalogue\\": "src",
"OxidEsales\\GraphQL\\Catalogue\\Tests\\": "tests"
}
},
"scripts": {
"fix:fixer": "php-cs-fixer fix",
"fix": [
"@fix:fixer"
],
"test:lint": "php-cs-fixer fix --dry-run",
"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:deptrac": "vendor/bin/deptrac analyze depfile.yml",
"test": [
"@test:syntax",
"@test:lint",
"@test:static",
"@test:unit",
"@test:deptrac"
]
}
}