Skip to content

Commit

Permalink
Merge pull request #192 from georgeboot/patch-1
Browse files Browse the repository at this point in the history
Add support for Laravel 9
  • Loading branch information
rennokki authored Feb 10, 2022
2 parents e8a36ef + 3aeef3a commit ff9d507
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ jobs:
fail-fast: false
matrix:
php:
- '7.4'
- '8.0'
- '8.1'
kubernetes:
- '1.21.8'
- '1.22.5'
- '1.23.1'
laravel:
# - 7.*
- 8.*
- 9.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
# - laravel: 7.*
# testbench: 5.*
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*

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

Expand Down Expand Up @@ -84,9 +84,9 @@ jobs:
run: |
kubectl apply -f https://raw.githubusercontent.com/bitnami-labs/sealed-secrets/main/helm/sealed-secrets/crds/sealedsecret-crd.yaml
- name: Run static analysis
run: |
vendor/bin/psalm
# - name: Run static analysis
# run: |
# vendor/bin/psalm

- name: Run tests
run: |
Expand Down
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
],
"require": {
"guzzlehttp/guzzle": "^6.5|^7.0",
"illuminate/macroable": "^7.30|^8.40",
"illuminate/support": "^7.30|^8.40",
"illuminate/macroable": "^8.83|^9.0.1",
"illuminate/support": "^8.83|^9.0.1",
"ratchet/pawl": "^0.4.1",
"vierbergenlars/php-semver": "^2.1|^3.0"
},
Expand All @@ -36,8 +36,10 @@
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^5.0|^6.0",
"vimeo/psalm": "4.18.1"
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.13",
"vimeo/psalm": "^4.20"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit ff9d507

Please sign in to comment.