forked from elcodi/elcodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (35 loc) · 1.49 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
env:
- SYMFONY_VERSION="2.4.*" TWIG_REQUIRED=false
- SYMFONY_VERSION="2.4.*" TWIG_REQUIRED=true
before_install:
- composer require --no-update symfony/http-kernel:${SYMFONY_VERSION}
- composer require --no-update symfony/config:${SYMFONY_VERSION}
- composer require --no-update symfony/yaml:${SYMFONY_VERSION}
- composer require --no-update symfony/console:${SYMFONY_VERSION}
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- composer require --no-update symfony/class-loader:${SYMFONY_VERSION}
- composer require --no-update symfony/security:${SYMFONY_VERSION}
- composer require --no-update symfony/http-foundation:${SYMFONY_VERSION}
- composer require --no-update symfony/validator:${SYMFONY_VERSION}
- composer require --no-update symfony/process:${SYMFONY_VERSION}
- composer require --no-update symfony/expression-language:${SYMFONY_VERSION}
- composer require --no-update symfony/event-dispatcher:${SYMFONY_VERSION}
- composer require --no-update symfony/finder:${SYMFONY_VERSION}
- composer require --no-update symfony/browser-kit:${SYMFONY_VERSION}
- if [[ ${TWIG_REQUIRED} == true ]]; then composer require --no-update symfony/twig-bundle:${SYMFONY_VERSION}; fi
install:
- composer install --prefer-source --no-interaction
script:
- phpunit
notifications:
email: false