OXDEV-3559 update dependencies to latest

This commit is contained in:
Florian Engelhardt 2020-07-03 14:32:10 +02:00
parent a807a2f344
commit 52badb8ac8
No known key found for this signature in database
GPG Key ID: 39B8DAD75A95B500

View File

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