-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.73 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.73 KB
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
{
"name": "daycry/cronjob",
"description": "Cronjob library for Codeigniter 4",
"homepage": "https://github.com/daycry/cronjob",
"authors":
[
{
"name": "daycry",
"homepage": "https://github.com/daycry",
"role": "Developer"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"dragonmantank/cron-expression": "^3.3"
},
"require-dev":
{
"codeigniter4/framework": "^4",
"codeigniter/phpstan-codeigniter": "^1.4",
"codeigniter4/devkit": "^1",
"ergebnis/composer-normalize": "^2.28",
"phpstan/phpstan-strict-rules": "^2",
"phpunit/phpcov": "^10"
},
"suggest": {
"psr/log": "Use a generic PSR-3 logger implementation",
"ext-pcntl": "Graceful signal handling for long-running cron workers on Unix",
"promphp/prometheus_client_php": "Export job execution metrics to Prometheus",
"daycry/jobs": "New version of cronjobs library with queues support"
},
"autoload":
{
"psr-4": {
"Daycry\\CronJob\\": "src/"
}
},
"autoload-dev":
{
"psr-4":
{
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"analyze": [
"phpstan analyze",
"rector process --dry-run"
],
"test": "vendor/bin/phpunit",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
}
}
}