summaryrefslogtreecommitdiff
path: root/vendor/doctrine/persistence/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/persistence/CONTRIBUTING.md')
-rw-r--r--vendor/doctrine/persistence/CONTRIBUTING.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/doctrine/persistence/CONTRIBUTING.md b/vendor/doctrine/persistence/CONTRIBUTING.md
new file mode 100644
index 0000000..268200a
--- /dev/null
+++ b/vendor/doctrine/persistence/CONTRIBUTING.md
@@ -0,0 +1,11 @@
1# Circular dependency
2
3This package has a development dependency on `doctrine/common`, which has a
4regular dependency on this package (`^2.0` at the time of writing).
5
6To be able to use Composer, one has to let it understand that this is version 2
7(even when developing on 3.0.x), as follows:
8
9```shell
10COMPOSER_ROOT_VERSION=2.0 composer update -v
11```