-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
46 lines (46 loc) · 1.46 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
{
"name": "webberzone/contextual-related-posts",
"description": "Add related posts to your WordPress site with inbuilt caching. Supports thumbnails, shortcodes, widgets and custom post types!",
"version": "3.5.0",
"type": "wordpress-plugin",
"keywords": [
"related posts",
"related",
"related articles",
"contextual related posts",
"similar posts",
"related posts widget",
"contextual"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WebberZone",
"role": "Developer"
}
],
"requires": {
"php": ">=7.4"
},
"require-dev": {
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"php-stubs/wordpress-stubs": "^6.2",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"yoast/phpunit-polyfills": "^1.0",
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2048M",
"phpstan-baseline": "vendor/bin/phpstan analyse --generate-baseline --memory-limit=2048M"
}
}