-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
53 lines (53 loc) · 1.29 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
{
"name": "continuousphp/deploy-agent",
"homepage": "https://github.com/continuousphp/deploy-agent",
"description": "Deploy agent for continuousphp",
"type": "project",
"keywords": [
"build",
"tool",
"continuousphp",
"deployment",
"agent"
],
"license": "Apache-2.0",
"support": {
"email": "[email protected]",
"source": "https://github.com/continuousphp/deploy-agent",
"issues": "https://github.com/continuousphp/deploy-agent/issues"
},
"config": {
"process-timeout": 5000
},
"require": {
"php": ">=5.5.0",
"ext-pdo_sqlite": "*",
"zendframework/zendframework": "2.5.2",
"doctrine/doctrine-orm-module": "~0.10",
"reprovinci/doctrine-encrypt": "~3.0",
"bushbaby/flysystem": "~1.0",
"continuousphp/sdk": "~0.3"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"mikey179/vfsStream": "1.3.*@dev",
"squizlabs/php_codesniffer": "^2.3",
"behat/behat": "^3.0"
},
"autoload": {
"psr-4": {
"Continuous\\DeployAgent\\": "module/DeployAgent/src"
},
"classmap": [
"module/DeployAgent/Module.php"
]
},
"autoload-dev": {
"psr-4": {
"Continuous\\Features\\": "features/bootstrap/"
}
},
"scripts": {
"post-create-project-cmd": "scripts/post-create-project"
}
}