54 lines
1.6 KiB
JSON
54 lines
1.6 KiB
JSON
|
{
|
||
|
"name": "symfony/messenger",
|
||
|
"type": "library",
|
||
|
"description": "Helps applications send and receive messages to/from other applications or via message queues",
|
||
|
"keywords": [],
|
||
|
"homepage": "https://symfony.com",
|
||
|
"license": "MIT",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Samuel Roze",
|
||
|
"email": "samuel.roze@gmail.com"
|
||
|
},
|
||
|
{
|
||
|
"name": "Symfony Community",
|
||
|
"homepage": "https://symfony.com/contributors"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": ">=8.2",
|
||
|
"psr/log": "^1|^2|^3",
|
||
|
"symfony/clock": "^6.4|^7.0"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"psr/cache": "^1.0|^2.0|^3.0",
|
||
|
"symfony/console": "^6.4|^7.0",
|
||
|
"symfony/dependency-injection": "^6.4|^7.0",
|
||
|
"symfony/event-dispatcher": "^6.4|^7.0",
|
||
|
"symfony/http-kernel": "^6.4|^7.0",
|
||
|
"symfony/process": "^6.4|^7.0",
|
||
|
"symfony/property-access": "^6.4|^7.0",
|
||
|
"symfony/rate-limiter": "^6.4|^7.0",
|
||
|
"symfony/routing": "^6.4|^7.0",
|
||
|
"symfony/serializer": "^6.4|^7.0",
|
||
|
"symfony/service-contracts": "^2.5|^3",
|
||
|
"symfony/stopwatch": "^6.4|^7.0",
|
||
|
"symfony/validator": "^6.4|^7.0"
|
||
|
},
|
||
|
"conflict": {
|
||
|
"symfony/console": "<6.4",
|
||
|
"symfony/event-dispatcher": "<6.4",
|
||
|
"symfony/event-dispatcher-contracts": "<2.5",
|
||
|
"symfony/framework-bundle": "<6.4",
|
||
|
"symfony/http-kernel": "<6.4",
|
||
|
"symfony/serializer": "<6.4"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": { "Symfony\\Component\\Messenger\\": "" },
|
||
|
"exclude-from-classmap": [
|
||
|
"/Tests/"
|
||
|
]
|
||
|
},
|
||
|
"minimum-stability": "dev"
|
||
|
}
|