File tree Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
.gitattributes export-ignore
3
3
/.github / export-ignore
4
4
.gitignore export-ignore
5
- /.php_cs export-ignore
5
+ /.php_cs.dist export-ignore
6
6
/.scrutinizer.yml export-ignore
7
7
/.styleci.yml export-ignore
8
8
/.travis.yml export-ignore
Original file line number Diff line number Diff line change
1
+ /.php_cs
1
2
/behat.yml
2
3
/build /
3
4
/composer.lock
File renamed without changes.
Original file line number Diff line number Diff line change 7
7
- $HOME/.composer/cache/files
8
8
9
9
php :
10
- - 5.4
11
10
- 5.5
12
11
- 5.6
13
12
- 7.0
13
+ - 7.1
14
14
- hhvm
15
15
16
16
env :
@@ -24,13 +24,15 @@ branches:
24
24
matrix :
25
25
fast_finish : true
26
26
include :
27
- - php : 5.4
27
+ - php : 5.5
28
28
env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
29
29
30
30
before_install :
31
31
- if [[ $COVERAGE != true && $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi
32
32
33
33
install :
34
+ # To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
35
+ - if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
34
36
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
35
37
36
38
script :
Original file line number Diff line number Diff line change 1
1
# Package
2
2
3
3
[ ![ Latest Version] ( https://img.shields.io/github/release/webplates/package.svg?style=flat-square )] ( https://github.com/webplates/package/releases )
4
- [ ![ Software License] ( https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square )] ( LICENSE )
5
4
[ ![ Build Status] ( https://img.shields.io/travis/webplates/package.svg?style=flat-square )] ( https://travis-ci.org/webplates/package )
6
5
[ ![ Code Coverage] ( https://img.shields.io/scrutinizer/coverage/g/webplates/package.svg?style=flat-square )] ( https://scrutinizer-ci.com/g/webplates/package )
7
6
[ ![ Quality Score] ( https://img.shields.io/scrutinizer/g/webplates/package.svg?style=flat-square )] ( https://scrutinizer-ci.com/g/webplates/package )
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"require" : {
14
- "php" : " >=5.4 "
14
+ "php" : " >=5.5 "
15
15
},
16
16
"autoload" : {
17
17
"psr-4" : {
You can’t perform that action at this time.
0 commit comments