Skip to content

Instantly share code, notes, and snippets.

View izdrail's full-sized avatar
🌲
Open to work

Stefan Bogdan izdrail

🌲
Open to work
  • Laravel Agency
  • Essex
View GitHub Profile
@izdrail
izdrail / docker-compose.yaml
Created January 20, 2023 16:32 — forked from Spittal/docker-compose.yaml
Docker compose file from SBVR
version: '3'
services:
fpm:
image: sbvr/laravel-fpm:2.1.2
volumes:
- app:/var/www
networks:
- appnet
worker:
@izdrail
izdrail / upgrade_to_symfony3-lts.md
Created March 20, 2024 20:16 — forked from mickaelandrieu/upgrade_to_symfony3-lts.md
Migration guide to Symfony 3 LTS

Let's migrate a Symfony 2.8 LTS application to Symfony 3 LTS

Handle deprecations

First of all, ensure you don't have any deprecated!

The Symfony documentation explains it well, but let's sum up:

  • install the phpunit bridge ($ composer require --dev symfony/phpunit-bridge)
  • also check all your pages using web profiler and be ensure there is no deprecation error handled
  • found errors and need help about how to fix it ? I did a sort of guide.