Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 810 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 810 Bytes

Test different way to retrive config values with laravel 9

This repo is only a simple way to test and measure config variable retrieve

How to

  git clone [email protected]:danielebarbaro/laravel-config-values-tests.git

Create a sample db test

  cd laravel-config-values-tests
  composer install
  cp .env.example .env

Configure database variables

   php artisan migrate
   php artisan db:seed --class=ConfigSeeder

Launch a PHP server:

  php -S 127.0.0.1:8000 -t public

Visit http://127.0.0.1:8000/configs

Have fun!