fixes issue #2 how to install symfony cli

This commit is contained in:
Nick Yeoman 2024-03-05 18:25:33 -08:00
parent 73ef4a7562
commit c2080db9a4
3 changed files with 28 additions and 0 deletions

11
docs/CS-Fixer.md Normal file
View File

@ -0,0 +1,11 @@
# How to us cs-fixer
install it:
```bash
composer require cs-fixer-shim --dev
```
Run it:
```bash
./vendor/bin/php-cs-fixer fix
```

View File

@ -1,5 +1,16 @@
# bin console cheat sheet
## How to install
```bash
curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' | sudo -E bash
sudo nala install symfony-cli
symfony check:req
```
[Offical Symfony Download](https://symfony.com/download) is the best place to go.
## about
Checks the version, support, kernel and php

View File

@ -1,5 +1,11 @@
# Controllers
## Requirements
```bash
composer require symfony/maker-bundle --dev
```
## Create a Controller
```bash