-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 813 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 813 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
{
"name": "codeinwp/quickwp",
"description": "Build websites quickly.",
"type": "wordpress-plugin",
"license": "GPL-v3-or-later",
"autoload": {
"classmap": [
"inc/"
]
},
"authors": [
{
"name": "ThemeIsle Team",
"email": "friends@themeisle.com"
},
{
"name": "Hardeep Asrani",
"email": "hardeepasrani@gmail.com"
}
],
"scripts": {
"lint": "phpcs --standard=phpcs.xml",
"format": "phpcbf --standard=phpcs.xml",
"phpstan": "phpstan analyse --memory-limit 2G"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-coding-standards/wpcs": "^3.0",
"automattic/vipwpcs": "^3.0",
"phpcompatibility/php-compatibility": "^9.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}