Skip to content

Commit 8be4fe3

Browse files
committed
Some updates
1 parent caaf41f commit 8be4fe3

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.gitattributes export-ignore
33
/.github/ export-ignore
44
.gitignore export-ignore
5-
/.php_cs export-ignore
5+
/.php_cs.dist export-ignore
66
/.scrutinizer.yml export-ignore
77
/.styleci.yml export-ignore
88
/.travis.yml export-ignore

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.php_cs
12
/behat.yml
23
/build/
34
/composer.lock

.php_cs renamed to .php_cs.dist

File renamed without changes.

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ cache:
77
- $HOME/.composer/cache/files
88

99
php:
10-
- 5.4
1110
- 5.5
1211
- 5.6
1312
- 7.0
13+
- 7.1
1414
- hhvm
1515

1616
env:
@@ -24,13 +24,15 @@ branches:
2424
matrix:
2525
fast_finish: true
2626
include:
27-
- php: 5.4
27+
- php: 5.5
2828
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
2929

3030
before_install:
3131
- if [[ $COVERAGE != true && $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi
3232

3333
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
3436
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
3537

3638
script:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Package
22

33
[![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)
54
[![Build Status](https://img.shields.io/travis/webplates/package.svg?style=flat-square)](https://travis-ci.org/webplates/package)
65
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/webplates/package.svg?style=flat-square)](https://scrutinizer-ci.com/g/webplates/package)
76
[![Quality Score](https://img.shields.io/scrutinizer/g/webplates/package.svg?style=flat-square)](https://scrutinizer-ci.com/g/webplates/package)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=5.4"
14+
"php": ">=5.5"
1515
},
1616
"autoload": {
1717
"psr-4": {

0 commit comments

Comments
 (0)