-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
84 lines (84 loc) · 2.47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name" : "devaloka/mu-plugin-installer",
"description" : "A Composer Installer for WordPress MU plugins",
"type" : "composer-plugin",
"keywords" : [
"wordpress",
"plugin",
"mu-plugin",
"composer",
"installer"
],
"homepage" : "https://github.com/devaloka/mu-plugin-installer",
"license" : [
"MIT"
],
"minimum-stability": "dev",
"prefer-stable" : true,
"authors" : [
{
"name" : "Whizark",
"email" : "devaloka@whizark.com",
"homepage": "http://whizark.com",
"role" : "Developer"
}
],
"support" : {
"email" : "devaloka@whizark.com",
"issues": "https://github.com/devaloka/mu-plugin-installer/issues",
"wiki" : "https://github.com/devaloka/mu-plugin-installer/wiki",
"source": "https://github.com/devaloka/mu-plugin-installer"
},
"require" : {
"php" : ">=5.3.2",
"composer-plugin-api": "~1.1.0"
},
"require-dev" : {
"composer/composer" : "1.1.*@dev",
"squizlabs/php_codesniffer": "^2.9.1",
"phpunit/phpunit" : "^4.8 || ^5.7",
"mockery/mockery" : "^0.9.9",
"satooshi/php-coveralls" : "^1.0.1"
},
"autoload" : {
"psr-4": {
"Devaloka\\Composer\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Tests\\Devaloka\\Composer\\": "tests/"
}
},
"scripts" : {
"test" : [
"vendor/bin/phpcs --colors",
"vendor/bin/phpunit --colors=always"
],
"test-travis": [
"vendor/bin/phpcs --colors",
"vendor/bin/phpunit --colors=always --verbose --coverage-clover build/logs/clover.xml"
]
},
"archive" : {
"exclude": [
".gitignore",
".gitattributes",
".mailmap",
".editorconfig",
"package.json",
"npm-shrinkwrap.json",
".remarkrc",
"gulpfile.js",
"composer.json",
"phpcs.xml.dist",
"phpunit.xml.dist",
".coveralls.yml",
"tests/",
".travis.yml"
]
},
"extra" : {
"class": "Devaloka\\Composer\\Installer\\MuPluginInstallerPlugin"
}
}