-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 762 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 762 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
{
"name": "lesterchan/wp-showhide",
"description": "Allows you to embed content within your blog post via WordPress ShortCode API and toggling the visibility of the content via a button.",
"type": "wordpress-plugin",
"homepage": "https://wordpress.org/plugins/wp-showhide/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Lester Chan",
"email": "lesterchan@gmail.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^2.0",
"phpstan/phpstan": "^2.2",
"szepeviktor/phpstan-wordpress": "^2.0",
"php-stubs/wordpress-stubs": "^7.1"
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --memory-limit=2G"
},
"config": {
"allow-plugins": false
}
}