Skip to content

Commit 2de824a

Browse files
authored
Prepare for 3.x release (#99)
* Prepare for 3.x release * Removed tests on php7.0
1 parent 2406734 commit 2de824a

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@ sudo: false
33
cache:
44
directories:
55
- $HOME/.composer/cache/files
6-
- $HOME/symfony-bridge/.phpunit
76
env:
87
global:
98
- PHPUNIT_FLAGS="-v"
10-
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
9+
1110
matrix:
1211
fast_finish: true
1312
include:
1413
# Minimum supported Symfony version with the latest PHP version
15-
- php: 7.1
14+
- php: 7.2
1615
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
1716

1817
# Test the latest stable release
19-
- php: 7.0
2018
- php: 7.1
2119
- php: 7.2
2220
env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
@@ -27,7 +25,7 @@ matrix:
2725
- php: 7.2
2826
env: DEPENDENCIES="dunglas/symfony-lock:^3"
2927
- php: 7.2
30-
env: DEPENDENCIES="dunglas/symfony-lock:^4" STABILITY="beta"
28+
env: DEPENDENCIES="dunglas/symfony-lock:^4"
3129

3230
# Latest commit to master
3331
- php: 7.2

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^7.0",
17-
"matthiasnoback/symfony-config-test": "^3.0",
16+
"php": "^7.1",
17+
"matthiasnoback/symfony-config-test": "^4.0",
1818
"symfony/dependency-injection": "^2.7 || ^3.3 || ^4.0",
1919
"symfony/config": "^2.7 || ^3.3 || ^4.0",
2020
"symfony/yaml": "^2.7 || ^3.3 || ^4.0"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "^6.0"
23+
"phpunit/phpunit": "^7.0"
24+
},
25+
"conflict": {
26+
"phpunit/phpunit": "<7.0"
2427
},
2528
"autoload": {
2629
"psr-4" : { "Matthias\\SymfonyDependencyInjectionTest\\" : "" }

0 commit comments

Comments
 (0)