-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name": "benedmunds/codeigniter-ion-auth",
"description": "Simple and Lightweight Auth System for CodeIgniter",
"type": "library",
"license": "MIT",
"keywords": [
"codeigniter", "auth"
],
"homepage": "http://benedmunds.com/ion_auth",
"authors": [
{
"name": "Ben EDMUNDS"
},
{
"name": "Benoit VRIGNAUD",
"email": "[email protected]"
}
],
"require": {
"codeigniter4/framework" : "^v4.3"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"codeigniter4/codeigniter4-standard": "^1.0",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4" : {
"IonAuth\\": "/"
}
},
"repositories": {
"repo-name": {
"type": "vcs",
"url": "[email protected]:benedmunds/CodeIgniter-Ion-Auth.git"
},
"ionAuth": {
"type": "vcs",
"url": "[email protected]:benedmunds/CodeIgniter-Ion-Auth.git"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}