1
0
mirror of synced 2025-02-09 00:39:25 +03:00

Use stable packages

This will make it easier to contribute. It will also make reviews safer
since you will be able to tell if a PR is reponsible for a broken build
or not. Catching errors early is still possible by having a look at
allowed failures.
This commit is contained in:
Grégoire Paris 2017-12-13 20:41:19 +01:00
parent ca42879f9e
commit 8ca7db8852
No known key found for this signature in database
GPG Key ID: 24D48B8012B116BF
2 changed files with 5 additions and 3 deletions

View File

@ -56,8 +56,10 @@ jobs:
install: travis_retry composer update --prefer-dist --prefer-lowest
- stage: Test
env: DB=sqlite DEPENDENCIES=stable
install: travis_retry composer update --prefer-dist --prefer-stable
env: DB=sqlite STABILITY=dev
install:
- composer config minimum-stability $STABILITY
- travis_retry composer update --prefer-dist
- stage: Test
env: DB=sqlite COVERAGE
@ -91,6 +93,7 @@ jobs:
allow_failures:
- php: nightly
- env: DB=sqlite STABILITY=dev
cache:
directories:

View File

@ -12,7 +12,6 @@
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
{"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
],
"minimum-stability": "dev",
"config": {
"sort-packages": true
},