Skip to content

Commit

Permalink
Adds L11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Dec 6, 2023
1 parent 0edb532 commit 37ff75e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ jobs:
fail-fast: true
matrix:
php: ['8.0', 8.1, 8.2, 8.3]
laravel: [9, 10]
laravel: [9, 10, 11]
exclude:
- php: '8.0'
laravel: 10
- php: '8.0'
laravel: 11
- php: 8.1
laravel: 11
- php: 8.3
laravel: 9

Expand All @@ -45,6 +49,6 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
env:
STRIPE_SECRET: ${{ secrets.STRIPE_SECRET }}
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/console": "^9.21|^10.0",
"illuminate/contracts": "^9.21|^10.0",
"illuminate/database": "^9.21|^10.0",
"illuminate/http": "^9.21|^10.0",
"illuminate/log": "^9.21|^10.0",
"illuminate/notifications": "^9.21|^10.0",
"illuminate/pagination": "^9.21|^10.0",
"illuminate/routing": "^9.21|^10.0",
"illuminate/support": "^9.21|^10.0",
"illuminate/view": "^9.21|^10.0",
"illuminate/console": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/database": "^11.0",
"illuminate/http": "^11.0",
"illuminate/log": "^11.0",
"illuminate/notifications": "^11.0",
"illuminate/pagination": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/support": "^11.0",
"illuminate/view": "^11.0",
"moneyphp/money": "^4.0",
"nesbot/carbon": "^2.0",
"stripe/stripe-php": "^7.39|^8.0|^9.0|^10.0",
"symfony/http-kernel": "^6.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/polyfill-intl-icu": "^1.22.1"
},
"require-dev": {
"dompdf/dompdf": "^2.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0"
"phpunit/phpunit": "^9.0|^10.4"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values.",
Expand Down

0 comments on commit 37ff75e

Please sign in to comment.