mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Remove unsupported dependencies when running unit tests (PHP < 7 compat)
This commit is contained in:
parent
23b07fa185
commit
c419295466
@ -25,10 +25,11 @@ matrix:
|
||||
- php: nightly
|
||||
|
||||
install:
|
||||
# remove everything to prevent composer trying to resolve these, see: https://github.com/composer/composer/issues/6011
|
||||
- composer remove friendsofphp/php-cs-fixer --dev --no-update --no-interaction
|
||||
- composer install --prefer-dist --no-interaction --no-progress
|
||||
|
||||
script:
|
||||
- composer test-units
|
||||
script: composer test-units
|
||||
|
||||
cache:
|
||||
directories:
|
||||
@ -38,12 +39,14 @@ jobs:
|
||||
include:
|
||||
- stage: Code Style and Static Analysis
|
||||
php: 7.2
|
||||
install: composer install --prefer-dist --no-interaction --no-progress
|
||||
script:
|
||||
- '[ -z "$TRAVIS_TAG" ] || [ "$TRAVIS_TAG" == "$(php -r "require(\"vendor/autoload.php\"); echo Erusev\Parsedown\Parsedown::version;")" ]'
|
||||
- composer test-formatting
|
||||
|
||||
- stage: Test CommonMark (weak)
|
||||
php: 7.2
|
||||
install: composer install --prefer-dist --no-interaction --no-progress
|
||||
script:
|
||||
- composer test-commonmark-weak || true
|
||||
allow_failures:
|
||||
|
@ -13,11 +13,11 @@
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.0",
|
||||
"php": ">=5.5.0",
|
||||
"ext-mbstring": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^7.4",
|
||||
"phpunit/phpunit": "^7.4|^6.5.13|^5.7.27|^4.8.36",
|
||||
"friendsofphp/php-cs-fixer": "^2.13"
|
||||
},
|
||||
"autoload": {
|
||||
|
Loading…
Reference in New Issue
Block a user