Skip to content

Commit e9f9a1a

Browse files
committed
feat(app): add LaravelConsoleSpinnerServiceProvider
- Added Rahul900Day\LaravelConsoleSpinner\LaravelConsoleSpinnerServiceProvider to the providers array in config/app.php
1 parent 2138bb1 commit e9f9a1a

File tree

4 files changed

+45
-1
lines changed

4 files changed

+45
-1
lines changed

.php-cs-fixer.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,21 @@
249249
],
250250
'phpdoc_to_comment' => [
251251
'ignored_tags' => [
252+
'covers',
253+
'coversNothing',
254+
'dataProvider',
255+
'deprecated',
256+
'implements',
257+
'internal',
252258
'lang',
259+
'method',
253260
'noinspection',
261+
'param',
262+
'property',
263+
'requires',
264+
'return',
265+
'runInSeparateProcess',
266+
'see',
254267
'var',
255268
],
256269
],

config/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,6 @@
7878

7979
'providers' => [
8080
App\Providers\AppServiceProvider::class,
81+
Rahul900Day\LaravelConsoleSpinner\LaravelConsoleSpinnerServiceProvider::class,
8182
],
8283
];

config/commands.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151

5252
'add' => [
5353
// ..
54+
Illuminate\Foundation\Console\VendorPublishCommand::class,
5455
],
5556

5657
/*
@@ -71,7 +72,7 @@
7172
Illuminate\Console\Scheduling\ScheduleRunCommand::class,
7273
Illuminate\Console\Scheduling\ScheduleListCommand::class,
7374
Illuminate\Console\Scheduling\ScheduleFinishCommand::class,
74-
Illuminate\Foundation\Console\VendorPublishCommand::class,
75+
// Illuminate\Foundation\Console\VendorPublishCommand::class,
7576
LaravelZero\Framework\Commands\StubPublishCommand::class,
7677
],
7778

config/laravel-console-summary.php

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/**
6+
* This file is part of the guanguans/music-dl.
7+
*
8+
* (c) guanguans <ityaozm@gmail.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled.
11+
*/
12+
13+
return [
14+
/*
15+
|--------------------------------------------------------------------------
16+
| Hide Commands
17+
|--------------------------------------------------------------------------
18+
|
19+
| This option allows to hide certain commands from the summary output.
20+
| They will still be available in your application. Wildcards are supported
21+
|
22+
| Examples: "make:*", "list"
23+
|
24+
*/
25+
26+
'hide' => [
27+
'list',
28+
],
29+
];

0 commit comments

Comments
 (0)