-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 971 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
{
"name": "debtcollective/dc-events-manager",
"description": "Custom functions to extend Events Manager.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Debt Collective",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DCEventsManager\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.0"
},
"allow-plugins": {
"kylekatarnls/update-helper": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "*",
"automattic/phpcs-neutron-ruleset": "^3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"lucatume/wp-browser": "^3.0"
}
}