Skip to content

Commit

Permalink
build: add support for Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Mar 24, 2023
1 parent 5a388d0 commit fffbd72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1' ]
laravel: [ '6.*', '7.*', '8.*', '9.*' ]
laravel: [ '6.*', '7.*', '8.*', '9.*', '10.*' ]
stability: [ prefer-stable ]
exclude:
- laravel: '6.*'
Expand All @@ -19,6 +19,10 @@ jobs:
php: '8.1'
- laravel: '9.*'
php: '7.4'
- laravel: '10.*'
php: '7.4'
- laravel: '10.*'
php: '8.0'

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"description": "Data scrubber for Laravel applications",
"type": "library",
"require": {
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"phpunit/phpunit" : "^8.5|^9.5",
"orchestra/testbench" : "^4.0|^5.0|^6.0|^7.0"
"orchestra/testbench" : "^4.0|^5.0|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4" : {
Expand Down

0 comments on commit fffbd72

Please sign in to comment.