diff options
author | Sam Light <samlight1994@gmail.com> | 2023-11-05 12:25:33 +0000 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2023-11-05 12:25:33 +0000 |
commit | bb6795b604e5686ee069c48dd7f7ce8cc3bf73c3 (patch) | |
tree | b3a25098343e51ec93ba920e696f3fb856bb26b3 /composer.json |
Initial commit
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..63e5331 --- /dev/null +++ b/composer.json @@ -0,0 +1,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" + ] + } + } +} |