-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.07 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.07 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
40
41
42
43
44
{
"name": "dotfiles/vundle-plugin",
"description": "Dotfiles Vim Vundle Plugin",
"type": "dotfiles-plugin",
"license": "MIT",
"authors": [
{
"name": "Anthonius Munthi",
"email": "me@itstoni.com"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "vim/vundle",
"version": "0.10.2",
"dist": {
"url": "https://github.com/VundleVim/Vundle.vim/archive/v0.10.2.zip",
"type": "zip"
}
}
}
],
"minimum-stability": "stable",
"require": {
"vim/vundle": "0.10.2"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"dotfiles/core": "^1.0@dev"
},
"autoload": {
"psr-4": { "Dotfiles\\Plugins\\Vundle\\": "./src/" }
},
"autoload-dev": {
"psr-4": { "Dotfiles\\Plugins\\Vundle\\Tests\\": "./tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}