Skip to content

Commit 88056e9

Browse files
author
Cliff Odijk
committed
Add sort-packages to composer files
1 parent 0c2df6e commit 88056e9

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

composer.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
"name": "simple-bus/symfony-bridge",
33
"type": "symfony-bundle",
44
"description": "Bridge for using command buses and event buses in Symfony projects",
5-
"keywords": ["Symfony", "Doctrine", "event bus", "command bus"],
5+
"keywords": [
6+
"Symfony",
7+
"Doctrine",
8+
"event bus",
9+
"command bus"
10+
],
611
"homepage": "http://github.com/SimpleBus/SymfonyBridge",
712
"license": "MIT",
813
"authors": [
@@ -19,17 +24,10 @@
1924
"require": {
2025
"php": "^7.1",
2126
"simple-bus/message-bus": "~3.0",
22-
"symfony/http-kernel": "~2.7 || ~3.3 || ~4.0",
27+
"symfony/config": "~2.7 || ~3.3 || ~4.0",
2328
"symfony/dependency-injection": "~2.7 || ~3.3 || ~4.0",
24-
"symfony/yaml": "~2.7 || ~3.3 || ~4.0",
25-
"symfony/config": "~2.7 || ~3.3 || ~4.0"
26-
},
27-
"suggest": {
28-
"simple-bus/doctrine-orm-bridge": "For integration with Doctrine ORM",
29-
"doctrine/orm": "For integration with Doctrine ORM",
30-
"doctrine/doctrine-bundle": "For integration with Doctrine ORM",
31-
"symfony/monolog-bundle": "For logging messages",
32-
"symfony/proxy-manager-bridge": "For integration with Symfony and Doctrine ORM"
29+
"symfony/http-kernel": "~2.7 || ~3.3 || ~4.0",
30+
"symfony/yaml": "~2.7 || ~3.3 || ~4.0"
3331
},
3432
"require-dev": {
3533
"doctrine/doctrine-bundle": "~1.0",
@@ -41,6 +39,13 @@
4139
"symfony/monolog-bundle": "~2.3 || ~3.0",
4240
"symfony/proxy-manager-bridge": "~2.7 || ~3.3 || ~4.0"
4341
},
42+
"suggest": {
43+
"doctrine/doctrine-bundle": "For integration with Doctrine ORM",
44+
"doctrine/orm": "For integration with Doctrine ORM",
45+
"simple-bus/doctrine-orm-bridge": "For integration with Doctrine ORM",
46+
"symfony/monolog-bundle": "For logging messages",
47+
"symfony/proxy-manager-bridge": "For integration with Symfony and Doctrine ORM"
48+
},
4449
"autoload": {
4550
"psr-4": {
4651
"SimpleBus\\SymfonyBridge\\": "src"
@@ -50,5 +55,8 @@
5055
"psr-4": {
5156
"SimpleBus\\SymfonyBridge\\Tests\\": "tests"
5257
}
58+
},
59+
"config": {
60+
"sort-packages": true
5361
}
5462
}

0 commit comments

Comments
 (0)