-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
82 lines (82 loc) · 1.75 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "marioy47/wordpress-plugin-starter",
"description": "Starter project for WordPress plugins development",
"license": "proprietary",
"type": "project",
"authors": [
{
"name": "Mario Yepes",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"ergebnis/composer-normalize": "*",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "*",
"sirbrillig/phpcs-variable-analysis": "*",
"szepeviktor/phpstan-wordpress": "*",
"wp-coding-standards/wpcs": "*"
},
"autoload": {
"classmap": [
"php/"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"strauss": {
"classmap_prefix": "Wordpress_Plugin_Starter_",
"constant_prefix": "WORDPRESS_PLUGIN_STARTER_",
"delete_vendor_files": true,
"excluded_from_prefix": {
"file_patterns": []
},
"namespace_prefix": "Wordpress_Plugin_Starter\\",
"packages": [
""
]
}
},
"scripts": {
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
],
"format": [
"@composer normalize",
"phpcbf"
],
"lint": [
"@composer validate",
"phpcs",
"@phpstan"
],
"phpcs": [
"phpcs"
],
"phpstan": [
"phpstan --memory-limit=2G"
],
"strauss": [
"mkdir -p ./bin/",
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.13.0/strauss.phar",
"@php bin/strauss.phar"
]
}
}