-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 771 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 771 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
{
"name": "dottxado/wp-cli-oop-plugin",
"description": "Command to scaffold an OOP WordPress plugin, based on WPPB.io and enriched with Composer.",
"keywords": [
"wp-cli",
"wordpress",
"scaffold",
"plugin",
"OOP"
],
"type": "wp-cli-package",
"homepage": "https://www.penguinet.it",
"license": "GPLv3",
"authors": [{
"name": "Erika Gili",
"homepage": "https://www.penguinet.it",
"role": "Developer"
}],
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"files": [ "command.php" ]
},
"require": {
"wp-cli/wp-cli": ">2.0.0"
},
"extra": {
"commands": [
"scaffold oop-plugin"
]
}
}