From 21cd075a0219692f273613920d9daca6cd2c6eb9 Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Thu, 4 Apr 2024 14:27:05 +0300 Subject: [PATCH] Changed minimum Laravel version to v10.43 - Required due the usage of `Schema::hasIndex()` --- .github/workflows/tests.yml | 2 +- Changelog.md | 2 +- composer.json | 2 +- src/Adjustments/.github/workflows/tests.yml | 2 +- src/Adjustments/Changelog.md | 2 +- src/Adjustments/composer.json | 2 +- src/Cart/.github/workflows/tests.yml | 2 +- src/Cart/Changelog.md | 2 +- src/Cart/composer.json | 2 +- src/Category/.github/workflows/tests.yml | 2 +- src/Category/Changelog.md | 2 +- src/Category/composer.json | 2 +- src/Channel/.github/workflows/tests.yml | 2 +- src/Channel/Changelog.md | 2 +- src/Checkout/.github/workflows/tests.yml | 2 +- src/Checkout/Changelog.md | 2 +- src/Checkout/composer.json | 2 +- src/Contracts/.github/workflows/tests.yml | 2 +- src/Contracts/Changelog.md | 2 +- src/Contracts/composer.json | 2 +- src/Links/.github/workflows/tests.yml | 2 +- src/Links/Changelog.md | 2 +- src/Links/composer.json | 2 +- src/MasterProduct/.github/workflows/tests.yml | 2 +- src/MasterProduct/Changelog.md | 2 +- src/MasterProduct/composer.json | 2 +- src/Order/.github/workflows/tests.yml | 2 +- src/Order/Changelog.md | 2 +- src/Order/composer.json | 2 +- src/Payment/.github/workflows/tests.yml | 2 +- src/Payment/Changelog.md | 2 +- src/Payment/composer.json | 2 +- src/Product/.github/workflows/tests.yml | 2 +- src/Product/Changelog.md | 2 +- src/Product/composer.json | 2 +- src/Properties/.github/workflows/tests.yml | 2 +- src/Properties/Changelog.md | 2 +- src/Properties/composer.json | 2 +- src/Shipment/.github/workflows/tests.yml | 2 +- src/Shipment/Changelog.md | 2 +- src/Shipment/composer.json | 2 +- src/Support/.github/workflows/tests.yml | 2 +- src/Support/Changelog.md | 2 +- src/Support/composer.json | 2 +- src/Taxes/.github/workflows/tests.yml | 2 +- src/Taxes/Changelog.md | 2 +- src/Taxes/composer.json | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c331d83..2f1727a5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/Changelog.md b/Changelog.md index 0f819724..b7d582f3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Upgraded to Konekt Address, Customer and User modules to v3 - Upgraded to Laravel Media Library v11 diff --git a/composer.json b/composer.json index 55473456..37fa1b32 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "ext-json": "*", "ext-pdo": "*", "doctrine/dbal": "^3.5.1", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "konekt/enum": "^4.2", "konekt/concord": "^1.13", "spatie/laravel-medialibrary": "^11.0", diff --git a/src/Adjustments/.github/workflows/tests.yml b/src/Adjustments/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Adjustments/.github/workflows/tests.yml +++ b/src/Adjustments/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Adjustments/Changelog.md b/src/Adjustments/Changelog.md index 8de7930d..29ea3b03 100644 --- a/src/Adjustments/Changelog.md +++ b/src/Adjustments/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Added the `SimpleTaxDeduction` adjuster - Added the `AdjusterAliases` class that for decoupling FQCNs from the database diff --git a/src/Adjustments/composer.json b/src/Adjustments/composer.json index 76d7f806..0edb01f8 100644 --- a/src/Adjustments/composer.json +++ b/src/Adjustments/composer.json @@ -21,7 +21,7 @@ "konekt/concord": "^1.13", "konekt/enum": "^4.2", "konekt/enum-eloquent": "^1.9", - "laravel/framework": "^10.38.2|^11.0" + "laravel/framework": "^10.43|^11.0" }, "require-dev": { "phpunit/phpunit": "^10.0", diff --git a/src/Cart/.github/workflows/tests.yml b/src/Cart/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Cart/.github/workflows/tests.yml +++ b/src/Cart/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Cart/Changelog.md b/src/Cart/Changelog.md index 9d971672..782a0986 100644 --- a/src/Cart/Changelog.md +++ b/src/Cart/Changelog.md @@ -11,7 +11,7 @@ - Added PHP 8.3 Support - Added Laravel 11 Support - Added Cart item configuration support (different configurations constitute separate cart items) to the `Cart::addItem()` method -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Removed the throwing of `CartUpdated` event when destroying a cart (`CartDeleting` and `CartDeleted` remains) - BC: Changed the `CheckoutSubjectItem` interface into Configurable & Schematized diff --git a/src/Cart/composer.json b/src/Cart/composer.json index 6d5ab320..0d1acb33 100644 --- a/src/Cart/composer.json +++ b/src/Cart/composer.json @@ -20,7 +20,7 @@ "php": "^8.2", "konekt/concord": "^1.13", "konekt/enum": "^4.2", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" }, diff --git a/src/Category/.github/workflows/tests.yml b/src/Category/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Category/.github/workflows/tests.yml +++ b/src/Category/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Category/Changelog.md b/src/Category/Changelog.md index 0aea7df8..fa0dbc72 100644 --- a/src/Category/Changelog.md +++ b/src/Category/Changelog.md @@ -9,7 +9,7 @@ - Dropped Laravel 9 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 ## 3.x Series diff --git a/src/Category/composer.json b/src/Category/composer.json index f4479901..85fb7d9a 100644 --- a/src/Category/composer.json +++ b/src/Category/composer.json @@ -20,7 +20,7 @@ "php": "^8.2", "konekt/concord": "^1.13", "cviebrock/eloquent-sluggable": "^10.0|^11.0", - "laravel/framework": "^10.38.2|^11.0" + "laravel/framework": "^10.43|^11.0" }, "require-dev": { "phpunit/phpunit": "^10.0", diff --git a/src/Channel/.github/workflows/tests.yml b/src/Channel/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Channel/.github/workflows/tests.yml +++ b/src/Channel/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Channel/Changelog.md b/src/Channel/Changelog.md index 39241157..870301eb 100644 --- a/src/Channel/Changelog.md +++ b/src/Channel/Changelog.md @@ -10,7 +10,7 @@ - Added PHP 8.3 Support - Added Laravel 11 Support - Added the vanilo/support dependency -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Added the following fields to the Channel model/table: - `currency` - `language` diff --git a/src/Checkout/.github/workflows/tests.yml b/src/Checkout/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Checkout/.github/workflows/tests.yml +++ b/src/Checkout/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Checkout/Changelog.md b/src/Checkout/Changelog.md index eaf13208..ff357353 100644 --- a/src/Checkout/Changelog.md +++ b/src/Checkout/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Added the `BillpayerChanged` event - BC: Removed the following traits: diff --git a/src/Checkout/composer.json b/src/Checkout/composer.json index 292b2a95..0c637dca 100644 --- a/src/Checkout/composer.json +++ b/src/Checkout/composer.json @@ -20,7 +20,7 @@ "php": "^8.2", "konekt/concord": "^1.13", "konekt/enum": "^4.2", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/support": "^4.0", "vanilo/contracts": "^4.0" }, diff --git a/src/Contracts/.github/workflows/tests.yml b/src/Contracts/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Contracts/.github/workflows/tests.yml +++ b/src/Contracts/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Contracts/Changelog.md b/src/Contracts/Changelog.md index 4ff54102..23f82bc8 100644 --- a/src/Contracts/Changelog.md +++ b/src/Contracts/Changelog.md @@ -9,7 +9,7 @@ - Dropped Laravel 9 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Added the `Stockable` interface - Added the `Merchant` interface - Added the `Schematized` interface diff --git a/src/Contracts/composer.json b/src/Contracts/composer.json index dd2a85f4..5ded9192 100644 --- a/src/Contracts/composer.json +++ b/src/Contracts/composer.json @@ -18,7 +18,7 @@ ], "require": { "php": "^8.2", - "illuminate/support": "^10.38.2|^11.0", + "illuminate/support": "^10.43|^11.0", "nette/schema": "^1.2.5" }, "require-dev": { diff --git a/src/Links/.github/workflows/tests.yml b/src/Links/.github/workflows/tests.yml index cdac5729..9bc9216c 100644 --- a/src/Links/.github/workflows/tests.yml +++ b/src/Links/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Links/Changelog.md b/src/Links/Changelog.md index 247bf84a..5700c9d0 100644 --- a/src/Links/Changelog.md +++ b/src/Links/Changelog.md @@ -9,7 +9,7 @@ - Dropped Laravel 9 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 ## 3.x Series diff --git a/src/Links/composer.json b/src/Links/composer.json index 8cc29c45..4cee72b9 100644 --- a/src/Links/composer.json +++ b/src/Links/composer.json @@ -19,7 +19,7 @@ "require": { "php": "^8.2", "cviebrock/eloquent-sluggable": "^10.0|^11.0", - "illuminate/support": "^10.38|^11.0", + "illuminate/support": "^10.43|^11.0", "konekt/concord": "^1.13" }, "require-dev": { diff --git a/src/MasterProduct/.github/workflows/tests.yml b/src/MasterProduct/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/MasterProduct/.github/workflows/tests.yml +++ b/src/MasterProduct/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/MasterProduct/Changelog.md b/src/MasterProduct/Changelog.md index 9d0a9be1..0b0bab68 100644 --- a/src/MasterProduct/Changelog.md +++ b/src/MasterProduct/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Added the `Stockable` interface to the `MasterProductVariant` Model - Added the `backorder` field to product variants diff --git a/src/MasterProduct/composer.json b/src/MasterProduct/composer.json index 90c869a0..ccd2fdf9 100644 --- a/src/MasterProduct/composer.json +++ b/src/MasterProduct/composer.json @@ -22,7 +22,7 @@ "konekt/concord": "^1.13", "konekt/enum": "^4.2", "konekt/enum-eloquent": "^1.9", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/product": "^4.0", "vanilo/support": "^4.0" diff --git a/src/Order/.github/workflows/tests.yml b/src/Order/.github/workflows/tests.yml index cdac5729..9bc9216c 100644 --- a/src/Order/.github/workflows/tests.yml +++ b/src/Order/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Order/Changelog.md b/src/Order/Changelog.md index 961cdb3c..b66e8117 100644 --- a/src/Order/Changelog.md +++ b/src/Order/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Upgraded to Konekt Address and User modules to v3 - Added the `currency` field to the orders table diff --git a/src/Order/composer.json b/src/Order/composer.json index 974850b5..41d35844 100644 --- a/src/Order/composer.json +++ b/src/Order/composer.json @@ -23,7 +23,7 @@ "konekt/enum": "^4.2", "konekt/laravel-migration-compatibility": "^1.6", "konekt/user": "^3.0", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" }, diff --git a/src/Payment/.github/workflows/tests.yml b/src/Payment/.github/workflows/tests.yml index 85869c21..09259d2c 100644 --- a/src/Payment/.github/workflows/tests.yml +++ b/src/Payment/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Payment/Changelog.md b/src/Payment/Changelog.md index 28c22d9e..598a556f 100644 --- a/src/Payment/Changelog.md +++ b/src/Payment/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - BC: Added the `getRemoteId()` method to the `PaymentRequest` interface - BC: Added the following methods to the `Payment` interface: diff --git a/src/Payment/composer.json b/src/Payment/composer.json index 3abbeb7f..2c6899bb 100644 --- a/src/Payment/composer.json +++ b/src/Payment/composer.json @@ -20,7 +20,7 @@ "php": "^8.2", "konekt/concord": "^1.13", "konekt/enum": "^4.2", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" }, diff --git a/src/Product/.github/workflows/tests.yml b/src/Product/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Product/.github/workflows/tests.yml +++ b/src/Product/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Product/Changelog.md b/src/Product/Changelog.md index f49abdd4..6961ed4a 100644 --- a/src/Product/Changelog.md +++ b/src/Product/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Added the `Stockable` interface to the Product Model - Added the `backorder` field to products diff --git a/src/Product/composer.json b/src/Product/composer.json index 83da940c..580f04a4 100644 --- a/src/Product/composer.json +++ b/src/Product/composer.json @@ -21,7 +21,7 @@ "konekt/concord": "^1.13", "konekt/enum": "^4.2", "konekt/enum-eloquent": "^1.9", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0", "cviebrock/eloquent-sluggable": "^10.0|^11.0" diff --git a/src/Properties/.github/workflows/tests.yml b/src/Properties/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Properties/.github/workflows/tests.yml +++ b/src/Properties/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Properties/Changelog.md b/src/Properties/Changelog.md index 4e2df804..6d71f35c 100644 --- a/src/Properties/Changelog.md +++ b/src/Properties/Changelog.md @@ -10,7 +10,7 @@ - Dropped Laravel 9 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 ## 3.x Series diff --git a/src/Properties/composer.json b/src/Properties/composer.json index 2ff727f2..75ea04df 100644 --- a/src/Properties/composer.json +++ b/src/Properties/composer.json @@ -19,7 +19,7 @@ "require": { "php": "^8.2", "konekt/concord": "^1.13", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "cviebrock/eloquent-sluggable": "^10.0|^11.0" }, "require-dev": { diff --git a/src/Shipment/.github/workflows/tests.yml b/src/Shipment/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Shipment/.github/workflows/tests.yml +++ b/src/Shipment/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Shipment/Changelog.md b/src/Shipment/Changelog.md index 5d35c010..dc82314c 100644 --- a/src/Shipment/Changelog.md +++ b/src/Shipment/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - Added `isZoneRestricted()` & `isNotZoneRestricted()` helper methods to the `ShippingMethod` class - BC: Changed the ShippingFeeCalculator, Carrier and Shipment interfaces to Configurable & Schematized diff --git a/src/Shipment/composer.json b/src/Shipment/composer.json index 7f725be1..6aa7dee1 100644 --- a/src/Shipment/composer.json +++ b/src/Shipment/composer.json @@ -22,7 +22,7 @@ "konekt/concord": "^1.13", "konekt/enum": "^4.2", "konekt/laravel-migration-compatibility": "^1.6", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" }, diff --git a/src/Support/.github/workflows/tests.yml b/src/Support/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Support/.github/workflows/tests.yml +++ b/src/Support/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Support/Changelog.md b/src/Support/Changelog.md index c588e89b..a7b8f468 100644 --- a/src/Support/Changelog.md +++ b/src/Support/Changelog.md @@ -9,7 +9,7 @@ - Dropped Laravel 9 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Added the `Features` accessor class, which is a syntactic sugar for areas of the configuration - Added the `Merchant` DTO class, that complies with the common, v4 `Merchant` interface - Added the `Address` DTO class (implements the `Address` interface) diff --git a/src/Support/composer.json b/src/Support/composer.json index ada8402d..86bcfe18 100644 --- a/src/Support/composer.json +++ b/src/Support/composer.json @@ -18,7 +18,7 @@ ], "require": { "php": "^8.2", - "illuminate/support": "^10.38.2|^11.0", + "illuminate/support": "^10.43|^11.0", "nette/schema": "^1.2", "vanilo/contracts": "^4.0" }, diff --git a/src/Taxes/.github/workflows/tests.yml b/src/Taxes/.github/workflows/tests.yml index 4248d026..47cce191 100644 --- a/src/Taxes/.github/workflows/tests.yml +++ b/src/Taxes/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/src/Taxes/Changelog.md b/src/Taxes/Changelog.md index 15c574a1..a13ad3ef 100644 --- a/src/Taxes/Changelog.md +++ b/src/Taxes/Changelog.md @@ -10,7 +10,7 @@ - Upgraded to Konekt Address v3 - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed the minimal Enum requirement to v4.2 - BC: Changed the `TaxRate` interface so that it extends the `Configurable` interface - BC: Added the `findOneByZoneAndCategory` static method to the `TaxRate` interface diff --git a/src/Taxes/composer.json b/src/Taxes/composer.json index 93542095..9ebba751 100644 --- a/src/Taxes/composer.json +++ b/src/Taxes/composer.json @@ -22,7 +22,7 @@ "konekt/address": "^3.0", "konekt/enum": "^4.2", "konekt/laravel-migration-compatibility": "^1.6", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "nette/schema": "^1.2.5", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0"