-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.66 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.66 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
54
55
56
57
58
{
"name": "ci4-cms-erp/ci4ms",
"description": "Modular CodeIgniter 4 CMS featuring RBAC admin, theming, blog/page management, elFinder media integration, and CLI tooling for rapid customization.",
"license": "MIT",
"type": "project",
"homepage": "https://github.com/ci4-cms-erp/ci4ms",
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/bertugfahriozer"
}
],
"require": {
"php": "^8.2",
"bertugfahriozer/ci4commonmodel": "^1.2",
"bertugfahriozer/ci4seopro": "^v1.0.0",
"bertugfahriozer/sql2migration": "^1.0",
"ci4-cms-erp/ext_module_generator": "^1.1",
"claviska/simpleimage": "4.4.0",
"codeigniter4/framework": "4.7.1",
"codeigniter4/settings": "2.2",
"codeigniter4/shield": "1.3.0",
"codeigniter4/translations": "4.7.0",
"ezyang/htmlpurifier": "4.19",
"gregwar/captcha": "1.3.0",
"studio-42/elfinder": "2.1.67"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10.5.16"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Config\\": "app/Config/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"scripts": {
"test": "phpunit"
}
}