-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 896 Bytes
/
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
{
"name": "tmeister/wppb-cli",
"description": "A CLI tool for WordPress plugin boilerplate",
"type": "command-line-interface",
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"laravel/prompts": "^0.1",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"Tmeister\\WppbCli\\": "src/"
}
},
"bin": ["bin/wppb"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Enrique Chavez",
"email": "[email protected]"
}
],
"keywords": ["wordpress", "plugin", "boilerplate", "cli"],
"support": {
"issues": "https://github.com/tmeister/wppb-cli/issues",
"source": "https://github.com/tmeister/wppb-cli"
},
"minimum-stability": "stable",
"require-dev": {
"laravel/pint": "^1.17"
}
}