-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"name": "ascsoftw/tall-crud-generator",
"description": "Laravel Package to generate CRUD Files using TALL Stack",
"license": "MIT",
"keywords": ["Laravel", "CRUD", "Generator", "TALL", "Livewire"],
"autoload": {
"psr-4": {
"Ascsoftw\\TallCrudGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ascsoftw\\TallCrudGenerator\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"authors": [
{
"name": "AscSoftwares",
"email": "support@ascsoftwares.com"
}
],
"require-dev": {
"livewire/livewire": "^2.5|^2.10",
"orchestra/testbench": "^6.18|^7.0",
"phpunit/phpunit": "^9.3",
"christophrumpel/missing-livewire-assertions": "^0.4.0|0.5.0"
},
"extra": {
"laravel": {
"providers": [
"Ascsoftw\\TallCrudGenerator\\TallCrudGeneratorServiceProvider"
]
}
},
"require": {
"ascsoftw/livewire-toast": "^1.0"
}
}