This repository has been archived on 2024-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/docs/Console.md

29 lines
593 B
Markdown
Raw Normal View History

2022-11-17 04:02:30 +00:00
# bin console cheat sheet
## about
Checks the version, support, kernel and php
## version
2022-11-17 22:07:14 +00:00
php bin/console --version
2023-04-04 03:26:25 +00:00
## Routes
php bin/console debug:router
* [Visualize and Debug routes in Symfony](https://symfony.com/doc/4.1/routing/debug.html)
2022-11-17 22:07:14 +00:00
## Manually hash a password
php bin/console security:hash-password
# Composer Cheat Sheet
2022-11-23 06:14:27 +00:00
composer dump-autoload
2022-12-14 08:26:38 +00:00
2022-12-18 09:37:39 +00:00
fixes a lot of problems: ```symfony console cache:clear```
2022-12-14 08:26:38 +00:00
To view the namespaces symfony creates for twig:
php bin/console debug:twig
2022-11-17 22:07:14 +00:00
## Installed Recipes
Use ```composer recipes``` to see which bundles you have installed.