Initial commit

This commit is contained in:
kolaente 2020-12-13 18:07:26 +01:00
commit 13ef3acea7
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 30 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
vendor/
./idea/

28
composer.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "kolaente/snippet",
"description": "Adds a snippet modifier to statamic.",
"license": "MIT",
"authors": [
{
"name": "kolaente",
"email": "k@knt.li"
}
],
"autoload": {
"psr-4": {
"Kolaente\\Snippet\\": "src"
}
},
"extra": {
"statamic": {
"name": "Snippet",
"description": "Adds a 'snippet' modifier to statamic for creating snippets for strings."
},
"laravel": {
"providers": [
"Kolaente\\Snippet\\ServiceProvider"
]
}
},
"require": {}
}