Skip to content

Commit

Permalink
drop support php7.4 & added support for laravel 11 (#12)
Browse files Browse the repository at this point in the history
* drop support php7.4 & added support for laravel 11
* removed Unknown option "--verbose" on phpunit
  • Loading branch information
swapnilsarwe authored Feb 27, 2024
1 parent 294ad3d commit f978b08
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
21 changes: 13 additions & 8 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,17 +11,22 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, '8.0', 8.1, 8.2]
laravel: [8, 9, 10]
php: ['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: '8.0'
laravel: 10
- php: '8.0'
laravel: 11
- php: 8.1
laravel: 11
- php: 8.2
laravel: 8
- php: 8.3
laravel: 8
- php: 8.3
laravel: 9


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

Expand All @@ -43,4 +48,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
}
],
"require": {
"php": "^7.4|^8.0",
"blade-ui-kit/blade-icons": "^1.1",
"illuminate/support": "^8.0|^9.0|^10.0"
"php": "^8.0",
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"codeat3/blade-icon-generation-helpers": "^0.3",
"codeat3/blade-icon-generation-helpers": "^0.7",
"codeat3/phpcs-styles": "^1.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f978b08

Please # to comment.