Skip to content

Commit 80438d2

Browse files
committed
Fix php-curl-class#34: Add PHP 5.3 to continuous integration tests
1 parent 4b7e328 commit 80438d2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: php
22
php:
3+
- 5.3
34
- 5.4
45
- 5.5
56
- 5.6
@@ -12,4 +13,6 @@ before_script:
1213
- php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &
1314
script:
1415
- php -l src/*
15-
- cd tests && phpunit --configuration phpunit.xml
16+
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then
17+
cd tests && phpunit --configuration phpunit.xml
18+
fi

0 commit comments

Comments
 (0)