Skip to content

Instantly share code, notes, and snippets.

@DaRaFF
DaRaFF / ubuntu-php-development-environment.md
Last active October 13, 2023 00:16
Ubuntu php development environment

#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for a live environment!

I hope it helps you too!

fyi @mheiniger and me started with an installer here: https://github.com/mheiniger/webdev-setup

@ziadoz
ziadoz / awesome-php.md
Last active May 8, 2025 07:37
Awesome PHP — A curated list of amazingly awesome PHP libraries, resources and shiny things.
@mattattui
mattattui / gist:1130644
Created August 7, 2011 18:49
Starting a Symfony2 project with Git
  1. Download the Symfony2 standard distribution without vendors

  2. Unzip/untar the distribution. It will create a folder called Symfony with your new project structure, config files, etc. Rename it to whatever you like.

  3. Create a new file called .gitignore and paste the following into it:

      web/bundles/  
      app/bootstrap*  
      app/cache/*  
      app/logs/*  
      build/  
    

vendor/