Using sqlite with Laravel

Although it is mysql is commonly used with php applicaiotns like Laravel you could easily use a database like sqllite 

In our projects directory

touch ./database/database.sqlite
DB_CONNECTION=sqlite
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=./database/database.sqlite
#DB_USERNAME=root
#DB_PASSWORD=

I would probalby not recommend this approach unless you simply were building a throwaway site