Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro-imhof committed Nov 29, 2023
0 parents commit fc2e771
Show file tree
Hide file tree
Showing 18 changed files with 1,618 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
composer.lock
.phpunit.result.cache
/vendor
.idea
dist
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "gridonic/alt-text-generator",
"autoload": {
"psr-4": {
"Gridonic\\AltTextGenerator\\": "src"
}
},
"require": {
"statamic/cms": "^4.0",
"ext-yaml": "*",
"ext-json": "*"
},
"extra": {
"statamic": {
"name": "Alt Text Generator",
"description": "Alt Text Generator addon"
},
"laravel": {
"providers": [
"Gridonic\\AltTextGenerator\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}
7 changes: 7 additions & 0 deletions config/alt-text-generator.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

return [

'alttext_api_token' => 'qRiUITGDXvTAU3Eb0pkR',

];
Loading

0 comments on commit fc2e771

Please sign in to comment.