Skip to content

Commit d2d8ef4

Browse files
authored
Support Laravel 11 and update dependencies (#629)
* Support Laravel 11 and update dependencies * Remove forced laravel v11
1 parent efe65c5 commit d2d8ef4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/shellcheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Differential ShellCheck
20-
uses: redhat-plumbers-in-action/differential-shellcheck@v3
20+
uses: redhat-plumbers-in-action/differential-shellcheck@v5
2121
with:
2222
severity: warning
2323
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Setup PHP
2727
uses: shivammathur/setup-php@v2

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
],
1616
"require": {
1717
"php": "^8.0",
18-
"illuminate/console": "^8.0|^9.0|^10.0",
19-
"illuminate/contracts": "^8.0|^9.0|^10.0",
20-
"illuminate/support": "^8.0|^9.0|^10.0",
21-
"symfony/yaml": "^6.0"
18+
"illuminate/console": "^9.0|^10.0|^11.0",
19+
"illuminate/contracts": "^9.0|^10.0|^11.0",
20+
"illuminate/support": "^9.0|^10.0|^11.0",
21+
"symfony/yaml": "^6.0|^7.0"
2222
},
2323
"bin": [
2424
"bin/sail"
@@ -44,7 +44,7 @@
4444
"minimum-stability": "dev",
4545
"prefer-stable": true,
4646
"require-dev": {
47-
"orchestra/testbench": "^6.0|^7.0|^8.0",
47+
"orchestra/testbench": "^7.0|^8.0|^9.0",
4848
"phpstan/phpstan": "^1.10"
4949
}
5050
}

0 commit comments

Comments
 (0)