-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (43 loc) · 1.08 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": "effiana/cron-bundle",
"type": "symfony-bundle",
"description": "Symfony cron",
"license": "MIT",
"authors": [
{
"name": "Dominik Labudzinski",
"email": "[email protected]"
},
{
"name": "Dries De Peuter",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"effiana/cron": "^2.0",
"doctrine/data-fixtures": "^1.3",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-migrations-bundle": "^1.3 | ^2.1",
"doctrine/orm": "*",
"symfony/framework-bundle": "^4.2 | ^5.0",
"effiana/migration-bundle": "dev-master"
},
"autoload": {
"psr-4" : {
"Effiana\\CronBundle\\" : ""
}
},
"autoload-dev": {
"psr-4": { "Tests\\": "Tests/" },
"files": [ "Tests/Fixtures/App/app/AppKernel.php" ]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"require-dev": {
"symfony/phpunit-bridge": "*"
}
}