-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "nielslange/smntcs-custom-logo-link",
"description": "Allows to customize the logo link.",
"homepage": "https://github.com/nielslange/smntcs-custom-logo-link",
"type": "wordpress-plugin",
"keywords": [
"WordPress",
"Plugin",
"SMNTCS Custom Logo Link"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Niels Lange",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0",
"humanmade/psalm-plugin-wordpress": "3.1.1",
"overtrue/phplint": "9.5.3",
"phpcompatibility/phpcompatibility-wp": "2.1",
"squizlabs/php_codesniffer": "3.10.3",
"vimeo/psalm": "5.26.1",
"wp-coding-standards/wpcs": "3.1.0"
},
"scripts": {
"phpcbf": "phpcbf --standard=phpcs.dist.xml .",
"phpcs": "phpcs --standard=phpcs.dist.xml .",
"phplint": "phplint",
"psalm": "psalm --no-cache"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}