-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·48 lines (48 loc) · 1.52 KB
/
composer.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.52 KB
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
{
"name": "ibericode/boxzilla-wp",
"description": "The best non-obtrusive call-to-actions: Boxzilla. A WordPress plugin.",
"keywords": [
"wordpress",
"scroll triggered",
"call to action"
],
"homepage": "https://wordpress.org/plugins/boxzilla/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Danny van Kooten",
"email": "hi@dannyvankooten.com",
"homepage": "https://dannyvankooten.com"
}
],
"support": {
"issues": "https://github.com/ibericode/boxzilla-wp/issues",
"forum": "https://wordpress.org/support/plugin/boxzilla",
"source": "https://github.com/ibericode/boxzilla-wp"
},
"type": "wordpress-plugin",
"require-dev": {
"phpunit/phpunit": "^10.5.40",
"squizlabs/php_codesniffer": "^3.11",
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4"
},
"scripts": {
"all-checks": [
"@check-syntax",
"@check-codestyle",
"@static-analysis",
"@test"
],
"check-syntax": "find . -name '*.php' -not -path './vendor/*' -not -path './node_modules/*' -print0 | xargs -0 -n1 php -l",
"check-codestyle": "vendor/bin/phpcs -sn",
"static-analysis": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}