forked from LaravelCollective/html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.32 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
{
"name": "rdx/laravelcollective-html",
"description": "HTML and Form Builders for the Laravel Framework",
"license": "MIT",
"support": {
"issues": "https://github.com/rudiedirkx/laravelcollective-html/issues",
"source": "https://github.com/rudiedirkx/laravelcollective-html"
},
"replace": {
"laravelcollective/html": "self.version"
},
"require": {
"php": "^8.2",
"illuminate/http": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/session": "^11.0",
"illuminate/support": "^11.0",
"illuminate/view": "^11.0"
},
"require-dev": {
"illuminate/database": "^11.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^11.0",
"symfony/var-dumper": "^7.2",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Collective\\Html\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Collective\\Html\\HtmlServiceProvider"
],
"aliases": {
"Form": "Collective\\Html\\FormFacade",
"Html": "Collective\\Html\\HtmlFacade"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}