OXDEV-3559 update dependencies to latest

Cette révision appartient à :
Florian Engelhardt 2020-07-03 14:32:10 +02:00
Parent a807a2f344
révision 52badb8ac8
Signature inconnue de Gitea
ID de la clé GPG: 39B8DAD75A95B500

Voir le fichier

@ -15,24 +15,19 @@
},
"require": {
"php": "^7.1",
"oxid-esales/graphql-base": "^2.3"
"oxid-esales/graphql-base": "^3.1.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.5.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^7.5.20|^8.5|^9",
"friendsofphp/php-cs-fixer": "^2.16.4",
"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",
"friendsofphp/php-cs-fixer": "^2.16"
"oxid-esales/oxideshop-unified-namespace-generator": "^2.0"
},
"autoload": {
"psr-4": {
"OxidEsales\\GraphQL\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OxidEsales\\GraphQL\\Skeleton\\": "src",
"OxidEslaes\\GraphQL\\Skeleton\\Tests\\": "tests"
}
},
@ -48,21 +43,17 @@
"composer update",
"@fix"
],
"fix:cbf": "phpcbf",
"fix:fixer": "php-cs-fixer fix",
"fix": [
"@fix:cbf",
"@fix:fixer"
],
"test:syntax": "parallel-lint src/",
"test:lint": "phpcs",
"test:lint-fixer": "php-cs-fixer fix --dry-run",
"test:lint": "php-cs-fixer fix --dry-run",
"test:syntax": "parallel-lint src/ tests/ metadata.php",
"test:static": "phpstan analyse src/",
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit/",
"test": [
"@test:syntax",
"@test:lint",
"@test:lint-fixer",
"@test:static",
"@test:unit"
]