-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.42 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
{
"name": "jobmetric/laravel-custom-field",
"description": "This is a custom field management package for Laravel that you can use in your projects.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"jobmetric",
"package",
"custom field",
"management"
],
"homepage": "https://doc.jobmetric.net/package/laravel-custom-field",
"authors": [
{
"name": "Majid Mohammadian",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/majidmohammadian/",
"role": "Full Stack Developer"
}
],
"require": {
"php": ">=8.0.1",
"laravel/framework": ">=9.19",
"jobmetric/laravel-package-core": "^1.7"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"JobMetric\\CustomField\\": "src/",
"JobMetric\\CustomField\\Factories\\": "database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"JobMetric\\CustomField\\CustomFieldServiceProvider"
]
}
},
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/jobmetric/laravel-custom-field/issues",
"forum": "https://twitter.com/jobmetric",
"source": "https://github.com/jobmetric/laravel-custom-field"
}
}