-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 784 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 784 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
{
"name": "zaghadon/themeboot",
"description": "A Free and OpenSource Lightweight CLI app to bootstrap WordPress Theme Development",
"authors": [{
"name": "Nzagha David Eze",
"email": "nzaghad@topazdom.com",
"homepage": "https://nzaghadavid.com"
}],
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/zaghadon/themeboot",
"keywords": ["cli","command-line", "template","wordpress","WP","Theme"],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"version": "1.0.0",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"minicli/minicli": "^2.0",
"povils/figlet": "^1.0.0",
"symfony/filesystem": "^5.1"
},
"bin": "themeboot",
"scripts": {
"post-install-cmd": [
"themeboot"
]
}
}