-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prevent installation with old versions of dependant modules
- Loading branch information
Showing
1 changed file
with
3 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,33 +8,7 @@ | |
"module", | ||
"laminas" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Kyle Spraggs", | ||
"email": "[email protected]", | ||
"homepage": "http://www.spiffyjr.me/" | ||
}, | ||
{ | ||
"name": "Marco Pivetta", | ||
"email": "[email protected]", | ||
"homepage": "http://marco-pivetta.com/" | ||
}, | ||
{ | ||
"name": "Guilherme Blanco", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Micha\u00ebl Gallego", | ||
"email": "[email protected]", | ||
"homepage": "http://www.michaelgallego.fr" | ||
}, | ||
{ | ||
"name": "Tom H Anderson", | ||
"email": "[email protected]", | ||
"homepage": "https://tomhanderson.com" | ||
} | ||
], | ||
"homepage": "http://www.doctrine-project.org/", | ||
"homepage": "https://www.doctrine-project.org/", | ||
"require": { | ||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0", | ||
"composer-runtime-api": "^2.0.0", | ||
|
@@ -73,7 +47,8 @@ | |
"phpunit/phpunit": "^10.5.40" | ||
}, | ||
"conflict": { | ||
"doctrine/orm": "2.12.0" | ||
"doctrine/doctrine-mongo-odm-module": "<5.2.0", | ||
"doctrine/doctrine-orm-module": "<6.2.0" | ||
}, | ||
"suggest": { | ||
"doctrine/data-fixtures": "Data Fixtures if you want to generate test data or bootstrap data for your deployments", | ||
|