Installing Laravel Octane
The script file (test-rr.php
) and the configuration file (.rr.yaml
) were created so that the dynamics of the operation of RoadRunner can be understood. Now, let’s focus on the installation of Laravel Octane. Let’s pick up the discussion from the installation of the Laravel application via the laravel new
command and the installation of the RoadRunner executable by running composer require
and then running the rr get-binaries
. Let me recap quickly:
# installing Laravel application laravel new octane-ch2b # entering into the directory cd octane-ch2b # installing RoadRunner CLI composer require spiral/roadrunner:v2.0 nyholm/psr7 # Obtaining Roadrunner Application Server executable, via CLI vendor/bin/rr get-binary
Now you can install Laravel Octane:
composer require laravel/octane
Then you can correctly configure Laravel Octane with the octane:install
command:
php artisan octane:install
With the latest command, you have to decide...