-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 952 Bytes
/
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
{
"name": "axn/laravelcollective-form-to-raw-html",
"description": "Provides Artisan command to replace LaravelCollective Form:: syntax by raw HTML",
"homepage": "https://github.com/AXN-Informatique/laravelcollective-form-to-raw-html",
"support": {
"issues": "https://github.com/AXN-Informatique/laravelcollective-form-to-raw-html/issues"
},
"authors": [
{
"name": "AXN Informatique",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"laravel/framework": "^10.0 || ^11.0"
},
"require-dev": {
"laravel/pint": "^1.16.1"
},
"autoload": {
"psr-4": {
"Axn\\LaravelCollectiveFormToRawHtml\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Axn\\LaravelCollectiveFormToRawHtml\\ServiceProvider"
]
}
}
}