-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
35 lines (35 loc) · 915 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
{
"name" : "m6web/daemon-bundle",
"type" : "symfony-bundle",
"description" : "bundle sf easing creating daemon commands",
"authors" : [
{
"name" : "Olivier Mansour",
"email" : "[email protected]"
}
],
"require" : {
"php" : ">=8.1",
"ext-pcntl" : "*",
"psr/event-dispatcher": ">=1.0",
"symfony/console" : "~6.1||~7.0",
"symfony/framework-bundle" : "~6.1||~7.0",
"symfony/yaml": "~6.1||~7.0",
"react/event-loop": "@stable"
},
"require-dev" : {
"phpunit/phpunit": "^8.4"
},
"autoload" : {
"psr-4" : {
"M6Web\\Bundle\\DaemonBundle\\" : "src/",
"M6Web\\Bundle\\DaemonBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"minimum-stability": "dev"
}