-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.2 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
{
"name": "oxid-community/graphql-translations",
"description": "OXID eSales GraphQL Translations module",
"type": "oxideshop-module",
"version": "1.0.0",
"keywords": [
"oxid",
"modules",
"eShop",
"GraphQL"
],
"homepage": "https://www.oxid-esales.com",
"license": "GPL-3.0",
"extra": {
"oxideshop": {
"target-directory": "oxcom/graphql-translations",
"blacklist-filter": [
"src/**/*.php",
"tests/**/*.php"
]
}
},
"require": {
"php": "^7.1",
"oxid-esales/graphql-base": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~6",
"squizlabs/php_codesniffer": "^3",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.11"
},
"autoload": {
"psr-4": {
"OxidEsales\\GraphQL\\Translations\\": "src",
"OxidEsales\\GraphQL\\Translations\\Tests\\": "tests"
}
},
"scripts": {
"fix": "phpcbf --standard=PSR12 --extensions=php -p src/ tests/",
"test:lint": "phpcs --standard=PSR12 --extensions=php -p src/ tests/",
"test:syntax": "parallel-lint src/",
"test:static": "phpstan analyse src/",
"test": [
"@test:lint",
"@test:syntax",
"@test:static"
]
}
}