diff options
| author | Sam Light <sam@lightscale.co.uk> | 2025-03-30 18:30:02 +0100 | 
|---|---|---|
| committer | Sam Light <samlight1994@gmail.com> | 2025-03-30 18:30:02 +0100 | 
| commit | b54e688f1c429511e3f81cc82b64f1fe358f033c (patch) | |
| tree | 106f588e9f0b98803bdb95d435dba51de7b3892a | |
| parent | 091e8b875ab84f77bc99a0b15017070a30378407 (diff) | |
Created composer.json
| -rw-r--r-- | composer.json | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f558c0d --- /dev/null +++ b/composer.json @@ -0,0 +1,18 @@ +{ +    "name": "lightscale/laralight-assets", +    "description": "Laravel library for managing assets", +    "type": "library", +    "license": "MIT", +    "autoload": { +        "psr-4": { +            "Lightscale\\LaralightAssets\\": "src/" +        } +    }, +    "authors": [ +        { +            "name": "Sam Light", +            "email": "sam@lightscale.co.uk" +        } +    ], +    "require": {} +} | 
