Getting started
Before creating your first GustavPHP project, you should ensure that your local machine has PHP and Composer installed.
After you have installed PHP and Composer, you may create a new GustavPHP project via the create-project
command:
composer create-project gustav-php/starter example-app
After the project has been created, start GustavPHP's local development server using the serve command:
cd example-app
php gustav dev
Once you have started the Artisan development server, your application will be accessible in your web browser at http://localhost:4201
.