File tree 4 files changed +8
-1
lines changed
4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 14
14
"illuminate/console" : " ^9.21|^10.0|^11.0" ,
15
15
"illuminate/filesystem" : " ^9.21|^10.0|^11.0" ,
16
16
"illuminate/support" : " ^9.21|^10.0|^11.0" ,
17
- "illuminate/validation" : " ^9.21|^10.0|^11.0"
17
+ "illuminate/validation" : " ^9.21|^10.0|^11.0" ,
18
+ "symfony/console" : " ^6.0|^7.0"
18
19
},
19
20
"require-dev" : {
20
21
"orchestra/testbench" : " ^7.35|^8.15|^9.0" ,
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Console \Command ;
6
6
use InvalidArgumentException ;
7
+ use Symfony \Component \Console \Attribute \AsCommand ;
7
8
9
+ #[AsCommand(name: 'ui:auth ' )]
8
10
class AuthCommand extends Command
9
11
{
10
12
/**
Original file line number Diff line number Diff line change 5
5
use Illuminate \Console \Command ;
6
6
use Illuminate \Filesystem \Filesystem ;
7
7
use Illuminate \Support \Str ;
8
+ use Symfony \Component \Console \Attribute \AsCommand ;
8
9
use Symfony \Component \Finder \SplFileInfo ;
9
10
11
+ #[AsCommand(name: 'ui:controllers ' )]
10
12
class ControllersCommand extends Command
11
13
{
12
14
/**
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Console \Command ;
6
6
use InvalidArgumentException ;
7
+ use Symfony \Component \Console \Attribute \AsCommand ;
7
8
9
+ #[AsCommand(name: 'ui ' )]
8
10
class UiCommand extends Command
9
11
{
10
12
/**
You can’t perform that action at this time.
0 commit comments