-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.21 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.21 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
45
46
47
48
{
"name": "imagekit/imagekit-wordpress",
"type": "wordpress-plugin",
"license": "GPLv2",
"authors": [
{
"name": "ImageKit Developer",
"email": "developer@imagekit.io",
"homepage": "https://imagekit.io",
"role": "Developer"
},
{
"name": "Abhinav Dhiman",
"email": "abhinav@imagekit.io",
"homepage": "https://imagekit.io",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"ext-json": "*"
},
"require-dev": {
"wp-coding-standards/wpcs": "3.3.0",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"phpcompatibility/php-compatibility": "10.0.0-alpha2",
"dealerdirect/phpcodesniffer-composer-installer": "1.2.0"
},
"config": {
"platform": {
"php": "8.4.11"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": [
"phpcs"
],
"fix": [
"phpcbf"
],
"make-pot": [
"wp i18n make-pot . languages/imagekit.pot"
]
}
}