Skip to content

Commit 7e41113

Browse files
authored
Merge pull request #23 from imliam/laravel-8
Add Laravel 8 support
2 parents b17a4eb + d93b2b8 commit 7e41113

File tree

7 files changed

+12
-35
lines changed

7 files changed

+12
-35
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: imliam

.github/workflows/main.yml

+2-11
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,11 @@ jobs:
88
max-parallel: 15
99
fail-fast: false
1010
matrix:
11-
php-versions: ["7.1", "7.2", "7.3", "7.4"]
11+
php-versions: ["7.3", "7.4"]
1212
composer-flags: ["--prefer-lowest", "--prefer-stable"]
1313
env:
14-
- LARAVEL_VERSION='~5.5'
15-
- LARAVEL_VERSION='~5.6'
16-
- LARAVEL_VERSION='~5.7'
17-
- LARAVEL_VERSION='~5.8'
18-
- LARAVEL_VERSION='^6.0'
1914
- LARAVEL_VERSION='^7.0'
20-
exclude:
21-
- php-versions: 7.1
22-
env: LARAVEL_VERSION='^6.0'
23-
- php-versions: 7.1
24-
env: LARAVEL_VERSION='^7.0'
15+
- LARAVEL_VERSION='^8.0'
2516
name: Test on PHP ${{ matrix.php-versions }}, Laravel ${{ matrix.laravel-versions }} and ${{ matrix.composer-flags }}
2617
steps:
2718
- name: Checkout

.scrutinizer.yml

-18
This file was deleted.

.styleci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ preset: laravel
22

33
disabled:
44
- single_class_element_per_statement
5-
- self_accessor

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
### Fixed
1111
### Security
1212

13+
## [1.2.0] - 2020-09-13
14+
### Added
15+
- Laravel 8 support
16+
1317

1418
## [1.1.1] - 2020-05-27
1519
### Fixed

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.1",
24-
"illuminate/support": "*",
25-
"illuminate/console": "*"
23+
"php": "^7.3",
24+
"illuminate/support": "^7.0|^8.0",
25+
"illuminate/console": "^7.0|^8.0"
2626
},
2727
"require-dev": {
28-
"phpunit/phpunit": "^7.5",
28+
"phpunit/phpunit": "^7.5|^8.0|^9.0",
2929
"roave/security-advisories": "dev-master"
3030
},
3131
"autoload": {

tests/Unit/EnvironmentSetCommandTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class EnvironmentSetCommandTest extends TestCase
1616
*/
1717
protected $command;
1818

19-
public function setUp()
19+
public function setUp(): void
2020
{
2121
parent::setUp();
2222
$this->command = new EnvironmentSetCommand();

0 commit comments

Comments
 (0)