From 2d574fea2ee09ac640de5baa46e5fe85c2076b0f Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 25 Jan 2022 11:29:59 +0100 Subject: [PATCH] chore: Remove duplicate entries from `composer.json` and normalize it. --- composer.json | 30 +++++++++--------------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/composer.json b/composer.json index d3766bb65..2223f65c0 100644 --- a/composer.json +++ b/composer.json @@ -52,9 +52,6 @@ "twig/string-extra": "^3.3", "twig/twig": "^3.0" }, - "conflict": { - "symfony/symfony": "*" - }, "require-dev": { "doctrine/doctrine-fixtures-bundle": "^3.3", "drupol/php-conventions": "^5", @@ -71,23 +68,17 @@ "symfony/var-dumper": "^4.4", "symfony/web-profiler-bundle": "^4.4" }, - "config": { - "bin-dir": "bin", - "optimize-autoloader": true, - "sort-packages": true, - "vendor-dir": "tests/app/vendor", - "allow-plugins": { - "composer/package-versions-deprecated": true, - "phpstan/extension-installer": true, - "ergebnis/composer-normalize": true, - "phpro/grumphp": true - } + "conflict": { + "symfony/symfony": "*" }, "autoload": { "psr-4": { "Chill\\ActivityBundle\\": "src/Bundle/ChillActivityBundle", + "Chill\\AsideActivityBundle\\": "src/Bundle/ChillAsideActivityBundle/src", "Chill\\BudgetBundle\\": "src/Bundle/ChillBudgetBundle", + "Chill\\CalendarBundle\\": "src/Bundle/ChillCalendarBundle", "Chill\\CustomFieldsBundle\\": "src/Bundle/ChillCustomFieldsBundle", + "Chill\\DocGeneratorBundle\\": "src/Bundle/ChillDocGeneratorBundle", "Chill\\DocStoreBundle\\": "src/Bundle/ChillDocStoreBundle", "Chill\\EventBundle\\": "src/Bundle/ChillEventBundle", "Chill\\FamilyMemberBundle\\": "src/Bundle/ChillFamilyMemberBundle", @@ -96,9 +87,6 @@ "Chill\\ReportBundle\\": "src/Bundle/ChillReportBundle", "Chill\\TaskBundle\\": "src/Bundle/ChillTaskBundle", "Chill\\ThirdPartyBundle\\": "src/Bundle/ChillThirdPartyBundle", - "Chill\\AsideActivityBundle\\": "src/Bundle/ChillAsideActivityBundle/src", - "Chill\\DocGeneratorBundle\\": "src/Bundle/ChillDocGeneratorBundle", - "Chill\\CalendarBundle\\": "src/Bundle/ChillCalendarBundle", "Chill\\WopiBundle\\": "src/Bundle/ChillWopiBundle/src" } }, @@ -111,10 +99,10 @@ "config": { "allow-plugins": { "composer/package-versions-deprecated": true, - "phpstan/extension-installer": true, "ergebnis/composer-normalize": true, + "ocramius/package-versions": true, "phpro/grumphp": true, - "ocramius/package-versions": true + "phpstan/extension-installer": true }, "bin-dir": "bin", "optimize-autoloader": true, @@ -123,8 +111,8 @@ }, "scripts": { "auto-scripts": { - "cache:clear": "symfony-cmd", - "assets:install %PUBLIC_DIR%": "symfony-cmd" + "assets:install %PUBLIC_DIR%": "symfony-cmd", + "cache:clear": "symfony-cmd" } } }