Just Laravel boilerplate with some alterations to support local package development.
- Clone:
git clone git@github.com:Team-Tea-Time/laravel-studio.git
-
Clone/place your package(s) into a
laravel-packagesdirectory adjacent to (not inside) this repo -
Copy
src/.env.exampletosrc/.env -
Modify the
autoloadsection ofsrc/composer.jsonto specify your package namespace(s)/path(s) -
Run
docker-compose upand any other commands you may need to run in the container for your package(s):
docker-compose up
docker-compose exec php-fpm composer install
docker-compose exec php-fpm php artisan key:generate
docker-compose exec php-fpm php artisan migrateTo work with event broadcasting, make sure the queue worker and Reverb server are running:
php artisan queue:work
php artisan reverb:start