From 078e28099ec5b3774cf170af0cd584c07ada37a4 Mon Sep 17 00:00:00 2001 From: Vitalij Mik Date: Fri, 17 May 2024 11:05:24 +0200 Subject: [PATCH] NTR: update depdenecnies --- composer.json | 3 ++- composer.lock | 22 +++++++++++----------- makefile | 3 --- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/composer.json b/composer.json index d400e8b48..761e8f1ee 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,8 @@ "psr-4": { "Kiener\\MolliePayments\\": "src/", "Mollie\\Api\\": "vendor_manual/mollie/mollie-api-php/src/", - "Shopware\\Core\\": "polyfill/Shopware/Core/" + "Shopware\\Core\\": "polyfill/Shopware/Core/", + "MolliePayments\\Fixtures\\": "tests/Fixtures/" } }, "autoload-dev": { diff --git a/composer.lock b/composer.lock index a2d1643f7..0a938c768 100644 --- a/composer.lock +++ b/composer.lock @@ -63,16 +63,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.306.7", + "version": "3.307.0", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "bc30df54badd9d2af8d291cd0665ade6eb509598" + "reference": "2cff93427287ec2bcb1ff6eeddd5ca98feeccdfc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/bc30df54badd9d2af8d291cd0665ade6eb509598", - "reference": "bc30df54badd9d2af8d291cd0665ade6eb509598", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2cff93427287ec2bcb1ff6eeddd5ca98feeccdfc", + "reference": "2cff93427287ec2bcb1ff6eeddd5ca98feeccdfc", "shasum": "" }, "require": { @@ -152,9 +152,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.306.7" + "source": "https://github.com/aws/aws-sdk-php/tree/3.307.0" }, - "time": "2024-05-15T18:04:12+00:00" + "time": "2024-05-16T18:06:49+00:00" }, { "name": "boxblinkracer/phpunuhi", @@ -162,12 +162,12 @@ "source": { "type": "git", "url": "https://github.com/boxblinkracer/phpunuhi.git", - "reference": "cef7814ef40d367834ce6a47d48be0ff4bf23e2b" + "reference": "08ecb40b9c6652cdfaeb4f6b46260d33e81161f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/boxblinkracer/phpunuhi/zipball/cef7814ef40d367834ce6a47d48be0ff4bf23e2b", - "reference": "cef7814ef40d367834ce6a47d48be0ff4bf23e2b", + "url": "https://api.github.com/repos/boxblinkracer/phpunuhi/zipball/08ecb40b9c6652cdfaeb4f6b46260d33e81161f7", + "reference": "08ecb40b9c6652cdfaeb4f6b46260d33e81161f7", "shasum": "" }, "require": { @@ -226,9 +226,9 @@ ], "support": { "issues": "https://github.com/boxblinkracer/phpunuhi/issues", - "source": "https://github.com/boxblinkracer/phpunuhi/tree/v1.19.0" + "source": "https://github.com/boxblinkracer/phpunuhi/tree/main" }, - "time": "2024-05-13T21:01:13+00:00" + "time": "2024-05-17T05:59:25+00:00" }, { "name": "brick/math", diff --git a/makefile b/makefile index 187eea43b..0a3f0ece1 100644 --- a/makefile +++ b/makefile @@ -21,8 +21,6 @@ prod: ## Installs all production dependencies # also install shopware in here -> we just need it for the release composer.json file # so just switch to our dev dependency variant php switch-composer.php dev - # since we changed composer autoload, we need to refresh the plugin list so autoload section is updated in db - cd ../../.. && php bin/console --no-debug plugin:refresh # ---------------------------------------------------------------- @composer validate @composer install --no-dev @@ -31,7 +29,6 @@ prod: ## Installs all production dependencies dev: ## Installs all dev dependencies php switch-composer.php dev - cd ../../.. && php bin/console --no-debug plugin:refresh @composer validate # we have to run update in dev mode, because dev dependencies are not compatible with newer php version. should be updated when support for 6.4 is dropped @composer update