-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 808 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 808 Bytes
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
{
"name": "arif-rh/ci4-auth",
"description": "PHPAuth for CodeIgniter 4",
"homepage": "https://github.com/arif-rh/ci4-auth",
"keywords": ["auth", "codeigniter 4 auth", "authentication", "phpauth"],
"license": "MIT",
"authors": [
{
"name": "Arif Rahman Hakim",
"email": "arifrahmanhakim.net@gmail.com"
}
],
"require": {
"arif-rh/ci4-dynamic-model": "^0.3",
"bjeavons/zxcvbn-php": "^1.0"
},
"require-dev": {
"codeigniter4/framework": "^4.1",
"phpunit/phpunit": "8.5.*"
},
"autoload": {
"psr-4": {
"Arifrh\\Auth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arifrh\\AuthTests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"testdox": "phpunit --testdox"
}
}