When the developer copies .env.example to .env they are unlikely to add quotes to the values in .env. When the developer needs to set the value of an environment variable to a value containing a space, as none of the existing values in .env are quoted, the developer is unlikely to wrap this new value with spaces in quotes. This will result in an error, as The vlucas/phpdotenv library throws an error when setting an environment variable to a value with a space. Quote all default environment variables by default, reducing the likelihood of the developer ever receiving the error relating to environment variables needing to be quoted when they contain spaces. This excludes true, null etc. even though wrapping them in quotes would still result in the desired behaviour, as it is more intuitive to see these special types not wrapped in quotes. The current default values in .env.example don't contain any spaces, so this commit will make no difference out of the box; its only purpose is to help out the developer further down the line on the day when they need to set an environment variable to a value containing spaces. Also, the vlucas/phpdotenv library docs currently uses quoted variables in every example, so quoting .env.example's values will lead to more consistency with those docs. This will likely stop any confusion for the developer when reading the vlucas/phpdotenv docs. See laravel/framework#14586, laravel/docs#2223 |
||
---|---|---|
app | ||
bootstrap | ||
config | ||
database | ||
public | ||
resources | ||
routes | ||
storage | ||
tests | ||
.env.example | ||
.gitattributes | ||
.gitignore | ||
artisan | ||
composer.json | ||
gulpfile.js | ||
package.json | ||
phpunit.xml | ||
readme.md | ||
server.php |
readme.md
Laravel PHP Framework
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queueing, and caching.
Laravel is accessible, yet powerful, providing tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.
Official Documentation
Documentation for the framework can be found on the Laravel website.
Contributing
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
Security Vulnerabilities
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at taylor@laravel.com. All security vulnerabilities will be promptly addressed.
License
The Laravel framework is open-sourced software licensed under the MIT license.