forked from LaravelCollective/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·53 lines (53 loc) · 1.4 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
{
"name": "gridplay/gphtml",
"description": "HTML and Form Builders for the Laravel Framework",
"license": "MIT",
"homepage": "https://gridplay.net",
"support": {
"issues": "https://github.com/gridplay/gphtml/issues",
"source": "https://github.com/gridplay/gphtml"
},
"authors": [
{
"name": "Adam Engebretson",
"email": "[email protected]"
},
{
"name": "Taylor Otwell",
"email": "[email protected]"
},
{
"name": "Christopher Strachan",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"illuminate/http": "^10.0|^11.0|^12.0",
"illuminate/routing": "^10.0|^11.0|^12.0",
"illuminate/session": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/view": "^10.0|^11.0|^12.0"
},
"autoload": {
"psr-4": {
"GP\\Html\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"GP\\Html\\HtmlServiceProvider"
],
"aliases": {
"Form": "GP\\Html\\FormFacade",
"Html": "GP\\Html\\HtmlFacade"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}