-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-composer.json
More file actions
39 lines (38 loc) · 1.03 KB
/
example-composer.json
File metadata and controls
39 lines (38 loc) · 1.03 KB
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
{
"name": "philwilliammee/wp-localist-viewer",
"description": "manages plugins",
"authors": [
{
"name": "philwilliammee",
"email": "admin@example.com"
}
],
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "philwilliammee/wp-localist-viewer",
"version": "dev-master",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://github.com/philwilliammee/wp-localist-viewer/archive/master.zip"
}
}
}
],
"require": {
"composer/installers": "~1.0",
"philwilliammee/wp-localist-viewer": "dev-master#8e7b3fe"
},
"extra": {
"installer-paths": {
"wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
}
}