-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 1.09 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
{
"name": "dotkernel/dot-authentication-web",
"type": "library",
"description": "DotKernel login/logout authentication flow for web based applications",
"license": "MIT",
"authors": [
{
"name": "DotKernel Team",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"psr/http-message": "^1.0 || ^2.0",
"laminas/laminas-servicemanager": "^3.21.0",
"dotkernel/dot-authentication": "^2.3.0",
"dotkernel/dot-event": "^3.4.0",
"dotkernel/dot-helpers": "^3.4.0",
"dotkernel/dot-flashmessenger": "^3.4.0"
},
"require-dev": {
"phpunit/phpunit": "^10.3.2",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Dot\\Authentication\\Web\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DotTest\\Authentication\\Web\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev",
"dev-develop": "2.1-dev"
}
}
}