Skip to content

Commit 69214e8

Browse files
authored
Merge pull request #11 from Jean85/patch-1
Reword Travis config suggestions
2 parents 43b0d86 + 62b09e7 commit 69214e8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,24 +72,24 @@ class BundleInitializationTest extends BaseBundleTestCase
7272

7373
```
7474

75-
## Configure travis
75+
## Configure Travis
7676

77-
You want travis to run the highest version of Symfony you support and the lowest
78-
version. Same with PHP version. There is no need for testing for version in between
79-
because both Symfony and PHP follow Semver.
77+
You want Travis to run against each currently supported LTS version of Symfony (since there would be only one per major version), plus the current if it's not an LTS too. There is no need for testing against version in between because Symfony follows [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
8078

8179
```yaml
8280
language: php
8381

8482
php:
8583
- 5.5
84+
- 5.6
85+
- 7.0
8686
- 7.1
87-
- hhvm
8887
env:
8988
global:
9089
- TEST_COMMAND="vendor/bin/phpunit"
9190
matrix:
92-
- SYMFONY_VERSION=3.2.*
91+
- SYMFONY_VERSION=4.*
92+
- SYMFONY_VERSION=3.4.*
9393
- SYMFONY_VERSION=2.7.*
9494

9595
matrix:

0 commit comments

Comments
 (0)