Skip to content

Commit

Permalink
laravel 11 support and keeping php 7.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnilsarwe committed Feb 28, 2024
1 parent 29370fb commit e1550ca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Tests

on:
push:
# pull_request:
pull_request:

jobs:
tests:
Expand All @@ -11,9 +11,15 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0', 8.1, 8.2, 8.3]
php: [7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [8, 9, 10, 11]
exclude:
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: 7.4
laravel: 11
- php: '8.0'
laravel: 10
- php: '8.0'
Expand All @@ -27,7 +33,6 @@ jobs:
- php: 8.3
laravel: 9


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


Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
}
],
"require": {
"php": "^8.0",
"blade-ui-kit/blade-icons": "^1.6",
"php": "^7.4|^8.0",
"blade-ui-kit/blade-icons": "^1.1",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"codeat3/blade-icon-generation-helpers": "^0.7",
"codeat3/blade-icon-generation-helpers": "0.8",
"codeat3/phpcs-styles": "^1.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5|^11.0"
Expand Down

0 comments on commit e1550ca

Please sign in to comment.