-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 893 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 893 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
34
35
36
37
38
39
{
"name": "arif-rh/ci4-themes",
"description": "Theme management for CodeIgniter 4",
"keywords": [
"codeigniter",
"codeigniter4",
"themes",
"CI Theme"
],
"homepage": "https://github.com/arif-rh/ci4-themes",
"license": "MIT",
"authors": [
{
"name": "Arif RH",
"email": "arifrahmanhakim.net@gmail.com",
"homepage": "https://github.com/arif-rh",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Arifrh\\Themes\\": "src",
"Arifrh\\ThemesTest\\": "tests"
}
},
"suggest": {
"arif-rh/ci4-themes-material-kit": "Use Bootstrap 4 Material Design Kit for your theme"
},
"require-dev": {
"mikey179/vfsstream": "1.6.*",
"phpunit/phpunit": "^8",
"codeigniter4/framework": "dev-master",
"php-coveralls/php-coveralls": "^2.2"
},
"scripts": {
"test": "vendor\\bin\\phpunit tests",
"testdox": "vendor\\bin\\phpunit --testdox tests"
}
}