-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·45 lines (44 loc) · 1.42 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": "jafar/guarded-authentication-bundle",
"type": "symfony-bundle",
"description": "This Bundle provides full authentication for login form and also Api with JWS (signed JWT 'encrypted with OpenSSL encryption engine') based on Symfony Guard",
"keywords": ["authentication","guard", "Symfony", "bundle", "jwt", "jws", "authentication", "api", "rest"],
"homepage": "https://github.com/jafaronly/guarded-authentication-bundle",
"license": "MIT",
"authors": [
{
"name": "Jafar Jabr",
"email": "[email protected]",
"homepage": "https://github.com/jafar-jabr"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-openssl": "*",
"symfony/framework-bundle": ">=6.0.0",
"symfony/security-bundle": ">=6.0.0",
"symfony/doctrine-bridge" : ">=6.0.0",
"symfony/console": ">=6.0.0",
"symfony/form": ">=6.0.0",
"symfony/yaml": ">=6.0.0"
},
"require-dev": {
"phpunit/phpunit": ">=9.0.0",
"symfony/phpunit-bridge": ">=6.0.0",
"friendsofphp/php-cs-fixer": ">=3.0.0"
},
"suggest": {
},
"autoload": {
"psr-4": { "Jafar\\Bundle\\GuardedAuthenticationBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}