-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "beapp/pusher",
"version": "0.3.0",
"type": "library",
"description": "Push library for Symfony project",
"keywords": ["push", "notification", "symfony"],
"license": "MIT",
"authors": [
{
"name": "Tanguy Reviller",
"email": "t.reviller@beapp.fr"
},
{
"name": "Damien Villeneuve",
"email": "d.villeneuve@beapp.fr"
},
{
"name": "Matthieu Picard",
"email": "m.picard@beapp.fr"
}
],
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"php": ">=7.1",
"php-amqplib/rabbitmq-bundle": "^2.5",
"psr/log": "^1.0",
"symfony/routing": "5.4.*",
"symfony/translation": "5.4.*"
},
"require-dev": {
"symplify/monorepo-builder": "*",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"Beapp\\Push\\Client\\Firebase\\": "packages/ClientFirebase/",
"Beapp\\Push\\Client\\RabbitMQ\\": "packages/ClientRabbitMQ/",
"Beapp\\Push\\Core\\": "packages/Core/"
}
},
"replace": {
"beapp/pusher-core": "self.version",
"beapp/pusher-client-firebase": "self.version",
"beapp/pusher-client-rabbitmq": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}