forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 771 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 771 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
{
"description": "The CodeIgniter framework v4",
"name": "codeigniter/framework",
"type": "project",
"homepage": "https://codeigniter.com",
"license": "MIT",
"support": {
"forum": "http://forum.codeigniter.com/",
"wiki": "https://github.com/bcit-ci/CodeIgniter4/wiki",
"irc": "irc://irc.freenode.net/codeigniter",
"source": "https://github.com/bcit-ci/CodeIgniter4"
},
"autoload": {
"psr-4": {
"CodeIgniter\\": "system/"
}
},
"require": {
"php": ">=7.0",
"zendframework/zend-escaper": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"phpdocumentor/phpdocumentor": "^2.9",
"mikey179/vfsStream": "1.6.*"
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload",
"CodeIgniter\\ComposerScripts::postUpdate"
]
}
}