Skip to content

Commit

Permalink
Merge pull request #1 from xsolve-pl/develop
Browse files Browse the repository at this point in the history
Adjusting dependencies and improving CI tests.
  • Loading branch information
malef authored May 17, 2018
2 parents 597a05b + 2d20b67 commit c062e9e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,22 @@ language: php
branches:
only:
- master
- develop
- /^v\d+\.\d+\.\d+$/

matrix:
fast_finish: true
include:
- php: 5.6
env: PHPSTAN=false
- php: 7.0
env: PHPSTAN=true
- php: 7.1
env: PHPSTAN=true
- php: 7.2
env: PHPSTAN=true
- php: hhvm
env: PHPSTAN=false
fast_finish: true
allow_failures:
- php: hhvm

Expand All @@ -25,7 +28,7 @@ cache:
- $HOME/.composer/cache

before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
- phpenv config-rm xdebug.ini || echo "XDebug disabled."
- composer self-update

install:
Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
}
],
"require": {
"php": ">=5.6.0"
"php": "^5.6|^7.0"
},
"require-dev": {
"phpunit/phpunit": "~5.5",
"phpunit/phpunit": "^5.5",
"sebastian/phpcpd": "^2.0",
"phpmd/phpmd": "^2.4"
},
"suggest": {
"xsolve-pl/model-factory-bundle": "^1.0"
},
"autoload":{
"psr-4":{
"Xsolve\\ModelFactory\\": "lib",
Expand Down

0 comments on commit c062e9e

Please sign in to comment.