-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.24 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "mehul0810/updatesync",
"description": "UpdateSync is a composer package to help developers provide automatic updates to their WordPress plugins and themes using GitHub.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=8.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "^2.3",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"UpdateSync\\": "src/"
}
},
"authors": [
{
"name": "Mehul Gohil",
"email": "hello@mehulgohil.com"
}
],
"homepage": "https://github.com/mehul0810/updatesync",
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=WordPress src/",
"phpstan": "vendor/bin/phpstan analyse --level=max src",
"audit": "composer audit"
},
"extra": {
"phpcodesniffer": {
"installed_paths": [
"vendor/wp-coding-standards/wpcs"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}