forked from j-guyon/CommandSchedulerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.06 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
{
"name": "jmose/command-scheduler-bundle",
"description": "This Symfony2 bundle will allow you to schedule all your commands just like UNIX crontab",
"keywords": ["Symfony", "scheduler", "cron", "command", "task"],
"homepage": "https://github.com/J-Mose/CommandSchedulerBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Julien Guyon",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"symfony/symfony": "~2.3",
"sensio/framework-extra-bundle": "~2.3|~3.0",
"twig/twig": "~1.15",
"doctrine/orm": "~2.2,>=2.2.3,<2.5",
"doctrine/doctrine-bundle": "~1.0",
"mtdowling/cron-expression": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"satooshi/php-coveralls": "~0.6",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"liip/functional-test-bundle": "~1.2"
},
"autoload": {
"psr-4": {
"JMose\\CommandSchedulerBundle\\": ""
}
}
}