-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.19 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "webignition/guzzle-http-authentication-middleware",
"description": "Http authentication middleware for Guzzle6",
"keywords": ["Guzzle", "Middleware", "HTTP Authentication", "PSR7"],
"homepage": "https://github.com/webignition/guzzle-http-authentication-middleware",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jon Cram",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"webignition\\Guzzle\\Middleware\\HttpAuthentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"webignition\\Guzzle\\Middleware\\HttpAuthentication\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"cs": "./vendor/bin/phpcs src tests --colors --standard=PSR2",
"ci": [
"@composer cs",
"@composer test"
]
},
"require": {
"php": ">=7.2.0",
"psr/http-message": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"mockery/mockery": "~1",
"squizlabs/php_codesniffer": "3.*"
},
"minimum-stability":"stable"
}