Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Remove direct dependencies on doctrine/common #582

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@ cache:
- .phpunit

php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2

matrix:
include:
- php: 7.0
- php: 7.1
env: deps=low
fast_finish: true

Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/dependency-injection": "^3.3|^4.0",
"symfony/http-kernel": "^3.3|^4.0",
"doctrine/common": "^2.2"
"doctrine/collections": "~1.0",
"doctrine/event-manager": "~1.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this bundle really use the Doctrine events ? AFAIK, it uses doctrine/annotations (missing here) and doctrine/persistence

"doctrine/persistence": "~1.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should use the caret operator for consistency.

},
"require-dev": {
"symfony/expression-language": "^3.3|^4.0",
Expand Down