-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.05 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "froxlor/example",
"type": "library",
"description": "The froxlor example package.",
"keywords": [
"froxlor",
"example",
"package"
],
"homepage": "https://www.froxlor.org",
"license": "MIT",
"authors": [
{
"name": "Michael Kaufmann",
"email": "d00p@froxlor.org",
"role": "Lead Developer"
},
{
"name": "Maurice Preuß",
"email": "envoyr@froxlor.org",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"froxlor/core": "*",
"froxlor/ui": "*",
"illuminate/support": "^12.0"
},
"autoload": {
"psr-4": {
"Froxlor\\Example\\": "src/"
}
},
"extra": {
"froxlor": {
"type": "package"
},
"laravel": {
"providers": [
"Froxlor\\Example\\Providers\\FroxlorExampleServiceProvider"
]
}
}
}