-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.2 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.2 KB
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
{
"name": "dev1/notify-core",
"description": "Driver-agnostic notifications core.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.4 <8.5",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"phpunit/phpunit": "^9.6",
"psr/simple-cache": "^1.0"
},
"suggest": {
"psr/simple-cache": "Share Google OAuth tokens across requests (PSR-16)."
},
"autoload": {
"psr-4": {
"Dev1\\NotifyCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dev1\\NotifyCore\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"authors": [
{
"name": "DEV1 Softworks Labs",
"email": "it@dev1.mx"
}
],
"keywords": ["notifications", "push", "fcm", "php", "core", "dev1"],
"homepage": "https://github.com/DEV1-Softworks/notify-core",
"support": {
"issues": "https://github.com/DEV1-Softworks/notify-core/issues",
"source": "https://github.com/DEV1-Softworks/notify-core"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}