File tree 4 files changed +6
-7
lines changed
4 files changed +6
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- /.coveralls.yml export-ignore
2
1
/.gitattributes export-ignore
3
2
/.github / export-ignore
4
3
/.gitignore export-ignore
Original file line number Diff line number Diff line change 12
12
- CS_CHECK=false
13
13
- COMPOSER_ARGS="--no-interaction"
14
14
- TEST_DEPS="phpunit/phpunit:^9.1 phpspec/prophecy-phpunit webimpress/coding-standard:^1.0"
15
- - COVERAGE_DEPS="$TEST_DEPS php-coveralls/php-coveralls"
16
15
17
16
matrix :
18
17
include :
@@ -42,6 +41,7 @@ matrix:
42
41
- php : 7.4
43
42
env :
44
43
- COMPOSER_VERSION=2
44
+ - TEST_COVERAGE=true
45
45
- php : 7.4
46
46
env :
47
47
- TEST_COVERAGE=true
@@ -54,16 +54,16 @@ install:
54
54
- travis_retry composer install $COMPOSER_ARGS
55
55
- if [[ $COMPOSER_VERSION == "1" ]]; then travis_retry composer update composer/* --prefer-lowest ; fi
56
56
- if [[ $TEST == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $TEST_DEPS ; fi
57
- - if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
57
+ - if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $TEST_DEPS ; fi
58
58
- stty cols 120 && composer show
59
59
60
60
script :
61
61
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else if [[ $TEST != 'false' ]]; then composer test ; fi ; fi
62
62
- if [[ "$COMPAT" == 'true' ]]; then composer compat ; fi
63
63
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
64
64
65
- after_script :
66
- - if [[ $TEST_COVERAGE == 'true' ]]; then vendor/bin/php-coveralls -v ; fi
65
+ after_success :
66
+ - bash <(curl -s https://codecov.io/bash)
67
67
68
68
notifications :
69
69
email : false
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://travis-ci.com/laminas/laminas-dependency-plugin.svg?branch=master )] ( https://travis-ci.com/laminas/laminas-dependency-plugin )
4
4
5
+ [ ![ codecov] ( https://codecov.io/gh/laminas/laminas-dependency-plugin/branch/master/graph/badge.svg )] ( https://codecov.io/gh/laminas/laminas-dependency-plugin )
6
+
5
7
This Composer plugin, when enabled in a project, intercepts requests to install
6
8
packages from the zendframework and zfcampus vendors, and will replace them with
7
9
the equivalents from the Laminas Project.
You can’t perform that action at this time.
0 commit comments