-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
37 lines (37 loc) · 969 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" : "trovit/cron-manager-bundle",
"description" : "A simple cron manager that allow to schedule commands without relying on system operators",
"type" : "symfony-bundle",
"authors" : [{
"name" : "Trovit",
"email" : "[email protected]"
}],
"keywords" : [
"cron", "manager", "command", "task", "schedule"
],
"license" : [
"MIT"
],
"require" : {
"php": ">=5.3.9",
"symfony/form": "~2.3|~3.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/twig-bundle": "~2.3|~3.0",
"doctrine/doctrine-bundle": "~1.3",
"doctrine/orm": "~2.5",
"symfony/process": "~2.3|~3.0",
"symfony/console": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"mtdowling/cron-expression": "^1.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0",
"phpunit/phpunit": "4.7.*"
},
"autoload" : {
"psr-0" : {
"Trovit\\CronManagerBundle" : ""
}
},
"target-dir" : "Trovit/CronManagerBundle"
}