Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit 96af10d

Browse files
committed
Merge branch 'hotfix/qa-tools' into develop
Forward port #201 Forward port #202 Conflicts: .travis.yml
2 parents 342cc94 + 06db4f3 commit 96af10d

File tree

2 files changed

+11
-35
lines changed

2 files changed

+11
-35
lines changed

.travis.yml

Lines changed: 8 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,13 @@ sudo: false
22

33
language: php
44

5-
branches:
6-
except:
7-
- /^release-.*$/
8-
- /^ghgfk-.*$/
9-
105
cache:
116
directories:
127
- $HOME/.composer/cache
13-
- $HOME/.local
14-
- zf-mkdoc-theme
15-
168
env:
179
global:
1810
- COMPOSER_ARGS="--no-interaction"
1911
- COVERAGE_DEPS="satooshi/php-coveralls"
20-
- SITE_URL="https://zendframework.github.io/zend-servicemanager"
21-
- GH_USER_NAME="Matthew Weier O'Phinney"
22-
- GH_USER_EMAIL="[email protected]"
23-
- GH_REF="github.com/zendframework/zend-servicemanager.git"
24-
- secure: "KoLcNj22t668IhAhm5ej6DNf23waoGrZpQ1kmuq5ptTqsXjFjy/cjOJCvWOeRX62Tl2kjc7co9UeK0f91osZ2Wq7HLb+1bIXX5SrB6SfyPUajCQtCtu0xGgEKZfuQwzLWSYoR3tsaD6vqgMjKwwst10d+AyICjdLNu9dHtdu9HpozZtK3kM9+0FwMOiRqFEND2GY05oVYXOrzgu1xNmE1YEGpjKzqqBNpqFOP4W+OnTMRTQcyrlbFzOFvAip7X3GGw9iUSnSzZTnIOWJgMdah8/eFqhrPO8O73faW+/v3ZTxdwupOEZyg7s3TD6+W9rjmN+TgOZEP484PcSlUc6sXA4QM4iL8xthG3bWk8+CDrsnuQmunrXz7T5xUEHs/7B8NuGJ8yT89fMCYGySERKIfCx17+N9kP/848A/+39LE1NIlTxnaPISfm9WMNG67xsEKyJluC/YataPGl0zZ6/7Q7w1oDYvjhsqooUsxKRD2/psd1zrVDJurDa7Ayv/E21u2dIDtbp6w9Zl+he+kwRItMNhtCdzyShqtuY0V/JRmn2lZY2PsfbICRXXAbQnDveNFYz5tE2K40Qm4RWrdZ4cnaLiNJeukdYKVJCFHtZr9rdx1uVeK78Pf5o3rt4S8S1aat35eMZQunc6s4gmeXU5+wIxwXiyOtkdlL3LztSox9s="
2512

2613
matrix:
2714
include:
@@ -31,48 +18,35 @@ matrix:
3118
- php: 7.1
3219
env:
3320
- DEPS=locked
34-
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
35-
- PATH="$HOME/.local/bin:$PATH"
3621
- TEST_COVERAGE=true
3722
- CHECK_CS=true
3823
- php: 7.1
3924
env:
4025
- DEPS=latest
41-
- php: nightly
42-
env:
26+
- php: 7.2
4327
- DEPS=lowest
44-
- php: nightly
45-
env:
28+
- php: 7.2
4629
- DEPS=locked
47-
- php: nightly
48-
env:
30+
- php: 7.2
4931
- DEPS=latest
50-
allow_failures:
51-
- php: nightly
52-
53-
notifications:
54-
irc: "irc.freenode.org#zftalk.dev"
55-
email: false
5632

5733
before_install:
58-
- travis_retry composer self-update
5934
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || true ; fi
6035

6136
install:
37+
- travis_retry composer install $COMPOSER_ARGS
6238
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
6339
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
6440
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
65-
- travis_retry composer install $COMPOSER_ARGS
66-
- stty cols 120
67-
- COLUMNS=120 composer show
41+
- stty cols 120 && composer show
6842

6943
script:
7044
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
7145
- if [[ $CHECK_CS == 'true' ]]; then composer cs-check ; fi
72-
- if [[ $DEPLOY_DOCS == "true" && "$TRAVIS_TEST_RESULT" == "0" ]]; then travis_retry curl -sSL https://raw.githubusercontent.com/zendframework/zf-mkdoc-theme/master/theme-installer.sh | bash ; fi
7346

7447
after_script:
7548
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer upload-coverage ; fi
7649

77-
after_success:
78-
- if [[ $DEPLOY_DOCS == "true" ]]; then ./zf-mkdoc-theme/deploy.sh ; fi
50+
notifications:
51+
email: false
52+

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ All notable changes to this project will be documented in this file, in reverse
2424

2525
### Added
2626

27-
- Nothing.
27+
- [#201](https://github.com/zendframework/zend-servicemanager/pull/201) and
28+
[#202](https://github.com/zendframework/zend-servicemanager/pull/202) add
29+
support for PHP versions 7.1 and 7.2.
2830

2931
### Deprecated
3032

0 commit comments

Comments
 (0)