-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 965 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
38
{
"name": "nass600/portiere",
"description": "Vhost builder command based on Console Component",
"type": "library",
"keywords": ["symfony", "command", "vhost", "nginx", "apache", "virtual host"],
"homepage": "http://github.com/nass600/portiere",
"license": "MIT",
"authors": [
{
"name": "Ignacio Velazquez",
"email": "ivelazquez85@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"symfony/console": "^3.2",
"symfony/templating": "^3.2",
"symfony/filesystem": "^3.2",
"symfony/finder": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": { "Portiere\\": "src/Portiere" }
},
"autoload-dev": {
"psr-4": {"Portiere\\": "tests/Portiere"}
},
"bin": [
"portiere"
],
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}