diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 744ca08..c4c2790 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,8 +8,8 @@ jobs: timeout-minutes: 10 strategy: matrix: - php: ['8.2'] - laravel: ['10.0', '10.46'] + php: ['8.2', '8.3'] + laravel: ['10.38', '10.46'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/Changelog.md b/Changelog.md index 20ed145..13e1a9c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,8 @@ - Dropped PHP 8.0 & PHP 8.1 Support - Dropped Laravel 9 Support - Dropped Enum v3 Support +- Added PHP 8.3 Support +- Changed minimum Laravel version to v10.38.2 - Changed minimal Enum requirement to v4.1 - Added `isZoneRestricted()` & `isNotZoneRestricted()` helper methods to the `ShippingMethod` class - BC: Changed the ShippingFeeCalculator, Carrier and Shipment interfaces to Configurable & Schematized diff --git a/composer.json b/composer.json index a82dd81..e683b94 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "konekt/concord": "^1.13", "konekt/enum": "^4.1", "konekt/laravel-migration-compatibility": "^1.6", - "laravel/framework": "^10.0", + "laravel/framework": "^10.38.2", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" },