forked from seekmas/ChillDevFileManagerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (27 loc) · 752 Bytes
/
.travis.yml
File metadata and controls
34 lines (27 loc) · 752 Bytes
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
##
# This file is part of the ChillDev FileManager bundle.
#
# @author Rafal Wrzeszcz <rafal.wrzeszcz@wrzasq.pl>
# @copyright 2012 - 2014 © by Rafal Wrzeszcz - Wrzasq.pl.
# @version 0.1.4
# @since 0.0.1
# @package ChillDev\Bundle\FileManagerBundle
##
#FIXME: https://github.com/travis-ci/travis-ci/issues/753
language: "php"
php:
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
env:
- "SYMFONY_VERSION=2.2.*"
- "SYMFONY_VERSION=2.3.*"
- "SYMFONY_VERSION=2.4.*"
- "SYMFONY_VERSION=2.5.*"
before_script:
- "composer self-update"
- "composer --dev --no-progress require symfony/symfony:${SYMFONY_VERSION}"
- "composer --dev --no-progress --optimize-autoloader install"
script: "make ci"
after_script: "make coveralls"