Skip to content

Commit

Permalink
Merge pull request #10 from garak/patch-1
Browse files Browse the repository at this point in the history
Improve composer.json
  • Loading branch information
richardfullmer committed Apr 22, 2016
2 parents bad02e6 + 1681921 commit cb6e91c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ php:
- 7.0
- hhvm

matrix:
allow_failures:
- php: hhvm

before_script:
- composer install --prefer-source --dev

Expand Down
16 changes: 11 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,21 @@
}
],
"require": {
"php": ">=5.3.0"
"php": ">=5.3.0",
"ext-pgsql": "*",
"doctrine/dbal": "2.*"
},
"require-dev": {
"doctrine/dbal": "*",
"phpunit/phpunit": "*"
"phpunit/phpunit": "4.*|5.*"
},
"autoload": {
"psr-0": {
"Doctrine\\DBAL\\PostgresTypes\\": "src/"
"psr-4": {
"Doctrine\\DBAL\\PostgresTypes\\": "src/Doctrine/DBAL/PostgresTypes"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}

0 comments on commit cb6e91c

Please # to comment.