Skip to content

Commit f82f358

Browse files
committed
fix travis version for L5.3
1 parent d7bb582 commit f82f358

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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 ./

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All 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

0 commit comments

Comments
 (0)