-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (57 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "segrax/open-policy-agent",
"description": "Open Policy Agent client and PSR-7, PSR-15 Authorization Middleware",
"keywords": [
"middleware",
"psr-7",
"psr-15",
"psr-18",
"opa",
"authz"
],
"config": {
"sort-packages": true
},
"license": "MIT",
"authors": [
{
"name": "Robert Crossfield",
"email": "segrax19@gmail.com",
"homepage": "https://github.com/segrax/"
}
],
"autoload": {
"psr-4": {
"Segrax\\OpenPolicyAgent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Segrax\\OpenPolicyAgent\\Tests\\": "tests"
}
},
"require": {
"php": "^8.3",
"psr/log": "^1.0|^2.0|^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"splitbrain/php-archive": "^1.2"
},
"require-dev": {
"equip/dispatch": "^2.0",
"phpunit/phpunit": "^10",
"slim/psr7": "^1.5",
"guzzlehttp/guzzle": "^7.4",
"friendsofphp/php-cs-fixer": "^3.8",
"vimeo/psalm": "^5",
"rector/rector":"^1"
},
"suggest": {
"guzzlehttp/guzzle": "Can be used as the HTTP Client",
"tuupola/slim-jwt-auth": "Can be used to validate JWTs and insert them into the request",
"monolog/monolog": "Can be used to support logging"
}
}