-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
39 lines (39 loc) · 1.25 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": "mybuilder/cronos-bundle",
"description": "Symfony 4/5/6 bundle which allows you to use @Cron annotations to configure cron to run your console commands.",
"keywords": ["cron", "cronos"],
"minimum-stability": "stable",
"type" : "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Gavin Love",
"homepage": "https://www.mybuilder.com"
},
{
"name": "Keyvan Akbary",
"homepage": "https://www.mybuilder.com"
}
],
"require": {
"php": ">=8.0.2",
"mybuilder/cronos": "^3.0 || ^4.0",
"doctrine/annotations": "^1.11",
"symfony/console": "^4.4.20 || ^5.4 || ^6.0",
"symfony/config": "^4.4.20 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4.20 || ^5.4 || ^6.0",
"symfony/framework-bundle": "^4.4.20 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4.20 || ^5.4 || ^6.0",
"symfony/property-access": "^4.4.20 || ^5.4 || ^6.0",
"symfony/yaml": "^4.4.20 || ^5.4 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.27"
},
"autoload": {
"psr-4": { "MyBuilder\\Bundle\\CronosBundle\\": "" }
},
"config": {
"bin-dir": "bin"
}
}