Merge branch 'release/1.2.0'

This commit is contained in:
Ismo Vuorinen
2017-10-19 10:58:52 +03:00
6 changed files with 3496 additions and 9 deletions

1
.gitignore vendored
View File

@@ -1,2 +1 @@
vendor vendor
composer.lock

View File

@@ -1,12 +1,10 @@
language: php language: php
php: php:
- 5.6
- 7.0 - 7.0
- 7.1 - 7.1
- nightly - nightly
matrix: matrix:
allow_failures: allow_failures:
- php: 5.6
- php: nightly - php: nightly
fast_finish: true fast_finish: true
cache: cache:

View File

@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## [1.2.0](https://github.com/superhelio/commands/tree/1.2.0) (2017-10-19)
- Bumped PHP version requirement to >=7.0, PHP5.6 was taking really long time to resolve
- Included composer.lock, which is generated with PHP v7.0.23
## [1.1.2](https://github.com/superhelio/commands/tree/1.1.2) (2017-09-15) ## [1.1.2](https://github.com/superhelio/commands/tree/1.1.2) (2017-09-15)
- Removed composer.lock, only to enable correct CI builds - Removed composer.lock, only to enable correct CI builds
- Reworked travis-ci.org configuration, builds should now go green - Reworked travis-ci.org configuration, builds should now go green

View File

@@ -10,6 +10,8 @@
This is a collection of Laravel Artisan commands created to help everyone This is a collection of Laravel Artisan commands created to help everyone
in their development work. We try to keep these as useful as possible. in their development work. We try to keep these as useful as possible.
This package requires PHP 7.0 or later. `composer.lock` has been generated with PHP v7.0.23.
## Install ## Install
### Step 1: Install Through Composer ### Step 1: Install Through Composer
@@ -77,3 +79,4 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
[link-downloads]: https://packagist.org/packages/superhelio/commands [link-downloads]: https://packagist.org/packages/superhelio/commands
[link-author]: https://github.com/superhelio [link-author]: https://github.com/superhelio
[link-contributors]: https://github.com/superhelio/commands/graphs/contributors [link-contributors]: https://github.com/superhelio/commands/graphs/contributors
[link-dbal]: https://packagist.org/packages/doctrine/dbal

View File

@@ -17,13 +17,13 @@
} }
], ],
"require": { "require": {
"php" : ">=5.5.0", "php" : ">=7.0",
"illuminate/support": "~5.2" "illuminate/support": "^5.3|^5.4|^5.5",
"doctrine/dbal": "^2.5|^2.6"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit" : "~5.7", "phpunit/phpunit" : "^5.0",
"orchestra/testbench": "~3.0", "orchestra/testbench": "~3.0"
"doctrine/dbal": "~2.3"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {

3483
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff