Skip to content

Commit ecb36d4

Browse files
committedMar 16, 2024·
bump dependencies
1 parent e21b818 commit ecb36d4

File tree

2 files changed

+16
-20
lines changed

2 files changed

+16
-20
lines changed
 

‎.github/workflows/run-tests.yml

+10-14
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: run-tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
67
pull_request:
7-
branches: [main]
8+
branches:
9+
- main
810

911
jobs:
1012
test:
@@ -13,23 +15,17 @@ jobs:
1315
fail-fast: true
1416
matrix:
1517
os: [ubuntu-latest, windows-latest]
16-
php: [8.2, 8.1, 8.0]
17-
laravel: [10.*, 9.*, 8.*]
18+
php: [8.1, 8.2, 8.3]
19+
laravel: [10.*, 11.*]
1820
stability: [prefer-lowest, prefer-stable]
1921
include:
2022
- laravel: 10.*
2123
testbench: ^8.0.0
22-
- laravel: 9.*
23-
testbench: ^7.0.0
24-
- laravel: 8.*
25-
testbench: ^6.23
24+
- laravel: 11.*
25+
testbench: ^9.0
2626
exclude:
27-
- laravel: 8.*
28-
php: 8.2
29-
- laravel: 9.*
30-
php: 8.2
31-
- laravel: 10.*
32-
php: 8.0
27+
- laravel: 11.*
28+
php: 8.1
3329

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

‎composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"require": {
1919
"php": "^8.0|^8.1",
2020
"spatie/laravel-package-tools": "^1.9.2",
21-
"illuminate/console": "^8.75|^9.0|^10.0",
22-
"illuminate/contracts": "^8.0|^9.0|^10.0"
21+
"illuminate/console": "^8.75|^9.0|^10.0|^11.0",
22+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
2323
},
2424
"require-dev": {
25-
"nunomaduro/collision": "^5.10|^6.1|^7.0",
25+
"nunomaduro/collision": "^5.10|^6.1|^7.0|^8.1",
2626
"nunomaduro/larastan": "^1.0|^2.0",
27-
"orchestra/testbench": "^6.23|^7.0.0|^8.0",
28-
"pestphp/pest": "^1.22",
29-
"pestphp/pest-plugin-laravel": "^1.3",
27+
"orchestra/testbench": "^8.0|^9.0",
28+
"pestphp/pest": "^1.22|^2.34",
29+
"pestphp/pest-plugin-laravel": "^1.3|^2.3",
3030
"phpstan/extension-installer": "^1.2",
3131
"phpstan/phpstan-deprecation-rules": "^1.0",
3232
"phpstan/phpstan-phpunit": "^1.0",

0 commit comments

Comments
 (0)
Please sign in to comment.