-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 953 Bytes
/
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
{
"name": "stethome/ory-auth-bundle",
"license": "MIT",
"description": "Symfony Authenticator for Ory Kratos",
"keywords": ["Symfony", "bundle", "Ory", "Kratos", "authentication"],
"type": "symfony-bundle",
"authors": [
{
"name": "StethoMe",
"homepage": "https://stethome.com/"
},
{
"name": "Filip Maciejewski",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.1",
"ory/kratos-client-php": "^1.0",
"symfony/http-kernel": "^5.4|^6.3",
"symfony/security-bundle": "^5.4|^6.3"
},
"require-dev": {
"symfony/console": "^5.4|^6.3",
"symfony/phpunit-bridge": "^5.4|^6.3",
"symfony/stopwatch": "^5.4|^6.3"
},
"autoload": {
"psr-4": {
"StethoMe\\OryAuthBundle\\": "src/"
}
}
}