-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
47 lines (42 loc) · 1.04 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
{
"name": "wisembly/clearbit-php",
"license": "MIT",
"type": "library",
"description": "Clearbit API client",
"authors": [
{
"name": "Wisembly",
"homepage": "http://wisembly.com"
}
],
"autoload": {
"psr-4": {
"Clearbit\\": "src/",
"Clearbit\\Generated\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"Clearbit\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.4 || ^7.0",
"jane/open-api": "^1.0",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/message": "^1.0",
"php-http/client-common": "^1.0",
"php-http/discovery": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"php-http/guzzle6-adapter": "^1.0",
"guzzlehttp/psr7": "^1.2"
},
"suggest": {
"guzzlehttp/psr7": "^1.2",
"php-http/guzzle6-adapter": "^1.0"
}
}