Skip to content

Commit

Permalink
Add support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
rpungello committed Mar 21, 2024
1 parent c0fb136 commit 52afec9
Show file tree
Hide file tree
Showing 6 changed files with 2,625 additions and 1,809 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,20 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.1, 8.2]
laravel: [9.*, 10.*]
stability: [prefer-stable]
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- php: 8.1
laravel: 11.*

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

Expand Down
19 changes: 10 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,27 @@
"authors": [
{
"name": "Rob Pungello",
"email": "rob.pungello@gmail.com",
"email": "rob@rpun.io",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"rpungello/laravel-string-template": "^2.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"rpungello/laravel-string-template": "^3.0",
"spatie/color": "^1.5",
"spatie/laravel-package-tools": "^1.9.2",
"tecnickcom/tcpdf": "^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1|^2.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
"nunomaduro/collision": "^6.0|^8.1",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^1.21|^2.0",
"pestphp/pest-plugin-laravel": "^1.1|^2.3",
"phpunit/phpunit": "^9.5|^10.0",
"spatie/laravel-ray": "^1.26",
"nesbot/carbon": "^2.72|^3.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 52afec9

Please sign in to comment.