Initial commit
This commit is contained in:
commit
ac5c544c32
|
@ -0,0 +1,4 @@
|
||||||
|
/vendor
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*.swm
|
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Zoomyboy\LaravelNamiGuard;
|
||||||
|
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Riak\Connection;
|
||||||
|
|
||||||
|
class NamiGuardServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
public function register()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue