Skip to content

Commit aee1856

Browse files
authored
Support Laravel 10 (#5)
1 parent 4419b22 commit aee1856

File tree

3 files changed

+35
-16
lines changed

3 files changed

+35
-16
lines changed

.github/workflows/validate.yml

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,36 @@ jobs:
1313
strategy:
1414
matrix:
1515
php-version:
16-
- 7.4
17-
- 8.0
16+
- "7.4"
17+
- "8.0"
18+
- "8.1"
19+
- "8.2"
1820
laravel-version:
19-
- ^8
20-
- ^9
21+
- "^8"
22+
- "^9"
23+
- "^10"
2124
exclude:
22-
- php-version: 7.4
23-
laravel-version: ^9
24-
25+
- php-version: "7.4"
26+
laravel-version: "^9"
27+
- php-version: "7.4"
28+
laravel-version: "^10"
29+
- php-version: "8.0"
30+
laravel-version: "^10"
2531
steps:
26-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
2733

2834
- uses: shivammathur/setup-php@v2
2935
with:
3036
coverage: none
3137
php-version: ${{ matrix.php-version }}
3238

33-
- run: composer require illuminate/contracts:${{ matrix.laravel-version }} --no-interaction --prefer-dist --no-interaction
39+
- run: >
40+
composer require
41+
illuminate/contracts:${{ matrix.laravel-version }}
42+
--no-interaction
43+
--prefer-dist
44+
--no-progress
45+
--update-with-all-dependencies
46+
${{ matrix.composer.arg }}
3447
3548
- run: vendor/bin/phpstan

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## v2.1.0
11+
12+
### Added
13+
14+
- Support Laravel 10
15+
1016
## v2.0.1
1117

1218
### Fixed

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
],
1616
"require": {
1717
"php": "^7.4 || ^8",
18-
"illuminate/console": "^8 || ^9",
19-
"illuminate/contracts": "^8 || ^9",
20-
"illuminate/support": "^8 || ^9",
18+
"illuminate/console": "^8 || ^9 || ^10",
19+
"illuminate/contracts": "^8 || ^9 || ^10",
20+
"illuminate/support": "^8 || ^9 || ^10",
2121
"thecodingmachine/safe": "^1 || ^2"
2222
},
2323
"require-dev": {
2424
"ergebnis/composer-normalize": "^2",
25-
"laravel/lumen-framework": "^8 || ^9",
26-
"mll-lab/php-cs-fixer-config": "^4.4.1",
27-
"nunomaduro/larastan": "^0.7 || ^1",
28-
"orchestra/testbench": "^6 || ^7",
25+
"laravel/lumen-framework": "^8 || ^9 || ^10",
26+
"mll-lab/php-cs-fixer-config": "^5",
27+
"nunomaduro/larastan": "^0.7 || ^1 || ^2",
28+
"orchestra/testbench": "^6 || ^7 || ^8",
2929
"thecodingmachine/phpstan-safe-rule": "^1"
3030
},
3131
"minimum-stability": "dev",

0 commit comments

Comments
 (0)