Skip to content

Commit

Permalink
Support Laravel 11 (#19)
Browse files Browse the repository at this point in the history
Updated composer.json and README.md

---------

Co-authored-by: Martin <[email protected]>
Co-authored-by: Martin <[email protected]>
  • Loading branch information
3 people authored Mar 21, 2024
1 parent 6630810 commit c87db41
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2 ]
laravel: [ ^10.0 ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ ^10.0, ^11.0 ]
exclude:
- php: 8.1
laravel: ^11.0

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ started using SemVer.
For this reason, if you want a particular version of the Healthicons.org package then you need to look at
the following table and use the correct version for this package.

| Blade Health Icons | Healthicons.org |
|--------------------|-----------------|
| 3.0.0 | 1.0.0 |
| 3.0.1 | 1.0.1 |
| Blade Health Icons | Healthicons.org | Laravel |
|--------------------|-----------------|----------|
| 3.0.0 | 1.0.0 | ^9, ^10 |
| 3.0.1 | 1.0.1 | ^9, ^10 |
| 3.0.2 | 1.0.1 | ^10, ^11 |

## Blade Icons

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
}
],
"require": {
"php": "^8.1|^8.2",
"blade-ui-kit/blade-icons": "^1.5",
"illuminate/support": "^10.0"
"php": "^8.1|^8.2|^8.3",
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
"phpunit/phpunit": "^10.0|^11.0",
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit c87db41

Please sign in to comment.