-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.39 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
{
"name": "benjaminfavre/oauth2-http-client",
"description": "A lightweight OAuth 2 decorator for the Symfony HTTP Client.",
"license": "Apache-2.0",
"keywords": [
"symfony",
"oauth",
"http-client"
],
"authors": [
{
"name": "Benjamin Favre",
"email": "[email protected]",
"homepage": "https://github.com/BenjaminFavre"
}
],
"homepage": "https://github.com/BenjaminFavre/oauth2-http-client",
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/cache-contracts": "^3.0",
"symfony/http-client-contracts": "^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"phpunit/phpunit": "^9.4.3",
"sylius-labs/coding-standard": "^4.2",
"symfony/cache": "^6.0",
"symfony/http-client": "^6.0",
"vimeo/psalm": "^4.26"
},
"provide": {
"symfony/http-client-implementation": "^2.3.1"
},
"autoload": {
"psr-4": {
"BenjaminFavre\\OAuthHttpClient\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix"
}
}