-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.74 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
{
"name": "obstschale/bookmark-manager",
"type": "wordpress-plugin",
"description": "Let WordPress handle your bookmarks",
"keywords": ["wordpress", "plugin", "bookmarks", "manager", "social"],
"homepage": "https://github.com/obstschale/bookmark-manager",
"license": "GPL-2.0",
"authors": [
{
"name": "Hans-Helge Buerger",
"homepage": "https://hanshelgebuerger.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/obstschale/bookmark-manager/issues/",
"wiki": "https://github.com/obstschale/bookmark-manager/wiki/",
"source": "https://github.com/obstschale/bookmark-manager/"
},
"repositories": [
{
"type": "package",
"package": {
"name": "jashkenas/underscore",
"version": "1.8.3",
"dist": {
"type": "zip",
"url": "https://github.com/jashkenas/underscore/archive/1.8.3.zip",
"reference": "master"
},
"autoload": {
"classmap": ["."]
}
}
}
],
"require": {
"php": ">=5.4",
"mnsami/composer-custom-directory-installer": "*",
"htmlburger/carbon-fields": "1.5",
"jjgrainger/posttypes": "*",
"jashkenas/underscore": ">=1.8.0",
"composer/installers": "*",
"wpupdatephp/wp-update-php": "dev-master"
},
"extra":{
"installer-paths":{
"./vendor/carbon-fields": ["htmlburger/carbon-fields"]
}
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"BookmarkManager\\": "app/"
}
},
"scripts": {
"pre-autoload-dump": [
"rm -rf vendor/carbon-fields/.git*; rm -rf vendor/composer/installers/.git*; rm -rf vendor/jjgrainger/posttypes/.git*"
]
}
}