Skip to content

Commit 08c1d52

Browse files
committed
Merge branch 'main' into develop
2 parents b9bf20e + c894c6e commit 08c1d52

7 files changed

+21
-21
lines changed

.github/workflows/build-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414

1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2

.github/workflows/code-coverage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414

1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
@@ -24,7 +24,7 @@ jobs:
2424
run: composer test-coverage
2525

2626
- name: Upload Code Coverage Results
27-
uses: actions/upload-artifact@v2
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: coverage
3030
path: coverage

.github/workflows/dependabot-auto-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- name: Dependabot metadata
1515
id: metadata
16-
uses: dependabot/fetch-metadata@v1.6.0
16+
uses: dependabot/fetch-metadata@v2.2.0
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919

.github/workflows/fix-php-code-style-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
ref: ${{ github.head_ref }}
2020

2121
- name: Fix PHP code style issues
22-
uses: aglipanci/laravel-pint-action@2.3.0
22+
uses: aglipanci/laravel-pint-action@2.4
2323

2424
- name: Commit changes
2525
uses: stefanzweifel/git-auto-commit-action@v5

.github/workflows/phpstan.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.1'
19+
php-version: '8.3'
2020
coverage: none
2121

2222
- name: Install composer dependencies
23-
uses: ramsey/composer-install@v2
23+
uses: ramsey/composer-install@v3
2424

2525
- name: Run PHPStan
26-
run: ./vendor/bin/phpstan --error-format=github
26+
run: ./vendor/bin/phpstan --error-format=github

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.2, 8.1]
13-
laravel: [9.*,10.*]
12+
php: [8.3, 8.2]
13+
laravel: [10.*, 11.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
include:
16-
- laravel: 9.*
17-
testbench: 7.*
1816
- laravel: 10.*
1917
testbench: 8.*
18+
- laravel: 11.*
19+
testbench: 9.*
2020

2121
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2222

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@
2323
],
2424
"require": {
2525
"php": "^8.1",
26-
"illuminate/contracts": "^8.0|^9.0|^10.0",
27-
"illuminate/support": "^8.0|^9.0|^10.0",
28-
"illuminate/queue": "^8.0|^9.0|^10.0",
29-
"illuminate/bus": "^8.0|^9.0|^10.0",
26+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
27+
"illuminate/support": "^9.0|^10.0|^11.0",
28+
"illuminate/queue": "^8.0|^9.0|^10.0|^11.0",
29+
"illuminate/bus": "^8.0|^9.0|^10.0|^11.0",
3030
"aws/aws-sdk-php": "^3.250"
3131
},
3232
"require-dev": {
33+
"larastan/larastan": "^2.0",
3334
"laravel/pint": "^1.2",
34-
"nunomaduro/collision": "^6.3|^7.0",
35-
"nunomaduro/larastan": "^2.2",
36-
"orchestra/testbench": "^7.15|^8.0",
35+
"nunomaduro/collision": "^6.3|^7.0|^8.1",
36+
"orchestra/testbench": "^7.15|^8.0|^9.0",
3737
"phpstan/extension-installer": "^1.2",
3838
"phpstan/phpstan-deprecation-rules": "^1.0",
39-
"phpunit/phpunit": "^9.5|^10.0"
39+
"phpunit/phpunit": "^9.5|^10.0|^11.0"
4040
},
4141
"autoload": {
4242
"psr-4": {
@@ -75,4 +75,4 @@
7575
"url": "https://github.com/sponsors/palpalani"
7676
}
7777
]
78-
}
78+
}

0 commit comments

Comments
 (0)