File tree Expand file tree Collapse file tree 7 files changed +1792
-4
lines changed Expand file tree Collapse file tree 7 files changed +1792
-4
lines changed Original file line number Diff line number Diff line change 2
2
* .iml
3
3
4
4
composer.phar
5
- vendor /
6
-
7
- composer.lock
8
- tests /_output /*
5
+ vendor /
Original file line number Diff line number Diff line change
1
+ language : php
2
+
3
+ php :
4
+ - 5.4
5
+ - 5.5
6
+ - 5.6
7
+ - 7.0
8
+ - hhvm
9
+ - hhvm-nightly
10
+
11
+ # run build against hhvm but allow them to fail
12
+ # http://docs.travis-ci.com/user/build-configuration/#Rows-That-are-Allowed-To-Fail
13
+ matrix :
14
+ fast_finish : true
15
+ allow_failures :
16
+ - php : hhvm
17
+ - php : hhvm-nightly
18
+ - php : 7.0
19
+
20
+ services :
21
+ - redis-server
22
+ - rabbitmq
23
+
24
+ # faster builds on new travis setup not using sudo
25
+ sudo : false
26
+
27
+ # cache vendor dirs
28
+ cache :
29
+ directories :
30
+ - vendor
31
+ - $HOME/.composer/cache
32
+
33
+ install :
34
+ - travis_retry composer self-update && composer --version
35
+ - export PATH="$HOME/.composer/vendor/bin:$PATH"
36
+ - echo "extension = amqp.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
37
+ # core framework:
38
+ - travis_retry composer install --prefer-dist --no-interaction
39
+
40
+ before_script :
41
+
42
+ script :
43
+ - vendor/bin/codecept run
Original file line number Diff line number Diff line change 1
1
yii2-async
2
2
=========
3
+ [ ![ Build Status] ( https://travis-ci.org/bazilio91/yii2-async.svg?branch=master )] ( https://travis-ci.org/bazilio91/yii2-async )
3
4
4
5
Provides translucent api for moving large tasks out of request response
5
6
You can’t perform that action at this time.
0 commit comments