forked from orisai/cron-expression-explainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.57 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
{
"name": "orisai/cron-expression-explainer",
"description": "Human-readable cron expressions",
"keywords": [
"cron",
"crontab",
"frequency",
"i18n",
"internationalization",
"interval",
"l10n",
"localization",
"orisai",
"recurring",
"schedule",
"scheduling",
"scheduler",
"task",
"translation"
],
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/orisai/cron-expression-explainer",
"authors": [
{
"name": "Marek Bartoš",
"homepage": "https://github.com/mabar"
}
],
"require": {
"php": ">=7.4.0 <8.3.0",
"dragonmantank/cron-expression": "^3.3.0",
"symfony/intl": "^5.4.35|^6.4.3|^7.0.3",
"symfony/polyfill-php80": "^1.29"
},
"require-dev": {
"brianium/paratest": "^6.3.0",
"infection/infection": "^0.26.0",
"nette/utils": "^3.1.0|^4.0.0",
"orisai/coding-standard": "^3.0.0",
"phpstan/extension-installer": "^1.0.0",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"phpunit/phpunit": "^9.5.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.7.0"
},
"autoload": {
"psr-4": {
"Orisai\\CronExpressionExplainer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Orisai\\CronExpressionExplainer\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}