Projekt

Obecné

Profil

Stáhnout (519 Bajtů) Statistiky
| Větev: | Revize:
1
language: php
2

    
3
php:
4
  - 5.3
5
  - 5.4
6
  - 5.5
7
  - 5.6
8
  - 7.0
9
  - 7.0snapshot
10
  - 7.1
11
  - 7.1snapshot
12
  - master
13

    
14
sudo: false
15

    
16
before_install:
17
  - composer self-update
18
  - composer clear-cache
19

    
20
install:
21
  - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable
22

    
23
script:
24
  - ./vendor/bin/phpunit --configuration ./build/phpunit.xml --coverage-clover=coverage.xml
25

    
26
after_success:
27
  - bash <(curl -s https://codecov.io/bash)
28

    
29
notifications:
30
  email: false
31

    
(3-3/7)