-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.17 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
{
"name": "proklung/task-scheduler-bundle",
"description": "A task scheduler for custom Symfony using CRON jobs porting that allows you to run tasks periodically",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Gavrilov Fedy",
"email": "[email protected]",
"homepage": "https://github.com/ProklUng"
}
],
"support": {
"issues": "https://github.com/ProklUng/task.scheduler.bundle/issues",
"source": "https://github.com/ProklUng/task.scheduler.bundle"
},
"autoload": {
"psr-4": {
"Prokl\\TaskSchedulerBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Prokl\\TaskSchedulerBundle\\Tests\\": "Tests"
}
},
"require": {
"php": ">=7.3 | ^8.0",
"psr/container": "^1.0",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/config": "^4.4 || ^5.1",
"symfony/console": "^4.4 || ^5.1",
"dragonmantank/cron-expression": "^3.1"
},
"require-dev": {
"proklung/phpunit-testing-tools": "^1.0"
}
}