forked from mcfedr/awspushbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.15 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
{
"name": "mcfedr/awspushbundle",
"type": "symfony-bundle",
"description": "A set of services to simplify using Aws to send push notifications",
"keywords": ["symfony", "push", "notification", "bundle", "gcm", "c2dm", "ios", "apns", "sns", "aws", "amazon"],
"require": {
"php": ">=5.4.0",
"aws/aws-sdk-php": "~2.4",
"symfony/symfony": "~2.3",
"ext-mbstring": "*",
"mcfedr/json-form": "~3.0",
"sensio/framework-extra-bundle": "~3.0",
"fzaninotto/faker": "~1.4"
},
"license": "MIT",
"authors": [
{
"name": "Fred Cox",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mcfedr/awspushbundle/issues",
"source": "https://github.com/mcfedr/awspushbundle"
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "~4.3",
"symfony/monolog-bundle": "~2.6"
},
"autoload": {
"psr-4": { "Mcfedr\\AwsPushBundle\\": "src/Mcfedr/AwsPushBundle" }
},
"autoload-dev": {
"psr-4": { "Mcfedr\\AwsPushBundle\\": "tests/Mcfedr/AwsPushBundle" }
}
}