Skip to content

Commit

Permalink
upgrade to latest goodies
Browse files Browse the repository at this point in the history
  • Loading branch information
nagi1 committed Jul 20, 2024
1 parent 2212abd commit 17823b2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 18 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0, 7.4]
laravel: [8.*, 7.*]
php: [8.3, 8.1]
laravel: [^9.0, ^10.0, ^11.0]
stability: [prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 7.*
testbench: ^5.0
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0

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

Expand Down
27 changes: 15 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@
}
],
"require": {
"php": "^7.4|^8.3",
"guzzlehttp/guzzle": "^7.4",
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
"guzzlehttp/guzzle": "^7.9.1",
"illuminate/contracts": "^11|^10|^9.0|^8.37|^7.0",
"phpseclib/phpseclib": "^3.0.34",
"phpseclib/phpseclib2_compat": "~1.0",
"spatie/laravel-package-tools": "^1.4.3"
"phpseclib/phpseclib": "^3.0.39",
"phpseclib/phpseclib2_compat": "^1.0.6",
"spatie/laravel-package-tools": "^1.12.1"
},
"require-dev": {
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-laravel": "^1.1",
"spatie/laravel-ray": "^1.23",
"vimeo/psalm": "^4.8"
"nunomaduro/collision": "^5.11",
"orchestra/testbench": "^6.45",
"pestphp/pest": "^1.23.1",
"pestphp/pest-plugin-laravel": "^1.4",
"spatie/laravel-ray": "^1.37.1",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
Expand All @@ -50,7 +50,10 @@
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
Expand Down

0 comments on commit 17823b2

Please sign in to comment.