-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcomposer.json
128 lines (124 loc) · 3.83 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "shapecode/cron-bundle",
"description": "This bundle provides scheduled execution of Symfony commands",
"keywords": [
"cron",
"cronjob",
"command",
"execute",
"interval",
"schedule",
"shapecode",
"symfony",
"time",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/shapecode/cron-bundle",
"support": {
"email": "[email protected]",
"issues": "https://github.com/shapecode/cron-bundle/issues",
"source": "https://github.com/shapecode/cron-bundle/releases",
"wiki": "https://github.com/shapecode/cron-bundle/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/shapecode/cron-bundle/graphs/contributors"
}
],
"require": {
"php": "^8.2",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/process": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/event-dispatcher-contracts": "^3.5",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/collections": "^2.2",
"doctrine/persistence": "^3.3",
"doctrine/orm": "^2.20 || ^3.3",
"doctrine/dbal": "^3.9 || ^4.2",
"psr/clock": "^1.0",
"dragonmantank/cron-expression": "^3.3",
"ramsey/collection": "^2.0"
},
"require-dev":{
"shipmonk/composer-dependency-analyser": "^1.7",
"doctrine/coding-standard": "^12.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpstan/phpstan-doctrine": "^1.5",
"phpunit/phpunit": "^11.4",
"symfony/var-dumper": "^7.1",
"symfony/clock": "^7.1"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\CronBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Bundle\\CronBundle\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cda",
"@cs-check",
"@phpstan",
"@phpunit"
],
"cda": "vendor/bin/composer-dependency-analyser --config=./composer-dependency-analyser.php",
"phpstan": "phpstan analyse --memory-limit=-1 --ansi",
"phpstan-update-baseline": "phpstan analyse --ansi --generate-baseline phpstan-baseline.neon",
"phpunit": "phpunit --colors=always",
"cs-check": "phpcs -s",
"cs-fix": "phpcbf"
},
"extra": {
"branch-alias": {
"dev-master": "8.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true
}
},
"funding": [
{
"type": "github",
"url": "http://github.com/sponsors/nicklog"
},
{
"type": "paypal",
"url": "http://paypal.me/nloges"
},
{
"type": "liberapay",
"url": "https://liberapay.com/nicklog"
}
]
}