-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.48 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.48 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
59
60
{
"name": "bmatovu/oauth-negotiator",
"description": "OAuth2 client token manager.",
"homepage": "https://github.com/mtvbrianking/oauth-negotiator",
"type": "library",
"license": "MIT",
"keywords": [
"package",
"oauth",
"oauth2",
"guzzle",
"middleware"
],
"authors": [
{
"name": "Brian Matovu",
"email": "mtvbrianking@gmail.com",
"homepage": "http://bmatovu.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^8.5.5"
},
"suggest": {
"monolog/monolog": "For comprehensive logging."
},
"autoload": {
"psr-4": {
"Bmatovu\\OAuthNegotiator\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Bmatovu\\OAuthNegotiator\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-lint": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"doc": "phpdoc -c phpdoc.xml",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}