-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.09 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
{
"name": "dimonka2/flatform",
"description": "Form helper for Laravel",
"type": "library",
"homepage": "https://github.com/Dimonka2",
"license": "MIT",
"authors": [
{
"name": "Dmitry Gultyaev",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"php",
"forms",
"helper"
],
"minimum-stability": "dev",
"require": {
"php": "^7 | ^8",
"laravelcollective/html": "^6 | ^7",
"livewire/livewire": "^1 | ^2"
},
"require-dev": {
"phpunit/phpunit": "^7.5.15 | ^8.4 | ^9.0 | ^10.0",
"laravel/framework": "^7 | ^8 | ^9 | ^10",
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0"
},
"extra": {
"laravel": {
"providers": [
"dimonka2\\flatform\\FlatformServiceProvider"
],
"aliases": {
"Flatform": "dimonka2\\flatform\\Flatform"
}
}
},
"autoload": {
"psr-4": {
"dimonka2\\flatform\\": "src/"
}
}
}