-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
49 lines (49 loc) · 1.09 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
{
"name" : "gomoob/php-pushwoosh",
"description" : "A PHP Library to easily send push notifications with the Pushwoosh REST Web Services.",
"license" : "MIT",
"type" : "library",
"keywords" : [
"gomoob",
"notification",
"push",
"pushwoosh"
],
"authors" : [{
"name" : "GoMoob",
"email" : "[email protected]",
"homepage" : "http://www.gomoob.com"
}, {
"name" : "Baptiste Gaillard",
"email" : "[email protected]"
}, {
"name" : "Simon Baudry",
"email" : "[email protected]"
}
],
"autoload" : {
"psr-4" : {
"Gomoob\\" : "src/main/php/Gomoob"
}
},
"autoload-dev" : {
"psr-4" : {
"Gomoob\\" : "src/test/php/Gomoob"
}
},
"require" : {
"php" : "^5.6 || ^7.0"
},
"require-dev" : {
"codeclimate/php-test-reporter" : "^0.3.2",
"pdepend/pdepend" : "^2.2.4",
"phpdocumentor/phpdocumentor" : "^2.9.0",
"phploc/phploc" : "^3.0.1",
"phpmd/phpmd" : "^2.4.3",
"phpunit/phpunit" : "^5.5.4",
"satooshi/php-coveralls" : "^1.0.1",
"sebastian/phpcpd" : "^2.0.4",
"squizlabs/php_codesniffer" : "^3.0.0RC1",
"symfony/yaml" : "^3.1.4"
}
}