summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-04-09 22:42:43 +0100
committerSam Light <samlight1994@gmail.com>2025-04-09 22:42:43 +0100
commit254b5f1abfdec2a051988150d7c36df43f455cc1 (patch)
tree0d0dad0ff54c3a5aa425216e9294c4aa02a32691 /composer.json
Initial commit
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..94bf185
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,25 @@
+{
+ "name": "lightscale/laralight-auth-log",
+ "description": "Log authentication laravel application to database",
+ "type": "library",
+ "license": "MIT",
+ "autoload": {
+ "psr-4": {
+ "Lightscale\\LaralightAuthLog\\": "src/"
+ }
+ },
+ "authors": [
+ {
+ "name": "Sam Light",
+ "email": "sam@lightscale.co.uk"
+ }
+ ],
+ "require": {},
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Lightscale\\LaralightAuthLog\\AuthLogServiceProvider"
+ ]
+ }
+ }
+}