Skip to content

Commit

Permalink
Support Laravel 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ycs77 committed Mar 5, 2020
1 parent 875ce50 commit 4a6caab
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ assignees: ''

**Use Version:**
Use version when bugs appear.
- Laravel: v6.0.0
- Laravel Wizard: v2.0.0
- Laravel: v7.0.0
- Laravel Wizard: v2.2.0

**Describe the bug**
A clear and concise description of what the bug is.
Expand Down
1 change: 0 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ disabled:
- cast_spaces
- concat_without_spaces
- not_operator_with_successor_space
- phpdoc_to_comment
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,23 @@ php:
- 7.1
- 7.2
- 7.3
- 7.4

env:
matrix:
- LARAVEL=5.6.*
- LARAVEL=5.7.*
- LARAVEL=5.8.*
- LARAVEL=^6.0
- LARAVEL=^7.0

matrix:
fast_finish: true
exclude:
- php: 7.1
env: LARAVEL=^6.0
- php: 7.1
env: LARAVEL=^7.0

install:
- travis_retry composer require "illuminate/contracts=${LARAVEL}" --dev --prefer-dist --no-interaction --no-suggest
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ A web setup wizard for Laravel application.

## Version Compatibility

Laravel Wizard | Laravel | PHP
:---------------|:-------------------------|:----
1.0.x | 5.5.x | ^7.0
1.1.x | 5.6.x\|5.7.x\|5.8.x | ^7.1.3
2.x | 5.6.x\|5.7.x\|5.8.x\|6.x | ^7.1.3
Laravel Wizard | Laravel | PHP
:---------------|:-----------------|:----
1.0.x | 5.5 | ^7.0
1.1.x | ^5.6 | ^7.1.3
2.0.x,2.1.x | ^5.6\|^6.x | ^7.1.3
2.2.x | ^5.6\|^6.x\|^7.x | ^7.1.3

## Install

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"require": {
"php": "^7.1.3",
"facade/ignition-contracts": "^1.0",
"illuminate/contracts": "~5.6|~5.7|~5.8|^6.0",
"laravel/framework": "~5.6|~5.7|~5.8|^6.0"
"illuminate/contracts": "~5.6|~5.7|~5.8|^6.0|^7.0",
"laravel/framework": "~5.6|~5.7|~5.8|^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "^1.2",
"orchestra/testbench": "~3.6|~3.7|~3.8|^4.0",
"phpunit/phpunit": "^7.0|^8.0"
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "~3.6|~3.7|~3.8|^4.0|^5.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 4a6caab

Please sign in to comment.