Skip to content

Commit 0ce8377

Browse files
authored
Merge pull request #1 from maartenpaauw/laravel-9-support
chore: laravel 9 support
2 parents c8614d4 + c77509f commit 0ce8377

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: run-tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [develop, main]
66
pull_request:
7-
branches: [main]
7+
branches: [develop, main]
88

99
jobs:
1010
test:
@@ -13,12 +13,14 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.0]
17-
laravel: [8.*]
16+
php: [8.0, 8.1]
17+
laravel: [8.*, 9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 8.*
2121
testbench: ^6.23
22+
- laravel: 9.*
23+
testbench: ^7.1
2224

2325
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2426

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to `laravel-specification-pattern` will be documented in this file.
44

5+
## Unreleased
6+
7+
### Added
8+
9+
- Support for Laravel 9.
10+
511
## [v1.0.0] - 2022-01-21
612

713
- initial release

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"require": {
1919
"php": "^8.0",
2020
"spatie/laravel-package-tools": "^1.9.2",
21-
"illuminate/contracts": "^8.73"
21+
"illuminate/contracts": "^8.83|^9.2"
2222
},
2323
"require-dev": {
24-
"nunomaduro/collision": "^5.10",
24+
"nunomaduro/collision": "^5.11|^6.1",
2525
"nunomaduro/larastan": "^1.0",
2626
"orchestra/testbench": "^6.22",
2727
"pestphp/pest": "^1.21",

0 commit comments

Comments
 (0)