Initial commit

This commit is contained in:
philipp lang 2020-04-10 20:42:57 +02:00
commit ac5c544c32
3 changed files with 41 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/vendor
*.swp
*.swo
*.swm

24
composer.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "zoomyboy/laravel-nami-guard",
"description": "Authentication provider against NaMi for Laravel",
"type": "library",
"authors": [
{
"name": "Philipp Lang",
"email": "philipp@zoomyboy.de"
}
],
"require": {},
"autoload": {
"psr-4": {
"Zoomyboy\\LaravelNamiGuard\\": "./src"
}
},
"extra": {
"laravel": {
"providers": [
"Zoomyboy\\LaravelNamiGuard\\ServiceProvider"
]
}
}
}

13
src/ServiceProvider.php Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace Zoomyboy\LaravelNamiGuard;
use Illuminate\Support\ServiceProvider;
use Riak\Connection;
class NamiGuardServiceProvider extends ServiceProvider
{
public function register()
{
}
}