Skip to content

Commit e408d9d

Browse files
authored
Merge pull request #210 from core23/patch/doctrine
Added doctrine <2.6 to conflicts
2 parents 874e124 + be013f9 commit e408d9d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.travis.yml

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

33
php:
4-
- 5.4
5-
- 5.5
64
- 7.1
5+
- 7.2
76

87
install: composer install -n
98

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"homepage": "https://github.com/stephpy/timeline-bundle/contributors"
1111
}],
1212
"require": {
13-
"php": ">=5.3.2",
14-
"stephpy/timeline": "*",
13+
"php": "^7.1",
14+
"stephpy/timeline": "^1.0",
1515
"symfony/framework-bundle": "~2.0|~3.0|~4.0",
1616
"symfony/options-resolver": "~2.0|~3.0|~4.0"
1717
},
1818
"require-dev": {
1919
"atoum/atoum": "1.*|3.*",
20-
"doctrine/orm": "2.*",
20+
"doctrine/orm": "^2.6",
2121
"symfony/console": "~2.0|~3.0|~4.0",
2222
"symfony/twig-bundle": "~2.0|~3.0|~4.0",
2323
"symfony/expression-language": "~2.0|~3.0|~4.0"
@@ -28,6 +28,9 @@
2828
"doctrine/orm": "Use doctrine ORM driver",
2929
"doctrine/mongodb-odm-bundle": "Use doctrine ODM driver"
3030
},
31+
"conflict": {
32+
"doctrine/orm": "<2.6"
33+
},
3134
"autoload": {
3235
"psr-4": { "Spy\\TimelineBundle\\": "" }
3336
},

0 commit comments

Comments
 (0)