-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 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
{
"name": "hichemtab-tech/tokens-validation",
"description": "TokensValidation is a PHP library for secure authentication and authorization in web applications. It generates dynamic tokens for user login, password reset, and email confirmation. The library is ideal for software that requires secure user authentication and authorization.",
"license": "MIT",
"authors": [
{
"name": "HichemTab",
"email": "konanhichemsinshi@gmail.com"
}
],
"autoload": {
"psr-4": {
"HichemtabTech\\TokensValidation\\": "src/"
}
},
"require": {
"php": ">=8.0",
"illuminate/database": "^10",
"illuminate/events": "^10",
"illuminate/container": "^10",
"defuse/php-encryption": "^2.3",
"illuminate/http": "^10",
"illuminate/console": "^10"
},
"extra": {
"laravel": {
"providers": [
"HichemtabTech\\TokensValidation\\Laravel\\Providers\\TokensValidationProvider"
],
"config": {
"tokensvalidation": "HichemtabTech\\TokensValidation\\Laravel\\config\\tokensvalidation.php"
},
"controllers": [
{
"name": "InvitationAnswererController",
"path": "src/Laravel/Http/Controllers/InvitationAnswererController.php"
}
]
}
}
}