-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 956 Bytes
/
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
{
"name": "photosynthesic/mytinyadjustmentkit",
"description": "My Tiny Adjustment Kit",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"repositories": [
{
"type": "git",
"url": "https://github.com/WordPress/WordPress-Coding-Standards"
}
],
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"MTA_Kit\\": "inc"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "dev-develop#2.3.0-fix-vsprintf"
},
"scripts": {
"format": "./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"phpcs": "./vendor/squizlabs/php_codesniffer/bin/phpcs"
}
}