Skip to content

Commit

Permalink
Merge pull request #27 from akalongman/master
Browse files Browse the repository at this point in the history
Add Laravel 11 support
  • Loading branch information
telkins authored Aug 26, 2024
2 parents a877776 + f81f358 commit 94a8482
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1]
laravel: [10.*]
php: [8.2]
laravel: [11.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0",
"spatie/laravel-data": "^3.2"
"php": "^8.2",
"illuminate/contracts": "^11.0",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0",
"spatie/laravel-data": "^4.6"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
Expand All @@ -55,4 +55,4 @@
]
}
}
}
}

0 comments on commit 94a8482

Please sign in to comment.