-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (63 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "shapecode/cron-sonata-admin-bundle",
"description": "This bundle integrates the cron-bundle in sonata admin.",
"keywords": [
"cron",
"cronjob",
"sonata",
"admin",
"command",
"execute",
"interval",
"schedule",
"shapecode",
"symfony",
"time",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/shapecode/cron-sonata-admin-bundle",
"support": {
"email": "[email protected]",
"issues": "https://github.com/shapecode/cron-sonata-admin-bundle/issues",
"source": "https://github.com/shapecode/cron-sonata-admin-bundle/releases",
"wiki": "https://github.com/shapecode/cron-sonata-admin-bundle/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "[email protected]"
}
],
"require": {
"php": "~7.2",
"symfony/framework-bundle": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/http-kernel": "~3.4|~4.0",
"symfony/config": "~3.4|~4.0",
"shapecode/cron-bundle": "~4.0",
"sonata-project/admin-bundle": "~3.50"
},
"require-dev":{
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\CronSonataAdminBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Bundle\\CronSonataAdminBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}