-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·41 lines (41 loc) · 1.05 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
{
"name": "superbrave/auth0-http-client",
"description": "Auth0 API client authentication for the Symfony HTTP client.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niels Nijens",
"email": "nn@superbrave.nl"
}
],
"require": {
"php": "^8.2",
"symfony/cache": "^6.4|^7.0",
"symfony/http-client-contracts": "^3.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.45",
"phpunit/phpunit": "^10.0",
"symfony/http-client": "^6.4|^7.0"
},
"suggest": {
"symfony/http-client": "This package requires an actual Symfony HTTP client implementation to decorate."
},
"provide": {
"symfony/http-client-implementation": "1.1"
},
"autoload": {
"psr-4": {
"Superbrave\\AuthZeroHttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Superbrave\\AuthZeroHttpClient\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}