Created
December 20, 2015 16:56
-
-
Save ishukshin/dbab7ee7e044ed372966 to your computer and use it in GitHub Desktop.
Command example for Lumen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php # /app/Console/Kernel.php | |
/* */ | |
protected $commands = [ | |
'App\Console\Commands\ServeCommand' | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php # /app/Console/Commands/ServeCommand.php | |
namespace Laravel\Lumen\Console\Commands; | |
use Illuminate\Console\Command; | |
use Symfony\Component\Console\Input\InputOption; | |
class ServeCommand extends Command { | |
/** | |
* The console command name. | |
* | |
* @var string | |
*/ | |
protected $name = 'serve'; | |
/** | |
* The console command description. | |
* | |
* @var string | |
*/ | |
protected $description = "Serve the application on the PHP development server"; | |
/** | |
* Execute the console command. | |
* | |
* @return void | |
*/ | |
public function fire() | |
{ | |
chdir(base_path('public')); | |
$host = $this->input->getOption('host'); | |
$port = $this->input->getOption('port'); | |
$base = $this->laravel->basePath(); | |
$this->info("Lumen development server started on http://{$host}:{$port}/"); | |
passthru('"'.PHP_BINARY.'"'." -S {$host}:{$port} \"{$base}\"/server.php"); | |
} | |
/** | |
* Get the console command options. | |
* | |
* @return array | |
*/ | |
protected function getOptions() | |
{ | |
return array( | |
array('host', null, InputOption::VALUE_OPTIONAL, 'The host address to serve the application on.', 'localhost'), | |
array('port', null, InputOption::VALUE_OPTIONAL, 'The port to serve the application on.', 8000), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment