-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
40 lines (40 loc) · 1.16 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
{
"name": "solvecrew/expo-notifications-bundle",
"type": "symfony-bundle",
"description": "Bundle to handle the BE tasks of the push notifications service for the expo react-native Framework.",
"keywords": ["Expo", "Push Notifications"],
"homepage": "http://solvecrew.github.com",
"license": "MIT",
"authors": [
{
"name": "Julian Treichel",
"email": "info@solvecrew.com"
},
{
"name": "Yannick Treichel",
"email": "info@solvecrew.com"
}
],
"require": {
"php": ">=7.0",
"eightpoints/guzzle-bundle": "^6.0|~7.0",
"guzzlehttp/guzzle": "~6.0",
"eightpoints/guzzle-wsse-middleware": "~4.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0",
"symfony/expression-language": "~2.3|~3.0|~4.0",
"symfony/event-dispatcher": "~2.3|~3.0|~4.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0",
"psr/log": "~1.0"
},
"require-dev": {
"php": ">=5.3",
"eightpoints/guzzle-bundle": "^6.0|~7.0",
"phpunit/phpunit": "~5.4",
"symfony/config": "2.3|~3.0"
},
"autoload": {
"psr-4": {
"Solvecrew\\ExpoNotificationsBundle\\": ""
}
}
}