Skip to content

Commit

Permalink
Merge pull request #9 from markwalet/laravel-8-support
Browse files Browse the repository at this point in the history
Laravel 8 support
  • Loading branch information
markwalet authored Sep 23, 2020
2 parents 3c0d1b2 + 5a9f6a8 commit 4dccf4e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-7.4-illuminate-7.*-composer-${{ hashFiles('composer.json') }}
key: dependencies-php-7.4-illuminate-8.*-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -29,7 +29,7 @@ jobs:
run: composer update --prefer-dist --no-interaction --no-suggest

- name: Calculate coverage statistics
run: phpunit --coverage-clover 'clover.xml'
run: vendor/bin/phpunit --coverage-clover 'clover.xml'

- name: Send coverage statistics
uses: codecov/codecov-action@v1
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,20 @@ jobs:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
illuminate: [6.*, 7.*]
illuminate: [6.*, 7.*, 8.*]
stability: [prefer-lowest, prefer-stable]
include:
- illuminate: 6.*
testbench: 4.*
- illuminate: 7.*
testbench: 5.*
- illuminate: 8.*
testbench: 6.*
exclude:
- php: 7.4
illuminate: 6.*
- php: 7.2
illuminate: 8.*

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

Expand Down
2 changes: 0 additions & 2 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
preset: laravel
disabled:
- simplified_null_return
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased](https://github.com/markwalet/dotenv-manager/compare/v1.3.1...master)

### Added
- Added Laravel 8 support.

## [v1.3.1](https://github.com/markwalet/dotenv-manager/compare/v1.3.0...v1.3.1)

### Changed
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
],
"require": {
"php": "^7.2",
"illuminate/support": "6.*|7.*"
"illuminate/support": "6.*|7.*|8.*"
},
"require-dev": {
"orchestra/testbench": "4.*|5.*",
"orchestra/testbench": "4.*|5.*|6.*",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
Expand Down

0 comments on commit 4dccf4e

Please sign in to comment.