-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
71 lines (71 loc) · 1.73 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
64
65
66
67
68
69
70
71
{
"name": "kasparsd/widget-context",
"description": "WordPress plugin for showing or hiding widgets on specific posts, pages and sections of a site.",
"homepage": "https://widgetcontext.com",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kaspars Dambis",
"homepage": "https://widgetcontext.com"
}
],
"support": {
"issues": "https://github.com/kasparsd/widget-context-wporg/issues",
"source": "https://github.com/kasparsd/widget-context-wporg"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "5.6.20"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"10up/wp_mock": "^0.2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"mockery/mockery": "^0.9.5",
"php-coveralls/php-coveralls": "^2.4",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpmd/phpmd": "^2.10",
"phpunit/phpunit": "^5.7",
"wp-coding-standards/wpcs": "^3.1",
"yoast/phpunit-polyfills": "^2.0"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"Preseto\\WidgetContextTest\\": "tests/php/"
}
},
"scripts": {
"lint": [
"composer validate --no-check-publish --strict",
"phpcs"
],
"format": [
"phpcbf"
],
"mess": [
"phpmd ./src text phpmd.xml --suffixes php"
],
"test": [
"phpunit"
],
"coverage": [
"php-coveralls -v"
],
"release": [
"composer install --no-dev --prefer-dist --optimize-autoloader"
]
}
}