-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
94 lines (94 loc) · 2.71 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
{
"name": "crunzphp/crunz",
"description": "Schedule your tasks right from the code.",
"license": "MIT",
"type": "library",
"keywords": [
"scheduler",
"cron jobs",
"cron",
"Task Scheduler",
"PHP Task Scheduler",
"Job Scheduler",
"Job Manager",
"Event Runner"
],
"authors": [
{
"name": "Reza M. Lavaryan",
"email": "[email protected]"
},
{
"name": "PabloKowalczyk",
"homepage": "https://github.com/PabloKowalczyk",
"role": "Developer"
}
],
"homepage": "https://github.com/crunzphp/crunz",
"support": {
"issues": "https://github.com/crunzphp/crunz/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PabloKowalczyk"
}
],
"require": {
"php": ">=8.1",
"composer-runtime-api": "^2.0",
"dragonmantank/cron-expression": "^3.4.0",
"laravel/serializable-closure": "^2.0",
"psr/log": "^2.0 || ^3.0",
"symfony/config": "^6.4.10 || ^7.1.0",
"symfony/console": "^6.4.10 || ^7.1.0",
"symfony/dependency-injection": "^6.4.10 || ^7.1.0",
"symfony/filesystem": "^6.4.10 || ^7.1.0",
"symfony/lock": "^6.4.10 || ^7.1.0",
"symfony/mailer": "^6.4.10 || ^7.1.0",
"symfony/process": "^6.4.10 || ^7.1.0",
"symfony/string": "^6.4.10 || ^7.1.0",
"symfony/yaml": "^6.4.10 || ^7.1.0"
},
"require-dev": {
"ext-json": "*",
"ext-mbstring": "*",
"ergebnis/composer-normalize": "2.28.3",
"friendsofphp/php-cs-fixer": "3.64",
"phpstan/phpstan": "2.0.2",
"phpstan/phpstan-phpunit": "2.0.1",
"phpstan/phpstan-strict-rules": "2.0.0",
"phpunit/phpunit": "10.5.38",
"symfony/error-handler": "^6.4.10 || ^7.1.0",
"symfony/phpunit-bridge": "^6.4.10 || ^7.1.0"
},
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Crunz\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crunz\\Tests\\": "tests/"
}
},
"bin": [
"crunz"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"crunz:analyze": [
"@php vendor/bin/php-cs-fixer fix --diff --dry-run -v",
"@phpstan:check"
],
"crunz:cs-fix": "@php vendor/bin/php-cs-fixer fix --diff -v --ansi",
"phpstan:check": "@php vendor/bin/phpstan analyse -c phpstan.neon src tests crunz config bootstrap.php"
}
}