Category Archives: Symfony

Symfony on Google Cloud Run

Nowadays, two of the biggest trends in application development have been the rise of serverless and containerization. This year, Google announced a new product called Cloud Run that is designed to bring the two together. At the same time, Google also announced Cloud Run for GKE which is specifically designed to run on Google’s version… Read More »

Serializer Component with Symfony

This post leads to use Serialization in our projects. But What’s the serialization and who needs that? We will answer these needful questions. They are help us to understand that obviously. Well, let’s start. What’s the serialization? For developers; It’s transforming an object to a formatted string. We would have textual, JSON, XML. On the other hand,… Read More »

Integrate Oauth2 for Symfony 4

We are going to easily integrate with KnpUOAuth2ClientBundle for Symfony 4. You can read the detail about it, https://github.com/knpuniversity/oauth2-client-bundle. Today, we integrate Google Oauth2 server but we can integrate other servers easily. For this, i adjust composer package. After installation, i have defined an Entity named User. You can run this command. Then, i am going to… Read More »

Symfony 4 Running on Docker Compose

I am developing an application to improve vocabulary. You will enter in this application the words you learned. Then, this application asks you randomly. For this, i need to establish the workspace. The workspace will become Symfony 4 on Docker Compose. It dependent Nginx, Php-Fpm and Mysql containers. Firstly, i will adjust docker-compose.yml file. Mysql is simple… Read More »