Symfony provides the PasswordHasher component that allows to hash and verify passwords. This tutorial shows examples how to generate the password hash for a given user in Symfony 7 application...
Symfony framework provides a way to create the console command with two related options that has opposite behaviors. This tutorial provides example how to define negatable command options in Symfony...
Symfony framework provides built-in commands that allow to debug various application parts. This tutorial explains how to use console command to get configured firewalls in Symfony 7 application.
Let's say...
HTTP Basic authentication is a simple authentication technique for restricting access to web pages. User should provide username and password using a dialog in the web browser.
This tutorial provides...
There might be a case when two or more routes can match the same URL. In Symfony, application routes are evaluated in the order they are defined. Routes that defined...
Girier Wi-Fi light switch is 10 A switch that has integrated Wi-Fi module. Switch can be installed into the electrical box in the wall and allows to control home lighting...
In some Symfony applications, it is common to use the same set of constraints in different places. This tutorial explains how to create a reusable set of constraints in Symfony...
Symfony framework provides many built-in commands that allow to debug various application parts. This tutorial explains how to check validation constraints for class using console command in Symfony 7 application...
Symfony framework provides static code analysis commands (also known as linters) that allows to check some parts of application such YAML syntax, TWIG syntax, etc.
This tutorial shows how to...
In order to convert objects to specific format (e.g. JSON, XML) and vice versa, we can use Serializer component provided by Symfony. Sometimes we might encounter with API that returns...