-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 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
50
{
"name": "yasglobal/make-paths-relative",
"description": "Convert Absolute URLs to be relative in your fingertip.",
"type": "wordpress-plugin",
"keywords": [
"Portable URLs",
"Relative Links",
"SEO-Friendly URLs",
"Multisite Compatibility",
"Subdomain Migration",
"URL Migration",
"Domain Move"
],
"homepage": "https://wordpress.org/plugins/make-paths-relative/",
"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/yasglobal/make-paths-relative/issues",
"forum": "https://wordpress.org/support/plugin/make-paths-relative/",
"source": "https://github.com/yasglobal/make-paths-relative"
},
"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"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}