-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.59 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.59 KB
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
{
"name": "bdk/http-message",
"description": "PSR-7 (HttpMessage) & PSR-17 (HttpFactory) Implementations",
"keywords": ["PSR-7", "HttpMessage", "PSR-17", "HttpFactory"],
"homepage": "http://github.com/bkdotcom/HttpMessage",
"license": "MIT",
"support": {
"issues": "https://github.com/bkdotcom/HttpMessage/issues",
"source": "https://github.com/bkdotcom/HttpMessage"
},
"authors": [
{
"name": "Brad Kent",
"email": "bkfake-github@yahoo.com",
"homepage": "http://www.bradkent.com/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"bdk\\HttpFactory\\": "src/HttpFactory",
"bdk\\HttpMessage\\": "src/HttpMessage"
}
},
"autoload-dev": {
"psr-4": {
"bdk\\Test\\": "tests/"
}
},
"provide": {
"psr/http-factory-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"require": {
"php": ">=7.2",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"bdk/devutil": "dev-master",
"phpunit/phpunit": "^4.0 | ^5.0 | ^6.0 | ^7.0 | ^8.0 | ^9.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/http-foundation": ">=2.8"
},
"scripts": {
"cs" : [
"vendor/bin/phpcs -p -s --colors ./src"
],
"test" : [
"vendor/bin/phpunit -v"
],
"coverage" : [
"vendor/bin/phpunit -v --coverage-clover coverage/clover.xml --coverage-html coverage/html",
"cp vendor/bdk/devutil/src/htmlCoverageCustom.css coverage/html/_css/custom.css",
"php -f vendor/bdk/devutil/src/coverageChecker.php -- coverage/clover.xml"
]
}
}