Skip to content

Commit cd348fc

Browse files
authored
Add Laravel 9 support (#6)
1 parent 3213ed0 commit cd348fc

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/cache@v2
1717
with:
1818
path: ~/.composer/cache/files
19-
key: dependencies-php-8.1-illuminate-8.*-composer-${{ hashFiles('composer.json') }}
19+
key: dependencies-php-8.1-illuminate-9.*-composer-${{ hashFiles('composer.json') }}
2020

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

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
php: [7.4, 8.0, 8.1]
17-
illuminate: [6.*, 7.*, 8.*]
17+
illuminate: [6.*, 7.*, 8.*, ^9.0]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- illuminate: 6.*
@@ -23,7 +23,11 @@ jobs:
2323
testbench: 5.*
2424
- illuminate: 8.*
2525
testbench: ~6.22
26+
- illuminate: ^9.0
27+
testbench: 7.*
2628
exclude:
29+
- php: 7.4
30+
illuminate: ^9.0
2731
- php: 8.1
2832
illuminate: 7.*
2933
- php: 8.1

CHANGELOG.md

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

33
## [Unreleased](https://github.com/markwalet/laravel-packagist/compare/v1.2.0...master)
44

5+
### Added
6+
- Added Laravel 9 support.
7+
58
## [v1.3.0 (2021-12-07)](https://github.com/markwalet/laravel-packagist/compare/v1.2.0...v1.3.0)
69

710
## Added

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
"require": {
1515
"php": "~7.4|8.*",
1616
"ext-json": "*",
17-
"laravel/framework": "6.*|7.*|8.*",
17+
"laravel/framework": "6.*|7.*|8.*|^9.0",
1818
"phpoption/phpoption": ">=1.8",
1919
"spatie/packagist-api": "^2.0"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": "~9.3",
23-
"orchestra/testbench": "4.*|5.*|~6.22"
23+
"orchestra/testbench": "4.*|5.*|~6.22|7.*"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)