mirror of
https://github.com/danog/phpdoc-parser.git
synced 2024-11-26 20:15:11 +01:00
25 lines
479 B
YAML
25 lines
479 B
YAML
language: php
|
|
php:
|
|
- 7.1
|
|
- 7.2
|
|
- master
|
|
|
|
env:
|
|
- dependencies=lowest
|
|
- dependencies=highest
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: master
|
|
env: dependencies=lowest
|
|
- php: master
|
|
env: dependencies=highest
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi;
|
|
- if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi;
|
|
|
|
script:
|
|
- vendor/bin/phing
|