forked from ringcentral/ringcentral-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·51 lines (51 loc) · 1 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": "ringcentral/ringcentral-php",
"type": "library",
"description": "RingCentral Connect Platform PHP SDK",
"keywords": [
"php",
"sdk",
"ringcentral",
"connect",
"platform",
"api"
],
"homepage": "http://developers.ringcentral.com",
"license": "MIT",
"authors": [
{
"name": "Kirill Konshin",
"email": "[email protected]"
},
{
"name": "RingCentral, Inc.",
"email": "[email protected]"
}
],
"repositories": [
{
"url": "https://github.com/kirill-konshin/psr7.git",
"type": "git"
},
{
"type": "vcs",
"url": "http://github.com/guzzle/psr7"
}
],
"require": {
"ext-curl": "*",
"php": ">=5.3.29",
"guzzle/psr7": "1.2.0",
"pubnub/pubnub": "3.7.9",
"symfony/event-dispatcher": "2.7.4"
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"RingCentral\\SDK\\": "src/"
}
}
}