Merge branch '2.4'

* 2.4:
  bumped Symfony version to 2.4.4
  updated VERSION for 2.4.3
  updated CHANGELOG for 2.4.3
  bumped Symfony version to 2.3.13
  updated VERSION for 2.3.12
  update CONTRIBUTORS for 2.3.12
  updated CHANGELOG for 2.3.12

Conflicts:
	src/Symfony/Component/HttpKernel/Kernel.php
This commit is contained in:
Fabien Potencier 2014-04-05 18:03:59 +02:00
commit 5e6c089b71
3 changed files with 143 additions and 29 deletions

View File

@ -7,6 +7,43 @@ in 2.3 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.3.0...v2.3.1
* 2.3.12 (2014-04-03)
* bug #10586 Fixes URL validator to accept single part urls (merk)
* bug #10591 [Form] Buttons are now disabled if their containing form is disabled (webmozart)
* bug #10579 HHVM fixes (fabpot)
* bug #10564 fixed the profiler when an uncalled listener throws an exception when instantiated (fabpot)
* bug #10568 [Form] Fixed hashing of choice lists containing non-UTF-8 characters (webmozart)
* bug #10536 Avoid levenshtein comparison when using ContainerBuilder. (catch56)
* bug #10549 Fixed server values in BrowserKit (fabpot)
* bug #10540 [HttpKernel] made parsing controllers more robust (fabpot)
* bug #10545 [DependencyInjection] Fixed YamlFileLoader imports path (jrnickell)
* bug #10523 [Debug] Check headers sent before sending PHP response (GromNaN)
* bug #10275 [Validator] Fixed ACE domain checks on UrlValidator (#10031) (aeoris)
* bug #10123 handle array root element (greg0ire)
* bug #10532 Fixed regression when using Symfony on filesystems without chmod support (fabpot)
* bug #10502 [HttpKernel] Fix #10437: Catch exceptions when reloading a no-cache request (romainneutron)
* bug #10493 Fix libxml_use_internal_errors and libxml_disable_entity_loader usage (romainneutron)
* bug #9784 [HttpFoundation] Removed ini check to make Uploadedfile work on Google App Engine (micheleorselli)
* bug #10416 [Form] Allow options to be grouped by objects (felds)
* bug #10410 [Form] Fix "Array was modified outside object" in ResizeFormListener. (Chekote)
* bug #10494 [Validator] Minor fix in IBAN validator (sprain)
* bug #10491 Fixed bug that incorrectly causes the "required" attribute to be omitted from select even though it contains the "multiple" attribute (fabpot)
* bug #10479 [Process] Fix escaping on Windows (romainneutron)
* bug #10480 [Process] Fixed fatal errors in getOutput and getErrorOutput when process was not started (romainneutron)
* bug #10420 [Process] Make Process::start non-blocking on Windows platform (romainneutron)
* bug #10455 [Process] Fix random failures in test suite on TravisCI (romainneutron)
* bug #10448 [Process] Fix quoted arguments escaping (romainneutron)
* bug #10444 [DomCrawler] Fixed incorrect value name conversion in getPhpValues() and getPhpFiles() (romainneutron)
* bug #10423 [Config] XmlUtils::convertDomElementToArray does not handle '0' (bendavies)
* bug #10153 [Process] Fixed data in pipe being truncated if not read before process termination (astephens25)
* bug #10429 [Process] Fix #9160 : escaping an argument with a trailing backslash on windows fails (romainneutron)
* bug #10412 [Process] Fix process status in TTY mode (romainneutron)
* bug #10382 10158 get vary multiple (bbinkovitz)
* bug #10251 [Form] Fixes empty file-inputs getting treated as extra field. (jenkoian)
* bug #10351 [HttpKernel] fix stripComments() normalizing new-lines (sstok)
* bug #10348 Update FileLoader to fix issue #10339 (msumme)
* 2.3.11 (2014-02-27)
* bug #10146 [WebProfilerBundle] fixed parsing Mongo DSN and added Test for it (malarzm)

View File

@ -7,6 +7,56 @@ in 2.4 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.4.0...v2.4.1
* 2.4.3 (2014-04-04)
* bug #10586 Fixes URL validator to accept single part urls (merk)
* bug #10591 [Form] Buttons are now disabled if their containing form is disabled (webmozart)
* bug #10587 [Process] Fix Process test suite (romainneutron)
* bug #10579 HHVM fixes (fabpot)
* bug #10564 fixed the profiler when an uncalled listener throws an exception when instantiated (fabpot)
* bug #10568 [Form] Fixed hashing of choice lists containing non-UTF-8 characters (webmozart)
* bug #10536 Avoid levenshtein comparison when using ContainerBuilder. (catch56)
* bug #10549 Fixed server values in BrowserKit (fabpot)
* bug #10540 [HttpKernel] made parsing controllers more robust (fabpot)
* bug #10545 [DependencyInjection] Fixed YamlFileLoader imports path (jrnickell)
* bug #10523 [Debug] Check headers sent before sending PHP response (GromNaN)
* bug #10363 [FrameworkBundle][Console] Fix issue #10345 container:debug --parameter="" not working anymore (FineWolf)
* bug #10275 [Validator] Fixed ACE domain checks on UrlValidator (#10031) (aeoris)
* bug #10123 handle array root element (greg0ire)
* bug #10532 Fixed regression when using Symfony on filesystems without chmod support (fabpot)
* bug #10502 [HttpKernel] Fix #10437: Catch exceptions when reloading a no-cache request (romainneutron)
* bug #10493 Fix libxml_use_internal_errors and libxml_disable_entity_loader usage (romainneutron)
* bug #9784 [HttpFoundation] Removed ini check to make Uploadedfile work on Google App Engine (micheleorselli)
* bug #10416 [Form] Allow options to be grouped by objects (felds)
* bug #10410 [Form] Fix "Array was modified outside object" in ResizeFormListener. (Chekote)
* bug #10494 [Validator] Minor fix in IBAN validator (sprain)
* bug #10491 Fixed bug that incorrectly causes the "required" attribute to be omitted from select even though it contains the "multiple" attribute (fabpot)
* bug #10479 [Process] Fix escaping on Windows (romainneutron)
* bug #10480 [Process] Fixed fatal errors in getOutput and getErrorOutput when process was not started (romainneutron)
* bug #10420 [Process] Make Process::start non-blocking on Windows platform (romainneutron)
* bug #10455 [Process] Fix random failures in test suite on TravisCI (romainneutron)
* bug #10448 [Process] Fix quoted arguments escaping (romainneutron)
* bug #10444 [DomCrawler] Fixed incorrect value name conversion in getPhpValues() and getPhpFiles() (romainneutron)
* bug #10423 [Config] XmlUtils::convertDomElementToArray does not handle '0' (bendavies)
* bug #10153 [Process] Fixed data in pipe being truncated if not read before process termination (astephens25)
* bug #10429 [Process] Fix #9160 : escaping an argument with a trailing backslash on windows fails (romainneutron)
* bug #10412 [Process] Fix process status in TTY mode (romainneutron)
* bug #10382 10158 get vary multiple (bbinkovitz)
* bug #10251 [Form] Fixes empty file-inputs getting treated as extra field. (jenkoian)
* bug #10284 [HttpKernel] Fix issue #10209 (stephpy)
* bug #10351 [HttpKernel] fix stripComments() normalizing new-lines (sstok)
* bug #10348 Update FileLoader to fix issue #10339 (msumme)
* bug #10306 [Serializer] Throw exception when unable to normalize embedded object (gquemener)
* bug #10338 [ExpressionLanguage] Fixed evaluation of short circuit operators (florianv)
* bug #10146 [WebProfilerBundle] fixed parsing Mongo DSN and added Test for it (malarzm)
* bug #10299 [Finder] () is also a valid delimiter (WouterJ)
* bug #10255 [FrameworkBundle] Fixed wrong redirect url if path contains some query parameters (pulzarraider)
* bug #10285 Bypass sigchild detection if phpinfo is not available (Seldaek)
* bug #10269 [Form] Revert "Fix "Array was modified outside object" in ResizeFormListener." (norzechowicz)
* bug #10231 [Console] removed problematic regex (fabpot)
* bug #10245 [DomCrawler] Added support for <area> tags to be treated as links (shamess)
* bug #10232 [Form] Fix "Array was modified outside object" in ResizeFormListener. (Chekote)
* 2.4.2 (2014-02-12)
* bug #10215 [Routing] reduced recursion in dumper (arnaud-lb)

View File

@ -25,10 +25,10 @@ Symfony2 is the result of the work of many people who made the code better
- Hugo Hamon (hhamon)
- Eriksen Costa (eriksencosta)
- Martin Hasoň (hason)
- Romain Neutron (romain)
- Jonathan Wage (jwage)
- Alexandre Salomé (alexandresalome)
- William Durand (couac)
- Romain Neutron (romain)
- ornicar
- stealth35 (stealth35)
- Alexander Mols (asm89)
@ -62,6 +62,7 @@ Symfony2 is the result of the work of many people who made the code better
- Michel Weimerskirch (mweimerskirch)
- Arnaud Le Blanc (arnaud-lb)
- Brice BERNARD (brikou)
- Luis Cordova (cordoval)
- Kevin Bond (kbond)
- marc.weistroff
- lenar
@ -70,10 +71,10 @@ Symfony2 is the result of the work of many people who made the code better
- Colin Frei
- excelwebzone
- Fabien Pennequin (fabienpennequin)
- Luis Cordova (cordoval)
- Jacob Dreesen (jdreesen)
- Adrien Brault (adrienbrault)
- Michal Piotrowski (eventhorizon)
- Florian Voutzinos (florianv)
- Robert Schönthal (digitalkaoz)
- Juti Noppornpitak (shiroyuki)
- Sebastian Hörl (blogsh)
@ -89,7 +90,9 @@ Symfony2 is the result of the work of many people who made the code better
- Rafael Dohms (rdohms)
- Richard Shank (iampersistent)
- Gordon Franke (gimler)
- Jérôme Tamarelle (gromnan)
- Helmer Aaviksoo
- Sebastiaan Stok (sstok)
- Matthieu Ouellette-Vachon (maoueh)
- Michał Pipa (michal.pipa)
- Amal Raghav (kertz)
@ -98,8 +101,6 @@ Symfony2 is the result of the work of many people who made the code better
- Guilherme Blanco (guilhermeblanco)
- Pablo Godel (pgodel)
- Eric GELOEN (gelo)
- Jérôme Tamarelle (gromnan)
- Sebastiaan Stok (sstok)
- Dmitrii Chekaliuk (lazyhammer)
- Clément JOBEILI (dator)
- Hiromi Hishida (77web)
@ -120,8 +121,8 @@ Symfony2 is the result of the work of many people who made the code better
- Pierre Minnieur (pminnieur)
- fivestar
- Dominique Bongiraud
- Florian Voutzinos (florianv)
- Leszek Prabucki (l3l0)
- Nicolas Grekas (nicolas-grekas)
- François Zaninotto (fzaninotto)
- Dustin Whittle (dustinwhittle)
- jeff
@ -136,6 +137,8 @@ Symfony2 is the result of the work of many people who made the code better
- Marcel Beerta (mazen)
- Francois Zaninotto
- Alexander Kotynia (olden)
- Daniel Tschinder
- Manuel Reinhard (sprain)
- Danny Berger (dpb587)
- Xavier Montaña Carreras (xmontana)
- Xavier Perez
@ -144,22 +147,25 @@ Symfony2 is the result of the work of many people who made the code better
- Peter Rehm (rpet)
- Alif Rachmawadi
- Matthias Pigulla (mpdude)
- Stefano Sala (stefano.sala)
- Joseph Rouff (rouffj)
- Félix Labrecque (woodspire)
- Christian Flothmann (xabbuh)
- GordonsLondon
- sun (sun)
- Jan Sorgalla (jsor)
- Ray
- Chekote
- Thomas Adam
- Albert Casademont (acasademont)
- jdhoek
- Wodor Wodorski
- Daniel Tschinder
- Elnur Abdurrakhimov (elnur)
- Beau Simensen (simensen)
- Robert Kiss (kepten)
- Kim Hemsø Rasmussen (kimhemsoe)
- Wouter Van Hecke
- Michele Orselli (orso)
- Michael Holm (hollo)
- Marc Weistroff (futurecat)
- Pierre-Yves LEBECQ (pylebecq)
@ -168,7 +174,6 @@ Symfony2 is the result of the work of many people who made the code better
- Manuel Kiessling (manuelkiessling)
- Lars Strojny (lstrojny)
- Bertrand Zuchuat (garfield-fr)
- sun (sun)
- Gabor Toth (tgabi333)
- Thomas Tourlourat (armetiz)
- Andrey Esaulov (andremaha)
@ -176,7 +181,6 @@ Symfony2 is the result of the work of many people who made the code better
- Uwe Jäger (uwej711)
- Aurelijus Valeiša (aurelijus)
- Gustavo Piltcher
- Chekote
- Stepan Tanasiychuk (stfalcon)
- Tiago Ribeiro (fixe)
- Bob den Otter (bopp)
@ -187,14 +191,12 @@ Symfony2 is the result of the work of many people who made the code better
- janschoenherr
- Marco Pivetta (ocramius)
- Ricard Clau (ricardclau)
- Nicolas Grekas (nicolas-grekas)
- Erin Millard
- Matthew Lewinski (lewinski)
- Manuel Reinhard (sprain)
- Francesco Levorato
- Vitaliy Zakharov (zakharovvi)
- Gyula Sallai (salla)
- Michele Orselli (orso)
- Inal DJAFAR (inalgnu)
- Christian Gärtner (dagardner)
- Tom Van Looy (tvlooy)
- Peter Kruithof (pkruithof)
@ -204,11 +206,14 @@ Symfony2 is the result of the work of many people who made the code better
- Terje Bråten
- Kristen Gilden (kgilden)
- hossein zolfi (ocean)
- Eduardo Gulias (egulias)
- giulio de donato (liuggio)
- Stéphane PY (steph_py)
- Philipp Kräutli (pkraeutli)
- Kirill chEbba Chebunin (chebba)
- Greg Thornton (xdissent)
- Atsuhiro KUBO (iteman)
- Grégoire Paris (greg0ire)
- Costin Bereveanu (schniper)
- Loïc Chardonnet (gnusat)
- Marek Kalnik (marekkalnik)
@ -220,7 +225,6 @@ Symfony2 is the result of the work of many people who made the code better
- Shein Alexey
- Joe Lencioni
- Kai
- Stefano Sala (stefano.sala)
- Xavier HAUSHERR
- Albert Jessurum (ajessu)
- Laszlo Korte
@ -240,6 +244,7 @@ Symfony2 is the result of the work of many people who made the code better
- Jeanmonod David (jeanmonod)
- Jan Schumann
- Niklas Fiekas
- John Kary (johnkary)
- Ruben Gonzalez (rubenrua)
- lancergr
- Antonio J. García Lagar (ajgarlag)
@ -249,31 +254,35 @@ Symfony2 is the result of the work of many people who made the code better
- alquerci
- vagrant
- Asier Illarramendi (doup)
- Kévin Dunglas (dunglas)
- Christoph Mewes (xrstf)
- Vitaliy Tverdokhlib (vitaliytv)
- Dirk Pahl (dirkaholic)
- cedric lombardot (cedriclombardot)
- Jonas Flodén (flojon)
- Marcin Sikoń (marphi)
- franek (franek)
- Adam Harvey
- Robbert Klarenbeek (robbertkl)
- boombatower
- Fabrice Bernhard (fabriceb)
- Fabian Lange (codingfabian)
- Yoshio HANAWA
- Baptiste Clavié (talus)
- Sebastian Bergmann
- Pablo Díez (pablodip)
- Kevin McBride
- Philipp Rieber (bicpi)
- Manuel de Ruiter (manuel)
- Jérémy Romey (jeremyfreeagent)
- Eduardo Oliveira (entering)
- Iker Ibarguren (ikerib)
- Ricardo Oliveira (ricardolotr)
- ondrowan
- Stéphane PY (steph_py)
- Andrew Moore (finewolf)
- Evan S Kaufman (evanskaufman)
- mcben
- Maks Slesarenko
- Grégoire Paris (greg0ire)
- Markus Lanthaler (lanthaler)
- Vicent Soria Durá (vicentgodella)
- Andrew Udvare (audvare)
@ -310,6 +319,8 @@ Symfony2 is the result of the work of many people who made the code better
- vitaliytv
- Markus Bachmann (baachi)
- aubx
- Ricky Su (ricky)
- Gildas Quéméner (gquemener)
- Max Rath (drak3)
- Stéphane Escandell (sescandell)
- Sinan Eldem
@ -322,12 +333,14 @@ Symfony2 is the result of the work of many people who made the code better
- Åsmund Garfors
- Javier López (loalf)
- Dustin Dobervich (dustin10)
- Alexander M. Turek (derrabus)
- Sebastian Marek (proofek)
- Erkhembayar Gantulga (erheme318)
- Kamil Kokot (pamil)
- Florian Lonqueu-Brochard (florianlb)
- Rostyslav Kinash
- Vincent Simonin
- Christian Schmidt
- Stefan Warman
- Ke WANG (yktd26)
- Jakub Kucharovic
@ -336,8 +349,7 @@ Symfony2 is the result of the work of many people who made the code better
- Chris Heng (gigablah)
- Ulumuddin Yunus (joenoez)
- Antoine Corcy
- cedric lombardot (cedriclombardot)
- John Kary (johnkary)
- Ben Davies (bendavies)
- François-Xavier de Guillebon (de-gui_f)
- Hossein Bukhamsin
- Paweł Wacławczyk (pwc)
@ -349,7 +361,6 @@ Symfony2 is the result of the work of many people who made the code better
- Tiago Brito (blackmx)
- Richard van den Brand (ricbra)
- develop
- Robbert Klarenbeek (robbertkl)
- Tomasz Kowalczyk (thunderer)
- Mark Sonnabaum
- Mathieu Lemoine
@ -374,7 +385,6 @@ Symfony2 is the result of the work of many people who made the code better
- michaelwilliams
- Leevi Graham (leevigraham)
- Casper Valdemar Poulsen
- Eduardo Gulias (egulias)
- Josiah (josiah)
- John Bohn (jbohn)
- Andrew Hilobok (hilobok)
@ -397,6 +407,7 @@ Symfony2 is the result of the work of many people who made the code better
- Rafał Wrzeszcz (rafalwrzeszcz)
- Reen Lokum
- Martin Parsiegla (spea)
- Quentin Schuler
- Pierre Vanliefland (pvanliefland)
- frost-nzcr4
- Abhoryo
@ -412,7 +423,6 @@ Symfony2 is the result of the work of many people who made the code better
- Aleksey Podskrebyshev
- David Marín Carreño (davefx)
- Jörn Lang (j.lang)
- Baptiste Clavié (talus)
- julien pauli (jpauli)
- mwsaz
- Benoît Bourgeois
@ -441,7 +451,6 @@ Symfony2 is the result of the work of many people who made the code better
- Maks
- Gábor Tóth
- Daniel Cestari
- Philipp Rieber (bicpi)
- Magnus Nordlander (magnusnordlander)
- Mikhail Yurasov (mym)
- Florian Rey (nervo)
@ -458,10 +467,10 @@ Symfony2 is the result of the work of many people who made the code better
- The Whole Life to Learn
- Phan Thanh Ha (haphan)
- Chris Jones (leek)
- Colin O&#039;Dell (colinodell)
- xaav
- Mahmoud Mostafa (mahmoud)
- Gildas Quéméner (gquemener)
- Ricky Su (ricky)
- Sander Marechal
- Radosław Benkel
- ttomor
- Mei Gwilym (meigwilym)
@ -472,6 +481,7 @@ Symfony2 is the result of the work of many people who made the code better
- Manuele Menozzi
- Anton Babenko (antonbabenko)
- Irmantas Šiupšinskas (irmantas)
- Danilo Silva
- dantleech
- Tero Alén (tero)
- DerManoMann
@ -486,18 +496,17 @@ Symfony2 is the result of the work of many people who made the code better
- Alex Bogomazov
- tamirvs
- julien.galenski
- Christian Schmidt
- Per Sandström (per)
- Goran Juric
- Lin Clark
- Jeremy David (jeremy.david)
- Troy McCabe
- Ville Mattila
- Ben Davies
- Max Beutel
- Catalin Dan
- Piotr Antosik (antek88)
- Artem Lopata
- Sascha Grossenbacher
- Marcos Quesada (marcos_quesada)
- Dan Finnie
- Ken Marfilla (marfillaster)
@ -522,6 +531,7 @@ Symfony2 is the result of the work of many people who made the code better
- Vincent AUBERT (vincent)
- Benoit Garret
- DerManoMann
- Marcin Chwedziak
- Roland Franssen (ro0)
- Maciej Malarz
- Rodrigo Díez Villamuera (rodrigodiez)
@ -538,9 +548,11 @@ Symfony2 is the result of the work of many people who made the code better
- Gustavo Adrian
- Clément Gautier (clementgautier)
- Luc Vieillescazes (iamluc)
- Eduardo García Sanz (coma)
- David de Boer (ddeboer)
- Brooks Boyd
- Roger Webb
- Max Voloshin (maxvoloshin)
- Nicolas Fabre (nfabre)
- Raul Rodriguez (raul782)
- Derek Lambert
@ -571,6 +583,7 @@ Symfony2 is the result of the work of many people who made the code better
- Sebastian Göttschkes (sgoettschkes)
- Kévin Gomez (kevin)
- Ludek Stepan
- Aaron Stephens (astephens)
- Balázs Benyó (duplabe)
- Erika Heidi Reinaldo (erikaheidi)
- Pierre Tachoire (krichprollsch)
@ -581,6 +594,7 @@ Symfony2 is the result of the work of many people who made the code better
- Sebastian Utz
- Karol Sójko (karolsojko)
- Sébastien HOUZÉ
- steveYeah
- Samy Dindane (dinduks)
- Keri Henare (kerihenare)
- Cédric Lahouste (rapotor)
@ -588,6 +602,7 @@ Symfony2 is the result of the work of many people who made the code better
- Anthony Ferrara
- ShiraNai7
- Janusz Jabłoński (yanoosh)
- Sergey Kolodyazhnyy
- George Giannoulopoulos
- Daniel Richter (richtermeister)
- Chris Wilkinson (thewilkybarkid)
@ -604,7 +619,9 @@ Symfony2 is the result of the work of many people who made the code better
- Evgeniy (ewgraf)
- Patrick Daley (padrig)
- Xavier Briand (xavierbriand)
- Max Summe
- WedgeSama
- Beth Binkovitz
- Romain Geissler
- Charles Sarrazin (csarrazi)
- Marcus Stöhr (dafish)
@ -648,6 +665,7 @@ Symfony2 is the result of the work of many people who made the code better
- Benjamin Bender
- Konrad Mohrfeldt
- Benoit Lévêque (benoit_leveque)
- kor3k kor3k (kor3k)
- Stelian Mocanita (stelian)
- Flavian (2much)
- mike
@ -660,6 +678,7 @@ Symfony2 is the result of the work of many people who made the code better
- Nicolas Badey (nico-b)
- Shane Preece (shane)
- povilas
- Diego Agulló
- Alexander Obuhovich
- Alessandro Tagliapietra (alex88)
- Gunnar Lium (gunnarlium)
@ -679,6 +698,7 @@ Symfony2 is the result of the work of many people who made the code better
- 2manypeople
- Wing
- Thomas Bibb
- Alexandre Segura
- Josef Cech
- Matthew Foster (mfoster)
- Paul Seiffert (seiffert)
@ -688,7 +708,10 @@ Symfony2 is the result of the work of many people who made the code better
- stloyd
- Chris Tickner
- Andrew Coulton
- Michal Gebauer
- Gleb Sidora
- David Stone
- Pablo Maria Martelletti (pmartelletti)
- Luis Muñoz
- Andreas
- Strate
@ -701,6 +724,7 @@ Symfony2 is the result of the work of many people who made the code better
- Ionel Scutelnicu (ionelscutelnicu)
- Johnny Peck (johnnypeck)
- Nicolas Tallefourtané (nicolab)
- Nick Stemerdink
- jjanvier
- Romain Dorgueil
- Grayson Koonce (breerly)
@ -708,6 +732,7 @@ Symfony2 is the result of the work of many people who made the code better
- Matt Robinson (inanimatt)
- Nicolas Bastien (nicolas_bastien)
- Andy Stanberry
- Luiz “Felds” Liscia
- Thomas Rothe
- alefranz
- alsar
@ -733,16 +758,17 @@ Symfony2 is the result of the work of many people who made the code better
- helmer
- Daan van Renterghem
- Bram Van der Sype (brammm)
- Inal DJAFAR (inalgnu)
- Julien Moulin (lizjulien)
- Matthieu Auger (matthieuauger)
- dened
- Sam Ward
- devel
- Trevor Suarez
- gedrox
- dropfen
- Andrey Chernykh
- Drew Butler
- J Bruni
- Alexey Prilipko
- Jan Marek (janmarek)
- Mark de Haan (markdehaan)
@ -760,6 +786,7 @@ Symfony2 is the result of the work of many people who made the code better
- Ari Pringle (apringle)
- Dan Ordille (dordille)
- Jan Eichhorn (exeu)
- John Nickell (jrnickell)
- Julien DIDIER (juliendidier)
- Florian Pfitzer (marmelatze)
- Martin Mayer (martin)
@ -792,11 +819,11 @@ Symfony2 is the result of the work of many people who made the code better
- Dave Marshall (davedevelopment)
- David Joos (djoos)
- Denis Klementjev (dklementjev)
- Kévin Dunglas (dunglas)
- Vincent Composieux (eko)
- Franz Liedke (franzliedke)
- gondo (gondo)
- Osman Üngür (import)
- Ian Jenkins (jenkoian)
- Jorge Martin (jorgemartind)
- Kevin Herrera (kherge)
- Marek Štípek (maryo)
@ -819,7 +846,6 @@ Symfony2 is the result of the work of many people who made the code better
- Joseph Deray
- Arnaud Buathier (arnapou)
- chesteroni (chesteroni)
- Alexander M. Turek (derrabus)
- Mauricio Lopez (diaspar)
- Daniele Cesarini (ijanki)
- Ismail Asci (ismailasci)
@ -827,6 +853,7 @@ Symfony2 is the result of the work of many people who made the code better
- Ramon Henrique Ornelas (ramonornela)
- Till Klampaeckel (till)
- Tobias Weinert (tweini)
- Ulf Reimers (ureimers)
- Wotre
- goohib
- Xavier HAUSHERR
@ -839,7 +866,6 @@ Symfony2 is the result of the work of many people who made the code better
- Aurelijus Rožėnas
- Christian Eikermann
- Antonio Angelino
- Quentin Schuler
- Vladimir Sazhin
- lol768
- jamogon
@ -879,6 +905,7 @@ Symfony2 is the result of the work of many people who made the code better
- Thorsten Hallwas
- Daisuke Ohata
- Michael Squires
- Matt Janssen
- Peter Gribanov
- Chris Smith
- kwiateusz
@ -893,6 +920,7 @@ Symfony2 is the result of the work of many people who made the code better
- TeLiXj
- Oncle Tom
- Christian Stocker
- Karolis Daužickas
- tirnanog06
- phc
- Michaël VEROUX
@ -916,7 +944,6 @@ Symfony2 is the result of the work of many people who made the code better
- Adel ELHAIBA (eadel)
- Elliot Anderson (elliot)
- Fabien D. (fabd)
- Andrew Moore (finewolf)
- Sorin Gitlan (forapathy)
- Yohan Giarelli (frequence-web)
- Massimiliano Arione (garak)