-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
39 lines (39 loc) · 1016 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
31
32
33
34
35
36
37
38
39
{
"name": "codeinwp/wp-menu-icons",
"description": "WordPress Menu Icons",
"type": "wordpress-plugin",
"require": {
"codeinwp/icon-picker": "master",
"codeinwp/menu-item-custom-fields": "master",
"codeinwp/themeisle-sdk": "^3.2",
"codeinwp/gutenberg-menu-icons": "^1.0"
},
"replace": {
"composer/installers": "*"
},
"autoload": {
"files": [
"vendor/codeinwp/menu-item-custom-fields/menu-item-custom-fields.php",
"vendor/codeinwp/icon-picker/icon-picker.php",
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml "
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "5.6"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}