File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 2727 "require" : {
2828 "php" : " ^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0" ,
2929 "ext-json" : " *" ,
30- "laravel/framework" : " ^8.74|^9.0|^10.0|^11.0"
30+ "laravel/framework" : " ^8.74|^9.0|^10.0|^11.0" ,
31+ "symfony/console" : " ^5.3|^6.0|^7.0"
3132 },
3233 "require-dev" : {
3334 "roave/security-advisories" : " dev-master" ,
Original file line number Diff line number Diff line change 33namespace Inertia \Commands ;
44
55use Illuminate \Console \GeneratorCommand ;
6+ use Symfony \Component \Console \Attribute \AsCommand ;
67use Symfony \Component \Console \Input \InputOption ;
78
9+ #[AsCommand(name: 'inertia:middleware ' )]
810class CreateMiddleware extends GeneratorCommand
911{
1012 /**
Original file line number Diff line number Diff line change 55use Inertia \Ssr \SsrException ;
66use Illuminate \Console \Command ;
77use Inertia \Ssr \BundleDetector ;
8+ use Symfony \Component \Console \Attribute \AsCommand ;
89use Symfony \Component \Process \Process ;
910
11+ #[AsCommand(name: 'inertia:start-ssr ' )]
1012class StartSsr extends Command
1113{
1214 /**
Original file line number Diff line number Diff line change 33namespace Inertia \Commands ;
44
55use Illuminate \Console \Command ;
6+ use Symfony \Component \Console \Attribute \AsCommand ;
67
8+ #[AsCommand(name: 'inertia:stop-ssr ' )]
79class StopSsr extends Command
810{
911 /**
You can’t perform that action at this time.
0 commit comments