-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (37 loc) · 924 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "emrecanmuslu/user-symfony-messenger-doctrine-transport-adapter",
"type": "project",
"description": "Symfony Messenger Doctrine Transport Adapter",
"license": "proprietary",
"require": {
"php": "^7.3",
"symfony/messenger": "^4.1|^5.0",
"symfony/service-contracts": "^1.1|^2"
},
"require-dev": {
"doctrine/dbal": "^2.10|^3.0",
"doctrine/persistence": "^1.3|^2",
"symfony/property-access": "^4.4|^5.0",
"symfony/serializer": "^4.4|^5.0"
},
"conflict": {
"doctrine/dbal": "<2.10",
"doctrine/persistence": "<1.3"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"EmrecanMuslu\\Messenger\\Transport\\": [
"src/"
]
}
},
"autoload-dev": {
"classmap": [
"tests"
]
},
"minimum-stability": "stable"
}