-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
composer.json
63 lines (63 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "bonny/wordpress-simple-history",
"type": "wordpress-plugin",
"description": "View recent changes made within WordPress, directly on your dashboard or on a separate page.",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"log",
"history"
],
"homepage": "https://simple-history.com/",
"minimum-stability": "stable",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*",
"lucatume/wp-browser": "^3.5",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0",
"rector/rector": "^0.17.0",
"wp-cli/wp-cli-bundle": "^2.9",
"phpstan/phpstan": "^1.10.0",
"szepeviktor/phpstan-wordpress": "dev-master",
"phpstan/extension-installer": "^1.3.1",
"php-stubs/wp-cli-stubs": "dev-master"
},
"require": {
"php": "^7.4|^8.0"
},
"authors": [
{
"name": "Pär Thernström",
"homepage": "https://eskapism.se/"
}
],
"support": {
"issues": "https://github.com/bonny/WordPress-Simple-History/issues",
"forum": "https://wordpress.org/support/plugin/simple-history/",
"source": "https://github.com/bonny/WordPress-Simple-History",
"docs": "https://simple-history.com/docs/"
},
"dist": {
"url": "https://downloads.wordpress.org/plugin/simple-history.zip",
"type": "zip"
},
"scripts": {
"lint": "./vendor/bin/phpcs .",
"lint-fix": "./vendor/bin/phpcbf .",
"test": "./vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}