-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from laracasts/v2
[v2] Breaking changes - support only recent-ish Laravel versions (6+)
- Loading branch information
Showing
11 changed files
with
2,218 additions
and
617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
language: php | ||
|
||
php: | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- 7.2 | ||
- 7.3 | ||
- 7.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,20 +7,26 @@ | |
{ | ||
"name": "Jeffrey Way", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Cristian Tabacitu", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.4.0", | ||
"illuminate/support": "^5.8|~6.0|~7.0|~8.0" | ||
"illuminate/support": "~6.0|~7.0|~8.0" | ||
}, | ||
"require-dev": { | ||
"phpspec/phpspec": "~2.1" | ||
"phpspec/phpspec": "~6.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Laracasts\\Generators\\": "src/" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpspec run" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
|
Oops, something went wrong.