-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PISHPS-329 UrlParsingService - matching trackign code from tracking url #798
Changes from 1 commit
ebf9a39
d16c21d
81edacc
987faad
519834b
e8d64fb
6bfba85
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,6 +151,12 @@ ifneq (,$(findstring v12,$(NODE_VERSION))) | |
endif | ||
cd .. && rm -rf ./.build/MolliePayments* && mkdir -p ./.build | ||
# ------------------------------------------------------------------------------------------------- | ||
@echo "UPDATE SHOPWARE DEPENDENCIES" | ||
php switch-composer.php dev | ||
composer update shopware/core | ||
composer update shopware/storefront | ||
composer update shopware/administration | ||
# ------------------------------------------------------------------------------------------------- | ||
@echo "INSTALL DEV DEPENDENCIES AND BUILD" | ||
make clean -B | ||
make dev -B | ||
|
@@ -168,7 +174,7 @@ endif | |
php switch-composer.php prod | ||
# ------------------------------------------------------------------------------------------------- | ||
@echo "CREATE ZIP FILE" | ||
cd .. && zip -qq -r -0 ./.build/MolliePayments.zip MolliePayments/* -x '*/vendor/*' '*.editorconfig' '*.git*' '*.reports*' '*/.idea*' '*/tests*' '*/node_modules*' '*/makefile' '*.DS_Store' '*/.shopware-extension.yml' '*/switch-composer.php' '*/phpunit.xml' '*/.phpunuhi.xml' '*/.infection.json' '*/phpunit.autoload.php' '*/.phpstan*' '*/.php_cs.php' '*/phpinsights.php' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wron merge, add vendor again |
||
cd .. && zip -qq -r -0 ./.build/MolliePayments.zip MolliePayments/* -x '*.editorconfig' '*.git*' '*.reports*' '*/.idea*' '*/tests*' '*/node_modules*' '*/makefile' '*.DS_Store' '*/.shopware-extension.yml' '*/switch-composer.php' '*/phpunit.xml' '*/.phpunuhi.xml' '*/.infection.json' '*/phpunit.autoload.php' '*/.phpstan*' '*/.php_cs.php' '*/phpinsights.php' | ||
# ------------------------------------------------------------------------------------------------- | ||
@echo "RESET COMPOSER.JSON" | ||
php switch-composer.php dev | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Shopware\Core\Checkout\Payment; | ||
use Shopware\Core\Checkout\Payment\Exception\AsyncPaymentFinalizeException; | ||
use Shopware\Core\Checkout\Payment\Exception\CustomerCanceledAsyncPaymentException; | ||
|
||
if (class_exists(PaymentException::class) && !class_exists(AsyncPaymentFinalizeException::class) && !class_exists(CustomerCanceledAsyncPaymentException::class)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wrong merge, add the statements again |
||
if (class_exists(PaymentException::class)) { | ||
return; | ||
} | ||
|
||
use Shopware\Core\Checkout\Payment\Exception\AsyncPaymentFinalizeException; | ||
use Shopware\Core\Checkout\Payment\Exception\CustomerCanceledAsyncPaymentException; | ||
|
||
class PaymentException extends \Exception | ||
{ | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert shopware versions in the pipelines, you have the old ones