mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 16:49:58 +09:00
Import additional composer dependencies
This commit is contained in:
parent
01dd26783f
commit
c3dc2c68f3
439 changed files with 67918 additions and 138 deletions
31
vendor/true/punycode/.travis.yml
vendored
Normal file
31
vendor/true/punycode/.travis.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
language: php
|
||||
|
||||
php:
|
||||
- 5.3
|
||||
- 5.4
|
||||
- 5.5
|
||||
- 5.6
|
||||
- 7.0
|
||||
- hhvm
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
- php: 5.3
|
||||
env: PHPCS=1
|
||||
|
||||
sudo: false
|
||||
|
||||
before_script:
|
||||
- composer self-update
|
||||
- composer install
|
||||
- if [[ "$PHPCS" != "1" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then mkdir -p build/logs; fi
|
||||
- if [[ "$PHPCS" != "1" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
|
||||
|
||||
script:
|
||||
- if [[ "$PHPCS" != "1" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml; fi
|
||||
- if [[ "$PHPCS" != "1" && "$TRAVIS_PHP_VERSION" == "hhvm" ]]; then ./vendor/bin/phpunit --coverage-text; fi
|
||||
- if [[ "$PHPCS" == "1" ]]; then ./vendor/bin/phpcs --standard=PSR2 -np src/ tests/; fi
|
||||
|
||||
after_script:
|
||||
- if [[ "$PHPCS" != "1" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue