forked from ringcentral/ringcentral-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·68 lines (68 loc) · 1.59 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
64
65
66
67
68
{
"name": "ringcentral/ringcentral-php",
"type": "library",
"scripts": {
"test": "phpunit --configuration phpunit.xml",
"coveralls": "php-coveralls -v",
"phar": [
"phar-builder package composer.json",
"php create-phar.php"
],
"unphar": "php -r '$phar = new Phar(\"dist/ringcentral.phar\"); $phar->extractTo(\"dist/phar\");'"
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"php": ">=7.2",
"guzzlehttp/psr7": "^2.1.0",
"pubnub/pubnub": "^4.7.0",
"symfony/event-dispatcher": "^2|^3|^4|^5|^6",
"guzzlehttp/guzzle": "^6.3.3|^7.4.1"
},
"suggest": {
"ext-openssl": "to decrypt PubNub messages"
},
"require-dev": {
"phpunit/phpunit": "^7.5.12|^8.0|^9.0",
"php-coveralls/php-coveralls": "^2.1",
"macfja/phar-builder": "^0.2.8"
},
"autoload": {
"psr-4": {
"RingCentral\\SDK\\": "src/"
}
},
"extra": {
"phar-builder": {
"compression": "gzip",
"name": "ringcentral.phar",
"output-dir": "./dist",
"entry-point": "./vendor/autoload.php",
"skip-shebang": true,
"include": [],
"excluded": ["vendor/bin"],
"include-dev": false
}
},
"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]"
}
]
}