Skip to content

Commit c60c4ac

Browse files
authored
Merge pull request #2 from markwalet/laravel-8-support
Laravel 8 support
2 parents ba016c1 + b613936 commit c60c4ac

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
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@v1
1717
with:
1818
path: ~/.composer/cache/files
19-
key: dependencies-php-7.4-illuminate-7.*-composer-${{ hashFiles('composer.json') }}
19+
key: dependencies-php-7.4-illuminate-8.*-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,16 +14,20 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
php: [7.2, 7.3, 7.4]
17-
illuminate: [6.*, 7.*]
17+
illuminate: [6.*, 7.*, 8.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- illuminate: 6.*
2121
testbench: 4.*
2222
- illuminate: 7.*
2323
testbench: 5.*
24+
- illuminate: 8.*
25+
testbench: 6.*
2426
exclude:
2527
- php: 7.4
2628
illuminate: 6.*
29+
- php: 7.2
30+
illuminate: 8.*
2731

2832
name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }}
2933

.styleci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
preset: laravel
2-
disabled:
3-
- simplified_null_return

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.0.0...master)
44

5+
## Added
6+
- Added Laravel 8 support.
7+
58
## v1.0.0 (2020-04-08)
69

710
Initial release

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
],
1414
"require": {
1515
"php": "^7.2",
16-
"illuminate/contracts": "6.*|7.*",
17-
"illuminate/support": "6.*|7.*",
16+
"illuminate/contracts": "6.*|7.*|8.*",
17+
"illuminate/support": "6.*|7.*|8.*",
1818
"spatie/packagist-api": "^2.0",
1919
"ext-json": "*"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": "^8.5",
23-
"orchestra/testbench": "4.*|5.*"
23+
"orchestra/testbench": "4.*|5.*|6.*"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)