-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 752 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 752 Bytes
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
{
"name": "rewieer/taskschedulerbundle",
"description": "Task Scheduler with CRON for Symfony",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Rewieer\\TaskSchedulerBundle\\": ""
}
},
"keywords": ["cron", "task", "scheduler", "symfony", "bundle"],
"require": {
"php": "^7.4|^8.1",
"symfony/deprecation-contracts": "^2.5|^3.4",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"symfony/console": "^5.3|^6.4|^7.0",
"dragonmantank/cron-expression": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^6.4",
"monolog/monolog": "^2.9"
},
"license": "MIT",
"authors": [
{
"name": "Anthony Cyrille",
"email": "rewieer@gmail.com"
}
]
}