symfony make code example
Example 1: create symfony 4 project
$ composer create-project symfony/website-skeleton:"^4.4" my_project_name
Example 2: create new project symfony
# run this if you are building a traditional web application
$ symfony new my_project_name --full
# run this if you are building a microservice, console application or API
$ symfony new my_project_name
Example 3: symfony
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
class LuckyController
{
public function number(): Response
{
$number = random_int(0, 100);
return new Response(
'<html><body>Lucky number: '.$number.'</body></html>'
);
}
}
Example 4: create symfony project
/usr/bin/composer create-project symfony/skeleton /home/handwork/symfony
#create symfony projet de base
# un dossier cacher du meme nom du projet serai creer