Skip to content

Commit dc1ce50

Browse files
authored
Add support for Laravel 10 (#430)
1 parent 2385427 commit dc1ce50

File tree

3 files changed

+11
-37
lines changed

3 files changed

+11
-37
lines changed

.github/workflows/composer-normalize.yml

-26
This file was deleted.

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
php: ['8.0', '8.1']
9-
laravel: [9.*]
8+
php: ['8.1']
9+
laravel: [10.*]
1010
dependency-version: [prefer-stable]
1111
include:
12-
- laravel: 9.*
13-
testbench: 7.*
12+
- laravel: 10.*
13+
testbench: 8.*
1414
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
1515
steps:
1616
- name: Checkout code

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
"source": "https://github.com/codedge/laravel-selfupdater"
2626
},
2727
"require": {
28-
"php": "^8.0 || ^8.1",
28+
"php": "^8.1",
2929
"ext-json": "*",
3030
"ext-zip": "*",
3131
"guzzlehttp/guzzle": "^7.5.0",
32-
"laravel/framework": "^9",
33-
"league/uri": "~6.7|~6.8",
32+
"illuminate/support": "^10",
33+
"league/uri": "~6.7 || ~6.8",
3434
"phpstan/extension-installer": "^1.2",
35-
"phpstan/phpstan-phpunit": "^1.3"
35+
"phpstan/phpstan-phpunit": "^1.2"
3636
},
3737
"require-dev": {
38-
"dg/bypass-finals": "^1.3",
38+
"dg/bypass-finals": "^1.4",
3939
"mikey179/vfsstream": "^1.6",
4040
"mockery/mockery": "^1.5",
41-
"orchestra/testbench": "^7.20",
42-
"phpunit/phpunit": "^9.5.28"
41+
"orchestra/testbench": "^8.0",
42+
"phpunit/phpunit": "^9.5.26"
4343
},
4444
"minimum-stability": "dev",
4545
"prefer-stable": true,

0 commit comments

Comments
 (0)