-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
45 lines (45 loc) · 1.18 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
{
"name": "styde/html",
"description": "Build form fields, menus, alert messages and other view components quickly",
"license": "MIT",
"authors": [
{
"name": "Duilio Palacios",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"laravelcollective/html": "^6.0",
"illuminate/translation": "^6.0|^7.0|^8.0"
},
"require-dev": {
"phpspec/phpspec": "~7.0"
},
"autoload": {
"psr-4": {
"Styde\\Html\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Styde\\Html\\HtmlServiceProvider"
],
"aliases": {
"Field": "Styde\\Html\\Facades\\Field",
"Alert": "Styde\\Html\\Facades\\Alert",
"Menu": "Styde\\Html\\Facades\\Menu",
"Form": "Collective\\Html\\FormFacade",
"Html": "Collective\\Html\\HtmlFacade"
},
"dont-discover": [
"laravelcollective/html"
]
}
}
}