Skip to content

Commit

Permalink
Added Laravel 11 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Mar 13, 2024
1 parent 393efea commit c5beb4f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
php: ['8.2', '8.3']
laravel: ['10.38', '10.46']
laravel: ['10.38', '10.48', '11.0']
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
steps:
- name: Checkout
Expand Down
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@
- Dropped PHP 8.0 & PHP 8.1 Support
- Dropped Laravel 9 Support
- Added PHP 8.3 Support
- Added Laravel 11 Support
- Changed minimum Laravel version to v10.38.2
- 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)
- Removed the deprecated `BuyableImageSpatieV7` and `BuyableImageSpatieV8` traits
- Upgraded to Laravel Media Library v11

## 3.x Series

Expand Down
23 changes: 0 additions & 23 deletions Traits/BuyableImageSpatieV7.php

This file was deleted.

23 changes: 0 additions & 23 deletions Traits/BuyableImageSpatieV8.php

This file was deleted.

8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.38.2",
"illuminate/support": "^10.38.2|^11.0",
"nette/schema": "^1.2",
"vanilo/contracts": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpunit/phpunit": "^10.0",
"illuminate/database": "^10.0"
},
"autoload": {
Expand All @@ -32,8 +32,8 @@
}
},
"suggest": {
"spatie/laravel-medialibrary": "Allows associating images or other files with Eloquent models (^10.0)",
"konekt/concord": "Library to write Modular Applications (^1.11)",
"spatie/laravel-medialibrary": "Allows associating images or other files with Eloquent models (^11.0)",
"konekt/concord": "Library to write Modular Applications (^1.13)",
"konekt/address": "Improves the EU membership and VAT ID validation (^3.1)"
},
"extra": {
Expand Down

0 comments on commit c5beb4f

Please sign in to comment.