graphql-module-skeleton/composer.json

52 regels
1.6 KiB
JSON

2019-11-27 11:20:24 +01:00
{
2020-07-03 14:28:02 +02:00
"name": "oxid-esales/graphql-module-skeleton",
"description": "OXID eSales GraphQL module skeleton",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "eShop", "GraphQL"],
"license": ["GPL-3.0"],
"extra": {
"oxideshop": {
"target-directory": "oe/graphql-module"
2020-07-03 14:28:02 +02:00
}
},
"require": {
2024-07-19 17:31:08 +02:00
"php": "^7.1|^8",
2021-04-19 13:55:43 +02:00
"oxid-esales/graphql-base": "^5.1.1"
2020-07-03 14:28:02 +02:00
},
"require-dev": {
"phpunit/phpunit": "^7.5.20|^8.5|^9",
2021-04-19 13:55:43 +02:00
"friendsofphp/php-cs-fixer": "^2.18.2",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpstan/phpstan": "^0.12.26",
2020-07-03 14:28:02 +02:00
"oxid-esales/oxideshop-ce": "^6.5",
"oxid-esales/oxideshop-unified-namespace-generator": "^2.0"
2020-07-03 14:28:02 +02:00
},
"autoload": {
"psr-4": {
"OxidEsales\\GraphQL\\Skeleton\\": "src",
2020-07-03 14:28:02 +02:00
"OxidEslaes\\GraphQL\\Skeleton\\Tests\\": "tests"
}
},
"scripts": {
"post-create-project-cmd": [
"OxidEsales\\GraphQL\\Skeleton\\Installer::postInstall",
"composer update",
"@fix"
],
"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/",
2020-07-03 14:28:02 +02:00
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit/",
"test": [
"@test:syntax",
"@test:lint",
"@test:static",
"@test:unit"
]
2019-11-27 11:20:24 +01:00
}
}