Skip to content

Commit

Permalink
Normalize composer
Browse files Browse the repository at this point in the history
  • Loading branch information
franmomu committed Jul 26, 2023
1 parent e4062ed commit 2d83344
Showing 1 changed file with 40 additions and 27 deletions.
67 changes: 40 additions & 27 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,65 @@
{
"name": "doctrine/mongodb-odm-bundle",
"type": "symfony-bundle",
"description": "Symfony Doctrine MongoDB Bundle",
"keywords": ["persistence", "mongodb", "symfony"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"minimum-stability": "stable",
"type": "symfony-bundle",
"keywords": [
"persistence",
"mongodb",
"symfony"
],
"authors": [
{"name": "Bulat Shakirzyanov", "email": "[email protected]"},
{"name": "Kris Wallsmith", "email": "[email protected]"},
{"name": "Jonathan H. Wage", "email": "[email protected]"}
{
"name": "Bulat Shakirzyanov",
"email": "[email protected]"
},
{
"name": "Kris Wallsmith",
"email": "[email protected]"
},
{
"name": "Jonathan H. Wage",
"email": "[email protected]"
}
],
"homepage": "http://www.doctrine-project.org",
"require": {
"php": "^7.4 || ^8.0",
"ext-mongodb": "^1.5",
"doctrine/annotations": "^1.13 || ^2.0",
"doctrine/mongodb-odm": "^2.3",
"doctrine/persistence": "^2.2|^3.0",
"doctrine/persistence": "^2.2 || ^3.0",
"jean85/pretty-package-versions": "^1.3.0 || ^2.0.1",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/config": "^5.4|^6.2",
"symfony/console": "^5.4|^6.2",
"symfony/dependency-injection": "^5.4|^6.2",
"symfony/deprecation-contracts": "^2.1|^3.0",
"symfony/doctrine-bridge": "^5.4.19|^6.2",
"symfony/framework-bundle": "^5.4|^6.2",
"symfony/http-kernel": "^5.4|^6.2",
"symfony/options-resolver": "^5.4|^6.2"
},
"conflict": {
"doctrine/data-fixtures": "<1.3"
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.2",
"symfony/console": "^5.4 || ^6.2",
"symfony/dependency-injection": "^5.4 || ^6.2",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/doctrine-bridge": "^5.4.19 || ^6.2",
"symfony/framework-bundle": "^5.4 || ^6.2",
"symfony/http-kernel": "^5.4 || ^6.2",
"symfony/options-resolver": "^5.4 || ^6.2"
},
"require-dev": {
"doctrine/coding-standard": "^11.0",
"doctrine/data-fixtures": "^1.3",
"phpunit/phpunit": "^9.5.5",
"psalm/plugin-symfony": "^5.0",
"symfony/form": "^5.4|^6.2",
"symfony/form": "^5.4 || ^6.2",
"symfony/phpunit-bridge": "^6.2",
"symfony/security-bundle": "^5.4|^6.2",
"symfony/stopwatch": "^5.4|^6.2",
"symfony/validator": "^5.4|^6.2",
"symfony/yaml": "^5.4|^6.2",
"symfony/security-bundle": "^5.4 || ^6.2",
"symfony/stopwatch": "^5.4 || ^6.2",
"symfony/validator": "^5.4 || ^6.2",
"symfony/yaml": "^5.4 || ^6.2",
"vimeo/psalm": "^5.12"
},
"conflict": {
"doctrine/data-fixtures": "<1.3"
},
"suggest": {
"doctrine/data-fixtures": "Load data fixtures"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Doctrine\\Bundle\\MongoDBBundle\\": ""
Expand All @@ -61,9 +74,9 @@
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"sort-packages": true
}
}

0 comments on commit 2d83344

Please sign in to comment.