Skip to content

Commit d1e8640

Browse files
committed
Update dependencies
1 parent 17838c5 commit d1e8640

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Diff for: .github/workflows/tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ jobs:
77
# not self-hosted, because it's a public repo
88
runs-on: ubuntu-latest
99

10-
# we want to run it on combination of PHP 8.1+ and Laravel 9.1+
10+
# we want to run it on combination of PHP and Laravel versions
1111
strategy:
1212
fail-fast: false
1313
matrix:
1414
php: ['8.2', '8.3']
15-
laravel: ['^10.0', '^11.0']
15+
laravel: ['^10.0', '^11.0', '^12.0']
1616

1717
steps:
1818
- name: Checkout the repo
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2

Diff for: composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
],
2222
"require": {
2323
"php": "^8.2",
24-
"illuminate/contracts": "^10.0 | ^11.0",
25-
"illuminate/console": "^10.0 | ^11.0",
26-
"illuminate/database": "^10.0 | ^11.0",
27-
"illuminate/support": "^10.0 | ^11.0"
24+
"illuminate/contracts": "^10.0 | ^11.0 | ^12.0",
25+
"illuminate/console": "^10.0 | ^11.0 | ^12.0",
26+
"illuminate/database": "^10.0 | ^11.0 | ^12.0",
27+
"illuminate/support": "^10.0 | ^11.0 | ^12.0"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^8.0 | ^9.0",
31-
"spatie/fork": "^1.1"
30+
"orchestra/testbench": "^8.0 | ^9.0 | ^10.0",
31+
"spatie/fork": "^1.2"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)