Skip to content

Commit

Permalink
Preliminar support for laravel 10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
etrepat committed Feb 22, 2023
1 parent c0907c5 commit 625816e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,21 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [8.0, 9.0]
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [8.0, 9.0, 10.0]
exclude:
- php: 7.3
laravel: 9.0
- php: 7.3
laravel: 10.0
- php: 7.4
laravel: 9.0
- php: 7.4
laravel: 10.0
- php: 8.0
laravel: 10.0
- php: 8.2
laravel: 8.0

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

Expand Down Expand Up @@ -48,4 +56,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute test suite
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/events": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
"php": "^7.3|^8.0|^8.1",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/events": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^8.5.19|^9.5.8",
"psy/psysh": "@stable",
"squizlabs/php_codesniffer": "*",
"illuminate/console": "^8.0|^9.0",
"illuminate/filesystem": "^8.0|^9.0"
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 625816e

Please sign in to comment.