-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.23 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
55
56
57
{
"name": "tomjamon/laravel-custom-html",
"description": "Custom HTML generator for Laravel (Based on LaravelCollective HTML)",
"keywords": [
"laravel",
"form",
"html",
"bootstrap",
"tailwindcss"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tom Jamon",
"homepage": "https://tomjamon.com"
},
{
"name": "Tom Jamon",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.5",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/routing": "^6.0|^7.0|^8.0",
"illuminate/session": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/view": "^6.0|^7.|^8.00"
},
"require-dev": {
"illuminate/database": "^6.0|^7.0|^8.0",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~7.1"
},
"autoload": {
"psr-4": {
"TomJamon\\Html\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.x-dev"
},
"laravel": {
"providers": [
"TomJamon\\Html\\HtmlServiceProvider"
],
"aliases": {
"Form": "TomJamon\\Html\\FormFacade",
"Html": "TomJamon\\Html\\HtmlFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}