-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
63 lines (63 loc) · 1.58 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
57
58
59
60
61
62
63
{
"name": "kerox/fcm",
"type": "library",
"description": "A PHP library to send push notification through Firebase Cloud Messaging",
"keywords": [
"fcm",
"push",
"notification",
"firebase cloud messaging"
],
"homepage": "https://github.com/ker0x/fcm",
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"email": "[email protected]",
"homepage": "https://talesfroma.dev",
"role": "Author"
}
],
"require": {
"php": ">=8.2",
"fig/http-message-util": "^1.1",
"php-http/discovery": "^1.18",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1",
"rector/rector": "^0.16.0",
"symfony/http-client": "^7.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"Kerox\\Fcm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kerox\\Fcm\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff --verbose --ansi",
"cs:fix": "vendor/bin/php-cs-fixer fix --diff --verbose --ansi",
"lint": "vendor/bin/phpstan analyse --memory-limit 256M",
"tests": "vendor/bin/phpunit",
"rector": "vendor/bin/rector process src"
}
}