Skip to content

Commit bae76c2

Browse files
committed
Fix support for PHP 7.0
1 parent 37508a3 commit bae76c2

File tree

3 files changed

+676
-846
lines changed

3 files changed

+676
-846
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dist: trusty
33
php:
44
- '7.0'
55
- '7.1'
6-
- '7.2'
6+
# - '7.2'
77
sudo: false
88
cache:
99
directories:

composer.json

Lines changed: 32 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,43 +11,43 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=7.0.0",
14+
"php": ">=7.0",
1515
"ext-mbstring": "*",
1616
"ext-pdo_mysql": "*",
1717
"ext-zip": "*",
18-
"aws/aws-sdk-php": "3.29.7",
19-
"barryvdh/laravel-debugbar": "2.4.0",
20-
"daneeveritt/login-notifications": "1.0.0",
21-
"doctrine/dbal": "2.5.13",
22-
"edvinaskrucas/settings": "2.0.0",
23-
"fideloper/proxy": "3.3.3",
24-
"friendsofphp/php-cs-fixer": "2.4.0",
25-
"guzzlehttp/guzzle": "6.2.3",
26-
"igaster/laravel-theme": "1.16.0",
27-
"laracasts/utilities": "2.1.0",
18+
"aws/aws-sdk-php": "^3.29",
19+
"daneeveritt/login-notifications": "^1.0",
20+
"doctrine/dbal": "^2.5",
21+
"edvinaskrucas/settings": "^2.0",
22+
"fideloper/proxy": "^3.3",
23+
"guzzlehttp/guzzle": "~6.3.0",
24+
"igaster/laravel-theme": "^1.16",
25+
"laracasts/utilities": "^3.0",
2826
"laravel/framework": "5.4.27",
2927
"laravel/tinker": "1.0.1",
30-
"lord/laroute": "2.4.4",
31-
"mtdowling/cron-expression": "1.2.0",
32-
"nesbot/carbon": "1.22.1",
33-
"nicolaslopezj/searchable": "1.9.5",
34-
"pragmarx/google2fa": "1.0.1",
35-
"predis/predis": "1.1.1",
36-
"prologue/alerts": "0.4.1",
37-
"ramsey/uuid": "3.6.1",
38-
"s1lentium/iptools": "1.1.0",
39-
"sofa/eloquence": "5.4.1",
40-
"spatie/laravel-fractal": "4.0.1",
41-
"watson/validating": "3.0.1",
28+
"lord/laroute": "~2.4.5",
29+
"mtdowling/cron-expression": "^1.2",
30+
"nesbot/carbon": "^1.22",
31+
"nicolaslopezj/searchable": "^1.9",
32+
"pragmarx/google2fa": "^1.0",
33+
"predis/predis": "^1.1",
34+
"prologue/alerts": "^0.4",
35+
"ramsey/uuid": "^3.7",
36+
"s1lentium/iptools": "^1.1",
37+
"sofa/eloquence": "~5.4.1",
38+
"spatie/laravel-fractal": "^4.0",
39+
"watson/validating": "^3.0",
4240
"webmozart/assert": "^1.2",
43-
"webpatser/laravel-uuid": "2.0.1"
41+
"webpatser/laravel-uuid": "^2.0"
4442
},
4543
"require-dev": {
46-
"barryvdh/laravel-ide-helper": "2.4.1",
47-
"fzaninotto/faker": "1.6.0",
48-
"mockery/mockery": "0.9.9",
49-
"php-mock/php-mock-phpunit": "1.1.2",
50-
"phpunit/phpunit": "5.7.21"
44+
"barryvdh/laravel-debugbar": "^2.4",
45+
"barryvdh/laravel-ide-helper": "^2.4",
46+
"friendsofphp/php-cs-fixer": "~2.4.0",
47+
"fzaninotto/faker": "^1.6",
48+
"mockery/mockery": "^0.9",
49+
"php-mock/php-mock-phpunit": "^1.1",
50+
"phpunit/phpunit": "^5.7"
5151
},
5252
"autoload": {
5353
"classmap": [
@@ -85,6 +85,9 @@
8585
},
8686
"prefer-stable": true,
8787
"config": {
88+
"platform": {
89+
"php": "7.0"
90+
},
8891
"preferred-install": "dist",
8992
"sort-packages": true,
9093
"optimize-autoloader": true

0 commit comments

Comments
 (0)