HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

symfony — The console component for the Symfony framework. More information: <https://symfony.com/doc/current/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandsymfonycliconsolecomponentfor

Problem

How to use the symfony command: The console component for the Symfony framework. More information: <https://symfony.com/doc/current/setup.html>.

Solution

symfony — The console component for the Symfony framework. More information: <https://symfony.com/doc/current/setup.html>.

Create a new Symfony project:
symfony new {{name}}


Run a local web server:
symfony serve


Stop the local web server:
symfony server:stop


Check for security issues in the project's dependencies:
symfony security:check

Code Snippets

Create a new Symfony project

symfony new {{name}}

Run a local web server

symfony serve

Stop the local web server

symfony server:stop

Check for security issues in the project's dependencies

symfony security:check

Context

tldr-pages: common/symfony

Revisions (0)

No revisions yet.