-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.13 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": "cerbos/cerbos-sdk-php",
"homepage": "https://github.com/cerbos/cerbos-sdk-php",
"description": "PHP SDK for interacting with the Cerbos PDP",
"keywords": ["cerbos","pdp"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Cerbos",
"homepage": "https://cerbos.dev"
}
],
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cerbos\\Sdk\\": "src/Sdk",
"Cerbos\\": "src/Cerbos",
"GPBMetadata\\": "src/GPBMetadata"
}
},
"autoload-dev": {
"psr-4": {
"Cerbos\\Test\\": "tests"
}
},
"support": {
"issues": "https://github.com/cerbos/cerbos-sdk-php/issues"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require": {
"php": "^8.2 || ^8.3",
"ext-grpc": "*",
"ext-json": "*",
"google/common-protos": "^4.5",
"google/protobuf": "^v4.26",
"grpc/grpc": "^1.57",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^v1.3",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.19"
}
}