-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.3 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
{
"name": "lemonphp/http-client",
"type": "library",
"description": "The lightweight PSR-18 compatible HTTP client with middleware support",
"keywords": [
"http-client",
"psr-18",
"psr-7",
"client",
"http"
],
"license": "MIT",
"homepage": "https://github.com/lemonphp/http-client",
"support": {
"issues": "https://github.com/lemonphp/http-client/issues",
"source": "https://github.com/lemonphp/http-client"
},
"authors": [
{
"name": "Oanh Nguyen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lemon\\Http\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"require": {
"php": "^7.2.5",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"symfony/options-resolver": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0",
"squizlabs/php_codesniffer": "^3.5",
"slim/psr7": "^1.0"
},
"scripts": {
"test": "phpunit --testdox --testsuite=Tests",
"coverage": "phpunit --testdox --testsuite=Tests --coverage-text",
"cs-check": "phpcs --standard=phpcs.xml.dist",
"cs-fix": "phpcbf --standard=phpcs.xml.dist"
}
}