-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
42 lines (42 loc) · 976 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
39
40
41
42
{
"name": "yalesov/zf2-cron",
"description": "ZF2 cron module",
"keywords": ["cron", "zf2", "zendframework"],
"authors": [
{
"name": "Yulij Andreevich Lesov",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"yalesov/yaml": "2.*",
"zendframework/zendframework": "2.*",
"yalesov/arg-validator": "2.*",
"yalesov/background-exec": "2.*",
"yalesov/zf2-doctrine": "2.*",
"yalesov/cron-expr-parser": "2.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"yalesov/zf2-phpunit-testcase": "2.*",
"yalesov/zf2-phing-task": "2.*"
},
"autoload": {
"psr-0": {
"Yalesov\\Cron": "src/"
}
},
"license": "ISC",
"homepage": "https://github.com/yalesov/zf2-cron",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/yalesov/zf2-cron"
}
],
"support": {
"issues": "https://github.com/yalesov/zf2-cron/issues"
}
}