diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a725465 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vendor/ \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e0667c1 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "roanokecollege/ethos", + "description": "Roanoke College custom package for Ethos interactions", + "type": "library", + "license": "MIT", + "autoload": { + "psr-4": { + "RoanokeCollege\\Ethos\\": "src/" + } + }, + "authors": [ + { + "name": "Scotty Smith", + "email": "chssmith@roanoke.edu" + } + ], + "require": {}, + "extra": { + "laravel": { + "providers": [ + "RoanokeCollege\\Ethos\\ServiceProvider" + ], + "aliases": [ + "Ethos": "RoanokeCollege\\Ethos\\Facade" + ] + } + } +}