-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.26 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": "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": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Simpletine/CodeIgniter4-HMVC-Shield"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Simpletine\\HMVCShield\\": "/"
},
"files": [
"autoload.php"
]
},
"require": {
"php": "^7.4 || ^8.0",
"codeigniter4/framework": "^4.0",
"codeigniter4/shield": "dev-develop"
},
"require-dev": {
"codeigniter/coding-standard": "^1.7",
"fakerphp/faker": "^1.23.1",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "2.0.x-dev",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "*"
},
"scripts": {
"test": "phpunit",
"fix": "vendor/bin/php-cs-fixer fix --verbose"
}
}