forked from rezzza/command-bus-bundle
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 865 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 865 Bytes
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
{
"name": "fulll/command-bus-bundle",
"type": "symfony-bundle",
"description": "rezzza/command-bus integration to Symfony",
"keywords": ["command", "bus", "bundle"],
"license": "MIT",
"homepage": "https://github.com/rezzza/command-bus-bundle",
"authors": [{
"name": "Contributor Guys",
"homepage": "https://github.com/rezzza/command-bus-bundle/contributors"
}],
"require": {
"php": ">=7.4",
"symfony/event-dispatcher": "~4.0|~5.0|~6.0|~7.0",
"fulll/command-bus": "^3.5.1"
},
"repositories": [
{ "type": "git", "url": "git@github.com:fulll/command-bus.git" }
],
"autoload": {
"psr-4": { "Rezzza\\CommandBusBundle\\": "" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}