No need for test lowest dependencies anymore

This commit is contained in:
Ondrej Mirtes 2019-09-16 21:37:16 +02:00
parent 48340dcad0
commit 3067163e45
No known key found for this signature in database
GPG Key ID: 8E730BA25823D8B5
2 changed files with 2 additions and 10 deletions

View File

@ -6,21 +6,13 @@ php:
- 7.4snapshot - 7.4snapshot
- master - master
env:
- dependencies=lowest
- dependencies=highest
matrix: matrix:
allow_failures: allow_failures:
- php: master - php: master
env: dependencies=lowest
- php: master
env: dependencies=highest
before_script: before_script:
- composer self-update - composer self-update
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi; - composer update --no-interaction
- if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi;
script: script:
- vendor/bin/phing - vendor/bin/phing

View File

@ -12,7 +12,7 @@
"phpstan/phpstan": "^0.12", "phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^6.3", "phpunit/phpunit": "^6.3",
"slevomat/coding-standard": "^4.7.2", "slevomat/coding-standard": "^4.7.2",
"symfony/process": "^3.4 || ^4.0", "symfony/process": "^4.0",
"phpstan/extension-installer": "^1.0", "phpstan/extension-installer": "^1.0",
"phpstan/phpstan-strict-rules": "^0.12" "phpstan/phpstan-strict-rules": "^0.12"
}, },