Forrest logo
back to context overview

symfony

List of commands for symfony:

  • symfony:bundle:create Create a Symfony bundle
    $ php bin/console make:bundle
    try on your machine
    explain this command
  • symfony:cache:clear Clear the Symfony cache
    $ php bin/console cache:clear
    try on your machine
  • symfony:database:update:force Update the database (force)
    $ php bin/console doctrine:schema:update --force
    try on your machine
  • symfony:project:create Create a new Symfony project.
    $ symfony new ${name}
    try on your machine
    explain this command
  • symfony:security:check Check for security issues in the project's dependencies.
    $ symfony security:check
    try on your machine
    explain this command
  • symfony:server:start Start server
    $ symfony server:start
    try on your machine
  • symfony:server:start:background Start server in background mode
    $ symfony server:start -d
    try on your machine
  • symfony:server:stop Stops the Symfony server
    $ symfony server:stop
    try on your machine
    explain this command
back to context overview