Files
cheatsheet-tldr/tldr/symfony
2025-04-26 00:18:47 +00:00

26 lines
461 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`