blob: 63e53319af30776bfb0ed57e5d141e49274f4a31 (
plain)
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
|
{
"name": "lightscale/laralight-tables",
"description": "Laravel Livewire tables",
"type": "library",
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"Lightscale\\LaralightTables\\": "src/"
}
},
"authors": [
{
"name": "Sam Light",
"email": "sam@lightscale.co.uk"
}
],
"require": {
"livewire/livewire": "^3.1"
},
"extra": {
"laravel": {
"providers": [
"Lightscale\\LaralightTables\\ServiceProvider"
]
}
}
}
|