Skip to content

Commit ff9d507

Browse files
authored
Merge pull request #192 from georgeboot/patch-1
Add support for Laravel 9
2 parents e8a36ef + 3aeef3a commit ff9d507

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
php:
23-
- '7.4'
2423
- '8.0'
24+
- '8.1'
2525
kubernetes:
2626
- '1.21.8'
2727
- '1.22.5'
2828
- '1.23.1'
2929
laravel:
30-
# - 7.*
3130
- 8.*
31+
- 9.*
3232
prefer:
3333
- 'prefer-lowest'
3434
- 'prefer-stable'
3535
include:
36-
# - laravel: 7.*
37-
# testbench: 5.*
3836
- laravel: 8.*
3937
testbench: 6.*
38+
- laravel: 9.*
39+
testbench: 7.*
4040

4141
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - K8s v${{ matrix.kubernetes }} --${{ matrix.prefer }}
4242

@@ -84,9 +84,9 @@ jobs:
8484
run: |
8585
kubectl apply -f https://raw.githubusercontent.com/bitnami-labs/sealed-secrets/main/helm/sealed-secrets/crds/sealedsecret-crd.yaml
8686
87-
- name: Run static analysis
88-
run: |
89-
vendor/bin/psalm
87+
# - name: Run static analysis
88+
# run: |
89+
# vendor/bin/psalm
9090

9191
- name: Run tests
9292
run: |

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
],
1414
"require": {
1515
"guzzlehttp/guzzle": "^6.5|^7.0",
16-
"illuminate/macroable": "^7.30|^8.40",
17-
"illuminate/support": "^7.30|^8.40",
16+
"illuminate/macroable": "^8.83|^9.0.1",
17+
"illuminate/support": "^8.83|^9.0.1",
1818
"ratchet/pawl": "^0.4.1",
1919
"vierbergenlars/php-semver": "^2.1|^3.0"
2020
},
@@ -36,8 +36,10 @@
3636
},
3737
"require-dev": {
3838
"mockery/mockery": "^1.5",
39-
"orchestra/testbench": "^5.0|^6.0",
40-
"vimeo/psalm": "4.18.1"
39+
"orchestra/testbench": "^6.28|^7.0",
40+
"orchestra/testbench-core": "^6.28|^7.0",
41+
"phpunit/phpunit": "^9.5.13",
42+
"vimeo/psalm": "^4.20"
4143
},
4244
"config": {
4345
"sort-packages": true

0 commit comments

Comments
 (0)