-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
53 lines (53 loc) · 1.28 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
46
47
48
49
50
51
52
53
{
"name": "agungsugiarto/codeigniter4-authentication",
"description": "Provides an API for authentication and includes concrete authentication adapters for common use case scenarios",
"keywords": [
"codeigniter4",
"authentication",
"auth"
],
"license": "MIT",
"authors": [
{
"name": "Agung Sugiarto",
"email": "[email protected]",
"homepage": "https://agungsugiarto.github.io",
"role": "Developer"
}
],
"require": {
"codeigniter4/framework": "^4.1",
"php": "^7.3 || ^8.0",
"tightenco/collect": "^8.83"
},
"require-dev": {
"fakerphp/faker": "^1.13",
"phpunit/phpunit": "^9.1"
},
"autoload": {
"psr-4": {
"Fluent\\Auth\\": "src/"
},
"files": [
"src/Helpers/auth_helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Fluent\\Auth\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"provide": {
"codeigniter4/authentication-implementation": "1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}