Skip to content

Commit c4728b2

Browse files
authored
Merge pull request #37 from clue-labs/travis
Lock Travis distro so new defaults will not break the build
2 parents 07bfe89 + bcb7dbd commit c4728b2

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
language: php
22

33
php:
4-
- 5.3
4+
# - 5.3 # requires old distro, see below
55
- 5.4
66
- 5.5
77
- 5.6
88
- 7.0
99
- 7.1
10+
- hhvm # ignore errors, see below
11+
12+
# lock distro so new future defaults will not break the build
13+
dist: trusty
1014

11-
# also test against HHVM, but require "trusty" and ignore errors
1215
matrix:
1316
include:
14-
- php: hhvm
15-
dist: trusty
17+
- php: 5.3
18+
dist: precise
1619
allow_failures:
1720
- php: hhvm
1821

@@ -23,7 +26,7 @@ install:
2326
- sudo apt-get -qq update && sudo apt-get --no-install-recommends -qq install -y asterisk
2427
- sudo cp tests/username.conf /etc/asterisk/manager.d/username.conf
2528
- sudo /etc/init.d/asterisk reload
26-
- composer install --prefer-source --no-interaction
29+
- composer install --no-interaction
2730

2831
script:
2932
- sudo /etc/init.d/asterisk status || sudo /etc/init.d/asterisk start

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
],
1313
"require": {
1414
"php": ">=5.3",
15-
"evenement/evenement": "~1.0|~2.0",
1615
"react/promise": "~1.0|~2.0",
1716
"react/socket-client": "0.3.*|0.4.*",
1817
"react/event-loop": "0.3.*|0.4.*"

0 commit comments

Comments
 (0)