Laravel 5.8+ preset
A preset to quick development start based on Erik V. Fernandes experience by developing Sales City., (*1)
Using the frontend preset functionality, we include some features that makes the Project start really fast., (*2)
This preset contains:, (*3)
Instalation
- Start a laravel project
- Inside the project folder run
composer require erikprogramador/sales-city-preset
- Then run
php artisan preset sales-city
- Install the frontend dependencies
npm install
- Run
npm run dev
Flash notification
Update your composer file adding those lines on the autoload section on your composer.json file, (*4)
"files": [ "config/functions.php" ]
, (*5)
Then run composer dump -o
, (*6)
PHP Testing
Update your composer file adding those lines on the autoload-dev section on your composer.json file, (*7)
"files": [ "tests/functions.php" ]
, (*8)
Then run composer dump -o
, (*9)