-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.67 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.67 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
{
"name": "dunglas/solid-client-php",
"description": "Solid client implementation for PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Dunglas\\PhpSolidClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Dunglas\\PhpSolidClient\\Tests\\": "tests/" }
},
"authors": [
{
"name": "Kévin Dunglas",
"email": "kevin@dunglas.fr"
}
],
"require": {
"php": ">=8.1",
"jumbojett/openid-connect-php": "^0.9.10",
"symfony/http-client": "^6.0",
"easyrdf/easyrdf": "^1.1",
"ml/json-ld": "^1.2",
"web-token/jwt-core": "^3.0",
"web-token/jwt-key-mgmt": "^3.0",
"web-token/jwt-signature": "^3.0",
"web-token/jwt-checker": "^3.0",
"web-token/jwt-signature-algorithm-hmac": "^3.0",
"web-token/jwt-signature-algorithm-ecdsa": "^3.0",
"web-token/jwt-signature-algorithm-rsa": "^3.0"
},
"require-dev": {
"symfony/form": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/validator": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/routing": "^6.0",
"symfony/security-bundle": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/debug-bundle": "^6.0",
"symfony/web-profiler-bundle": "^6.0",
"symfony/console": "^6.0",
"symfony/stopwatch": "^6.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/browser-kit": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/security-core": "^6.0",
"vimeo/psalm": "^5.12"
}
}