forked from jobmetric/laravel-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.56 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
{
"name": "jobmetric/metadata",
"description": "This package is for the metadata of different Laravel projects.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Job Metric",
"email": "jobmetricnet@gmail.com",
"homepage": "https://www.linkedin.com/company/jobmetric",
"role": "Owner package"
},
{
"name": "Majid Mohammadian",
"email": "majeedmohammadian@gmail.com",
"homepage": "https://www.linkedin.com/in/majidmohammadian/",
"role": "Full Stack Developer"
},
{
"name": "Alireza Mir Esmaili",
"email": "alirezamires@gmail.com",
"homepage": "https://www.linkedin.com/in/alirezamires/",
"role": "Full Stack Developer"
}
],
"require": {
"php": ">=8.0.1",
"laravel/framework": ">=9.19"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"JobMetric\\Metadata\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JobMetric\\Metadata\\MetadataServiceProvider"
],
"aliases": {
"JMetadata": "JobMetric\\Metadata\\Facades\\JMetadata"
}
}
},
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/jobmetric/metadata/issues",
"forum": "https://twitter.com/jobmetric",
"source": "https://github.com/jobmetric/metadata"
}
}