forked from greatislander/uio-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 869 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
{
"name": "fluid-project/user-interface-options",
"description": "A WordPress plugin adds the Infusion User Interface Options component to a site.",
"type": "wordpress-plugin",
"license": "ECL-2.0",
"authors": [
{
"name": "Fluid Project",
"email": "[email protected]"
}
],
"require": {
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"wp-coding-standards/wpcs": "^2.1"
},
"scripts": {
"test": ["@standards"],
"standards": "vendor/bin/phpcs"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}