-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
56 lines (56 loc) · 2.29 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
53
54
55
56
{
"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", "fcm"],
"require": {
"php": ">=8.1",
"ext-json": "*",
"aws/aws-sdk-php": "^3.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/polyfill-mbstring": "^1.1"
},
"suggest": {
"ext-mbstring": "Its polyfilled, but better to use the extension",
"sensio/framework-extra-bundle": "Required if you want to use the included ApiController",
"symfony/validator": "Required if you want to use the included ApiController",
"symfony/serializer": "Required if you want to use the included ApiController",
"symfony/property-info": "Required if you want to use the included ApiController",
"symfony/security-bundle": "Required if you want to use the included ApiController",
"symfony/expression-language": "Required if you want to use the included ApiController"
},
"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": {
"fakerphp/faker": "^1.10",
"friendsofphp/php-cs-fixer": "^3.3",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/expression-language": "^5.4|^6.0|^7.0",
"symfony/monolog-bundle": "^3.0",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
"symfony/property-info": "^5.4|^6.0|^7.0",
"symfony/security-bundle": "^5.4|^6.0|^7.0",
"symfony/serializer": "^5.4|^6.0|^7.0",
"symfony/validator": "^5.4|^6.0|^7.0",
"symfony/yaml": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": { "Mcfedr\\AwsPushBundle\\": "src/Mcfedr/AwsPushBundle" }
},
"autoload-dev": {
"psr-4": { "Mcfedr\\AwsPushBundle\\": "tests/Mcfedr/AwsPushBundle" },
"classmap": ["tests/TestKernel.php"]
}
}