Skip to content

Commit b38fd95

Browse files
committed
travis configuration
1 parent 08e39da commit b38fd95

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ sudo: false
33
language: php
44

55
php:
6+
- 5.6
67
- 7.1
78

89
matrix:
@@ -13,14 +14,16 @@ matrix:
1314
env: SYMFONY_VERSION="2.8.*" DEPENDENCIES=stable
1415
- php: 7.1
1516
env: SYMFONY_VERSION="3.4.*" DEPENDENCIES=stable
17+
- php: 5.6
18+
env: SYMFONY_VERSION="2.8.*" DEPENDENCIES=stable
19+
- php: 5.6
20+
env: SYMFONY_VERSION="3.4.*" DEPENDENCIES=stable
1621

1722
before_install:
1823
- composer self-update
1924
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
2025
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony:"$SYMFONY_VERSION"; fi
2126
- COMPOSER_MEMORY_LIMIT=-1 composer install -v --prefer-dist --no-interaction
2227

23-
2428
script:
2529
- composer validate
26-
#- composer test

Tests/Controller/ApiControllerControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
66

7-
class ApiControllerControllerTest //extends WebTestCase
7+
class ApiControllerControllerTest extends WebTestCase
88
{
99
public function testUpdatebinary()
1010
{

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"MIT"
2222
],
2323
"require" : {
24-
"php": ">=5.3.2",
24+
"php": ">=5.6",
2525
"psr/log": "^1.0",
2626
"symfony/symfony": "^2.3|~3.0",
2727
"symfony/assetic-bundle": "^2.8",

0 commit comments

Comments
 (0)