forked from BenjaminFavre/oauth2-http-client
-
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.7 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.7 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": "hfig/oauth2-http-client",
"description": "An asynchronous, lightweight OAuth 2 decorator for the Symfony HTTP Client.",
"license": "Apache-2.0",
"keywords": [
"symfony",
"oauth",
"http-client",
"asynchronous"
],
"authors": [
{
"name": "Benjamin Favre",
"email": "favre.benjamin@gmail.com",
"homepage": "https://github.com/BenjaminFavre"
}
],
"homepage": "https://github.com/hfig/oauth2-http-client",
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/cache-contracts": "^3.0",
"symfony/http-client-contracts": "^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"phpunit/phpunit": "^12.4.0",
"sylius-labs/coding-standard": "^4.2",
"symfony/cache": "^6.0|^7.0|^8.0",
"vimeo/psalm": "^6.9.4",
"symfony/http-client": "^v6.0|^v7.0|^8.0",
"symfony/process": "^7.3",
"symfony/http-foundation": "^7.3",
"symfony/phpunit-bridge": "^7.3"
},
"provide": {
"symfony/http-client-implementation": "^2.3.1"
},
"autoload": {
"psr-4": {
"Hfig\\OAuthHttpClient\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true
},
"preferred-install": {
"symfony/http-client": "source"
}
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}