Skip to content

Commit

Permalink
Laravel 11 (#223)
Browse files Browse the repository at this point in the history
* Laravel 11

* Update tests.yml

* Update tests.yml

* Update tests.yml

* Update composer.json

* Update composer.json

* Update composer.json

* Update tests.yml

* Update tests.yml

* Update tests.yml

---------

Co-authored-by: Dries Vints <dries@vints.be>
  • Loading branch information
robsontenorio and driesvints authored Feb 7, 2024
1 parent 45e6bde commit 62f3929
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: Tests

on:
push:
Expand All @@ -17,14 +17,20 @@ jobs:
fail-fast: true
matrix:
php: [7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [8, 9, 10]
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'
laravel: 11
- php: 8.1
laravel: 11
- php: 8.2
laravel: 8
- php: 8.3
Expand All @@ -51,15 +57,15 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit

windows:
runs-on: windows-latest

strategy:
fail-fast: true
matrix:
php: [8.2]
php: [8.3]
laravel: [10]

name: Windows - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
Expand All @@ -81,4 +87,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/view": "^8.0|^9.0|^10.0",
"symfony/console": "^5.3|^6.0",
"symfony/finder": "^5.3|^6.0"
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/view": "^8.0|^9.0|^10.0|^11.0",
"symfony/console": "^5.3|^6.0|^7.0",
"symfony/finder": "^5.3|^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0"
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5|^11.0"
},
"bin": [
"bin/blade-icons-generate"
Expand Down

0 comments on commit 62f3929

Please sign in to comment.