-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
36 lines (36 loc) · 1.02 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
{
"name": "mcguffin/robocrop",
"description": "Focus point based image cropping in WordPress.",
"license": "GPL-3.0-or-later",
"keywords": [
"Upload",
"WordPress",
"Plugin",
"Image Size"
],
"homepage": "https://github.com/mcguffin/acf-dropzone",
"type": "wordpress-plugin",
"require": {
"composer/installers": "~1.2",
"php": ">=5.6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"phpcompatibility/php-compatibility": "*",
"pheromone/phpcs-security-audit":"*"
},
"scripts": {
"post-install-cmd": [
"[ -f vendor/bin/phpcs ] && \"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/pheromone/phpcs-security-audit || true"
],
"post-update-cmd": [
"[ -f vendor/bin/phpcs ] && \"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/pheromone/phpcs-security-audit || true"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}