Skip to content
This repository was archived by the owner on Dec 14, 2024. It is now read-only.

Commit 5f61106

Browse files
Allow Symfony 4
1 parent 6dfd4a4 commit 5f61106

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@ php:
1717
env:
1818
- SYMFONY_VERSION="2.8.*"
1919
- SYMFONY_VERSION="3.4.*"
20+
- SYMFONY_VERSION="4.0.*"
2021

2122
matrix:
2223
include:
23-
- php: 7.0
24-
env: SYMFONY_VERSION="3.4"
24+
- php: 5.6
25+
env: SYMFONY_VERSION=2.7.*"
26+
- php: 7.2
27+
env: SYMFONY_VERSION="3.4.*"
2528

26-
# Only send code coverage to Code Climate for the current versions of PHP and Symfony LTS
29+
# Only send code coverage to Code Climate for the current version of PHP and Symfony LTS
2730
# https://github.com/doctrine/doctrine2/blob/3570f4a49afc7e98fed71e0596dded6a39d4fd7b/.travis.yml#L16
2831
before_install:
2932
- if echo "$TRAVIS_COMMIT_MESSAGE" | grep -F -q "[skip travis]" ; then echo "[skip travis] has been found, exiting" && exit 0 ; else echo "[skip travis] has not been found, continuing" ; fi

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This bundle is also used to test several CI (Continuous Integration) services.
4646
### Requirements:
4747

4848
- [Twitter keys][Twitter keys]
49-
- PHP >= 5.5 (required by abraham/twitteroauth 0.6.0)
49+
- PHP >= 5.6
5050
- a database (must be supported by Doctrine2)
5151
- [Symfony][Symfony GitHub] (2.7 or higher) with [Composer][Composer]. If you want to install it:
5252

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
"require" : {
1515
"php": ">=5.6",
1616
"ext-mbstring": "*",
17-
"symfony/symfony": "~2.7||~3.2",
17+
"symfony/symfony": "~2.8||~3.4||~4.0",
1818
"abraham/twitteroauth": "~0.6"
1919
},
2020
"require-dev": {
2121
"doctrine/orm": "^2.4.8",
22-
"symfony/assetic-bundle": "~2.3",
23-
"symfony/monolog-bundle": "~2.4||~3.1",
22+
"symfony/assetic-bundle": "~2.7",
23+
"symfony/monolog-bundle": "~2.7||~3.4||~4.0",
2424
"doctrine/doctrine-fixtures-bundle": "~2.3",
2525
"liip/functional-test-bundle": "~1.8",
2626
"phpunit/phpunit": "~5.7.21|~6.5.6|~7.0",

0 commit comments

Comments
 (0)