-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
76 lines (76 loc) · 2.31 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
{
"name": "whatwedo/cron-bundle",
"type": "symfony-bundle",
"description": "Run Symfony commands as cron job",
"license": "MIT",
"homepage": "https://doc.whatwedo.ch/whatwedo/cronbundle",
"authors": [
{
"name": "Felix Imobersteg",
"email": "[email protected]"
},
{
"name": "Felix Ammann",
"email": "[email protected]"
},
{
"name": "whatwedo GmbH",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"ext-posix": "*",
"dragonmantank/cron-expression": "~3.3",
"symfony/console": "^7.1|^6.4",
"symfony/event-dispatcher": "^7.1|^6.4",
"symfony/security-bundle": "^7.1|^6.4",
"symfony/framework-bundle": "^7.1|^6.4",
"symfony/process": "^7.1|^6.4",
"symfony/webpack-encore-bundle": "^1.14|^2.1",
"symfony/stimulus-bundle": "^2.16"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.5",
"doctrine/orm": "^2.11|3.0",
"doctrine/annotations": "^1.13.2|^2.0",
"symfony/phpunit-bridge": "^7.1",
"symfony/http-kernel": "^7.1",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/yaml": "^7.1",
"symfony/validator": "^7.1",
"symfony/maker-bundle": "^1.0.0",
"symfony/orm-pack": "^2.4",
"symfony/translation": "^7.1",
"symfony/twig-bundle": "^7.1",
"symfony/test-pack": "^1.0",
"symfony/runtime": "^7.1",
"symfony/dotenv": "^7.1",
"gedmo/doctrine-extensions": "^3.5",
"whatwedo/php-coding-standard": "^1.2",
"whatwedo/twig-bootstrap-icons": "^1.0",
"zenstruck/foundry": "^2.1",
"zenstruck/console-test": "^v1.3.0",
"zenstruck/browser": "^1.2",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": {
"whatwedo\\CronBundle\\": "src/",
"whatwedo\\CronBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.0.*"
}
}
}