-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 777 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 777 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
31
{
"name": "padam87/cron-bundle",
"type": "symfony-bundle",
"description": "A cron job manager for symfony console.",
"license": "MIT",
"keywords": [
"symfony",
"console",
"cron"
],
"homepage": "https://github.com/Padam87/CronBundle",
"authors": [
{
"name": "Adam Prager",
"email": "prager.adam87@gmail.com"
}
],
"autoload": {
"psr-4": {"Padam87\\CronBundle\\": ""}
},
"require": {
"php": "^8.1",
"symfony/console": "^6.1 || ^7.0",
"symfony/process": "^6.1 || ^7.0",
"symfony/config": "^6.1 || ^7.0",
"symfony/dependency-injection": "^6.1 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}