-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
44 lines (44 loc) · 879 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "log1x/poet",
"type": "package",
"license": "MIT",
"description": "Configuration-based post type, taxonomy, editor color palette, block category, and block registration for Sage 10.",
"authors": [
{
"name": "Brandon Nifong",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"gutenberg",
"cpt"
],
"support": {
"issues": "https://github.com/log1x/poet/issues"
},
"autoload": {
"psr-4": {
"Log1x\\Poet\\": "src/"
}
},
"require": {
"php": "^7.4|^8.0",
"johnbillion/extended-cpts": "^5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
},
"extra": {
"acorn": {
"providers": [
"Log1x\\Poet\\PoetServiceProvider"
]
}
},
"scripts": {
"lint": [
"phpcs --ignore=vendor --extensions=php --standard=PSR12 ."
]
}
}