forked from Dukecity/CommandSchedulerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "dukecity/command-scheduler-bundle",
"description": "This Symfony bundle will allow you to schedule all your commands just like UNIX crontab",
"keywords": ["Symfony", "scheduler", "cron", "command", "task"],
"homepage": "https://github.com/Dukecity/CommandSchedulerBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Julien Guyon",
"email": "[email protected]"
},
{
"name": "Dukecity",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"doctrine/orm": "^2.17.2",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/collections": "^2.1",
"doctrine/dbal": "^3.7",
"doctrine/persistence": "^3.2",
"dragonmantank/cron-expression": "^3.3",
"knplabs/knp-time-bundle": "^2.2",
"lorisleiva/cron-translator": "^0.4.4",
"symfony/asset": "^7.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/translation": "^7.0",
"symfony/finder": "^7.0",
"symfony/form": "^7.0",
"symfony/validator": "^7.0",
"symfony/lock": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/property-access": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/routing": "^7.0",
"symfony/yaml": "^7.0",
"twig/twig": "^3.8"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.5",
"liip/test-fixtures-bundle": "^2.7",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"symfony/browser-kit": "^7.0",
"symfony/css-selector": "^7.0",
"symfony/debug-bundle": "^7.0",
"symfony/dom-crawler": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/http-client": "^7.0",
"symfony/notifier": "^7.0",
"symfony/maker-bundle": "^1.52",
"symfony/var-dumper": "^7.0"
},
"suggest": {
"ext-pcntl": "For using the scheduler daemon",
"symfony/notifier": "Send Notifications (E-Mails)",
"twig/cssinliner-extra": "Needed for E-Mail Notification",
"twig/inky-extra": "Needed for E-Mail Notification",
"ext-posix": "*"
},
"autoload": {
"psr-4": {
"Dukecity\\CommandSchedulerBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "Tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^7.0"
}
}
}