File tree 2 files changed +27
-10
lines changed
2 files changed +27
-10
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
- php :
4
- - 5.3
5
- - 5.4
6
- - 5.5
3
+ sudo : false
7
4
8
- before_script :
9
- - curl -s http://getcomposer.org/installer | php
10
- - php composer.phar --dev install
5
+ cache :
6
+ directories :
7
+ - $HOME/.composer/cache
8
+
9
+ matrix :
10
+ include :
11
+ - php : 5.3
12
+ env : DEPENDENCIES='low'
13
+ - php : 5.3
14
+ - php : 5.4
15
+ - php : 5.5
16
+ - php : 5.6
17
+ - php : hhvm
18
+ allow_failures :
19
+ - env : DEPENDENCIES='low'
20
+
21
+ before_install :
22
+ - composer self-update
23
+
24
+ install :
25
+ - export COMPOSER_ROOT_VERSION=dev-master
26
+ - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;
27
+ - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi;
11
28
12
29
script :
13
- - bin/phpspec run -v -f pretty
30
+ - ./ bin/phpspec run --format= pretty
Original file line number Diff line number Diff line change 18
18
"symfony/intl" : " ~2.5"
19
19
},
20
20
"require-dev" : {
21
- "phpspec/phpspec" : " 2.0.* " ,
22
- "coduo/phpspec-data-provider-extension" : " dev-master "
21
+ "phpspec/phpspec" : " ^2 " ,
22
+ "coduo/phpspec-data-provider-extension" : " ^1 "
23
23
},
24
24
"autoload" : {
25
25
"psr-0" : {"" : " src" }
You can’t perform that action at this time.
0 commit comments