-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
executable file
·49 lines (49 loc) · 1 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
{
"name": "pryley/site-reviews",
"type": "wordpress-plugin",
"description": "Receive and display reviews on your website",
"keywords": [
"wordpress",
"plugin",
"reviews"
],
"license": "GPLv3",
"authors": [
{
"name": "Paul Ryley",
"email": "[email protected]"
}
],
"archive": {
"exclude": [
"/+",
"/tests",
"/.*",
"/*.md",
"/*.js",
"/*.json",
"/*.lock",
"/*.sh",
"/*.xml"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"fakerphp/faker": "^1.23.1",
"phpcompatibility/php-compatibility": "dev-develop",
"phpstan/phpstan": "^1.9.4",
"szepeviktor/phpstan-wordpress": "^1.1.6",
"yoast/phpunit-polyfills": "^2.0.0"
}
}