trying out naming rule

This commit is contained in:
Nabeel Shahzad
2017-12-05 20:49:08 -06:00
parent c2d9afcef4
commit 82492ede81
8 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<?php
return [
'name' => 'vacentral'
];

View File

@@ -0,0 +1,21 @@
<?php
namespace Modules\Sample\Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class SampleDatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
// $this->call("OthersTableSeeder");
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Modules\Vacentral\Listeners;
use Log;
use App\Events\PirepAccepted;
use Illuminate\Contracts\Queue\ShouldQueue;
class PirepAcceptedEventListener implements ShouldQueue
{
/**
* Handle the event.
*/
public function handle(PirepAccepted $pirep) {
Log::info('Received event', [$pirep]);
}
}

View File

@@ -0,0 +1,81 @@
<?php
namespace Modules\Vacentral\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Factory;
class AppServiceProvider extends ServiceProvider
{
protected $defer = false;
protected $moduleSvc;
/**
* Boot the application events.
*/
public function boot()
{
$this->moduleSvc = app('App\Services\ModuleService');
$this->registerTranslations();
$this->registerConfig();
$this->registerFactories();
$this->loadMigrationsFrom(__DIR__ . '/../Database/migrations');
}
/**
* Register the service provider.
*/
public function register()
{
//
}
/**
* Register config.
*/
protected function registerConfig()
{
$this->publishes([
__DIR__.'/../Config/config.php' => config_path('vacentral.php'),
], 'config');
$this->mergeConfigFrom(
__DIR__.'/../Config/config.php', 'vacentral'
);
}
/**
* Register translations.
*/
public function registerTranslations()
{
$langPath = resource_path('lang/modules/sample');
if (is_dir($langPath)) {
$this->loadTranslationsFrom($langPath, 'sample');
} else {
$this->loadTranslationsFrom(__DIR__ .'/../Resources/lang', 'sample');
}
}
/**
* Register an additional directory of factories.
* @source https://github.com/sebastiaanluca/laravel-resource-flow/blob/develop/src/Modules/ModuleServiceProvider.php#L66
*/
public function registerFactories()
{
if (! app()->environment('production')) {
app(Factory::class)->load(__DIR__ . '/../Database/factories');
}
}
/**
* Get the services provided by the provider.
*/
public function provides()
{
return [];
}
}

View File

@@ -0,0 +1,25 @@
<?php
namespace Modules\Vacentral\Providers;
use App\Events\PirepAccepted;
use Modules\Vacentral\Listeners\PirepAcceptedEventListener;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*/
protected $listen = [
PirepAccepted::class => [PirepAcceptedEventListener::class],
];
/**
* Register any events for your application.
*/
public function boot()
{
parent::boot();
}
}

View File

@@ -0,0 +1,31 @@
{
"name": "nabeel/vacentral",
"license": "MIT",
"type": "laravel-module",
"description": "",
"authors": [
{
"name": "Nabeel Shahzad",
"email": "gm@nabs.io"
}
],
"require": {
"joshbrw/laravel-module-installer": "dev-master"
},
"extra": {
"laravel": {
"providers": [
"Modules\\Vacentral\\Providers\\AppServiceProvider",
"Modules\\Vacentral\\Providers\\EventServiceProvider"
],
"aliases": {
}
}
},
"autoload": {
"psr-4": {
"Modules\\Vacentral\\": ""
}
}
}

View File

@@ -0,0 +1,15 @@
{
"name": "vacentral",
"alias": "",
"description": "",
"keywords": [],
"active": 1,
"order": 0,
"providers": [
"Modules\\Vacentral\\Providers\\AppServiceProvider",
"Modules\\Vacentral\\Providers\\EventServiceProvider"
],
"aliases": {},
"files": [],
"requires": []
}