-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.2 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
{
"name": "nophaa/php-sipwise-api",
"type": "library",
"description": "Sipwise API client",
"keywords": ["sipwise", "api"],
"license": "MIT",
"authors": [
{
"name": "Nova Dwi Kurniawan",
"homepage": "http://novadwik.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-xml": "*",
"psr/cache": "^1.0",
"php-http/client-common": "^1.6",
"php-http/guzzle6-adapter": "^1.1",
"php-http/discovery": "^1.4",
"php-http/httplug": "^1.1",
"php-http/multipart-stream-builder": "^1.0",
"php-http/cache-plugin": "^1.4",
"symfony/options-resolver": "^2.6 || ^3.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.4",
"php-http/guzzle6-adapter": "^1.1",
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^6.0",
"phpunit/php-invoker": "^1.1",
"donatj/mock-webserver": "^2.0"
},
"autoload": {
"psr-4": { "Sipwise\\": "lib/Sipwise/" }
},
"autoload-dev": {
"psr-4": { "Sipwise\\Tests\\": "tests/SipwiseTests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}