-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (52 loc) · 1.53 KB
/
composer.json
File metadata and controls
53 lines (52 loc) · 1.53 KB
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
{
"description": "Starter for CodeIgniter framework v4 with ci4auth",
"name": "ci-blox/ci4auth",
"type": "project",
"homepage": "https://github.com/ci-blox/ci4auth",
"license": "MIT",
"authors": [
{
"name": "bobbo",
"email": "boblennes@msn.com"
}
],
"support": {
"forum": "https://github.com/ci-blox/ci4auth/issues",
"slack": "https://codeigniterchat.slack.com",
"source": "https://github.com/ci-blox/ci4auth"
},
"autoload": {
"psr-4": {
"CodeIgniter\\": "./vendor/codeigniter4/framework/system/",
"Psr\\Log\\": "./vendor/codeigniter4/framework/system/ThirdParty/PSR/Log/",
"InstallCI4\\": "./install/",
"Config\\": "./Application/Config/" }
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/bcit-ci/CodeIgniter4"
}
],
"require": {
"php": ">=7.1",
"codeigniter4/framework": "^4.0@alpha",
"roave/security-advisories": "dev-master",
"phpauth/phpauth": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mikey179/vfsStream": "1.6.*",
"codeigniter4/codeigniter4-standard": "^1.0"
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload",
"InstallCI4\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"composer dump-autoload"
]
},
"minimum-stability": "dev"
}