-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.51 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.51 KB
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
{
"name": "codeinwp/feedzy-rss-feeds",
"description": "Feedzy RSS feeds for WordPress.",
"keywords": [
"wordpress",
"feeds",
"rss"
],
"homepage": "https://themeisle.com/plugins/feedzy-rss-feeds/",
"license": "GPL-2.0+",
"authors": [
{
"name": "ThemeIsle Team",
"email": "friends@themeisle.com.com",
"homepage": "https://themeisle.com"
}
],
"type": "wordpress-plugin",
"support": {
"issues": "https://github.com/Codeinwp/feedzy-rss-feeds/issues",
"source": "https://github.com/Codeinwp/feedzy-rss-feeds"
},
"require": {
"codeinwp/themeisle-sdk": "^3.3"
},
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml",
"test": "phpunit",
"phpstan": "phpstan",
"phpstan:generate:baseline": "phpstan --generate-baseline"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"yoast/phpunit-polyfills": "^4.0",
"automattic/vipwpcs": "^3.0",
"phpstan/phpstan": "^1.12",
"szepeviktor/phpstan-wordpress": "^1.3"
}
}