-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.46 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": "linchpin/simple-subtitles",
"version": "2.2.0",
"description": "Easily add a subtitle to your post, pages and custom post types",
"homepage": "https://github.com/linchpin/simple-subtitles",
"prefer-stable": true,
"authors": [
{
"name": "Linchpin",
"email": "[email protected]",
"homepage": "https://linchpin.com",
"role": "Developer"
},
{
"name": "Aaron Ware",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Nate Allen",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/linchpin/simple-subtitles/issues",
"source": "https://github.com/linchpin/simple-subtitles"
},
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"require": {
"php": ">=7.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "^2.3",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"friendsofphp/php-cs-fixer": "^3.2",
"phpcompatibility/phpcompatibility-wp": "*",
"automattic/phpcs-neutron-ruleset": "^3.4"
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf .",
"php-cs-fixer": "./vendor/friendsofphp/php-cs-fixer/php-cs-fixer --rules=./.php-cs-fixer.dist.php"
}
}