From 52badb8ac8a51613cae5a44b157f30f93ef08090 Mon Sep 17 00:00:00 2001 From: Florian Engelhardt Date: Fri, 3 Jul 2020 14:32:10 +0200 Subject: [PATCH] OXDEV-3559 update dependencies to latest --- composer.json | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/composer.json b/composer.json index 2fc7b85..43c04e1 100644 --- a/composer.json +++ b/composer.json @@ -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" ]