Skip to content

Commit

Permalink
chore(deps): update laravel and testbench versions
Browse files Browse the repository at this point in the history
- Updated laravel versions to include 11.*
- Added testbench version 9.*
- Updated illuminate/contracts and illuminate/support versions to include 11.0
- Updated orchestra/testbench version to include 9.0
  • Loading branch information
guanguans committed Mar 21, 2024
1 parent fc1a1c3 commit dd25e91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
os: [ ubuntu-latest ]
php: [ 7.3, 8.3 ]
dependency-version: [ prefer-stable ]
laravel: [ 7.0.*, 8.*, 9.*, 10.* ]
# laravel: [ 7.0.*, 8.*, 9.*, 10.*, 11.* ]
laravel: [ 7.0.*, 8.*, 9.*, 10.*]
include:
- laravel: 7.0.*
testbench: 5.*
Expand All @@ -21,6 +22,8 @@ jobs:
testbench: 7.*
- laravel: 10.*
testbench: 8.*
# - laravel: 11.*
# testbench: 9.*
exclude:
- php: 7.3
laravel: 9.*
Expand Down Expand Up @@ -58,7 +61,7 @@ jobs:
run: composer test-coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: false # optional (default = false)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"php": ">=7.3",
"dcat/laravel-admin": "^2.0",
"gregwar/captcha": "^1.2",
"illuminate/contracts": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0"
"illuminate/contracts": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.8",
Expand All @@ -47,7 +47,7 @@
"guanguans/monorepo-builder-worker": "^1.4",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.7",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"pestphp/pest": "^1.23 || ^2.0",
"pestphp/pest-plugin-faker": "^1.0 || ^2.0",
"pestphp/pest-plugin-laravel": "^1.2 || ^2.0",
Expand Down

0 comments on commit dd25e91

Please sign in to comment.