-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
54 lines (54 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
45
46
47
48
49
50
51
52
53
54
{
"name": "swader/diffbot-php-client",
"description": "A PHP wrapper for using Diffbot's API",
"keywords": [
"diffbot",
"api",
"wrapper",
"client"
],
"homepage": "https://github.com/swader/diffbot-php-client",
"license": "MIT",
"authors": [
{
"name": "Bruno Skvorc",
"email": "[email protected]",
"homepage": "http://bitfalls.com",
"role": "Developer"
}
],
"require": {
"php": "^5.6|7.*",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1",
"php-http/discovery": "^1",
"php-http/message": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^3",
"phpunit/phpunit": "^5",
"php-http/guzzle6-adapter": "^1",
"scrutinizer/ocular": "^1.1",
"nesbot/carbon": "^1.21"
},
"autoload": {
"psr-4": {
"Swader\\Diffbot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Swader\\Diffbot\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"suggest": {
"nesbot/carbon": "Turns the date and estimatedDate return values of Article and Post entity into Carbon entities."
},
"prefer-stable": true,
"minimum-stability": "dev"
}