diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 25 |
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" + ] + } + } +} |