forked from yohang/dependency-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.03 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
{
"name": "nekland/dependency-tools",
"description": "A simple Composer script to install NPM and/or Bower dependencies",
"keywords": ["dependency", "bower", "npm", "composer"],
"homepage": "https://github.com/nekland/dependency-tools",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yohan Giarelli",
"email": "[email protected]",
"homepage": "http://yohan.giarel.li"
},
{
"name": "Maxime Veber",
"email": "[email protected]",
"homepage": "http://nekland.fr"
}
],
"require": {
"php": ">=5.3.0",
"symfony/process": "~2.0|~3.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"phpspec/nyan-formatters": "1.*",
"composer/composer": "dev-master"
},
"autoload": {
"psr-0": { "Yohang": "src/" }
},
"branch-alias": {
"dev-master": "1.1.*-dev"
}
}