File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ matrix:
1313 env : LARAVEL_VERSION=5.1
1414 - php : 5.6
1515 env : LARAVEL_VERSION=5.2.23
16- - php : 5.6
17- env : LARAVEL_VERSION=5.3
1816 - php : 7
1917 env : LARAVEL_VERSION=5.0
2018 - php : 7
@@ -49,8 +47,9 @@ before_install:
4947 - if [[ $LARAVEL_VERSION == '5.3' ]]; then composer create-project laravel/laravel:$LARAVEL_VERSION --stability dev; fi
5048 - composer update
5149 - cd ./laravel
52- - composer require padosoft/laravel-test:1.*
53- - composer require padosoft/test:0.1.*
50+ - if [[ $LARAVEL_VERSION != '5.3' ]]; then composer require padosoft/laravel-test:1.*; fi
51+ - if [[ $LARAVEL_VERSION == '5.3' && $TRAVIS_PHP_VERSION == 7.0 ]]; then composer require padosoft/laravel-test:2.*; fi
52+ - if [[ $LARAVEL_VERSION == '5.3' && $TRAVIS_PHP_VERSION == 7.1 ]]; then composer require padosoft/laravel-test:2.*; fi
5453 - composer require padosoft/laravel-composer-security dev-master
5554 - if [[ $LARAVEL_VERSION == '5.0' ]]; then composer require mockery/mockery; fi
5655 - chmod 777 -R ./
Original file line number Diff line number Diff line change 22
33All Notable changes to ` laravel-composer-security ` will be documented in this file
44
5+ ## 1.4.7 - 2016-09-17
6+
7+ - Add support for laravel 5.3, php 7.0 and php 7.1.
8+
59## 1.0.0 - 2015-12-05
610
711### Added
You can’t perform that action at this time.
0 commit comments