-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.76 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
{
"name": "linchpin/post-type-spotlight",
"version": "3.0.3",
"description": "A simple plugin to allow authors and admins to feature post types",
"homepage": "https://github.com/linchpin/linchpin-com-functionality",
"authors": [
{
"name": "Aaron Ware",
"email": "[email protected]"
},
{
"name": "Jonathan Desrosiers",
"role": "Developer"
},
{
"name": "Linchpin",
"email": "[email protected]",
"homepage": "https://linchpin.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/linchpin/post-type-spotlight/issues",
"source": "https://github.com/linchpin/post-type-spotlight"
},
"license": "proprietary",
"type": "wordpress-plugin",
"private": true,
"require": {
"php": ">=7.0",
"composer/installers": "^v2.2.0"
},
"require-dev": {
"phpseclib/phpseclib": "3.0.34",
"linchpin/phpdocumentor-template-markdown": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^2.3.0",
"squizlabs/php_codesniffer": "^3.8.1",
"phpcompatibility/php-compatibility": "^9.3.5",
"php-parallel-lint/php-parallel-lint": "^v1.3.2",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.48.0",
"phpcompatibility/phpcompatibility-wp": "2.1.4",
"automattic/phpcs-neutron-ruleset": "^3.4",
"saggre/phpdocumentor-markdown": "^0.1.4"
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf .",
"php-cs-fixer": "./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix ./ --config=./.php-cs-fixer.dist.php"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}