forked from mybuilder/cronos-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.12 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "mybuilder/cronos-bundle",
"description": "Symfony 2 bundle which allows you to use @Cron annotations to configure cron to run your console commands.",
"keywords": ["cron", "cronos"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Gavin Love",
"email": "gavin@mybuilder.com",
"homepage": "http://www.mybuilder.com"
},
{
"name": "Keyvan Akbary",
"email": "keyvan@mybuilder.com",
"homepage": "http://www.mybuilder.com"
}
],
"require": {
"mybuilder/cronos": "0.9.1.*",
"doctrine/annotations": "1.*",
"symfony/console": ">=2.2,<=2.4",
"symfony/framework-bundle": ">=2.2,<=2.4",
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": { "MyBuilder\\Bundle\\CronosBundle": "" }
},
"target-dir": "MyBuilder/Bundle/CronosBundle",
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "0.9.3"
}
}
}