-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
115 lines (115 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "a-bashtannik/fasti",
"description": "Laravel task scheduler with calendar-based management.",
"keywords": [
"laravel",
"package",
"laravel package",
"scheduler",
"tasks",
"calendar",
"cron",
"events",
"scheduling",
"command scheduling",
"task management",
"date-based tasks",
"time-based tasks",
"job scheduling",
"task automation",
"task organization",
"periodic tasks",
"timed events",
"schedule management"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andrew Bashtannik",
"email": "bashtannik@gmail.com"
}
],
"autoload": {
"psr-4": {
"Bashtannik\\Fasti\\": "src/"
},
"files": [
"./helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Bashtannik\\Fasti\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bashtannik\\Fasti\\Providers\\FastiServiceProvider"
],
"aliases": {
"Fasti": "Bashtannik\\Fasti\\Facades\\Fasti"
}
}
},
"require": {
"php": "^8.2"
},
"suggest": {
"illuminate/support": "for the Laravel integration",
"illuminate/contracts": "for the Laravel integration"
},
"require-dev": {
"laravel/framework": "^11.0",
"laravel/pint": "^1.13.7",
"orchestra/canvas": "^9.0",
"phpstan/phpstan": "1.10.56",
"phpunit/phpunit": "^11.3",
"rector/rector": "0.19.5"
},
"scripts": {
"refactor": "rector",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "phpunit --colors=always",
"test:lint": "pint --test",
"test": [
"@test:refactor",
"@test:lint",
"@test:types",
"@test:unit"
],
"fix:lint": "pint --preset laravel",
"fix:refactor": "rector",
"fix": [
"@fix:refactor",
"@fix:lint"
],
"hook": [
"@hook:pre-commit",
"@hook:pre-push"
],
"hook:install": [
"ln -sf $PWD/hooks/pre-commit .git/hooks/pre-commit",
"chmod +x .git/hooks/pre-commit",
"ln -sf $PWD/hooks/pre-push .git/hooks/pre-push",
"chmod +x .git/hooks/pre-push"
],
"hook:pre-commit": [
"hooks/pre-commit"
],
"hook:pre-push": [
"hooks/pre-push"
],
"post-install-cmd": [
"@hook:install"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true
}