diff options
author | Sam Light <samlight1994@gmail.com> | 2024-06-15 11:22:54 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2024-06-15 11:22:54 +0100 |
commit | 9f31ec18ba36839ef8b6c87b6a409c40145cff72 (patch) | |
tree | 4e82b688cf98668d0c9cb88a1ff2066e12198746 | |
parent | 65c94080f6b8eae4a8217751de0dc847579c923d (diff) |
Updated composer.json
-rw-r--r-- | composer.json | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/composer.json b/composer.json index 8ddfbd8..72143aa 100644 --- a/composer.json +++ b/composer.json @@ -1,17 +1,25 @@ { - "name": "lightscale/laralight-svg", - "description": "Laravel SVG sprites", - "type": "library", - "autoload": { - "psr-4": { - "Lightscale\\LaralightSvg\\": "src/" - } - }, - "authors": [ - { - "name": "Sam Light", - "email": "sam@lightscale.co.uk" - } - ], - "require": {} + "name": "lightscale/laralight-svg", + "description": "Laravel SVG sprites", + "type": "library", + "autoload": { + "psr-4": { + "Lightscale\\LaralightSvg\\": "src/" + } + }, + "authors": [ + { + "name": "Sam Light", + "email": "sam@lightscale.co.uk" + } + ], + "require": {}, + + "extra": { + "laravel": { + "providers": [ + "Lightscale\\LaralightSvg\\SvgServiceProvider" + ] + } + } } |