Chapters
Scroll down to the script below, click on any sentence (including terminal blocks) to jump to that spot in the video!
¡Bienvenido al primer tutorial de Symfony 7! Me llamo Ryan - vivo aquí en el mundo de fantasía de Symfonycasts y... Estoy más que emocionado de ser tu guía a través de esta serie sobre Symfony, desarrollo web... chistes malos... animaciones espaciales, y lo más importante, construir cosas reales de las que podamos estar orgullosos. Para mí, es como si fuera la persona afortunada que consigue darte un tour personal por el Enterprise... o por cualquier cosa friki que te emocione más.
Y eso es porque me encantan estas cosas. Crear bases de datos, construir bonitas interfaces de usuario, escribir código de alta calidad... es lo que me levanta de la cama por las mañanas. Y Symfony es la mejor herramienta para hacer todo esto... y convertirme en un mejor desarrollador por el camino.
Y ese es realmente mi objetivo: quiero que disfrutes de todo esto tanto como yo... y que te sientas capacitado para construir todas las cosas increíbles que tienes flotando en tu mente.
Lo que hace especial a Symfony
Ahora, una de mis cosas favoritas sobre la enseñanza de Symfony es que nuestro proyecto va a empezar diminuto. Eso hace que sea fácil de aprender. Pero luego, escalará automáticamente a medida que necesitemos más herramientas mediante un sistema de recetas único. Symfony es en realidad una colección de más de 200 pequeñas librerías PHP. Así que son un montón de herramientas... pero podemos elegir lo que necesitamos.
Porque, puedes estar construyendo una API pura... o una aplicación web completa, que es en lo que nos centraremos en este tutorial. Aunque, si estás construyendo una API, sigue los primeros tutoriales de esta serie, y luego pasa a nuestros tutoriales sobre la API Platform. API Platform es un sistema alucinantemente divertido y potente para crear APIs, construido sobre Symfony.
Symfony también es rapidísimo, tiene versiones de soporte a largo plazo y se esfuerza mucho en crear una experiencia agradable para el desarrollador, al tiempo que mantiene las mejores prácticas de programación. Esto significa que podemos escribir código de alta calidad y hacer nuestro trabajo rápidamente.
Vale, ya está bien de hablar maravillas de Symfony. ¿Listo para empezar a trabajar? Pues sube a bordo.
Instalar el binario de Symfony
Dirígete a https://symfony.com/download. Esta página tiene instrucciones sobre cómo descargar un binario independiente llamado symfony
. Ahora bien, esto no es Symfony propiamente dicho... es sólo una pequeña herramienta que nos ayudará a hacer cosas, como iniciar nuevos proyectos Symfony, ejecutar un servidor web local o incluso desplegar nuestra aplicación en producción.
Una vez que lo hayas descargado e instalado, abre un terminal y entra en cualquier directorio. Comprueba que el binario symfony
está listo para funcionar ejecutándolo:
symfony --help
Tiene un montón de comandos, pero sólo necesitaremos unos pocos. Antes de iniciar un proyecto, ejecuta también
symfony check:req
que significa comprobar requisitos. Esto asegura que tenemos todo lo necesario en nuestro sistema para ejecutar Symfony, como PHP en la versión correcta y algunas extensiones PHP.
Una vez que esto esté contento, ¡podemos empezar un nuevo proyecto! Hazlo con symfony new
y luego un nombre de directorio. Yo llamaré al mío starshop
. Más adelante hablaremos de ello.
symfony new starshop
Esto nos dará un proyecto pequeñito con sólo las cosas base instaladas. Luego, iremos añadiendo más cosas poco a poco por el camino. Pero más adelante, cuando te sientas cómodo con Symfony, si quieres empezar más rápidamente, puedes ejecutar el mismo comando, pero con --webapp
para obtener un proyecto con muchas más cosas preinstaladas.
De todos modos, entra en el directorio - cd starshop
- y luego escribiré ls
para comprobar las cosas. ¡Genial! Conoceremos estos archivos en el próximo capítulo, pero este es nuestro proyecto... ¡y ya está funcionando!
Iniciando el Servidor Web symfony
Para verlo funcionando en un navegador, necesitamos iniciar un servidor web. Puedes utilizar el servidor web que quieras: Apache, Nginx, Caddy, lo que sea. Pero para el desarrollo local, recomiendo encarecidamente utilizar el binario symfony
que acabamos de instalar. Ejecuta:
symfony serve
La primera vez que lo hagas, puede que te pida que ejecutes otro comando para configurar un certificado SSL, lo cual está bien porque así el servidor admite https.
Y... ¡bam! Tenemos un nuevo servidor web para nuestro proyecto ejecutándose en https://127.0.0.1:8000. Copia eso, gira a tu navegador más favorito, pega y... ¡bienvenido a Symfony 7! ¡Eso es lo que iba a decir!
A continuación, sentémonos, pidamos un té Earl Grey y hagámonos amigos de todos los archivos de nuestra nueva aplicación... que no son muchos.
18 Comments

Hey @ramontalban
Yes, you're right, Symfony CLI will choose what version to install based on your PHP version.
In the "Versions" tab below the video you can see all the libraries and requirements for this tutorial
Cheers!


Thank you and thanks to the SymfonyCasts Team!! I was waiting for it so much!! Do you have a date for the next lesson?

Hey @Leonard_Bira
I'm happy to hear you like our tutorials :)
We release one new chapter every week-day
Cheers!


Hello everyone. Symfony check:req
recommends me to install or enable a PHP accelerator. But after editing php.ini to enable opcache with these values:
extension_dir = "ext"
zend_extension=php_opcache.dll
opcache.enable=On
opcache.enable_cli=On
I'm getting Error Preloading is not enable on Windows
. Any Windows user has experienced something similar?
Hey Lemin,
Yes, you can't use preloading on windows, that's a Windows OS limitation. But if you're just using this for dev/test - that's totally OK, you can just ignore it. The most important to use a better Linux distribution for production, and everything will be great :)
Cheers!


Somehow, the new command didn't create public/index.php
Hey Daniyal,
What new command are you talking about? What exactly did you execute? The symfony new starshop
command? I just tried it myself and it created the public/index.php
file for me, maybe the command failed during the execution for you? Please, look closer to the command's output, it may contain some hints why.
Cheers!


Hello,
Fist of all, Thank you and thanks to the SC Team ! Your tutorials are insanely good and I learn a lot from you !
I'm sorry to bother but I need your help :
I'm upgrading to Symfony 7.2 and the CSRF Protection break my form when I submit them in a turbo-frame.
When I submit from the full page, everything works well but when I load this turbo-frame in another page or in a modal, I systematically have a 422 http response due to the CSRF Token.
If you know a good way to patch this I'd love to know !
Thank you a lot ;)
Hey @Thomas-P
Just mentioned it somewhere in comments and will repeat here, for now if you have issues on any work project it will be better to deactivate stateless CSRF. Ideally it should be done inside csrf.yaml
IIRC you should disable header_check
and comment stateless_token_ids
Cheers!
This doesn't work. the symfony new command for version 7 is currently broken, i have raised issue on github if you use --version=lts you get a working project.
Hey @red_smeg ,
Thanks for reporting it! I bet things will be fixed soon if there's an issue. Btw, we do recommend our users to download the course project code and start from the start/ directory instead of creating a new Symfony project. You can go with a completely new project, that's up to you, but keep in mind of some possible mismatches with the code you see in the video :)
Cheers!


Best tutorials ever, honestly I didn't see anything barely similar to such great quality of content and video/audio. Amazing job SymfonyCasts!
Btw, you're using iTerm2 for terminal? How did you managed to make command lines separation (gray --- symbols after each command execution)
Hey Kirill,
Thank you for your feedback! We're really happy to hear you like SymfonyCasts content :)
About the terminal - yes, that is iTerm2, but with some theme installed, and I believe that theme do that command separation out of the box, so no additional config. Unfortunately, I don't know what exactly theme Ryan uses. Probably googling themes for iTerm2 with some preview images will help.
Cheers!

Me too! :D
Nice to see you in this video. I had almost forgotten what you look like. This might not be the right place for requests, but could you make a short series titled "How to Contribute to Symfony"? I really want to contribute, but I don't know how to start.
Thank you for all of your fantastic tutorials!
Ha! Honestly, it's weird for ME to see me when I'm editing these videos 🤣.
but could you make a short series titled "How to Contribute to Symfony"
We have one... but it's pretty old at this point. It needs a facelift :) https://symfonycasts.com/screencast/contributing - a lot is still relevant, but I'm going to add it to our tutorial idea list.
A lot of how to contribute depends on what your interests are. If you're into the frontend world, for example, using Symfony UX & watching + reviewing over at https://github.com/symfony/ux is quite accessible, as this is still newer tech. The more you follow issues and PRs and use the tech, the more it will become, little-by-little, more obvious where you might fit in. And I'm always happy to answer questions (e.g on Symfony Slack).
Cheers!

"Houston: no signs of life"
Start the conversation!
What PHP libraries does this tutorial use?
// composer.json
{
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"php-cs-fixer/shim": "^3.46", // v3.46.0
"phpdocumentor/reflection-docblock": "^5.3", // 5.3.0
"phpstan/phpdoc-parser": "^1.25", // 1.25.0
"symfony/asset": "7.0.*", // v7.0.3
"symfony/asset-mapper": "7.0.*", // v7.0.2
"symfony/console": "7.0.*", // v7.0.2
"symfony/dotenv": "7.0.*", // v7.0.2
"symfony/flex": "^2", // v2.4.3
"symfony/framework-bundle": "7.0.*", // v7.0.2
"symfony/monolog-bundle": "^3.0", // v3.10.0
"symfony/property-access": "7.0.*", // v7.0.0
"symfony/property-info": "7.0.*", // v7.0.0
"symfony/runtime": "7.0.*", // v7.0.0
"symfony/serializer": "7.0.*", // v7.0.2
"symfony/stimulus-bundle": "^2.13", // v2.13.3
"symfony/twig-bundle": "7.0.*", // v7.0.0
"symfony/ux-turbo": "^2.13", // v2.13.2
"symfony/yaml": "7.0.*", // v7.0.0
"symfonycasts/tailwind-bundle": "^0.7.1", // v0.7.1
"twig/extra-bundle": "^2.12|^3.0", // v3.8.0
"twig/twig": "^2.12|^3.0" // v3.8.0
},
"require-dev": {
"symfony/debug-bundle": "7.0.*", // v7.0.0
"symfony/maker-bundle": "^1.52", // v1.53.0
"symfony/stopwatch": "7.0.*", // v7.0.0
"symfony/web-profiler-bundle": "7.0.*" // v7.0.2
}
}
Como apunte, añadir que es necesario al menos php 8.2 para Symfony 7, con versiones inferiores obtienes Symfony 6.4