-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 1.14 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
37
38
39
40
41
{
"name": "fancyguy/composer-wordpress-plugin",
"type": "composer-plugin",
"description": "WordPress installer for Composer",
"keywords": ["composer", "installer", "WordPress", "plugin", "theme"],
"homepage": "https://github.com/fancyguy/composer-wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Steve Buzonas",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/fancyguy/composer-wordpress-plugin/issues"
},
"conflict": {
"composer/installers": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer-plugin-api": "^1.1"
},
"autoload": {
"psr-4": { "FancyGuy\\Composer\\WordPress\\": "src/" }
},
"autoload-dev": {
"psr-4": { "FancyGuy\\Composer\\WordPress\\Test\\": "tests/" }
},
"require-dev": {
"composer/composer": "1.0.x-dev",
"phpunit/phpunit": "~4.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
},
"class": "FancyGuy\\Composer\\WordPress\\WordPressPlugin"
}
}