-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
63 lines (63 loc) · 1.85 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
{
"name": "php-http/laravel-httplug",
"description": "Laravel package to integrate the Httplug generic HTTP client into Laravel",
"keywords": ["http", "discovery", "adapter", "message", "factory", "httplug", "php-http", "psr-7", "laravel"],
"homepage": "http://php-http.org",
"license": "MIT",
"authors": [
{
"name": "Mathieu Santo Stefano--Féron",
"email": "[email protected]"
},
{
"name": "Daniel Nilsson"
},
{
"name": "Tobias Nyholm"
}
],
"require": {
"php": "^5.5 || ^7.0",
"illuminate/support": "~5",
"php-http/message": "^1.3",
"php-http/client-common": "^1.2",
"php-http/cache-plugin": "^1.0",
"php-http/logger-plugin": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5 || ^5.4 || ^6.0",
"graham-campbell/testbench": "^3.1",
"friendsofphp/php-cs-fixer": "^2.0",
"sllh/php-cs-fixer-styleci-bridge": "^1.5",
"php-http/curl-client": "^1.0",
"php-http/socket-client": "^1.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/react-adapter": "^2.1",
"php-http/buzz-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"Http\\Httplug\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Http\\Httplug\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"laravel": {
"providers": [
"Http\\Httplug\\HttplugServiceProvider"
],
"aliases": {
"Httplug": "Http\\Httplug\\Facade\\Httplug"
}
}
}
}