Upgrading required PHP version to >=7.0

This bump is because it took really long time to find suitable packages
for PHP 5.6.
This commit is contained in:
Ismo Vuorinen
2017-10-19 10:40:05 +03:00
parent 8bc16492f6
commit fcb274d3d6
5 changed files with 3492 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

@@ -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.6.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" : "^4.0|^5.0", "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