Skip to content

Commit 2892906

Browse files
authored
Update dependencies: Remove support to Laravel 10 and Add tests to php8.5 (#137)
* update actions/checkout to v5 * remove support to Laravel 10 * add test to php8.5
1 parent a8198f5 commit 2892906

File tree

4 files changed

+12
-19
lines changed

4 files changed

+12
-19
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

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

.github/workflows/style-fix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

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

.github/workflows/tests.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,20 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [8.4, 8.3, 8.2, 8.1]
17-
laravel: ['10.*', '11.*', '12.*']
16+
php: [8.5, 8.4, 8.3, 8.2]
17+
laravel: ['11.*', '12.*']
1818
dependency-version: [prefer-stable]
1919
include:
20-
- laravel: 10.*
21-
testbench: 8.*
2220
- laravel: 11.*
2321
testbench: 9.*
2422
- laravel: 12.*
2523
testbench: 10.*
26-
exclude:
27-
- laravel: 11.*
28-
php: 8.1
29-
- laravel: 12.*
30-
php: 8.1
3124

3225
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3326

3427
steps:
3528
- name: Checkout code
36-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3730

3831
- name: Setup PHP
3932
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
],
2121
"license": "MIT",
2222
"require": {
23-
"php": "^8.1",
24-
"illuminate/auth": "^10.0|^11.0|^12.0",
25-
"illuminate/container": "^10.0|^11.0|^12.0",
26-
"illuminate/contracts": "^10.0|^11.0|^12.0",
27-
"illuminate/database": "^10.0|^11.0|^12.0",
23+
"php": "^8.2",
24+
"illuminate/auth": "^11.0|^12.0",
25+
"illuminate/container": "^11.0|^12.0",
26+
"illuminate/contracts": "^11.0|^12.0",
27+
"illuminate/database": "^11.0|^12.0",
2828
"laravel/serializable-closure": "^1.0|^2.0"
2929
},
3030
"require-dev": {
3131
"friendsofphp/php-cs-fixer": "^3.9",
32-
"orchestra/testbench": "^8.0|^9.0|^10.0",
33-
"phpunit/phpunit": "^9.0|^10.5|^11.5"
32+
"orchestra/testbench": "^9.0|^10.0",
33+
"phpunit/phpunit": "^10.5|^11.5"
3434
},
3535
"autoload": {
3636
"psr-4": {

0 commit comments

Comments
 (0)