-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.31 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
45
{
"name": "arif-rh/ci4-dynamic-model",
"description": "Creating CodeIgniter 4 Model on-the-fly with Relationship Built-in Feature.",
"homepage": "https://github.com/arif-rh/ci4-dynamic-model",
"keywords": ["model", "ci4 model", "codeigniter model", "codeigniter4 model", "codeigniter4 relationship", "ci4 relationship model"],
"license": "MIT",
"authors": [
{
"name": "Arif Rahman Hakim",
"email": "arifrahmanhakim.net@gmail.com"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"codeigniter4/framework": "^4.0",
"php-coveralls/php-coveralls": "^2.2",
"phpstan/phpstan": "0.12.34",
"phpstan/extension-installer": "1.0.4",
"phpstan/phpstan-phpunit": "^0.12.8",
"codeigniter4/codeigniter4-standard": "^1.0",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"Arifrh\\DynaModel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arifrh\\DynaModelTests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"testdox": "phpunit --testdox",
"analyse": "phpstan analyse",
"post-update-cmd": [
"@composer dump-autoload",
"bash src/bin/setup.sh"
]
}
}