From 5e6c9663612c3d9aac52ed3ed2851886d2b6ba95 Mon Sep 17 00:00:00 2001 From: CoreShop Date: Mon, 13 Jan 2025 02:52:01 +0000 Subject: [PATCH 1/2] [CS] Refactor --- .../PimcoreFieldCollectionDefinitionMatcher.php | 5 +++-- .../PimcoreFieldCollectionDefinitionReplaceFilter.php | 6 +++--- .../EventListener/DeepCopySubscriber.php | 11 ++++------- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionMatcher.php b/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionMatcher.php index 2bb6bc0b26..0ad371c1dd 100644 --- a/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionMatcher.php +++ b/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionMatcher.php @@ -23,8 +23,9 @@ class PimcoreFieldCollectionDefinitionMatcher implements Matcher { - public function __construct(private string $matchType) - { + public function __construct( + private string $matchType, + ) { } public function matches(mixed $object, mixed $property): bool diff --git a/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionReplaceFilter.php b/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionReplaceFilter.php index c64a9ad573..5bd04339db 100644 --- a/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionReplaceFilter.php +++ b/src/CoreShop/Bundle/ResourceBundle/DeepCopy/PimcoreFieldCollectionDefinitionReplaceFilter.php @@ -20,13 +20,13 @@ use DeepCopy\Filter\Filter; use DeepCopy\Reflection\ReflectionHelper; -use Pimcore\Model\DataObject\Concrete; use Pimcore\Model\DataObject\Fieldcollection; class PimcoreFieldCollectionDefinitionReplaceFilter implements Filter { - public function __construct(protected \Closure $callback) - { + public function __construct( + protected \Closure $callback, + ) { } public function apply($object, $property, $objectCopier) diff --git a/src/CoreShop/Bundle/ResourceBundle/EventListener/DeepCopySubscriber.php b/src/CoreShop/Bundle/ResourceBundle/EventListener/DeepCopySubscriber.php index 5f50fa0b55..43f5c3b63a 100644 --- a/src/CoreShop/Bundle/ResourceBundle/EventListener/DeepCopySubscriber.php +++ b/src/CoreShop/Bundle/ResourceBundle/EventListener/DeepCopySubscriber.php @@ -21,7 +21,6 @@ use CoreShop\Bundle\ResourceBundle\DeepCopy\PimcoreFieldCollectionDefinitionMatcher; use CoreShop\Bundle\ResourceBundle\DeepCopy\PimcoreFieldCollectionDefinitionReplaceFilter; use CoreShop\Bundle\ResourceBundle\Pimcore\CacheMarshallerInterface; -use CoreShop\Component\Resource\Model\ResourceInterface; use DeepCopy\DeepCopy; use DeepCopy\Filter\Doctrine\DoctrineCollectionFilter; use DeepCopy\Matcher\PropertyTypeMatcher; @@ -30,8 +29,6 @@ use Pimcore\Model\DataObject\ClassDefinition\Data; use Pimcore\Model\DataObject\Concrete; use Pimcore\Model\DataObject\Fieldcollection\Data\AbstractData; -use Pimcore\Model\Element\DeepCopy\PimcoreClassDefinitionMatcher; -use Pimcore\Model\Element\DeepCopy\PimcoreClassDefinitionReplaceFilter; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\GenericEvent; @@ -76,9 +73,9 @@ function (AbstractData $object, Data $fieldDefinition, mixed $property, mixed $c } return $currentValue; - } + }, ), - new PimcoreFieldCollectionDefinitionMatcher(Data\CustomVersionMarshalInterface::class) + new PimcoreFieldCollectionDefinitionMatcher(Data\CustomVersionMarshalInterface::class), ); } @@ -91,9 +88,9 @@ function (AbstractData $object, Data $fieldDefinition, mixed $property, mixed $c } return $currentValue; - } + }, ), - new PimcoreFieldCollectionDefinitionMatcher(Data\CustomVersionMarshalInterface::class) + new PimcoreFieldCollectionDefinitionMatcher(Data\CustomVersionMarshalInterface::class), ); } From b6b23d2dcccbd01500dc487693ae478b349d886e Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Mon, 20 Jan 2025 09:22:48 +0100 Subject: [PATCH 2/2] [coreshop.com] Update Website and E-Mail --- CODE_OF_CONDUCT.md | 2 +- CONTRIBUTING.md | 2 +- LICENSE.md | 2 +- composer.json | 4 ++-- src/CoreShop/Bundle/AddressBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/AddressBundle/composer.json | 4 ++-- src/CoreShop/Bundle/ClassDefinitionPatchBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/ClassDefinitionPatchBundle/composer.json | 4 ++-- src/CoreShop/Bundle/ConfigurationBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/ConfigurationBundle/composer.json | 4 ++-- src/CoreShop/Bundle/CoreBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/CoreBundle/composer.json | 4 ++-- src/CoreShop/Bundle/CurrencyBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/CurrencyBundle/composer.json | 4 ++-- src/CoreShop/Bundle/CustomerBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/CustomerBundle/composer.json | 4 ++-- src/CoreShop/Bundle/FixtureBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/FixtureBundle/composer.json | 4 ++-- src/CoreShop/Bundle/FrontendBundle/LICENSE.md | 2 +- .../FrontendBundle/Resources/views/Mail/layout.html.twig | 2 +- src/CoreShop/Bundle/FrontendBundle/composer.json | 4 ++-- src/CoreShop/Bundle/IndexBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/IndexBundle/composer.json | 4 ++-- src/CoreShop/Bundle/InventoryBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/InventoryBundle/composer.json | 4 ++-- src/CoreShop/Bundle/LocaleBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/LocaleBundle/composer.json | 4 ++-- src/CoreShop/Bundle/MenuBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/MenuBundle/composer.json | 4 ++-- src/CoreShop/Bundle/MessengerBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/MessengerBundle/composer.json | 4 ++-- src/CoreShop/Bundle/MoneyBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/MoneyBundle/composer.json | 4 ++-- src/CoreShop/Bundle/NotificationBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/NotificationBundle/composer.json | 4 ++-- src/CoreShop/Bundle/OptimisticEntityLockBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/OptimisticEntityLockBundle/composer.json | 4 ++-- src/CoreShop/Bundle/OrderBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/OrderBundle/composer.json | 4 ++-- src/CoreShop/Bundle/PaymentBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/PaymentBundle/composer.json | 4 ++-- src/CoreShop/Bundle/PayumBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/PayumBundle/composer.json | 4 ++-- src/CoreShop/Bundle/PayumPaymentBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/PayumPaymentBundle/composer.json | 4 ++-- src/CoreShop/Bundle/PimcoreBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/PimcoreBundle/composer.json | 4 ++-- src/CoreShop/Bundle/ProductBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/ProductBundle/composer.json | 4 ++-- .../Bundle/ProductQuantityPriceRulesBundle/LICENSE.md | 2 +- .../Bundle/ProductQuantityPriceRulesBundle/composer.json | 4 ++-- src/CoreShop/Bundle/ResourceBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/ResourceBundle/composer.json | 4 ++-- src/CoreShop/Bundle/RuleBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/RuleBundle/composer.json | 4 ++-- src/CoreShop/Bundle/SEOBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/SEOBundle/composer.json | 4 ++-- src/CoreShop/Bundle/SequenceBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/SequenceBundle/composer.json | 4 ++-- src/CoreShop/Bundle/ShippingBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/ShippingBundle/composer.json | 4 ++-- src/CoreShop/Bundle/StorageListBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/StorageListBundle/composer.json | 4 ++-- src/CoreShop/Bundle/StoreBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/StoreBundle/composer.json | 4 ++-- src/CoreShop/Bundle/TaxationBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/TaxationBundle/composer.json | 4 ++-- src/CoreShop/Bundle/TestBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/TestBundle/composer.json | 4 ++-- src/CoreShop/Bundle/ThemeBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/ThemeBundle/composer.json | 4 ++-- src/CoreShop/Bundle/TrackingBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/TrackingBundle/composer.json | 4 ++-- src/CoreShop/Bundle/UserBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/UserBundle/composer.json | 4 ++-- src/CoreShop/Bundle/VariantBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/VariantBundle/composer.json | 4 ++-- src/CoreShop/Bundle/WishlistBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/WishlistBundle/composer.json | 4 ++-- src/CoreShop/Bundle/WorkflowBundle/LICENSE.md | 2 +- src/CoreShop/Bundle/WorkflowBundle/composer.json | 4 ++-- src/CoreShop/Component/Address/LICENSE.md | 2 +- src/CoreShop/Component/Address/composer.json | 4 ++-- src/CoreShop/Component/Configuration/LICENSE.md | 2 +- src/CoreShop/Component/Configuration/composer.json | 4 ++-- src/CoreShop/Component/Core/LICENSE.md | 2 +- src/CoreShop/Component/Core/composer.json | 4 ++-- src/CoreShop/Component/Currency/LICENSE.md | 2 +- src/CoreShop/Component/Currency/composer.json | 4 ++-- src/CoreShop/Component/Customer/LICENSE.md | 2 +- src/CoreShop/Component/Customer/composer.json | 4 ++-- src/CoreShop/Component/Index/LICENSE.md | 2 +- src/CoreShop/Component/Index/composer.json | 4 ++-- src/CoreShop/Component/Inventory/LICENSE.md | 2 +- src/CoreShop/Component/Inventory/composer.json | 4 ++-- src/CoreShop/Component/Locale/LICENSE.md | 2 +- src/CoreShop/Component/Locale/composer.json | 4 ++-- src/CoreShop/Component/Notification/LICENSE.md | 2 +- src/CoreShop/Component/Notification/composer.json | 4 ++-- src/CoreShop/Component/Order/LICENSE.md | 2 +- src/CoreShop/Component/Order/composer.json | 4 ++-- src/CoreShop/Component/Payment/LICENSE.md | 2 +- src/CoreShop/Component/Payment/composer.json | 4 ++-- src/CoreShop/Component/PayumPayment/LICENSE.md | 2 +- src/CoreShop/Component/PayumPayment/composer.json | 4 ++-- src/CoreShop/Component/Pimcore/LICENSE.md | 2 +- src/CoreShop/Component/Pimcore/composer.json | 4 ++-- src/CoreShop/Component/Product/LICENSE.md | 2 +- src/CoreShop/Component/Product/composer.json | 4 ++-- src/CoreShop/Component/ProductQuantityPriceRules/LICENSE.md | 2 +- .../Component/ProductQuantityPriceRules/composer.json | 4 ++-- src/CoreShop/Component/Registry/LICENSE.md | 2 +- src/CoreShop/Component/Registry/composer.json | 4 ++-- src/CoreShop/Component/Resource/LICENSE.md | 2 +- src/CoreShop/Component/Resource/composer.json | 4 ++-- src/CoreShop/Component/Rule/LICENSE.md | 2 +- src/CoreShop/Component/Rule/composer.json | 4 ++-- src/CoreShop/Component/SEO/LICENSE.md | 2 +- src/CoreShop/Component/SEO/composer.json | 4 ++-- src/CoreShop/Component/Sequence/LICENSE.md | 2 +- src/CoreShop/Component/Sequence/composer.json | 4 ++-- src/CoreShop/Component/Shipping/LICENSE.md | 2 +- src/CoreShop/Component/Shipping/composer.json | 4 ++-- src/CoreShop/Component/StorageList/LICENSE.md | 2 +- src/CoreShop/Component/StorageList/composer.json | 4 ++-- src/CoreShop/Component/Store/LICENSE.md | 2 +- src/CoreShop/Component/Store/composer.json | 4 ++-- src/CoreShop/Component/Taxation/LICENSE.md | 2 +- src/CoreShop/Component/Taxation/composer.json | 4 ++-- src/CoreShop/Component/Tracking/LICENSE.md | 2 +- src/CoreShop/Component/Tracking/composer.json | 4 ++-- src/CoreShop/Component/User/LICENSE.md | 2 +- src/CoreShop/Component/User/composer.json | 4 ++-- src/CoreShop/Component/Variant/LICENSE.md | 2 +- src/CoreShop/Component/Variant/composer.json | 4 ++-- src/CoreShop/Component/Wishlist/LICENSE.md | 2 +- src/CoreShop/Component/Wishlist/composer.json | 4 ++-- 137 files changed, 204 insertions(+), 204 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index ac39290b14..5d05d70642 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at info@coreshop.org. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at info@coreshop.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1c20227947..0103dd61a5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ We use GitHub issues exclusively to track all bugs and features. * [Open an issue](https://github.com/coreshop/CoreShop/issues) here on GitHub. If you can, **please provide a fix and create a pull request (PR) instead**; this will automatically create an issue for you. -* Report security issues only to info@coreshop.org +* Report security issues only to info@coreshop.com * Please be patient as not all items will be tested immediately - remember, CoreShop is open source and free of charge. * Occasionally we'll close issues if they appear stale or are too vague - please don't take this personally! Please feel free to re-open issues we've closed if there's something we've missed and they still need to be addressed. diff --git a/LICENSE.md b/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/composer.json b/composer.json index 9a0586cb13..c116b14743 100644 --- a/composer.json +++ b/composer.json @@ -14,8 +14,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/AddressBundle/LICENSE.md b/src/CoreShop/Bundle/AddressBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/AddressBundle/LICENSE.md +++ b/src/CoreShop/Bundle/AddressBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/AddressBundle/composer.json b/src/CoreShop/Bundle/AddressBundle/composer.json index 182e840632..dc9364aafe 100755 --- a/src/CoreShop/Bundle/AddressBundle/composer.json +++ b/src/CoreShop/Bundle/AddressBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ClassDefinitionPatchBundle/LICENSE.md b/src/CoreShop/Bundle/ClassDefinitionPatchBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ClassDefinitionPatchBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ClassDefinitionPatchBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ClassDefinitionPatchBundle/composer.json b/src/CoreShop/Bundle/ClassDefinitionPatchBundle/composer.json index 77434e99c2..59648d228c 100644 --- a/src/CoreShop/Bundle/ClassDefinitionPatchBundle/composer.json +++ b/src/CoreShop/Bundle/ClassDefinitionPatchBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ConfigurationBundle/LICENSE.md b/src/CoreShop/Bundle/ConfigurationBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ConfigurationBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ConfigurationBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ConfigurationBundle/composer.json b/src/CoreShop/Bundle/ConfigurationBundle/composer.json index ce1bfd8cfa..44f9d642a8 100644 --- a/src/CoreShop/Bundle/ConfigurationBundle/composer.json +++ b/src/CoreShop/Bundle/ConfigurationBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/CoreBundle/LICENSE.md b/src/CoreShop/Bundle/CoreBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/CoreBundle/LICENSE.md +++ b/src/CoreShop/Bundle/CoreBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/CoreBundle/composer.json b/src/CoreShop/Bundle/CoreBundle/composer.json index f777144d0c..0b3388040d 100644 --- a/src/CoreShop/Bundle/CoreBundle/composer.json +++ b/src/CoreShop/Bundle/CoreBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/CurrencyBundle/LICENSE.md b/src/CoreShop/Bundle/CurrencyBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/CurrencyBundle/LICENSE.md +++ b/src/CoreShop/Bundle/CurrencyBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/CurrencyBundle/composer.json b/src/CoreShop/Bundle/CurrencyBundle/composer.json index 4c58ea5ddf..af7656c779 100644 --- a/src/CoreShop/Bundle/CurrencyBundle/composer.json +++ b/src/CoreShop/Bundle/CurrencyBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/CustomerBundle/LICENSE.md b/src/CoreShop/Bundle/CustomerBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/CustomerBundle/LICENSE.md +++ b/src/CoreShop/Bundle/CustomerBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/CustomerBundle/composer.json b/src/CoreShop/Bundle/CustomerBundle/composer.json index 2d5a77d070..2421b56a68 100644 --- a/src/CoreShop/Bundle/CustomerBundle/composer.json +++ b/src/CoreShop/Bundle/CustomerBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/FixtureBundle/LICENSE.md b/src/CoreShop/Bundle/FixtureBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/FixtureBundle/LICENSE.md +++ b/src/CoreShop/Bundle/FixtureBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/FixtureBundle/composer.json b/src/CoreShop/Bundle/FixtureBundle/composer.json index 5f1ab2ab12..fc104b854b 100644 --- a/src/CoreShop/Bundle/FixtureBundle/composer.json +++ b/src/CoreShop/Bundle/FixtureBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/FrontendBundle/LICENSE.md b/src/CoreShop/Bundle/FrontendBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/FrontendBundle/LICENSE.md +++ b/src/CoreShop/Bundle/FrontendBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/FrontendBundle/Resources/views/Mail/layout.html.twig b/src/CoreShop/Bundle/FrontendBundle/Resources/views/Mail/layout.html.twig index 71a6f8c51d..beb7456ed8 100644 --- a/src/CoreShop/Bundle/FrontendBundle/Resources/views/Mail/layout.html.twig +++ b/src/CoreShop/Bundle/FrontendBundle/Resources/views/Mail/layout.html.twig @@ -36,7 +36,7 @@
Contact Info:

Phone: +43 660 36 177 85

-

Email: info@coreshop.org

+

Email: info@coreshop.com

diff --git a/src/CoreShop/Bundle/FrontendBundle/composer.json b/src/CoreShop/Bundle/FrontendBundle/composer.json index bdaac0a328..8ab82bd578 100644 --- a/src/CoreShop/Bundle/FrontendBundle/composer.json +++ b/src/CoreShop/Bundle/FrontendBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/IndexBundle/LICENSE.md b/src/CoreShop/Bundle/IndexBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/IndexBundle/LICENSE.md +++ b/src/CoreShop/Bundle/IndexBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/IndexBundle/composer.json b/src/CoreShop/Bundle/IndexBundle/composer.json index 9b953ea699..a0e97046c6 100644 --- a/src/CoreShop/Bundle/IndexBundle/composer.json +++ b/src/CoreShop/Bundle/IndexBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/InventoryBundle/LICENSE.md b/src/CoreShop/Bundle/InventoryBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/InventoryBundle/LICENSE.md +++ b/src/CoreShop/Bundle/InventoryBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/InventoryBundle/composer.json b/src/CoreShop/Bundle/InventoryBundle/composer.json index 6b6c5e56f4..99f416dc90 100644 --- a/src/CoreShop/Bundle/InventoryBundle/composer.json +++ b/src/CoreShop/Bundle/InventoryBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/LocaleBundle/LICENSE.md b/src/CoreShop/Bundle/LocaleBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/LocaleBundle/LICENSE.md +++ b/src/CoreShop/Bundle/LocaleBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/LocaleBundle/composer.json b/src/CoreShop/Bundle/LocaleBundle/composer.json index f684d23094..37bab20217 100644 --- a/src/CoreShop/Bundle/LocaleBundle/composer.json +++ b/src/CoreShop/Bundle/LocaleBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/MenuBundle/LICENSE.md b/src/CoreShop/Bundle/MenuBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/MenuBundle/LICENSE.md +++ b/src/CoreShop/Bundle/MenuBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/MenuBundle/composer.json b/src/CoreShop/Bundle/MenuBundle/composer.json index 660592abb6..4fc1db1aba 100644 --- a/src/CoreShop/Bundle/MenuBundle/composer.json +++ b/src/CoreShop/Bundle/MenuBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/MessengerBundle/LICENSE.md b/src/CoreShop/Bundle/MessengerBundle/LICENSE.md index 9785bd01c9..f83e035a92 100644 --- a/src/CoreShop/Bundle/MessengerBundle/LICENSE.md +++ b/src/CoreShop/Bundle/MessengerBundle/LICENSE.md @@ -31,7 +31,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): [GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - gpl-3.0.txt](gpl-3.0.txt) \ No newline at end of file diff --git a/src/CoreShop/Bundle/MessengerBundle/composer.json b/src/CoreShop/Bundle/MessengerBundle/composer.json index 4937f99cf3..afb42abd57 100644 --- a/src/CoreShop/Bundle/MessengerBundle/composer.json +++ b/src/CoreShop/Bundle/MessengerBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/MoneyBundle/LICENSE.md b/src/CoreShop/Bundle/MoneyBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/MoneyBundle/LICENSE.md +++ b/src/CoreShop/Bundle/MoneyBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/MoneyBundle/composer.json b/src/CoreShop/Bundle/MoneyBundle/composer.json index c968c764d9..da1f5ea444 100644 --- a/src/CoreShop/Bundle/MoneyBundle/composer.json +++ b/src/CoreShop/Bundle/MoneyBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/NotificationBundle/LICENSE.md b/src/CoreShop/Bundle/NotificationBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/NotificationBundle/LICENSE.md +++ b/src/CoreShop/Bundle/NotificationBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/NotificationBundle/composer.json b/src/CoreShop/Bundle/NotificationBundle/composer.json index 479f53e540..6e6e05c612 100644 --- a/src/CoreShop/Bundle/NotificationBundle/composer.json +++ b/src/CoreShop/Bundle/NotificationBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/OptimisticEntityLockBundle/LICENSE.md b/src/CoreShop/Bundle/OptimisticEntityLockBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/OptimisticEntityLockBundle/LICENSE.md +++ b/src/CoreShop/Bundle/OptimisticEntityLockBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/OptimisticEntityLockBundle/composer.json b/src/CoreShop/Bundle/OptimisticEntityLockBundle/composer.json index 415246a559..1d801bca63 100644 --- a/src/CoreShop/Bundle/OptimisticEntityLockBundle/composer.json +++ b/src/CoreShop/Bundle/OptimisticEntityLockBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/OrderBundle/LICENSE.md b/src/CoreShop/Bundle/OrderBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/OrderBundle/LICENSE.md +++ b/src/CoreShop/Bundle/OrderBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/OrderBundle/composer.json b/src/CoreShop/Bundle/OrderBundle/composer.json index 83235d2528..65daf7fd9e 100644 --- a/src/CoreShop/Bundle/OrderBundle/composer.json +++ b/src/CoreShop/Bundle/OrderBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/PaymentBundle/LICENSE.md b/src/CoreShop/Bundle/PaymentBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/PaymentBundle/LICENSE.md +++ b/src/CoreShop/Bundle/PaymentBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/PaymentBundle/composer.json b/src/CoreShop/Bundle/PaymentBundle/composer.json index e046e419a1..3d6448831d 100644 --- a/src/CoreShop/Bundle/PaymentBundle/composer.json +++ b/src/CoreShop/Bundle/PaymentBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/PayumBundle/LICENSE.md b/src/CoreShop/Bundle/PayumBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/PayumBundle/LICENSE.md +++ b/src/CoreShop/Bundle/PayumBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/PayumBundle/composer.json b/src/CoreShop/Bundle/PayumBundle/composer.json index c9c6b79b6e..b39432e4e3 100644 --- a/src/CoreShop/Bundle/PayumBundle/composer.json +++ b/src/CoreShop/Bundle/PayumBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/PayumPaymentBundle/LICENSE.md b/src/CoreShop/Bundle/PayumPaymentBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/PayumPaymentBundle/LICENSE.md +++ b/src/CoreShop/Bundle/PayumPaymentBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/PayumPaymentBundle/composer.json b/src/CoreShop/Bundle/PayumPaymentBundle/composer.json index d4c6c0063f..417cfd2ff0 100644 --- a/src/CoreShop/Bundle/PayumPaymentBundle/composer.json +++ b/src/CoreShop/Bundle/PayumPaymentBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/PimcoreBundle/LICENSE.md b/src/CoreShop/Bundle/PimcoreBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/PimcoreBundle/LICENSE.md +++ b/src/CoreShop/Bundle/PimcoreBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/PimcoreBundle/composer.json b/src/CoreShop/Bundle/PimcoreBundle/composer.json index 150df0aa9c..ad520cbca3 100644 --- a/src/CoreShop/Bundle/PimcoreBundle/composer.json +++ b/src/CoreShop/Bundle/PimcoreBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ProductBundle/LICENSE.md b/src/CoreShop/Bundle/ProductBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ProductBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ProductBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ProductBundle/composer.json b/src/CoreShop/Bundle/ProductBundle/composer.json index 2c8847dd05..649aa5924b 100644 --- a/src/CoreShop/Bundle/ProductBundle/composer.json +++ b/src/CoreShop/Bundle/ProductBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/LICENSE.md b/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/composer.json b/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/composer.json index 2da5becd6d..b21fe69298 100644 --- a/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/composer.json +++ b/src/CoreShop/Bundle/ProductQuantityPriceRulesBundle/composer.json @@ -18,8 +18,8 @@ }, { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ResourceBundle/LICENSE.md b/src/CoreShop/Bundle/ResourceBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ResourceBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ResourceBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ResourceBundle/composer.json b/src/CoreShop/Bundle/ResourceBundle/composer.json index 9b16aaa58a..65452d6ba4 100644 --- a/src/CoreShop/Bundle/ResourceBundle/composer.json +++ b/src/CoreShop/Bundle/ResourceBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/RuleBundle/LICENSE.md b/src/CoreShop/Bundle/RuleBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/RuleBundle/LICENSE.md +++ b/src/CoreShop/Bundle/RuleBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/RuleBundle/composer.json b/src/CoreShop/Bundle/RuleBundle/composer.json index 928aba777c..749adfb559 100644 --- a/src/CoreShop/Bundle/RuleBundle/composer.json +++ b/src/CoreShop/Bundle/RuleBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/SEOBundle/LICENSE.md b/src/CoreShop/Bundle/SEOBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/SEOBundle/LICENSE.md +++ b/src/CoreShop/Bundle/SEOBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/SEOBundle/composer.json b/src/CoreShop/Bundle/SEOBundle/composer.json index 872fd4cb64..350e8699fb 100644 --- a/src/CoreShop/Bundle/SEOBundle/composer.json +++ b/src/CoreShop/Bundle/SEOBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/SequenceBundle/LICENSE.md b/src/CoreShop/Bundle/SequenceBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/SequenceBundle/LICENSE.md +++ b/src/CoreShop/Bundle/SequenceBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/SequenceBundle/composer.json b/src/CoreShop/Bundle/SequenceBundle/composer.json index 4f56349818..0badbc09ab 100644 --- a/src/CoreShop/Bundle/SequenceBundle/composer.json +++ b/src/CoreShop/Bundle/SequenceBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ShippingBundle/LICENSE.md b/src/CoreShop/Bundle/ShippingBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ShippingBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ShippingBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ShippingBundle/composer.json b/src/CoreShop/Bundle/ShippingBundle/composer.json index 76bcbe6c36..691f6c09dc 100644 --- a/src/CoreShop/Bundle/ShippingBundle/composer.json +++ b/src/CoreShop/Bundle/ShippingBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/StorageListBundle/LICENSE.md b/src/CoreShop/Bundle/StorageListBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/StorageListBundle/LICENSE.md +++ b/src/CoreShop/Bundle/StorageListBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/StorageListBundle/composer.json b/src/CoreShop/Bundle/StorageListBundle/composer.json index c6906c6010..68e911b001 100644 --- a/src/CoreShop/Bundle/StorageListBundle/composer.json +++ b/src/CoreShop/Bundle/StorageListBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/StoreBundle/LICENSE.md b/src/CoreShop/Bundle/StoreBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/StoreBundle/LICENSE.md +++ b/src/CoreShop/Bundle/StoreBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/StoreBundle/composer.json b/src/CoreShop/Bundle/StoreBundle/composer.json index a51450a915..e7b807ed60 100644 --- a/src/CoreShop/Bundle/StoreBundle/composer.json +++ b/src/CoreShop/Bundle/StoreBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/TaxationBundle/LICENSE.md b/src/CoreShop/Bundle/TaxationBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/TaxationBundle/LICENSE.md +++ b/src/CoreShop/Bundle/TaxationBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/TaxationBundle/composer.json b/src/CoreShop/Bundle/TaxationBundle/composer.json index fb5f55f2a1..2326e79867 100644 --- a/src/CoreShop/Bundle/TaxationBundle/composer.json +++ b/src/CoreShop/Bundle/TaxationBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/TestBundle/LICENSE.md b/src/CoreShop/Bundle/TestBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/TestBundle/LICENSE.md +++ b/src/CoreShop/Bundle/TestBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/TestBundle/composer.json b/src/CoreShop/Bundle/TestBundle/composer.json index d8b623505a..762f91bd38 100644 --- a/src/CoreShop/Bundle/TestBundle/composer.json +++ b/src/CoreShop/Bundle/TestBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/ThemeBundle/LICENSE.md b/src/CoreShop/Bundle/ThemeBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/ThemeBundle/LICENSE.md +++ b/src/CoreShop/Bundle/ThemeBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/ThemeBundle/composer.json b/src/CoreShop/Bundle/ThemeBundle/composer.json index f3b01dc82c..eb2388be79 100644 --- a/src/CoreShop/Bundle/ThemeBundle/composer.json +++ b/src/CoreShop/Bundle/ThemeBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/TrackingBundle/LICENSE.md b/src/CoreShop/Bundle/TrackingBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/TrackingBundle/LICENSE.md +++ b/src/CoreShop/Bundle/TrackingBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/TrackingBundle/composer.json b/src/CoreShop/Bundle/TrackingBundle/composer.json index 228be455b8..ba94260de0 100644 --- a/src/CoreShop/Bundle/TrackingBundle/composer.json +++ b/src/CoreShop/Bundle/TrackingBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/UserBundle/LICENSE.md b/src/CoreShop/Bundle/UserBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/UserBundle/LICENSE.md +++ b/src/CoreShop/Bundle/UserBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/UserBundle/composer.json b/src/CoreShop/Bundle/UserBundle/composer.json index 6aa117fc19..90515be21b 100644 --- a/src/CoreShop/Bundle/UserBundle/composer.json +++ b/src/CoreShop/Bundle/UserBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/VariantBundle/LICENSE.md b/src/CoreShop/Bundle/VariantBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/VariantBundle/LICENSE.md +++ b/src/CoreShop/Bundle/VariantBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/VariantBundle/composer.json b/src/CoreShop/Bundle/VariantBundle/composer.json index d982be3427..fb7684dfc2 100644 --- a/src/CoreShop/Bundle/VariantBundle/composer.json +++ b/src/CoreShop/Bundle/VariantBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/WishlistBundle/LICENSE.md b/src/CoreShop/Bundle/WishlistBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/WishlistBundle/LICENSE.md +++ b/src/CoreShop/Bundle/WishlistBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/WishlistBundle/composer.json b/src/CoreShop/Bundle/WishlistBundle/composer.json index 7d93010835..b9f30c0e7d 100644 --- a/src/CoreShop/Bundle/WishlistBundle/composer.json +++ b/src/CoreShop/Bundle/WishlistBundle/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Bundle/WorkflowBundle/LICENSE.md b/src/CoreShop/Bundle/WorkflowBundle/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Bundle/WorkflowBundle/LICENSE.md +++ b/src/CoreShop/Bundle/WorkflowBundle/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Bundle/WorkflowBundle/composer.json b/src/CoreShop/Bundle/WorkflowBundle/composer.json index 57af57c903..697380691d 100644 --- a/src/CoreShop/Bundle/WorkflowBundle/composer.json +++ b/src/CoreShop/Bundle/WorkflowBundle/composer.json @@ -13,8 +13,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Address/LICENSE.md b/src/CoreShop/Component/Address/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Address/LICENSE.md +++ b/src/CoreShop/Component/Address/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Address/composer.json b/src/CoreShop/Component/Address/composer.json index 6989c945c0..a1445c7bbb 100644 --- a/src/CoreShop/Component/Address/composer.json +++ b/src/CoreShop/Component/Address/composer.json @@ -13,8 +13,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Configuration/LICENSE.md b/src/CoreShop/Component/Configuration/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Configuration/LICENSE.md +++ b/src/CoreShop/Component/Configuration/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Configuration/composer.json b/src/CoreShop/Component/Configuration/composer.json index f72a3e63dd..7e586a845e 100644 --- a/src/CoreShop/Component/Configuration/composer.json +++ b/src/CoreShop/Component/Configuration/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Core/LICENSE.md b/src/CoreShop/Component/Core/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Core/LICENSE.md +++ b/src/CoreShop/Component/Core/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Core/composer.json b/src/CoreShop/Component/Core/composer.json index f413765eef..0ab1507179 100644 --- a/src/CoreShop/Component/Core/composer.json +++ b/src/CoreShop/Component/Core/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Currency/LICENSE.md b/src/CoreShop/Component/Currency/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Currency/LICENSE.md +++ b/src/CoreShop/Component/Currency/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Currency/composer.json b/src/CoreShop/Component/Currency/composer.json index 30593fc14b..a69f8dae2c 100644 --- a/src/CoreShop/Component/Currency/composer.json +++ b/src/CoreShop/Component/Currency/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Customer/LICENSE.md b/src/CoreShop/Component/Customer/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Customer/LICENSE.md +++ b/src/CoreShop/Component/Customer/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Customer/composer.json b/src/CoreShop/Component/Customer/composer.json index 47dc86c7a3..7b58319eb4 100644 --- a/src/CoreShop/Component/Customer/composer.json +++ b/src/CoreShop/Component/Customer/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Index/LICENSE.md b/src/CoreShop/Component/Index/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Index/LICENSE.md +++ b/src/CoreShop/Component/Index/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Index/composer.json b/src/CoreShop/Component/Index/composer.json index 0f526a572b..0efc416274 100644 --- a/src/CoreShop/Component/Index/composer.json +++ b/src/CoreShop/Component/Index/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Inventory/LICENSE.md b/src/CoreShop/Component/Inventory/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Inventory/LICENSE.md +++ b/src/CoreShop/Component/Inventory/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Inventory/composer.json b/src/CoreShop/Component/Inventory/composer.json index 515fa3d725..158deb4f27 100644 --- a/src/CoreShop/Component/Inventory/composer.json +++ b/src/CoreShop/Component/Inventory/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Locale/LICENSE.md b/src/CoreShop/Component/Locale/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Locale/LICENSE.md +++ b/src/CoreShop/Component/Locale/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Locale/composer.json b/src/CoreShop/Component/Locale/composer.json index aab64a26b2..df6216747b 100644 --- a/src/CoreShop/Component/Locale/composer.json +++ b/src/CoreShop/Component/Locale/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Notification/LICENSE.md b/src/CoreShop/Component/Notification/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Notification/LICENSE.md +++ b/src/CoreShop/Component/Notification/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Notification/composer.json b/src/CoreShop/Component/Notification/composer.json index 5c4f6a9e00..be0883a3b4 100644 --- a/src/CoreShop/Component/Notification/composer.json +++ b/src/CoreShop/Component/Notification/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Order/LICENSE.md b/src/CoreShop/Component/Order/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Order/LICENSE.md +++ b/src/CoreShop/Component/Order/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Order/composer.json b/src/CoreShop/Component/Order/composer.json index dbcf46d1be..c33f1604f9 100644 --- a/src/CoreShop/Component/Order/composer.json +++ b/src/CoreShop/Component/Order/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Payment/LICENSE.md b/src/CoreShop/Component/Payment/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Payment/LICENSE.md +++ b/src/CoreShop/Component/Payment/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Payment/composer.json b/src/CoreShop/Component/Payment/composer.json index 0405971c44..bed4ef6c93 100644 --- a/src/CoreShop/Component/Payment/composer.json +++ b/src/CoreShop/Component/Payment/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/PayumPayment/LICENSE.md b/src/CoreShop/Component/PayumPayment/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/PayumPayment/LICENSE.md +++ b/src/CoreShop/Component/PayumPayment/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/PayumPayment/composer.json b/src/CoreShop/Component/PayumPayment/composer.json index eb531515c4..54e5cf24e5 100644 --- a/src/CoreShop/Component/PayumPayment/composer.json +++ b/src/CoreShop/Component/PayumPayment/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Pimcore/LICENSE.md b/src/CoreShop/Component/Pimcore/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Pimcore/LICENSE.md +++ b/src/CoreShop/Component/Pimcore/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Pimcore/composer.json b/src/CoreShop/Component/Pimcore/composer.json index cb76051533..7acccea645 100644 --- a/src/CoreShop/Component/Pimcore/composer.json +++ b/src/CoreShop/Component/Pimcore/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Product/LICENSE.md b/src/CoreShop/Component/Product/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Product/LICENSE.md +++ b/src/CoreShop/Component/Product/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Product/composer.json b/src/CoreShop/Component/Product/composer.json index ccceba5b9a..8475bc41ea 100644 --- a/src/CoreShop/Component/Product/composer.json +++ b/src/CoreShop/Component/Product/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/ProductQuantityPriceRules/LICENSE.md b/src/CoreShop/Component/ProductQuantityPriceRules/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/ProductQuantityPriceRules/LICENSE.md +++ b/src/CoreShop/Component/ProductQuantityPriceRules/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/ProductQuantityPriceRules/composer.json b/src/CoreShop/Component/ProductQuantityPriceRules/composer.json index 200a06b83c..f5abb60bfe 100644 --- a/src/CoreShop/Component/ProductQuantityPriceRules/composer.json +++ b/src/CoreShop/Component/ProductQuantityPriceRules/composer.json @@ -18,8 +18,8 @@ }, { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Registry/LICENSE.md b/src/CoreShop/Component/Registry/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Registry/LICENSE.md +++ b/src/CoreShop/Component/Registry/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Registry/composer.json b/src/CoreShop/Component/Registry/composer.json index 47d6d631a6..3a2b3b7d89 100644 --- a/src/CoreShop/Component/Registry/composer.json +++ b/src/CoreShop/Component/Registry/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Resource/LICENSE.md b/src/CoreShop/Component/Resource/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Resource/LICENSE.md +++ b/src/CoreShop/Component/Resource/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Resource/composer.json b/src/CoreShop/Component/Resource/composer.json index c5173ce056..9d7258d3e3 100644 --- a/src/CoreShop/Component/Resource/composer.json +++ b/src/CoreShop/Component/Resource/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Rule/LICENSE.md b/src/CoreShop/Component/Rule/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Rule/LICENSE.md +++ b/src/CoreShop/Component/Rule/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Rule/composer.json b/src/CoreShop/Component/Rule/composer.json index 35a5e2ac92..a65034a8cb 100644 --- a/src/CoreShop/Component/Rule/composer.json +++ b/src/CoreShop/Component/Rule/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/SEO/LICENSE.md b/src/CoreShop/Component/SEO/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/SEO/LICENSE.md +++ b/src/CoreShop/Component/SEO/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/SEO/composer.json b/src/CoreShop/Component/SEO/composer.json index 2a06c9fb5a..740ecab904 100644 --- a/src/CoreShop/Component/SEO/composer.json +++ b/src/CoreShop/Component/SEO/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Sequence/LICENSE.md b/src/CoreShop/Component/Sequence/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Sequence/LICENSE.md +++ b/src/CoreShop/Component/Sequence/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Sequence/composer.json b/src/CoreShop/Component/Sequence/composer.json index 928b85293f..884229012a 100644 --- a/src/CoreShop/Component/Sequence/composer.json +++ b/src/CoreShop/Component/Sequence/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Shipping/LICENSE.md b/src/CoreShop/Component/Shipping/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Shipping/LICENSE.md +++ b/src/CoreShop/Component/Shipping/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Shipping/composer.json b/src/CoreShop/Component/Shipping/composer.json index b5a5987bb0..b34c1774c2 100644 --- a/src/CoreShop/Component/Shipping/composer.json +++ b/src/CoreShop/Component/Shipping/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/StorageList/LICENSE.md b/src/CoreShop/Component/StorageList/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/StorageList/LICENSE.md +++ b/src/CoreShop/Component/StorageList/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/StorageList/composer.json b/src/CoreShop/Component/StorageList/composer.json index e616991ccc..0e0fda330e 100644 --- a/src/CoreShop/Component/StorageList/composer.json +++ b/src/CoreShop/Component/StorageList/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Store/LICENSE.md b/src/CoreShop/Component/Store/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Store/LICENSE.md +++ b/src/CoreShop/Component/Store/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Store/composer.json b/src/CoreShop/Component/Store/composer.json index bf00477b98..9b445fdc51 100644 --- a/src/CoreShop/Component/Store/composer.json +++ b/src/CoreShop/Component/Store/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Taxation/LICENSE.md b/src/CoreShop/Component/Taxation/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Taxation/LICENSE.md +++ b/src/CoreShop/Component/Taxation/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Taxation/composer.json b/src/CoreShop/Component/Taxation/composer.json index 3225a861ad..55759cc16a 100644 --- a/src/CoreShop/Component/Taxation/composer.json +++ b/src/CoreShop/Component/Taxation/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Tracking/LICENSE.md b/src/CoreShop/Component/Tracking/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Tracking/LICENSE.md +++ b/src/CoreShop/Component/Tracking/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Tracking/composer.json b/src/CoreShop/Component/Tracking/composer.json index 43c1c00c7f..95e6d34bd5 100644 --- a/src/CoreShop/Component/Tracking/composer.json +++ b/src/CoreShop/Component/Tracking/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/User/LICENSE.md b/src/CoreShop/Component/User/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/User/LICENSE.md +++ b/src/CoreShop/Component/User/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/User/composer.json b/src/CoreShop/Component/User/composer.json index 54d57ac73b..7c8ebd4696 100644 --- a/src/CoreShop/Component/User/composer.json +++ b/src/CoreShop/Component/User/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Variant/LICENSE.md b/src/CoreShop/Component/Variant/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Variant/LICENSE.md +++ b/src/CoreShop/Component/Variant/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Variant/composer.json b/src/CoreShop/Component/Variant/composer.json index 46cb78007c..63eed5adf7 100644 --- a/src/CoreShop/Component/Variant/composer.json +++ b/src/CoreShop/Component/Variant/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, { diff --git a/src/CoreShop/Component/Wishlist/LICENSE.md b/src/CoreShop/Component/Wishlist/LICENSE.md index 4c2cc09c8a..e367bd2940 100644 --- a/src/CoreShop/Component/Wishlist/LICENSE.md +++ b/src/CoreShop/Component/Wishlist/LICENSE.md @@ -27,7 +27,7 @@ along with this program. If not, see . Alternatively, commercial and supported versions of the program - also known as Commercial Distributions - must be used in accordance with the terms and conditions contained in a separate written agreement between you and CoreShop GmbH. -For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.org. +For more information about the CoreShop Commercial License (CCL) please contact info@coreshop.com. Please see also (files in this directory): diff --git a/src/CoreShop/Component/Wishlist/composer.json b/src/CoreShop/Component/Wishlist/composer.json index 1cda3979e5..996d415c8c 100644 --- a/src/CoreShop/Component/Wishlist/composer.json +++ b/src/CoreShop/Component/Wishlist/composer.json @@ -12,8 +12,8 @@ "authors": [ { "name": "CoreShop Team", - "email": "info@coreshop.org", - "homepage": "https://www.coreshop.org/", + "email": "info@coreshop.com", + "homepage": "https://www.coreshop.com/", "role": "Developer" }, {