
symfony
List of commands for symfony:
-
symfony:bundle:create Create a Symfony bundle$ php bin/console make:bundletry on your machineexplain this command
-
symfony:cache:clear Clear the Symfony cache$ php bin/console cache:cleartry on your machine
-
symfony:database:update:force Update the database (force)$ php bin/console doctrine:schema:update --forcetry on your machine
-
symfony:project:create Create a new Symfony project.$ symfony new ${name}try on your machineexplain this command
-
symfony:security:check Check for security issues in the project's dependencies.$ symfony security:checktry on your machineexplain this command
-
symfony:server:start Start server$ symfony server:starttry on your machine
-
symfony:server:start:background Start server in background mode$ symfony server:start -dtry on your machine
-
symfony:server:stop Stops the Symfony server$ symfony server:stoptry on your machineexplain this command