forked from cronkeep/cronkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.36 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
{
"name": "cronkeep/cronkeep",
"description": "Web-based crontab manager",
"keywords": ["crontab", "cron"],
"type": "project",
"homepage": "http://www.cronkeep.com",
"license": "Apache-2.0",
"authors": [
{
"name": "Bogdan Ghervan",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/bogdanghervan",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/cronkeep/cronkeep/issues",
"wiki" : "https://github.com/cronkeep/cronkeep/wiki",
"source": "https://github.com/cronkeep/cronkeep"
},
"require": {
"php": ">=5.3.23",
"slim/slim": "2.4.3",
"symfony/process": "2.5.2",
"dogancelik/slim-json": "dev-master",
"zendframework/zend-form": "2.3.1",
"zendframework/zend-servicemanager": "2.3.1",
"zendframework/zend-view": "2.3.1",
"zendframework/zend-i18n": "2.3.1",
"zendframework/zend-escaper": "2.3.8"
},
"autoload": {
"psr-4": {
"models\\": "src/application/models/",
"services\\": "src/application/services/",
"forms\\": "src/application/forms/",
"library\\": "src/library/"
}
},
"config": {
"vendor-dir": "src/vendor"
}
}