-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.25 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "simpletine/hmvc-shield",
"description": "Features a modular HMVC (Hierarchical Model-View-Controller) architecture for CodeIgniter 4, integrated CodeIgniter 4 Shield and built with AdminLTE, providing a robust foundation for scalable web applications.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "SimpleTine",
"email": "info@simpletine.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Simpletine/CodeIgniter4-HMVC-Shield"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Simpletine\\HMVCShield\\": "/"
},
"files": [
"autoload.php"
]
},
"require": {
"php": "^8.2",
"codeigniter4/framework": "^4.4",
"codeigniter4/shield": "^1.1"
},
"require-dev": {
"codeigniter/coding-standard": "^1.7",
"fakerphp/faker": "^1.23",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9"
},
"scripts": {
"test": "phpunit",
"fix": "vendor/bin/php-cs-fixer fix --verbose"
}
}