@@ -7,50 +7,41 @@ matrix:
7
7
include :
8
8
- php : 7.2
9
9
env :
10
- - COLLECT_COVERAGE=false
11
10
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --prefer-lowest --prefer-stable"
12
11
- RUN_PHPSTAN=false
13
12
- VALIDATE_CODING_STYLE=false
14
13
- php : 7.2
15
14
env :
16
- - COLLECT_COVERAGE=true
17
15
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source"
18
- - RUN_PHPSTAN=true
19
- - VALIDATE_CODING_STYLE=true
16
+ - RUN_PHPSTAN=false
17
+ - VALIDATE_CODING_STYLE=false
20
18
- php : 7.3
21
19
env :
22
- - COLLECT_COVERAGE=false
23
20
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --prefer-lowest --prefer-stable"
24
21
- RUN_PHPSTAN=false
25
22
- VALIDATE_CODING_STYLE=false
26
23
- php : 7.3
27
24
env :
28
- - COLLECT_COVERAGE=true
29
25
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source"
30
- - RUN_PHPSTAN=true
31
- - VALIDATE_CODING_STYLE=true
26
+ - RUN_PHPSTAN=false
27
+ - VALIDATE_CODING_STYLE=false
32
28
- php : 7.4
33
29
env :
34
- - COLLECT_COVERAGE=false
35
30
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source --prefer-lowest --prefer-stable"
36
31
- RUN_PHPSTAN=false
37
32
- VALIDATE_CODING_STYLE=false
38
33
- php : 7.4
39
34
env :
40
- - COLLECT_COVERAGE=true
41
35
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source"
42
36
- RUN_PHPSTAN=true
43
37
- VALIDATE_CODING_STYLE=true
44
38
- php : nightly
45
39
env :
46
- - COLLECT_COVERAGE=false
47
40
- COMPOSER_ARGS="--no-interaction --no-suggest --prefer-source"
48
41
- RUN_PHPSTAN=false
49
42
- VALIDATE_CODING_STYLE=false
50
43
install :
51
44
- composer remove --no-interaction --no-update --dev "friendsofphp/php-cs-fixer"
52
- - travis_retry composer require $COMPOSER_ARGS --no-update --dev "composer/composer:2.0.x-dev"
53
- - travis_retry composer require $COMPOSER_ARGS --no-update --dev "phpunit/phpunit:^9.3.11"
54
45
- travis_retry composer update $COMPOSER_ARGS
55
46
allow_failures :
56
47
- php : nightly
@@ -62,4 +53,4 @@ install:
62
53
script :
63
54
- if [ "$VALIDATE_CODING_STYLE" == "true" ]; then composer phpcs; fi
64
55
- if [ "$RUN_PHPSTAN" == "true" ]; then composer phpstan; fi
65
- - composer run-script phpunit
56
+ - composer phpunit
0 commit comments