-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 858 Bytes
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 858 Bytes
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
{
"name": "iwpdev/thumbnify",
"homepage": "https://i-wp-dev.com/",
"type": "wordpres-plugin",
"autoload": {
"psr-4": {
"Thumbnify\\": "src/php"
}
},
"autoload-dev": {
"psr-4": {
"Thumbnify\\": "src/php"
}
},
"prefer-stable": true,
"authors": [
{
"name": "alexl",
"email": "adminv@i-wp-dev.com"
}
],
"config": {
"platform": {
"php": "7.4"
}
},
"minimum-stability": "dev",
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"php-coveralls/php-coveralls": "^2.4"
},
"require": {
},
"scripts": {
"phpcs": "vendor/bin/phpcs --colors --standard=phpcs.xml"
}
}