forked from anspress/anspress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.43 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": "anspress/anspress",
"type": "wordpress-plugin",
"description": "Free question and answer plugin for WordPress",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Rahul Aryan",
"email": "rah12@live.com"
},
{
"name": "AnsPress",
"email": "support@anspress.net"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"ergebnis/composer-normalize": "^2.28",
"lucatume/function-mocker": "^1.3",
"phpro/grumphp": "^1.13",
"phpunit/phpunit": "^9.6",
"szepeviktor/phpstan-wordpress": "^1.3",
"vlucas/phpdotenv": "^5.5",
"codeatcode/codeatcs": "^1.0",
"phpmd/phpmd": "^2.13",
"php-parallel-lint/php-parallel-lint": "^1.3",
"yoast/phpunit-polyfills": "^2.0",
"yoast/wp-test-utils": "dev-JRF/update-for-polyfills-2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"phpcs": "phpcs",
"grumphp": "grumphp run",
"phpstan": "phpstan --memory-limit=1G",
"phpcbf": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
}
}
}