-
Notifications
You must be signed in to change notification settings - Fork 3
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 #6 from pmatseykanets/laravel6
Support Laravel 6
- Loading branch information
Showing
17 changed files
with
109 additions
and
89 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,5 +1,4 @@ | ||
composer.lock | ||
vendor | ||
.idea | ||
.DS_Store | ||
Thumbs.db | ||
.phpunit.result.cache |
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 +1 @@ | ||
preset: recommended | ||
preset: laravel |
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
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,29 +1,45 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [2.0.0](https://github.com/pmatseykanets/artisan-io/releases/tag/v2.0.0) - 2019-10-25 | ||
|
||
### Changed | ||
|
||
- Support Laravel 6 | ||
|
||
## [1.0.0](https://github.com/pmatseykanets/artisan-io/releases/tag/v1.0.0) - 2017-09-05 | ||
|
||
### Added | ||
|
||
- Added a service provider and Laravel 5.5 package auto discovery. | ||
|
||
## [Unreleased](https://github.com/pmatseykanets/artisan-io/tree/HEAD) | ||
|
||
### Added | ||
|
||
- Added CONTRIBUTING.md. | ||
- Added LICENSE.md. | ||
- Added CHANGELOG.md. | ||
- Inculde php 7.0 and 7.1 into Travis-CI builds. | ||
- Added .gitattributes. | ||
|
||
### Updated | ||
|
||
- Updated README.md. | ||
- Updated dev dependencies. | ||
|
||
## [0.2.0](https://github.com/pmatseykanets/artisan-io/releases/tag/v0.1.1) - 2015-09-22 | ||
|
||
### Added | ||
|
||
- Added tests. | ||
- Added Travis-CI config. | ||
|
||
### Updated | ||
|
||
- Updated README.md. | ||
|
||
## [0.1.0](https://github.com/pmatseykanets/artisan-io/releases/tag/v0.1.0) - 2015-07-22 | ||
Initial release | ||
|
||
Initial release. |
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
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,22 +7,21 @@ | |
{ | ||
"name": "Peter Matseykanets", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/pmatseykanets", | ||
"role": "Developer" | ||
"homepage": "https://github.com/pmatseykanets" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.5.9", | ||
"illuminate/support": "~5.1", | ||
"illuminate/container": "~5.1", | ||
"illuminate/database": "~5.1", | ||
"illuminate/validation": "~5.1", | ||
"illuminate/config": "~5.1", | ||
"illuminate/console": "~5.1" | ||
"php": "^7.2", | ||
"illuminate/support": "~5.1|~6.0", | ||
"illuminate/container": "~5.1|~6.0", | ||
"illuminate/database": "~5.1|~6.0", | ||
"illuminate/validation": "~5.1|~6.0", | ||
"illuminate/config": "~5.1|~6.0", | ||
"illuminate/console": "~5.1|~6.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.8", | ||
"mockery/mockery": "^0.9.5" | ||
"phpunit/phpunit": "^8.0", | ||
"mockery/mockery": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-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
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
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
Oops, something went wrong.