-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBlueprintServiceProvider.php
81 lines (70 loc) · 2.19 KB
/
BlueprintServiceProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
namespace In\Blueprint\Laravel;
use Illuminate\Support\ServiceProvider;
use In\Blueprint\Laravel\Command\GenerateCommand;
class BlueprintServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
$viewPath = __DIR__ . '/../resources/views';
$this->loadViewsFrom($viewPath, 'blueprint');
// Publish a config file
$configPath = __DIR__ . '/config/blueprint.php';
$this->publishes([
$configPath => config_path('blueprint.php'),
], 'config');
//Publish views
$this->publishes([
__DIR__ . '/../resources/views' => config('blueprint.paths.views'),
], 'views');
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$configPath = __DIR__ . '/config/blueprint.php';
$this->mergeConfigFrom($configPath, 'blueprint');
// $this->app->singleton('command.blueprint.publish', function () {
// return new PublishCommand();
// });
//
// $this->app->singleton('command.blueprint.publish-config', function () {
// return new PublishConfigCommand();
// });
//
// $this->app->singleton('command.blueprint.publish-views', function () {
// return new PublishViewsCommand();
// });
$this->app->singleton('command.blueprint.generate', function () {
return new GenerateCommand();
});
$this->commands(
// 'command.blueprint.publish',
// 'command.blueprint.publish-config',
// 'command.blueprint.publish-views',
'command.blueprint.generate'
);
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [
'command.blueprint.publish',
'command.blueprint.publish-config',
'command.blueprint.publish-views',
'command.blueprint.generate',
];
}
}