Skip to content

Commit

Permalink
Merge pull request #19 from mybuilder/update-travis-and-phpunit
Browse files Browse the repository at this point in the history
Update travis and PHPUnit
  • Loading branch information
gavinlove authored Jun 23, 2016
2 parents 6f5c0fd + a79b3c6 commit ee393f1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 17 deletions.
15 changes: 1 addition & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,16 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

env:
- SYMFONY_VERSION=2.2.*
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.4.*
- SYMFONY_VERSION=2.5.*
- SYMFONY_VERSION=2.6.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*

matrix:
exclude:
- php: 5.3
env: SYMFONY_VERSION=3.0.*
- php: 5.4
env: SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=3.1.*

before_script:
- composer require symfony/process:${SYMFONY_VERSION}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.6.0",
"symfony/process": "~2.2|~3.0"
},
"suggest": {
"symfony/filesystem": "Allows using Symfony Filesystem"
},
"require-dev": {
"phpunit/phpunit": "4.6",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Updater/ProcessRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface ProcessRunner
/**
* @param string $command
*
* @return boolean
* @return string
*/
public function run($command);
}

0 comments on commit ee393f1

Please sign in to comment.