-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.21 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
{
"name": "buildsecurity/symfony-opa",
"description": "Symfony middleware that adds Open Policy Agent authorization to incoming requests.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yash Tewari",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "5.2.*",
"symfony/dotenv": "5.2.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.2.*",
"symfony/http-client": "5.2.*",
"symfony/yaml": "5.2.*",
"busybee/urljoin": "dev-main",
"symfony/browser-kit": "5.2.*",
"symfony/css-selector": "5.2.*"
},
"autoload": {
"psr-4": {
"BuildSecurity\\OpenPolicyAgentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BuildSecurity\\OpenPolicyAgentBundle\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2"
}
}