-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
51 lines (51 loc) · 1.14 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
{
"name": "ker0x/cakephp-push",
"type": "cakephp-plugin",
"description": "CakePHP plugin to send push notification through services like FCM",
"homepage": "https://github.com/ker0x/cakephp-push",
"keywords": [
"cakephp",
"push",
"notification",
"fcm"
],
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"email": "[email protected]",
"homepage": "http://kerox.fr",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/ker0x/cakephp-push/issues",
"source": "https://github.com/ker0x/cakephp-push"
},
"require": {
"php": ">=5.6",
"cakephp/cakephp": ">=3.4.0 < 4.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^2.0",
"codacy/coverage": "^1.4",
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {
"Kerox\\Push\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kerox\\Push\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"cs-fix": "phpcbf --colors --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src"
},
"config": {
"sort-packages": true
}
}