PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Lars Moelleken   PHP CSS to Inline Styles   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP CSS to Inline Styles
Convert CSS styles into HTML attribute values
Author: By
Last change: [+]: update "symfony/css-selector"

-> fix phpstan reported errors
[+]: use "phpcs" + "phpstan" + fix unicode-regex support
Date: 14 days ago
Size: 762 bytes
 

 

Contents

Class file image Download
language: php sudo: false php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 before_script: - wget https://scrutinizer-ci.com/ocular.phar - travis_retry composer self-update - travis_retry composer require satooshi/php-coveralls - if [ "$(phpenv version-name)" == 7.3 ]; then travis_retry composer require phpstan/phpstan; fi - travis_retry composer install --no-interaction --prefer-source - composer dump-autoload -o script: - mkdir -p build/logs - php vendor/bin/phpunit -c phpunit.xml - if [ "$(phpenv version-name)" == 7.3 ]; then php vendor/bin/phpstan analyse; fi after_script: - php vendor/bin/coveralls -v - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml - bash <(curl -s https://codecov.io/bash)