Skip to content

Commit

Permalink
Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Mar 12, 2024
1 parent 17b6f87 commit fcc84d7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: 8.3
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, intl, iconv
coverage: pcov

Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install dependencies
env:
COMPOSER_DISCARD_CHANGES: true
run: composer require --no-suggest --no-progress --no-interaction --prefer-dist --update-with-all-dependencies "laravel/framework:^8.0" "orchestra/testbench:^6.0"
run: composer require --no-suggest --no-progress --no-interaction --prefer-dist --update-with-all-dependencies "laravel/framework:^11.0" "orchestra/testbench:9.x-dev"

- name: Run and publish code coverage
uses: paambaati/[email protected]
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,26 @@ jobs:
strategy:
matrix:
dependency-version: [ stable, lowest ]
laravel: [ ^8.79, ^9.50.2, 10.* ]
php: [ 8.0, 8.1, 8.2 ]
laravel: [ ^8.79, ^9.50.2, 10.*, 11.* ]
php: [ 8.0, 8.1, 8.2, 8.3 ]
include:
- laravel: ^8.79
testbench: ^6.24
- laravel: ^9.50.2
testbench: ^7.22
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.x-dev
exclude:
- php: 8.3
laravel: ^8.79
- php: 8.2
laravel: ^8.79
- php: 8.1
laravel: 11.*
- php: 8.0
laravel: 11.*
- php: 8.0
laravel: 10.*

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"type": "library",
"license": "MIT",
"require": {
"illuminate/support": "~5.8.28|^6|^7|^8|^9|^10|11.x-dev|dev-master",
"illuminate/view": "~5.8.28|^6|^7|^8|^9|^10|11.x-dev|dev-master",
"illuminate/events": "~5.8.28|^6|^7|^8|^9|^10|11.x-dev|dev-master",
"illuminate/support": "~5.8.28|^6|^7|^8|^9|^10|^11|12.x-dev|dev-master",
"illuminate/view": "~5.8.28|^6|^7|^8|^9|^10|^11|12.x-dev|dev-master",
"illuminate/events": "~5.8.28|^6|^7|^8|^9|^10|^11|12.x-dev|dev-master",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^6.24|^7.10|^8|9.x-dev|10.x-dev|dev-master",
"orchestra/testbench": "^6.24|^7.10|^8|^9|9.x-dev|10.x-dev|dev-master",
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.1",
"guzzlehttp/guzzle": "~6.0|~7.0",
Expand Down

0 comments on commit fcc84d7

Please sign in to comment.