-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 953 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
{
"name": "rizeway/anchour",
"type": "library",
"description": "Toolkit for deploying web applications",
"keywords": ["web", "deploy", "php"],
"license": "MIT",
"authors": [
{
"name": "Riad Benguella",
"email": "[email protected]",
"homepage": "http://riadbenguella.com"
},
{
"name": "Julien Bianchi",
"email": "[email protected]",
"homepage": "http://jubianchi.fr"
}
],
"autoload": {
"psr-0": {
"Rizeway\\Anchour": "src/",
"jubianchi": "src/"
}
},
"require": {
"php": ">=5.3.2",
"symfony/yaml": "2.*",
"symfony/console": "2.2.*",
"symfony/options-resolver": "*",
"symfony/config": "*",
"youknowriad/oossh": "dev-master@dev"
},
"require-dev": {
"atoum/atoum": "~1.2"
},
"bin": ["bin/anchour"]
}