-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·52 lines (52 loc) · 1.42 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
{
"name": "laravie/html",
"description": "HTML and Form Builders for the Laravel Framework",
"license": "MIT",
"homepage": "https://github.com/laravie/html",
"keywords": ["laravel", "html", "form"],
"support": {
"issues": "https://github.com/laravie/html/issues",
"source": "https://github.com/laravie/html"
},
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
},
{
"name": "Adam Engebretson",
"email": "[email protected]"
},
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Collective\\Html\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": "^7.2 || ^8.0",
"illuminate/http": "^7.0 || ^8.0 || ^9.0",
"illuminate/routing": "^7.0 || ^8.0 || ^9.0",
"illuminate/session": "^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0",
"illuminate/view": "^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"nunomaduro/larastan": "^1.0.1 || ^2.0",
"orchestra/testbench": "^5.20 || ^6.24.1 || ^7.1"
},
"replace": {
"laravelcollective/html": "*"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}