-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 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
{
"name": "norkunas/onesignal-php-api",
"description": "OneSignal API for PHP",
"keywords": ["onesignal", "api", "notifications", "push", "apns", "gcm"],
"license": "MIT",
"authors": [
{
"name": "Tomas Norkūnas",
"email": "norkunas.tom@gmail.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"symfony/deprecation-contracts": "^2.1|^3.0",
"symfony/options-resolver": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"nyholm/psr7": "^1.8.1",
"php-cs-fixer/shim": "^v3.64.0",
"phpstan/phpstan": "^1.12.0",
"phpstan/phpstan-phpunit": "^1.4.0",
"symfony/http-client": "^5.0|^6.2|^7.0",
"symfony/phpunit-bridge": "^5.3|^6.2|^7.0"
},
"autoload": {
"psr-4": { "OneSignal\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"OneSignal\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"sort-packages": true
}
}