forked from lavary/crunz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.45 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
{
"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.2",
"dragonmantank/cron-expression": "^2.0",
"opis/closure": "^3.5",
"swiftmailer/swiftmailer": "^6.0",
"symfony/config": "^3.4.5 || ^4.3 || ^5.0",
"symfony/console": "^3.4.5 || ^4.3 || ^5.0",
"symfony/dependency-injection": "^3.4.5 || ^4.3 || ^5.0",
"symfony/filesystem": "^3.4.5 || ^4.3 || ^5.0",
"symfony/lock": "^3.4.5 || ^4.3 || ^5.0",
"symfony/process": "^3.4.5 || ^4.3 || ^5.0",
"symfony/yaml": "^3.4.5 || ^4.3 || ^5.0"
},
"require-dev": {
"ext-json": "*",
"ext-mbstring": "*",
"bamarni/composer-bin-plugin": "^1.2",
"phpunit/phpunit": "^8.5.1",
"symfony/error-handler": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^3.4.31 || ^4.3 || ^5.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"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-2.2.x": "v2.2.x-dev"
}
}
}