-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
51 lines (51 loc) · 1.4 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
{
"name": "samiahmedsiddiqui/custom-permalinks",
"description": "Set custom permalinks on a per-post basis in WordPress.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"permalink",
"url",
"link",
"redirect",
"address",
"custom post type"
],
"homepage": "https://www.custompermalinks.com/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sami Ahmed Siddiqui",
"email": "sami.siddiqui@yasglobal.com",
"homepage": "https://www.yasglobal.com/",
"role": "Developer"
}
],
"support": {
"email": "sami.siddiqui@yasglobal.com",
"issues": "https://github.com/samiahmedsiddiqui/custom-permalinks/issues",
"forum": "https://wordpress.org/support/plugin/custom-permalinks/",
"source": "https://github.com/samiahmedsiddiqui/custom-permalinks"
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.10.1",
"wp-coding-standards/wpcs": "~3.1.0",
"phpcompatibility/phpcompatibility-wp": "~2.1.3"
},
"scripts": {
"format": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --report=summary,source",
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:summary": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --report=summary",
"lint:errors": "@lint -n"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}