This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
51 lines (51 loc) · 1.45 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
{
"name": "genealabs/laravel-casts",
"description": "Useful form macros for Laravel's Blade template engine.",
"license": "MIT",
"authors": [
{
"name": "GeneaLabs, LLC",
"email": "[email protected]"
}
],
"require": {
"fico7489/laravel-eloquent-join": "^4.1",
"illuminate/config": "^8.0",
"illuminate/support": "^8.0",
"jenssegers/model": "^1.4",
"laravelcollective/html": "^6.1",
"livewire/livewire": "^2.0",
"wa72/htmlpagedom": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "^1.9",
"orchestra/testbench-browser-kit": "^6.0",
"orchestra/testbench": "^6.0",
"php-coveralls/php-coveralls" : "^2.2",
"phpunit/phpunit": "^9.0",
"symfony/thanks": "^1.2"
},
"autoload": {
"classmap": [],
"psr-4": {
"GeneaLabs\\LaravelCasts\\": "src/",
"GeneaLabs\\LaravelCasts\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravelcollective/html"
],
"providers": [
"GeneaLabs\\LaravelCasts\\Providers\\Service"
],
"aliases": {
"Form": "GeneaLabs\\LaravelCasts\\FormFacade",
"Html": "Collective\\Html\\HtmlFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}