-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
composer.json
77 lines (77 loc) · 2.27 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
{
"name": "lavary/crunz",
"description": "Schedule your tasks right from the code.",
"type": "library",
"keywords": [
"scheduler",
"cron jobs",
"cron",
"Task Scheduler",
"PHP Task Scheduler",
"Job Scheduler",
"Job Manager",
"Event Runner"
],
"homepage": "https://github.com/lavary/crunz",
"license": "MIT",
"authors": [
{
"name": "Reza M. Lavaryan",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/lavary/crunz/issues"
},
"require": {
"php": ">=7.4",
"dragonmantank/cron-expression": "^3.1",
"opis/closure": "^3.5",
"symfony/config": "^4.4 || ^5.2",
"symfony/console": "^4.4 || ^5.2",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/filesystem": "^4.4 || ^5.2",
"symfony/lock": "^4.4 || ^5.2",
"symfony/mailer": "^5.3",
"symfony/process": "^4.4 || ^5.2",
"symfony/yaml": "^4.4 || ^5.2"
},
"require-dev": {
"ext-json": "*",
"ext-mbstring": "*",
"bamarni/composer-bin-plugin": "^1.2",
"phpunit/phpunit": "^9.5.2",
"symfony/error-handler": "^4.4 || ^5.2",
"symfony/phpunit-bridge": "^4.4.8 || ^5.2.0"
},
"autoload": {
"psr-4": {
"Crunz\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crunz\\Tests\\": "tests/"
}
},
"bin": [
"crunz"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"crunz:cs-fix": "@php vendor/bin/php-cs-fixer fix --diff -v --ansi",
"crunz:analyze": [
"@php vendor/bin/php-cs-fixer fix --diff --dry-run -v",
"@phpstan:check"
],
"crunz:link-changelog": "@php vendor/bin/changelog-linker dump-merges --dry-run --in-categories",
"crunz:link-changelog:since": "@php vendor/bin/changelog-linker dump-merges --dry-run --in-categories --since-id",
"phpstan:check": "@php vendor/bin/phpstan analyse -c phpstan.neon src tests crunz config bootstrap.php"
},
"abandoned": "crunzphp/crunz"
}