-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
75 lines (75 loc) · 2.26 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
{
"name": "jobmetric/laravel-flow",
"description": "This package is for creating different workflows in different Laravel projects.",
"type": "library",
"license": "MIT",
"keywords": [
"jobmetric",
"laravel",
"package",
"workflow",
"flow"
],
"homepage": "https://doc.jobmetric.net/package/laravel-flow",
"require": {
"php": ">=8.0.1",
"ext-json": "*",
"laravel/framework": ">=9.19",
"spatie/laravel-query-builder": "^5.1",
"jobmetric/laravel-package-core": "^1.4",
"jobmetric/translation": "*"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"JobMetric\\Flow\\": "src/",
"JobMetric\\Flow\\Factories\\": "database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"JobMetric\\Flow\\FlowServiceProvider"
],
"aliases": {
"Flow": "JobMetric\\Flow\\Facades\\Flow",
"FlowState": "JobMetric\\Flow\\Facades\\FlowState",
"FlowTransition": "JobMetric\\Flow\\Facades\\FlowTransition"
}
}
},
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/jobmetric/laravel-flow/issues",
"forum": "https://twitter.com/jobmetric",
"source": "https://github.com/jobmetric/laravel-flow"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/majidmohammadian"
}
],
"authors": [
{
"name": "Majid Mohammadian",
"email": "majeedmohammadian@gmail.com",
"homepage": "https://www.linkedin.com/in/majidmohammadian/",
"role": "Full Stack Developer"
},
{
"name": "MohammadAli Farshchian",
"email": "farshchian2014@gmail.com",
"homepage": "https://github.com/farshchian2090",
"role": "Full Stack Developer"
},
{
"name": "Mahdi MalekiFard",
"email": "maleki1344py@gmail.com",
"homepage": "https://www.linkedin.com/in/mahdi-malekifard-py/",
"role": "BackEnd Developer"
}
]
}