-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (32 loc) · 1015 Bytes
/
composer.json
File metadata and controls
37 lines (32 loc) · 1015 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
30
31
32
33
34
35
36
37
{
"name" : "bernard/bernard",
"description" : "Message queue implemented in PHP with Redis as a backend.",
"license" : "MIT",
"autoload" : {
"psr-0" : { "Bernard" : "src/" },
"files" : ["src/Bernard/functions.php"]
},
"require" : {
"php" : "^7.0|^8.0"
},
"replace" : {
"henrikbjorn/bernard" : "self.version"
},
"require-dev" : {
"psr/log" : "~1.0",
"jms/serializer" : "~0.12",
"pimple/pimple" : "~1.0",
"predis/predis" : "~0.8",
"symfony/console" : "~2.0",
"symfony/dependency-injection" : "~2.0",
"symfony/serializer" : "~2.2",
"doctrine/dbal" : "~2.3",
"iron-io/iron_mq" : "~1.4",
"aws/aws-sdk-php" : "~2.4"
},
"extra" : {
"branch-alias" : {
"dev-master" : "0.10.x-dev"
}
}
}