-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 940 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
{
"name": "cool-shortcode",
"description": "Built with WDS-Shortcodes (and Shortcode_Button), this plugin demonstrates the capabilites of those libraries.",
"keywords": ["wordpress", "plugin", "generator-plugin-wp"],
"homepage": "http://webdevstudios.com",
"license": "GPLv2",
"authors": [
{
"name": "WebDevStudios",
"homepage": "http://webdevstudios.com"
}
],
"minimum-stability": "dev",
"type": "wordpress-plugin",
"autoload": {
"classmap": ["cool-shortcode.php", "includes/"]
},
"require": {
"php": ">=5.2",
"xrstf/composer-php52": "1.*",
"TGMPA/TGM-Plugin-Activation": "^2.5.2"
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
}
}