-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
37 lines (37 loc) · 908 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
{
"name": "vendor-name/plugin-name",
"description": "This is a short description of what the plugin does.",
"type": "wordpress-plugin",
"keywords": ["wordpress", "plugin"],
"homepage": "http://example.com/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Your Name",
"email": "[email protected]",
"homepage": "http://example.com/"
}
],
"support": {
"issues": "http://example.com/",
"source": "http://example.com/"
},
"autoload": {
"psr-4": {
"Vendor_Name\\Plugin_Name\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Vendor_Name\\Tests\\Plugin_Name\\": "tests/"
}
},
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "*@stable"
},
"suggest": {}
}