Skip to content

Commit c678a5f

Browse files
authored
Merge pull request #5 from corpsee/symfony-console
Added alternative symfony/console versions (~3.0 and ~4.0).
2 parents e34ca78 + 7c985e9 commit c678a5f

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: php
22

33
php:
4-
- 5.3
5-
- 5.4
6-
- 5.5
74
- 5.6
5+
- 7.1
6+
- 7.2
87
- hhvm
98

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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CHANGELOG
2+
=========
3+
4+
master
5+
------
6+
7+
* Added alternative `symfony/console` versions (`~3.0` and `~4.0`).
8+
* Removed PHP versions < `5.6`.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=5.3.3",
15+
"php": "^5.6 || ^7.1",
1616
"guzzle/guzzle": "~3.7",
17-
"symfony/console": "~2.5"
17+
"symfony/console": "~2.5|~3.0|~4.0"
1818
},
1919
"require-dev":{
2020
"phpunit/phpunit": "~4.1"

0 commit comments

Comments
 (0)