composer.lock 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "6064d0ef72af3ef8b2f98db70069486e",
  8. "packages": [
  9. {
  10. "name": "aferrandini/phpqrcode",
  11. "version": "1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aferrandini/PHPQRCode.git",
  15. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aferrandini/PHPQRCode/zipball/3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  20. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-0": {
  29. "PHPQRCode": "lib/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "MIT"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Ariel Ferrandini",
  39. "email": "arielferrandini@gmail.com",
  40. "homepage": "http://www.ferrandini.com/",
  41. "role": "Developer"
  42. }
  43. ],
  44. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  45. "homepage": "https://github.com/aferrandini/PHPQRCode",
  46. "keywords": [
  47. "barcode",
  48. "php",
  49. "qrcode"
  50. ],
  51. "time": "2013-07-08 09:39:08"
  52. },
  53. {
  54. "name": "alchemy/binary-driver",
  55. "version": "1.5.0",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  59. "reference": "b32c03d4b56ce29f783051eac55887adae654b41"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/b32c03d4b56ce29f783051eac55887adae654b41",
  64. "reference": "b32c03d4b56ce29f783051eac55887adae654b41",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "evenement/evenement": "~1.0",
  69. "monolog/monolog": "~1.3",
  70. "php": ">=5.3.3",
  71. "psr/log": "~1.0",
  72. "symfony/process": "~2.0"
  73. },
  74. "require-dev": {
  75. "phpunit/phpunit": "~3.7"
  76. },
  77. "type": "library",
  78. "autoload": {
  79. "psr-0": {
  80. "Alchemy": "src"
  81. }
  82. },
  83. "notification-url": "https://packagist.org/downloads/",
  84. "license": [
  85. "MIT"
  86. ],
  87. "authors": [
  88. {
  89. "name": "Romain Neutron",
  90. "email": "imprec@gmail.com",
  91. "homepage": "http://www.lickmychip.com/"
  92. },
  93. {
  94. "name": "nlegoff",
  95. "email": "legoff.n@gmail.com"
  96. },
  97. {
  98. "name": "Phraseanet Team",
  99. "email": "info@alchemy.fr",
  100. "homepage": "http://www.phraseanet.com/"
  101. }
  102. ],
  103. "description": "A set of tools to build binary drivers",
  104. "keywords": [
  105. "binary",
  106. "driver"
  107. ],
  108. "time": "2013-06-21 15:51:20"
  109. },
  110. {
  111. "name": "barryvdh/elfinder-builds",
  112. "version": "v2.1.0.3",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/barryvdh/elfinder-builds.git",
  116. "reference": "5826d79edbeccf2a63404f7ca8e9ca66758fd762"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/barryvdh/elfinder-builds/zipball/5826d79edbeccf2a63404f7ca8e9ca66758fd762",
  121. "reference": "5826d79edbeccf2a63404f7ca8e9ca66758fd762",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "php": ">=5.2"
  126. },
  127. "type": "library",
  128. "extra": {
  129. "branch-alias": {
  130. "dev-master": "2.1-dev"
  131. }
  132. },
  133. "autoload": {
  134. "classmap": [
  135. "php"
  136. ]
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "BSD-3-Clause"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Dmitry Levashov",
  145. "email": "dio@std42.ru",
  146. "homepage": "http://std42.ru"
  147. },
  148. {
  149. "name": "Troex Nevelin",
  150. "email": "troex@fury.scancode.ru",
  151. "homepage": "http://std42.ru"
  152. },
  153. {
  154. "name": "Naoki Sawada",
  155. "email": "hypweb@gmail.com",
  156. "homepage": "http://xoops.hypweb.net"
  157. },
  158. {
  159. "name": "Community contributions",
  160. "homepage": "https://github.com/Studio-42/elFinder/contributors"
  161. }
  162. ],
  163. "description": "File manager for web",
  164. "homepage": "http://elfinder.org",
  165. "time": "2015-02-11 11:10:51"
  166. },
  167. {
  168. "name": "behat/transliterator",
  169. "version": "v1.0.1",
  170. "source": {
  171. "type": "git",
  172. "url": "https://github.com/Behat/Transliterator.git",
  173. "reference": "c93521d3462a554332d1ef5bb0e9b5b8ca4106c4"
  174. },
  175. "dist": {
  176. "type": "zip",
  177. "url": "https://api.github.com/repos/Behat/Transliterator/zipball/c93521d3462a554332d1ef5bb0e9b5b8ca4106c4",
  178. "reference": "c93521d3462a554332d1ef5bb0e9b5b8ca4106c4",
  179. "shasum": ""
  180. },
  181. "require": {
  182. "php": ">=5.3.3"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "branch-alias": {
  187. "dev-master": "1.0-dev"
  188. }
  189. },
  190. "autoload": {
  191. "psr-0": {
  192. "Behat\\Transliterator": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "Artistic-1.0"
  198. ],
  199. "description": "String transliterator",
  200. "keywords": [
  201. "i18n",
  202. "slug",
  203. "transliterator"
  204. ],
  205. "time": "2014-05-15 22:08:22"
  206. },
  207. {
  208. "name": "ckeditor/ckeditor",
  209. "version": "4.4.7",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/ckeditor/ckeditor-releases.git",
  213. "reference": "cc324415302784eb1abe33a3762fbdd3b48c558b"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/ckeditor/ckeditor-releases/zipball/cc324415302784eb1abe33a3762fbdd3b48c558b",
  218. "reference": "cc324415302784eb1abe33a3762fbdd3b48c558b",
  219. "shasum": ""
  220. },
  221. "type": "library",
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "GPL-2.0+",
  225. "LGPL-2.1+",
  226. "MPL-1.1+"
  227. ],
  228. "authors": [
  229. {
  230. "name": "CKSource",
  231. "homepage": "http://cksource.com"
  232. }
  233. ],
  234. "description": "JavaScript WYSIWYG web text editor.",
  235. "homepage": "http://ckeditor.com",
  236. "keywords": [
  237. "CKEditor",
  238. "editor",
  239. "fckeditor",
  240. "html",
  241. "javascript",
  242. "richtext",
  243. "text",
  244. "wysiwyg"
  245. ],
  246. "time": "2015-01-27 15:13:53"
  247. },
  248. {
  249. "name": "doctrine/annotations",
  250. "version": "v1.2.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/annotations.git",
  254. "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/annotations/zipball/eeda578cbe24a170331a1cfdf78be723412df7a4",
  259. "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "doctrine/lexer": "1.*",
  264. "php": ">=5.3.2"
  265. },
  266. "require-dev": {
  267. "doctrine/cache": "1.*",
  268. "phpunit/phpunit": "4.*"
  269. },
  270. "type": "library",
  271. "extra": {
  272. "branch-alias": {
  273. "dev-master": "1.3.x-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-0": {
  278. "Doctrine\\Common\\Annotations\\": "lib/"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Roman Borschel",
  288. "email": "roman@code-factory.org"
  289. },
  290. {
  291. "name": "Benjamin Eberlei",
  292. "email": "kontakt@beberlei.de"
  293. },
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Jonathan Wage",
  300. "email": "jonwage@gmail.com"
  301. },
  302. {
  303. "name": "Johannes Schmitt",
  304. "email": "schmittjoh@gmail.com"
  305. }
  306. ],
  307. "description": "Docblock Annotations Parser",
  308. "homepage": "http://www.doctrine-project.org",
  309. "keywords": [
  310. "annotations",
  311. "docblock",
  312. "parser"
  313. ],
  314. "time": "2014-12-20 20:49:38"
  315. },
  316. {
  317. "name": "doctrine/cache",
  318. "version": "v1.4.0",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/doctrine/cache.git",
  322. "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/doctrine/cache/zipball/2346085d2b027b233ae1d5de59b07440b9f288c8",
  327. "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8",
  328. "shasum": ""
  329. },
  330. "require": {
  331. "php": ">=5.3.2"
  332. },
  333. "conflict": {
  334. "doctrine/common": ">2.2,<2.4"
  335. },
  336. "require-dev": {
  337. "phpunit/phpunit": ">=3.7",
  338. "predis/predis": "~0.8",
  339. "satooshi/php-coveralls": "~0.6"
  340. },
  341. "type": "library",
  342. "extra": {
  343. "branch-alias": {
  344. "dev-master": "1.4.x-dev"
  345. }
  346. },
  347. "autoload": {
  348. "psr-0": {
  349. "Doctrine\\Common\\Cache\\": "lib/"
  350. }
  351. },
  352. "notification-url": "https://packagist.org/downloads/",
  353. "license": [
  354. "MIT"
  355. ],
  356. "authors": [
  357. {
  358. "name": "Roman Borschel",
  359. "email": "roman@code-factory.org"
  360. },
  361. {
  362. "name": "Benjamin Eberlei",
  363. "email": "kontakt@beberlei.de"
  364. },
  365. {
  366. "name": "Guilherme Blanco",
  367. "email": "guilhermeblanco@gmail.com"
  368. },
  369. {
  370. "name": "Jonathan Wage",
  371. "email": "jonwage@gmail.com"
  372. },
  373. {
  374. "name": "Johannes Schmitt",
  375. "email": "schmittjoh@gmail.com"
  376. }
  377. ],
  378. "description": "Caching library offering an object-oriented API for many cache backends",
  379. "homepage": "http://www.doctrine-project.org",
  380. "keywords": [
  381. "cache",
  382. "caching"
  383. ],
  384. "time": "2015-01-15 20:38:55"
  385. },
  386. {
  387. "name": "doctrine/collections",
  388. "version": "v1.2",
  389. "source": {
  390. "type": "git",
  391. "url": "https://github.com/doctrine/collections.git",
  392. "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2"
  393. },
  394. "dist": {
  395. "type": "zip",
  396. "url": "https://api.github.com/repos/doctrine/collections/zipball/b99c5c46c87126201899afe88ec490a25eedd6a2",
  397. "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2",
  398. "shasum": ""
  399. },
  400. "require": {
  401. "php": ">=5.3.2"
  402. },
  403. "type": "library",
  404. "extra": {
  405. "branch-alias": {
  406. "dev-master": "1.2.x-dev"
  407. }
  408. },
  409. "autoload": {
  410. "psr-0": {
  411. "Doctrine\\Common\\Collections\\": "lib/"
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Jonathan Wage",
  421. "email": "jonwage@gmail.com",
  422. "homepage": "http://www.jwage.com/",
  423. "role": "Creator"
  424. },
  425. {
  426. "name": "Guilherme Blanco",
  427. "email": "guilhermeblanco@gmail.com",
  428. "homepage": "http://www.instaclick.com"
  429. },
  430. {
  431. "name": "Roman Borschel",
  432. "email": "roman@code-factory.org"
  433. },
  434. {
  435. "name": "Benjamin Eberlei",
  436. "email": "kontakt@beberlei.de"
  437. },
  438. {
  439. "name": "Johannes Schmitt",
  440. "email": "schmittjoh@gmail.com",
  441. "homepage": "https://github.com/schmittjoh",
  442. "role": "Developer of wrapped JMSSerializerBundle"
  443. }
  444. ],
  445. "description": "Collections Abstraction library",
  446. "homepage": "http://www.doctrine-project.org",
  447. "keywords": [
  448. "array",
  449. "collections",
  450. "iterator"
  451. ],
  452. "time": "2014-02-03 23:07:43"
  453. },
  454. {
  455. "name": "doctrine/common",
  456. "version": "v2.4.2",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/doctrine/common.git",
  460. "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/doctrine/common/zipball/5db6ab40e4c531f14dad4ca96a394dfce5d4255b",
  465. "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "doctrine/annotations": "1.*",
  470. "doctrine/cache": "1.*",
  471. "doctrine/collections": "1.*",
  472. "doctrine/inflector": "1.*",
  473. "doctrine/lexer": "1.*",
  474. "php": ">=5.3.2"
  475. },
  476. "require-dev": {
  477. "phpunit/phpunit": "~3.7"
  478. },
  479. "type": "library",
  480. "extra": {
  481. "branch-alias": {
  482. "dev-master": "2.4.x-dev"
  483. }
  484. },
  485. "autoload": {
  486. "psr-0": {
  487. "Doctrine\\Common\\": "lib/"
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "authors": [
  495. {
  496. "name": "Jonathan Wage",
  497. "email": "jonwage@gmail.com",
  498. "homepage": "http://www.jwage.com/",
  499. "role": "Creator"
  500. },
  501. {
  502. "name": "Guilherme Blanco",
  503. "email": "guilhermeblanco@gmail.com",
  504. "homepage": "http://www.instaclick.com"
  505. },
  506. {
  507. "name": "Roman Borschel",
  508. "email": "roman@code-factory.org"
  509. },
  510. {
  511. "name": "Benjamin Eberlei",
  512. "email": "kontakt@beberlei.de"
  513. },
  514. {
  515. "name": "Johannes Schmitt",
  516. "email": "schmittjoh@gmail.com",
  517. "homepage": "https://github.com/schmittjoh",
  518. "role": "Developer of wrapped JMSSerializerBundle"
  519. }
  520. ],
  521. "description": "Common Library for Doctrine projects",
  522. "homepage": "http://www.doctrine-project.org",
  523. "keywords": [
  524. "annotations",
  525. "collections",
  526. "eventmanager",
  527. "persistence",
  528. "spl"
  529. ],
  530. "time": "2014-05-21 19:28:51"
  531. },
  532. {
  533. "name": "doctrine/dbal",
  534. "version": "v2.5.1",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/doctrine/dbal.git",
  538. "reference": "628c2256b646ae2417d44e063bce8aec5199d48d"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/doctrine/dbal/zipball/628c2256b646ae2417d44e063bce8aec5199d48d",
  543. "reference": "628c2256b646ae2417d44e063bce8aec5199d48d",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "doctrine/common": ">=2.4,<2.6-dev",
  548. "php": ">=5.3.2"
  549. },
  550. "require-dev": {
  551. "phpunit/phpunit": "4.*",
  552. "symfony/console": "2.*"
  553. },
  554. "suggest": {
  555. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  556. },
  557. "bin": [
  558. "bin/doctrine-dbal"
  559. ],
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-master": "2.5.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-0": {
  568. "Doctrine\\DBAL\\": "lib/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Roman Borschel",
  578. "email": "roman@code-factory.org"
  579. },
  580. {
  581. "name": "Benjamin Eberlei",
  582. "email": "kontakt@beberlei.de"
  583. },
  584. {
  585. "name": "Guilherme Blanco",
  586. "email": "guilhermeblanco@gmail.com"
  587. },
  588. {
  589. "name": "Jonathan Wage",
  590. "email": "jonwage@gmail.com"
  591. }
  592. ],
  593. "description": "Database Abstraction Layer",
  594. "homepage": "http://www.doctrine-project.org",
  595. "keywords": [
  596. "database",
  597. "dbal",
  598. "persistence",
  599. "queryobject"
  600. ],
  601. "time": "2015-01-12 21:52:47"
  602. },
  603. {
  604. "name": "doctrine/inflector",
  605. "version": "v1.0.1",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/doctrine/inflector.git",
  609. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/doctrine/inflector/zipball/0bcb2e79d8571787f18b7eb036ed3d004908e604",
  614. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "php": ">=5.3.2"
  619. },
  620. "require-dev": {
  621. "phpunit/phpunit": "4.*"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "1.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-0": {
  631. "Doctrine\\Common\\Inflector\\": "lib/"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Roman Borschel",
  641. "email": "roman@code-factory.org"
  642. },
  643. {
  644. "name": "Benjamin Eberlei",
  645. "email": "kontakt@beberlei.de"
  646. },
  647. {
  648. "name": "Guilherme Blanco",
  649. "email": "guilhermeblanco@gmail.com"
  650. },
  651. {
  652. "name": "Jonathan Wage",
  653. "email": "jonwage@gmail.com"
  654. },
  655. {
  656. "name": "Johannes Schmitt",
  657. "email": "schmittjoh@gmail.com"
  658. }
  659. ],
  660. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  661. "homepage": "http://www.doctrine-project.org",
  662. "keywords": [
  663. "inflection",
  664. "pluralize",
  665. "singularize",
  666. "string"
  667. ],
  668. "time": "2014-12-20 21:24:13"
  669. },
  670. {
  671. "name": "doctrine/lexer",
  672. "version": "v1.0.1",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/doctrine/lexer.git",
  676. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  681. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "php": ">=5.3.2"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "branch-alias": {
  690. "dev-master": "1.0.x-dev"
  691. }
  692. },
  693. "autoload": {
  694. "psr-0": {
  695. "Doctrine\\Common\\Lexer\\": "lib/"
  696. }
  697. },
  698. "notification-url": "https://packagist.org/downloads/",
  699. "license": [
  700. "MIT"
  701. ],
  702. "authors": [
  703. {
  704. "name": "Roman Borschel",
  705. "email": "roman@code-factory.org"
  706. },
  707. {
  708. "name": "Guilherme Blanco",
  709. "email": "guilhermeblanco@gmail.com"
  710. },
  711. {
  712. "name": "Johannes Schmitt",
  713. "email": "schmittjoh@gmail.com"
  714. }
  715. ],
  716. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  717. "homepage": "http://www.doctrine-project.org",
  718. "keywords": [
  719. "lexer",
  720. "parser"
  721. ],
  722. "time": "2014-09-09 13:34:57"
  723. },
  724. {
  725. "name": "doctrine/orm",
  726. "version": "v2.4.7",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/doctrine/doctrine2.git",
  730. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  735. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "doctrine/collections": "~1.1",
  740. "doctrine/dbal": "~2.4",
  741. "ext-pdo": "*",
  742. "php": ">=5.3.2",
  743. "symfony/console": "~2.0"
  744. },
  745. "require-dev": {
  746. "satooshi/php-coveralls": "dev-master",
  747. "symfony/yaml": "~2.1"
  748. },
  749. "suggest": {
  750. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  751. },
  752. "bin": [
  753. "bin/doctrine",
  754. "bin/doctrine.php"
  755. ],
  756. "type": "library",
  757. "extra": {
  758. "branch-alias": {
  759. "dev-master": "2.4.x-dev"
  760. }
  761. },
  762. "autoload": {
  763. "psr-0": {
  764. "Doctrine\\ORM\\": "lib/"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "Roman Borschel",
  774. "email": "roman@code-factory.org"
  775. },
  776. {
  777. "name": "Benjamin Eberlei",
  778. "email": "kontakt@beberlei.de"
  779. },
  780. {
  781. "name": "Guilherme Blanco",
  782. "email": "guilhermeblanco@gmail.com"
  783. },
  784. {
  785. "name": "Jonathan Wage",
  786. "email": "jonwage@gmail.com"
  787. }
  788. ],
  789. "description": "Object-Relational-Mapper for PHP",
  790. "homepage": "http://www.doctrine-project.org",
  791. "keywords": [
  792. "database",
  793. "orm"
  794. ],
  795. "time": "2014-12-16 13:45:01"
  796. },
  797. {
  798. "name": "emojione/emojione",
  799. "version": "v1.3.0",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/Ranks/emojione.git",
  803. "reference": "2a34acf3771a219045e133063aa759035d4f842c"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/Ranks/emojione/zipball/2a34acf3771a219045e133063aa759035d4f842c",
  808. "reference": "2a34acf3771a219045e133063aa759035d4f842c",
  809. "shasum": ""
  810. },
  811. "require": {
  812. "php": ">=5.3"
  813. },
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Emojione\\": "lib/php/src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "description": "Emoji One is a complete set of emojis designed for the web. It includes libraries to easily convert unicode characters to shortnames (:smile:) and shortnames to our custom emoji images. PNG and SVG formats provided for the emoji images.",
  822. "homepage": "http://www.emojione.com",
  823. "keywords": [
  824. "Emoji One",
  825. "emoji",
  826. "emojione",
  827. "emojis",
  828. "emoticons",
  829. "smileys",
  830. "smilies",
  831. "unicode"
  832. ],
  833. "time": "2014-10-31 19:31:57"
  834. },
  835. {
  836. "name": "evenement/evenement",
  837. "version": "v1.0.0",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/igorw/evenement.git",
  841. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/igorw/evenement/zipball/fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  846. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": ">=5.3.0"
  851. },
  852. "type": "library",
  853. "autoload": {
  854. "psr-0": {
  855. "Evenement": "src"
  856. }
  857. },
  858. "notification-url": "https://packagist.org/downloads/",
  859. "license": [
  860. "MIT"
  861. ],
  862. "authors": [
  863. {
  864. "name": "Igor Wiedler",
  865. "email": "igor@wiedler.ch",
  866. "homepage": "http://wiedler.ch/igor/"
  867. }
  868. ],
  869. "description": "Événement is a very simple event dispatching library for PHP 5.3",
  870. "keywords": [
  871. "event-dispatcher"
  872. ],
  873. "time": "2012-05-30 15:01:08"
  874. },
  875. {
  876. "name": "ezyang/htmlpurifier",
  877. "version": "v4.6.0",
  878. "source": {
  879. "type": "git",
  880. "url": "https://github.com/ezyang/htmlpurifier.git",
  881. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd"
  882. },
  883. "dist": {
  884. "type": "zip",
  885. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6f389f0f25b90d0b495308efcfa073981177f0fd",
  886. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd",
  887. "shasum": ""
  888. },
  889. "require": {
  890. "php": ">=5.2"
  891. },
  892. "type": "library",
  893. "autoload": {
  894. "psr-0": {
  895. "HTMLPurifier": "library/"
  896. },
  897. "files": [
  898. "library/HTMLPurifier.composer.php"
  899. ]
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "LGPL"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Edward Z. Yang",
  908. "email": "admin@htmlpurifier.org",
  909. "homepage": "http://ezyang.com"
  910. }
  911. ],
  912. "description": "Standards compliant HTML filter written in PHP",
  913. "homepage": "http://htmlpurifier.org/",
  914. "keywords": [
  915. "html"
  916. ],
  917. "time": "2013-11-30 08:25:19"
  918. },
  919. {
  920. "name": "friendsofsymfony/rest-bundle",
  921. "version": "1.5.3",
  922. "target-dir": "FOS/RestBundle",
  923. "source": {
  924. "type": "git",
  925. "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git",
  926. "reference": "fdd21c4c0cb6222ae37efc9362c6a96bd1432412"
  927. },
  928. "dist": {
  929. "type": "zip",
  930. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/fdd21c4c0cb6222ae37efc9362c6a96bd1432412",
  931. "reference": "fdd21c4c0cb6222ae37efc9362c6a96bd1432412",
  932. "shasum": ""
  933. },
  934. "require": {
  935. "doctrine/inflector": "~1.0",
  936. "php": ">=5.3.9",
  937. "psr/log": "~1.0",
  938. "symfony/framework-bundle": "~2.2",
  939. "willdurand/jsonp-callback-validator": "~1.0",
  940. "willdurand/negotiation": "~1.2"
  941. },
  942. "conflict": {
  943. "jms/serializer": "<0.12",
  944. "jms/serializer-bundle": "<0.11"
  945. },
  946. "require-dev": {
  947. "jms/serializer-bundle": "~0.12",
  948. "sensio/framework-extra-bundle": "~2.2",
  949. "symfony/form": "~2.2",
  950. "symfony/security": "~2.2",
  951. "symfony/serializer": "~2.2",
  952. "symfony/validator": "~2.2",
  953. "symfony/yaml": "~2.2"
  954. },
  955. "suggest": {
  956. "jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires ~0.12",
  957. "sensio/framework-extra-bundle": "Add support for route annotations and the view response listener",
  958. "symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ~2.2",
  959. "symfony/validator": "Add support for validation capabilities in the ParamFetcher, requires ~2.2"
  960. },
  961. "type": "symfony-bundle",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "1.5-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-0": {
  969. "FOS\\RestBundle": ""
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Lukas Kahwe Smith",
  979. "email": "smith@pooteeweet.org"
  980. },
  981. {
  982. "name": "FriendsOfSymfony Community",
  983. "homepage": "https://github.com/friendsofsymfony/FOSRestBundle/contributors"
  984. },
  985. {
  986. "name": "Konstantin Kudryashov",
  987. "email": "ever.zet@gmail.com"
  988. }
  989. ],
  990. "description": "This Bundle provides various tools to rapidly develop RESTful API's with Symfony2",
  991. "homepage": "http://friendsofsymfony.github.com",
  992. "keywords": [
  993. "rest"
  994. ],
  995. "time": "2015-02-16 15:26:12"
  996. },
  997. {
  998. "name": "friendsofsymfony/user-bundle",
  999. "version": "v1.3.5",
  1000. "target-dir": "FOS/UserBundle",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1004. "reference": "d66890ad3489e18be153502c5ccc3f2bf5cce442"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/d66890ad3489e18be153502c5ccc3f2bf5cce442",
  1009. "reference": "d66890ad3489e18be153502c5ccc3f2bf5cce442",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": ">=5.3.2",
  1014. "symfony/framework-bundle": "~2.1",
  1015. "symfony/security-bundle": "~2.1"
  1016. },
  1017. "require-dev": {
  1018. "doctrine/doctrine-bundle": "*",
  1019. "swiftmailer/swiftmailer": "~4.3",
  1020. "symfony/validator": "~2.1",
  1021. "symfony/yaml": "~2.1",
  1022. "twig/twig": "~1.5",
  1023. "willdurand/propel-typehintable-behavior": "dev-master"
  1024. },
  1025. "suggest": {
  1026. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1027. },
  1028. "type": "symfony-bundle",
  1029. "extra": {
  1030. "branch-alias": {
  1031. "dev-master": "2.0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-0": {
  1036. "FOS\\UserBundle": ""
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Christophe Coevoet",
  1046. "email": "stof@notk.org"
  1047. },
  1048. {
  1049. "name": "FriendsOfSymfony Community",
  1050. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1051. },
  1052. {
  1053. "name": "Thibault Duplessis",
  1054. "email": "thibault.duplessis@gmail.com"
  1055. }
  1056. ],
  1057. "description": "Symfony FOSUserBundle",
  1058. "homepage": "http://friendsofsymfony.github.com",
  1059. "keywords": [
  1060. "User management"
  1061. ],
  1062. "time": "2014-09-04 12:28:43"
  1063. },
  1064. {
  1065. "name": "gedmo/doctrine-extensions",
  1066. "version": "v2.3.12",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/Atlantic18/DoctrineExtensions.git",
  1070. "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/c3ff3c73c95b01e107af33d4fe3abf80794e2df9",
  1075. "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "behat/transliterator": "~1.0",
  1080. "doctrine/common": "~2.4",
  1081. "php": ">=5.3.2"
  1082. },
  1083. "require-dev": {
  1084. "doctrine/mongodb-odm": ">=1.0.0-BETA11",
  1085. "doctrine/orm": "~2.4",
  1086. "phpunit/phpunit": "~4.4",
  1087. "phpunit/phpunit-mock-objects": "~2.3",
  1088. "symfony/yaml": "~2.3"
  1089. },
  1090. "suggest": {
  1091. "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
  1092. "doctrine/orm": "to use the extensions with the ORM"
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-master": "2.3.x-dev"
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-0": {
  1102. "Gedmo\\": "lib/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "David Buchmann",
  1112. "email": "david@liip.ch"
  1113. },
  1114. {
  1115. "name": "Gediminas Morkevicius",
  1116. "email": "gediminas.morkevicius@gmail.com"
  1117. },
  1118. {
  1119. "name": "Gustavo Falco",
  1120. "email": "comfortablynumb84@gmail.com"
  1121. }
  1122. ],
  1123. "description": "Doctrine2 behavioral extensions",
  1124. "homepage": "http://gediminasm.org/",
  1125. "keywords": [
  1126. "Blameable",
  1127. "behaviors",
  1128. "doctrine2",
  1129. "extensions",
  1130. "gedmo",
  1131. "loggable",
  1132. "nestedset",
  1133. "sluggable",
  1134. "sortable",
  1135. "timestampable",
  1136. "translatable",
  1137. "tree",
  1138. "uploadable"
  1139. ],
  1140. "time": "2015-02-24 21:41:37"
  1141. },
  1142. {
  1143. "name": "jbroadway/urlify",
  1144. "version": "1.0.3-stable",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/jbroadway/urlify.git",
  1148. "reference": "c9ada9d3873d11f72fa772aecd6896efad11ee67"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/jbroadway/urlify/zipball/c9ada9d3873d11f72fa772aecd6896efad11ee67",
  1153. "reference": "c9ada9d3873d11f72fa772aecd6896efad11ee67",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "php": ">=5.3.0"
  1158. },
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-master": "1.0-dev"
  1163. }
  1164. },
  1165. "autoload": {
  1166. "psr-0": {
  1167. "URLify": ""
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Johnny Broadway",
  1177. "email": "johnny@johnnybroadway.com",
  1178. "homepage": "http://www.johnnybroadway.com/",
  1179. "role": "Main Developer"
  1180. }
  1181. ],
  1182. "description": "PHP port of URLify.js from the Django project. Transliterates non-ascii characters for use in URLs.",
  1183. "homepage": "https://github.com/jbroadway/urlify",
  1184. "keywords": [
  1185. "encode",
  1186. "iconv",
  1187. "link",
  1188. "slug",
  1189. "translit",
  1190. "transliterate",
  1191. "transliteration",
  1192. "url",
  1193. "urlify"
  1194. ],
  1195. "time": "2014-03-17 16:14:04"
  1196. },
  1197. {
  1198. "name": "knplabs/knp-menu",
  1199. "version": "v2.0.1",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1203. "reference": "5758d0026d7ed00c8dd4727e413918cf2dc74c1a"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/5758d0026d7ed00c8dd4727e413918cf2dc74c1a",
  1208. "reference": "5758d0026d7ed00c8dd4727e413918cf2dc74c1a",
  1209. "shasum": ""
  1210. },
  1211. "require": {
  1212. "php": ">=5.3.0"
  1213. },
  1214. "require-dev": {
  1215. "pimple/pimple": "1.0.*",
  1216. "silex/silex": "1.0.*",
  1217. "twig/twig": ">=1.2,<2.0-dev"
  1218. },
  1219. "suggest": {
  1220. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1221. "silex/silex": "for the integration with your silex application",
  1222. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "2.0.x-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "psr-0": {
  1232. "Knp\\Menu\\": "src/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "MIT"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "Christophe Coevoet",
  1242. "email": "stof@notk.org"
  1243. },
  1244. {
  1245. "name": "Knplabs",
  1246. "homepage": "http://knplabs.com"
  1247. },
  1248. {
  1249. "name": "Symfony Community",
  1250. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1251. }
  1252. ],
  1253. "description": "An object oriented menu library",
  1254. "homepage": "http://knplabs.com",
  1255. "keywords": [
  1256. "menu",
  1257. "tree"
  1258. ],
  1259. "time": "2014-08-01 09:50:16"
  1260. },
  1261. {
  1262. "name": "knplabs/knp-menu-bundle",
  1263. "version": "v2.0.0",
  1264. "target-dir": "Knp/Bundle/MenuBundle",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1268. "reference": "bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088",
  1273. "reference": "bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "knplabs/knp-menu": "~2.0",
  1278. "symfony/framework-bundle": "~2.0"
  1279. },
  1280. "type": "symfony-bundle",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "2.0.x-dev"
  1284. }
  1285. },
  1286. "autoload": {
  1287. "psr-0": {
  1288. "Knp\\Bundle\\MenuBundle": ""
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "authors": [
  1296. {
  1297. "name": "Christophe Coevoet",
  1298. "email": "stof@notk.org"
  1299. },
  1300. {
  1301. "name": "Knplabs",
  1302. "homepage": "http://knplabs.com"
  1303. },
  1304. {
  1305. "name": "Symfony Community",
  1306. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1307. }
  1308. ],
  1309. "description": "This bundle provides an integration of the KnpMenu library",
  1310. "keywords": [
  1311. "menu"
  1312. ],
  1313. "time": "2014-08-01 09:57:23"
  1314. },
  1315. {
  1316. "name": "michelf/php-markdown",
  1317. "version": "1.4.1",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/michelf/php-markdown.git",
  1321. "reference": "de9a19c7bf352d41cc99ed86c3c0ef17e87394b6"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/michelf/php-markdown/zipball/de9a19c7bf352d41cc99ed86c3c0ef17e87394b6",
  1326. "reference": "de9a19c7bf352d41cc99ed86c3c0ef17e87394b6",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "php": ">=5.3.0"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "branch-alias": {
  1335. "dev-lib": "1.4.x-dev"
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-0": {
  1340. "Michelf": ""
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "BSD-3-Clause"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Michel Fortin",
  1350. "email": "michel.fortin@michelf.ca",
  1351. "homepage": "http://michelf.ca/",
  1352. "role": "Developer"
  1353. },
  1354. {
  1355. "name": "John Gruber",
  1356. "homepage": "http://daringfireball.net/"
  1357. }
  1358. ],
  1359. "description": "PHP Markdown",
  1360. "homepage": "http://michelf.ca/projects/php-markdown/",
  1361. "keywords": [
  1362. "markdown"
  1363. ],
  1364. "time": "2014-05-05 02:43:50"
  1365. },
  1366. {
  1367. "name": "monolog/monolog",
  1368. "version": "1.12.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/Seldaek/monolog.git",
  1372. "reference": "1fbe8c2641f2b163addf49cc5e18f144bec6b19f"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1fbe8c2641f2b163addf49cc5e18f144bec6b19f",
  1377. "reference": "1fbe8c2641f2b163addf49cc5e18f144bec6b19f",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "php": ">=5.3.0",
  1382. "psr/log": "~1.0"
  1383. },
  1384. "provide": {
  1385. "psr/log-implementation": "1.0.0"
  1386. },
  1387. "require-dev": {
  1388. "aws/aws-sdk-php": "~2.4, >2.4.8",
  1389. "doctrine/couchdb": "~1.0@dev",
  1390. "graylog2/gelf-php": "~1.0",
  1391. "phpunit/phpunit": "~4.0",
  1392. "raven/raven": "~0.5",
  1393. "ruflin/elastica": "0.90.*",
  1394. "videlalvaro/php-amqplib": "~2.4"
  1395. },
  1396. "suggest": {
  1397. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1398. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1399. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1400. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1401. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1402. "raven/raven": "Allow sending log messages to a Sentry server",
  1403. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1404. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1405. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1406. },
  1407. "type": "library",
  1408. "extra": {
  1409. "branch-alias": {
  1410. "dev-master": "1.12.x-dev"
  1411. }
  1412. },
  1413. "autoload": {
  1414. "psr-4": {
  1415. "Monolog\\": "src/Monolog"
  1416. }
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "MIT"
  1421. ],
  1422. "authors": [
  1423. {
  1424. "name": "Jordi Boggiano",
  1425. "email": "j.boggiano@seld.be",
  1426. "homepage": "http://seld.be"
  1427. }
  1428. ],
  1429. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1430. "homepage": "http://github.com/Seldaek/monolog",
  1431. "keywords": [
  1432. "log",
  1433. "logging",
  1434. "psr-3"
  1435. ],
  1436. "time": "2014-12-29 21:29:35"
  1437. },
  1438. {
  1439. "name": "mpdf/mpdf",
  1440. "version": "v5.7.4",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/finwe/mpdf.git",
  1444. "reference": "f9a374c7ea975ce8c795cec4dfd17ef55addac9c"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/finwe/mpdf/zipball/f9a374c7ea975ce8c795cec4dfd17ef55addac9c",
  1449. "reference": "f9a374c7ea975ce8c795cec4dfd17ef55addac9c",
  1450. "shasum": ""
  1451. },
  1452. "require": {
  1453. "ext-mbstring": "*",
  1454. "php": ">=4.3.10"
  1455. },
  1456. "type": "library",
  1457. "autoload": {
  1458. "classmap": [
  1459. "mpdf.php",
  1460. "classes"
  1461. ]
  1462. },
  1463. "notification-url": "https://packagist.org/downloads/",
  1464. "license": [
  1465. "GPL-1.0+"
  1466. ],
  1467. "authors": [
  1468. {
  1469. "name": "Ian Back"
  1470. }
  1471. ],
  1472. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  1473. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  1474. "keywords": [
  1475. "pdf",
  1476. "php",
  1477. "utf-8"
  1478. ],
  1479. "time": "2014-12-14 18:32:11"
  1480. },
  1481. {
  1482. "name": "nelmio/api-doc-bundle",
  1483. "version": "2.7.0",
  1484. "target-dir": "Nelmio/ApiDocBundle",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/nelmio/NelmioApiDocBundle.git",
  1488. "reference": "3fdb2d4a819d1f71bff0c45880af705a8b124955"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/nelmio/NelmioApiDocBundle/zipball/3fdb2d4a819d1f71bff0c45880af705a8b124955",
  1493. "reference": "3fdb2d4a819d1f71bff0c45880af705a8b124955",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "michelf/php-markdown": "~1.4",
  1498. "symfony/console": "~2.1",
  1499. "symfony/framework-bundle": "~2.1",
  1500. "symfony/twig-bundle": "~2.1"
  1501. },
  1502. "conflict": {
  1503. "jms/serializer": "<0.12",
  1504. "jms/serializer-bundle": "<0.11"
  1505. },
  1506. "require-dev": {
  1507. "friendsofsymfony/rest-bundle": "~1.0",
  1508. "jms/serializer-bundle": ">=0.11",
  1509. "sensio/framework-extra-bundle": "~2.1",
  1510. "symfony/browser-kit": "~2.1",
  1511. "symfony/css-selector": "~2.1",
  1512. "symfony/form": "~2.1",
  1513. "symfony/validator": "~2.1",
  1514. "symfony/yaml": "~2.1"
  1515. },
  1516. "suggest": {
  1517. "friendsofsymfony/rest-bundle": "For making use of REST information in the doc.",
  1518. "jms/serializer": "For making use of serializer information in the doc.",
  1519. "symfony/form": "For using form definitions as input.",
  1520. "symfony/validator": "For making use of validator information in the doc."
  1521. },
  1522. "type": "symfony-bundle",
  1523. "extra": {
  1524. "branch-alias": {
  1525. "dev-master": "2.7.x-dev"
  1526. }
  1527. },
  1528. "autoload": {
  1529. "psr-0": {
  1530. "Nelmio\\ApiDocBundle": ""
  1531. }
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Nelmio",
  1540. "homepage": "http://nelm.io"
  1541. },
  1542. {
  1543. "name": "Symfony Community",
  1544. "homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
  1545. }
  1546. ],
  1547. "description": "Generates documentation for your REST API from annotations",
  1548. "keywords": [
  1549. "api",
  1550. "doc",
  1551. "documentation",
  1552. "rest"
  1553. ],
  1554. "time": "2014-07-30 09:11:08"
  1555. },
  1556. {
  1557. "name": "neutron/temporary-filesystem",
  1558. "version": "2.1.1",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  1562. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  1567. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "symfony/filesystem": "~2.0"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "~3.7"
  1575. },
  1576. "type": "library",
  1577. "autoload": {
  1578. "psr-0": {
  1579. "Neutron": "src"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Romain Neutron",
  1589. "email": "imprec@gmail.com",
  1590. "homepage": "http://www.lickmychip.com/"
  1591. }
  1592. ],
  1593. "description": "Symfony filesystem extension to handle temporary files",
  1594. "time": "2013-10-10 10:58:09"
  1595. },
  1596. {
  1597. "name": "php-ffmpeg/php-ffmpeg",
  1598. "version": "0.6.0",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  1602. "reference": "6e3134e4ecc96852b1205e6c88ceffdb8cf17d34"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/6e3134e4ecc96852b1205e6c88ceffdb8cf17d34",
  1607. "reference": "6e3134e4ecc96852b1205e6c88ceffdb8cf17d34",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "alchemy/binary-driver": "~1.5",
  1612. "doctrine/cache": "~1.0",
  1613. "evenement/evenement": "~1.0",
  1614. "neutron/temporary-filesystem": "~2.1, >=2.1.1",
  1615. "php": ">=5.3.3"
  1616. },
  1617. "require-dev": {
  1618. "phpunit/phpunit": "~3.7",
  1619. "sami/sami": "~1.0",
  1620. "silex/silex": "~1.0"
  1621. },
  1622. "suggest": {
  1623. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "0.5-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-0": {
  1633. "FFMpeg": "src"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Romain Neutron",
  1643. "email": "imprec@gmail.com",
  1644. "homepage": "http://www.lickmychip.com/"
  1645. },
  1646. {
  1647. "name": "Phraseanet Team",
  1648. "email": "info@alchemy.fr",
  1649. "homepage": "http://www.phraseanet.com/"
  1650. }
  1651. ],
  1652. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  1653. "keywords": [
  1654. "audio",
  1655. "audio processing",
  1656. "avconv",
  1657. "avprobe",
  1658. "ffmpeg",
  1659. "ffprobe",
  1660. "video",
  1661. "video processing"
  1662. ],
  1663. "time": "2015-01-30 19:07:38"
  1664. },
  1665. {
  1666. "name": "psr/log",
  1667. "version": "1.0.0",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/php-fig/log.git",
  1671. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1676. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1677. "shasum": ""
  1678. },
  1679. "type": "library",
  1680. "autoload": {
  1681. "psr-0": {
  1682. "Psr\\Log\\": ""
  1683. }
  1684. },
  1685. "notification-url": "https://packagist.org/downloads/",
  1686. "license": [
  1687. "MIT"
  1688. ],
  1689. "authors": [
  1690. {
  1691. "name": "PHP-FIG",
  1692. "homepage": "http://www.php-fig.org/"
  1693. }
  1694. ],
  1695. "description": "Common interface for logging libraries",
  1696. "keywords": [
  1697. "log",
  1698. "psr",
  1699. "psr-3"
  1700. ],
  1701. "time": "2012-12-21 11:40:51"
  1702. },
  1703. {
  1704. "name": "sabre/vobject",
  1705. "version": "3.4.2",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/fruux/sabre-vobject.git",
  1709. "reference": "0c90f60dae40137f1903c7b5915d3691c4fc99b0"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/fruux/sabre-vobject/zipball/0c90f60dae40137f1903c7b5915d3691c4fc99b0",
  1714. "reference": "0c90f60dae40137f1903c7b5915d3691c4fc99b0",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "ext-mbstring": "*",
  1719. "php": ">=5.3.1"
  1720. },
  1721. "require-dev": {
  1722. "phpunit/phpunit": "*",
  1723. "squizlabs/php_codesniffer": "*"
  1724. },
  1725. "bin": [
  1726. "bin/vobject",
  1727. "bin/generate_vcards"
  1728. ],
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-master": "3.2.x-dev"
  1733. }
  1734. },
  1735. "autoload": {
  1736. "psr-4": {
  1737. "Sabre\\VObject\\": "lib/"
  1738. }
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "BSD-3-Clause"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Evert Pot",
  1747. "email": "me@evertpot.com",
  1748. "homepage": "http://evertpot.com/",
  1749. "role": "Developer"
  1750. },
  1751. {
  1752. "name": "Dominik Tobschall",
  1753. "email": "dominik@fruux.com",
  1754. "homepage": "http://tobschall.de/",
  1755. "role": "Developer"
  1756. }
  1757. ],
  1758. "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
  1759. "homepage": "http://sabre.io/vobject/",
  1760. "keywords": [
  1761. "VObject",
  1762. "iCalendar",
  1763. "jCal",
  1764. "jCard",
  1765. "vCard"
  1766. ],
  1767. "time": "2015-02-25 17:47:50"
  1768. },
  1769. {
  1770. "name": "sensio/generator-bundle",
  1771. "version": "v2.5.2",
  1772. "target-dir": "Sensio/Bundle/GeneratorBundle",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  1776. "reference": "4b09746520a826a7bf34a466ba31c7d8740fef7e"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/4b09746520a826a7bf34a466ba31c7d8740fef7e",
  1781. "reference": "4b09746520a826a7bf34a466ba31c7d8740fef7e",
  1782. "shasum": ""
  1783. },
  1784. "require": {
  1785. "symfony/console": "~2.5",
  1786. "symfony/framework-bundle": "~2.2"
  1787. },
  1788. "require-dev": {
  1789. "doctrine/orm": "~2.2,>=2.2.3",
  1790. "symfony/doctrine-bridge": "~2.2",
  1791. "twig/twig": "~1.11"
  1792. },
  1793. "type": "symfony-bundle",
  1794. "extra": {
  1795. "branch-alias": {
  1796. "dev-master": "2.5.x-dev"
  1797. }
  1798. },
  1799. "autoload": {
  1800. "psr-0": {
  1801. "Sensio\\Bundle\\GeneratorBundle": ""
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "Fabien Potencier",
  1811. "email": "fabien@symfony.com"
  1812. }
  1813. ],
  1814. "description": "This bundle generates code for you",
  1815. "time": "2015-02-11 07:21:23"
  1816. },
  1817. {
  1818. "name": "sonata-project/admin-bundle",
  1819. "version": "2.3.1",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://github.com/sonata-project/SonataAdminBundle.git",
  1823. "reference": "1f08176f996a325e3bf5ccebeaf7c76be7f3d472"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://api.github.com/repos/sonata-project/SonataAdminBundle/zipball/1f08176f996a325e3bf5ccebeaf7c76be7f3d472",
  1828. "reference": "1f08176f996a325e3bf5ccebeaf7c76be7f3d472",
  1829. "shasum": ""
  1830. },
  1831. "require": {
  1832. "doctrine/common": "~2.2",
  1833. "knplabs/knp-menu": ">=1.1.0,<3.0.0",
  1834. "knplabs/knp-menu-bundle": ">=1.1.0,<3.0.0",
  1835. "sensio/generator-bundle": "~2.3",
  1836. "sonata-project/block-bundle": "~2.2,>=2.2.7",
  1837. "sonata-project/core-bundle": "~2.2",
  1838. "sonata-project/exporter": "~1.0",
  1839. "symfony/class-loader": "~2.3",
  1840. "symfony/config": "~2.3",
  1841. "symfony/console": "~2.3",
  1842. "symfony/form": "~2.3",
  1843. "symfony/http-foundation": "~2.3",
  1844. "symfony/routing": "~2.3",
  1845. "symfony/security-bundle": "~2.3",
  1846. "symfony/twig-bridge": "~2.3",
  1847. "symfony/validator": "~2.3",
  1848. "twig/extensions": "~1.0",
  1849. "twig/twig": "~1.15"
  1850. },
  1851. "require-dev": {
  1852. "jms/translation-bundle": "~1.1",
  1853. "sonata-project/intl-bundle": "~2.1",
  1854. "symfony/yaml": "~2.3"
  1855. },
  1856. "suggest": {
  1857. "jms/translation-bundle": "Extract message keys from Admins",
  1858. "sonata-project/intl-bundle": "Add localized date and number into the list"
  1859. },
  1860. "type": "symfony-bundle",
  1861. "extra": {
  1862. "branch-alias": {
  1863. "dev-master": "2.3.x-dev"
  1864. }
  1865. },
  1866. "autoload": {
  1867. "psr-4": {
  1868. "Sonata\\AdminBundle\\": ""
  1869. }
  1870. },
  1871. "notification-url": "https://packagist.org/downloads/",
  1872. "license": [
  1873. "MIT"
  1874. ],
  1875. "authors": [
  1876. {
  1877. "name": "Thomas Rabaix",
  1878. "email": "thomas.rabaix@sonata-project.org",
  1879. "homepage": "http://sonata-project.org"
  1880. },
  1881. {
  1882. "name": "Sonata Community",
  1883. "homepage": "https://github.com/sonata-project/SonataAdminBundle/contributors"
  1884. }
  1885. ],
  1886. "description": "Symfony SonataAdminBundle",
  1887. "homepage": "http://sonata-project.org/bundles/admin",
  1888. "keywords": [
  1889. "Admin Generator",
  1890. "admin",
  1891. "bootstrap",
  1892. "sonata"
  1893. ],
  1894. "time": "2015-01-05 10:15:28"
  1895. },
  1896. {
  1897. "name": "sonata-project/block-bundle",
  1898. "version": "2.2.13",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/sonata-project/SonataBlockBundle.git",
  1902. "reference": "ec47e5152ea9a2ea98cb284aa873d37edf903cd7"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/sonata-project/SonataBlockBundle/zipball/ec47e5152ea9a2ea98cb284aa873d37edf903cd7",
  1907. "reference": "ec47e5152ea9a2ea98cb284aa873d37edf903cd7",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "doctrine/common": "~2.3",
  1912. "sonata-project/cache": "~1.0",
  1913. "sonata-project/core-bundle": "~2.2",
  1914. "symfony/form": "~2.2",
  1915. "symfony/http-kernel": "~2.2"
  1916. },
  1917. "require-dev": {
  1918. "knplabs/knp-menu-bundle": "~2.0",
  1919. "sonata-project/admin-bundle": "~2.2"
  1920. },
  1921. "suggest": {
  1922. "knplabs/knp-menu-bundle": "~2.0",
  1923. "sonata-project/admin-bundle": "~2.2",
  1924. "sonata-project/cache-bundle": "~2.1"
  1925. },
  1926. "type": "symfony-bundle",
  1927. "extra": {
  1928. "branch-alias": {
  1929. "dev-master": "2.2.x-dev"
  1930. }
  1931. },
  1932. "autoload": {
  1933. "psr-4": {
  1934. "Sonata\\BlockBundle\\": ""
  1935. }
  1936. },
  1937. "notification-url": "https://packagist.org/downloads/",
  1938. "license": [
  1939. "MIT"
  1940. ],
  1941. "authors": [
  1942. {
  1943. "name": "Thomas Rabaix",
  1944. "email": "thomas.rabaix@sonata-project.org",
  1945. "homepage": "http://sonata-project.org"
  1946. },
  1947. {
  1948. "name": "Sonata Community",
  1949. "homepage": "https://github.com/sonata-project/SonataBlockBundle/contributors"
  1950. }
  1951. ],
  1952. "description": "Symfony SonataBlockBundle",
  1953. "homepage": "http://sonata-project.org/bundles/block",
  1954. "keywords": [
  1955. "block",
  1956. "sonata"
  1957. ],
  1958. "time": "2014-09-11 10:42:35"
  1959. },
  1960. {
  1961. "name": "sonata-project/cache",
  1962. "version": "1.0.4",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/sonata-project/cache.git",
  1966. "reference": "548b14c49474ed006543336d8f0be093089a3797"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/sonata-project/cache/zipball/548b14c49474ed006543336d8f0be093089a3797",
  1971. "reference": "548b14c49474ed006543336d8f0be093089a3797",
  1972. "shasum": ""
  1973. },
  1974. "require-dev": {
  1975. "doctrine/orm": "~2.2",
  1976. "doctrine/phpcr-odm": "~1.0",
  1977. "jackalope/jackalope-doctrine-dbal": "~1.0",
  1978. "predis/predis": "~0.8,<1.0",
  1979. "psr/log": "~1.0"
  1980. },
  1981. "suggest": {
  1982. "doctrine/orm": "ORM support",
  1983. "doctrine/phpcr-odm": "PHPCR ODM support",
  1984. "ext-apc": "Caching with ext/apc",
  1985. "ext-memcached": "Caching with ext/memcached",
  1986. "predis/predis": "Install redis php"
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "branch-alias": {
  1991. "dev-master": "1.x-dev"
  1992. }
  1993. },
  1994. "autoload": {
  1995. "psr-4": {
  1996. "Sonata\\Cache\\Tests\\": "test/",
  1997. "Sonata\\Cache\\": "lib/"
  1998. }
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "MIT"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Thomas Rabaix",
  2007. "email": "thomas.rabaix@gmail.com",
  2008. "homepage": "http://sonata-project.org/"
  2009. }
  2010. ],
  2011. "description": "Cache library",
  2012. "homepage": "https://github.com/sonata-project/cache",
  2013. "keywords": [
  2014. "cache",
  2015. "memcached",
  2016. "mongodb",
  2017. "redis"
  2018. ],
  2019. "time": "2014-07-02 20:57:41"
  2020. },
  2021. {
  2022. "name": "sonata-project/core-bundle",
  2023. "version": "2.3.0",
  2024. "source": {
  2025. "type": "git",
  2026. "url": "https://github.com/sonata-project/SonataCoreBundle.git",
  2027. "reference": "60bfa806faa332642a63215e3b6e3607c1e1b13e"
  2028. },
  2029. "dist": {
  2030. "type": "zip",
  2031. "url": "https://api.github.com/repos/sonata-project/SonataCoreBundle/zipball/60bfa806faa332642a63215e3b6e3607c1e1b13e",
  2032. "reference": "60bfa806faa332642a63215e3b6e3607c1e1b13e",
  2033. "shasum": ""
  2034. },
  2035. "require": {
  2036. "symfony/config": "~2.3",
  2037. "symfony/form": "~2.3",
  2038. "symfony/http-foundation": "~2.3",
  2039. "symfony/translation": "~2.3",
  2040. "twig/twig": "~1.16"
  2041. },
  2042. "require-dev": {
  2043. "doctrine/orm": "~2.4",
  2044. "doctrine/phpcr-odm": "~1.0",
  2045. "friendsofsymfony/rest-bundle": "~1.1",
  2046. "jackalope/jackalope-doctrine-dbal": "~1.0",
  2047. "jms/serializer-bundle": "~0.11",
  2048. "sensio/framework-extra-bundle": "~2.3",
  2049. "sonata-project/exporter": "~1.3"
  2050. },
  2051. "type": "symfony-bundle",
  2052. "extra": {
  2053. "branch-alias": {
  2054. "dev-master": "2.3.x-dev"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "psr-4": {
  2059. "Sonata\\CoreBundle\\": ""
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "Sonata Community",
  2069. "homepage": "https://github.com/sonata-project/SonataCoreBundle/contributors"
  2070. },
  2071. {
  2072. "name": "Thomas Rabaix",
  2073. "email": "thomas.rabaix@sonata-project.org"
  2074. }
  2075. ],
  2076. "description": "Symfony SonataCoreBundle",
  2077. "homepage": "http://sonata-project.org/bundles/core",
  2078. "keywords": [
  2079. "sonata"
  2080. ],
  2081. "time": "2014-09-09 23:58:27"
  2082. },
  2083. {
  2084. "name": "sonata-project/doctrine-extensions",
  2085. "version": "1.0.2",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/sonata-project/sonata-doctrine-extensions.git",
  2089. "reference": "4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/sonata-project/sonata-doctrine-extensions/zipball/4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f",
  2094. "reference": "4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "doctrine/dbal": "~2.2",
  2099. "php": ">=5.3.2"
  2100. },
  2101. "type": "library",
  2102. "autoload": {
  2103. "psr-4": {
  2104. "Sonata\\Doctrine\\": "src/",
  2105. "Sonata\\Doctrine\\Tests\\": "tests/"
  2106. }
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "MIT"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "Thomas Rabaix",
  2115. "email": "thomas.rabaix@sonata-project.org",
  2116. "homepage": "http://sonata-project.org"
  2117. },
  2118. {
  2119. "name": "Sonata Community",
  2120. "homepage": "https://github.com/sonata-project/sonata-doctrine-extensions/contributors"
  2121. }
  2122. ],
  2123. "description": "Doctrine2 behavioral extensions",
  2124. "homepage": "https://github.com/sonata-project/sonata-doctrine-extensions",
  2125. "keywords": [
  2126. "doctrine",
  2127. "doctrine2",
  2128. "json"
  2129. ],
  2130. "time": "2014-02-14 12:45:49"
  2131. },
  2132. {
  2133. "name": "sonata-project/easy-extends-bundle",
  2134. "version": "2.1.9",
  2135. "source": {
  2136. "type": "git",
  2137. "url": "https://github.com/sonata-project/SonataEasyExtendsBundle.git",
  2138. "reference": "fb8c1335e3fcf4791fffd13d63b80741445c5665"
  2139. },
  2140. "dist": {
  2141. "type": "zip",
  2142. "url": "https://api.github.com/repos/sonata-project/SonataEasyExtendsBundle/zipball/fb8c1335e3fcf4791fffd13d63b80741445c5665",
  2143. "reference": "fb8c1335e3fcf4791fffd13d63b80741445c5665",
  2144. "shasum": ""
  2145. },
  2146. "require": {
  2147. "php": ">=5.3.2",
  2148. "symfony/console": "~2",
  2149. "symfony/finder": "~2",
  2150. "symfony/framework-bundle": "~2"
  2151. },
  2152. "require-dev": {
  2153. "doctrine/orm": "~2"
  2154. },
  2155. "type": "symfony-bundle",
  2156. "extra": {
  2157. "branch-alias": {
  2158. "dev-master": "2.1.x-dev"
  2159. }
  2160. },
  2161. "autoload": {
  2162. "psr-4": {
  2163. "Sonata\\EasyExtendsBundle\\": ""
  2164. }
  2165. },
  2166. "notification-url": "https://packagist.org/downloads/",
  2167. "license": [
  2168. "MIT"
  2169. ],
  2170. "authors": [
  2171. {
  2172. "name": "Thomas Rabaix",
  2173. "email": "thomas.rabaix@sonata-project.org",
  2174. "homepage": "http://sonata-project.org"
  2175. },
  2176. {
  2177. "name": "Sonata Community",
  2178. "homepage": "https://github.com/sonata-project/SonataEasyExtendsBundle/contributors"
  2179. }
  2180. ],
  2181. "description": "Symfony SonataEasyExtendsBundle",
  2182. "homepage": "http://sonata-project.org/bundles/easy-extends",
  2183. "keywords": [
  2184. "Easy Extends",
  2185. "sonata"
  2186. ],
  2187. "time": "2014-09-29 09:36:23"
  2188. },
  2189. {
  2190. "name": "sonata-project/exporter",
  2191. "version": "1.3.4",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "https://github.com/sonata-project/exporter.git",
  2195. "reference": "8a88328ccdd1ca1471dd14483a4396350fbda91c"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://api.github.com/repos/sonata-project/exporter/zipball/8a88328ccdd1ca1471dd14483a4396350fbda91c",
  2200. "reference": "8a88328ccdd1ca1471dd14483a4396350fbda91c",
  2201. "shasum": ""
  2202. },
  2203. "require": {
  2204. "php": ">=5.3.0"
  2205. },
  2206. "require-dev": {
  2207. "propel/propel1": "~1.6",
  2208. "symfony/property-access": "~2.2",
  2209. "symfony/routing": "*"
  2210. },
  2211. "suggest": {
  2212. "ext-curl": "*",
  2213. "propel/propel1": "~1.6",
  2214. "symfony/property-access": "~2.2",
  2215. "symfony/routing": "*"
  2216. },
  2217. "type": "library",
  2218. "extra": {
  2219. "branch-alias": {
  2220. "dev-master": "1-dev"
  2221. }
  2222. },
  2223. "autoload": {
  2224. "psr-0": {
  2225. "Exporter": "lib/"
  2226. }
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "MIT"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "Thomas Rabaix",
  2235. "email": "thomas.rabaix@gmail.com",
  2236. "homepage": "http://sonata-project.org/"
  2237. }
  2238. ],
  2239. "description": "Lightweight Exporter library",
  2240. "homepage": "https://github.com/sonata-project/Exporter",
  2241. "keywords": [
  2242. "client",
  2243. "csv",
  2244. "data",
  2245. "export",
  2246. "xls"
  2247. ],
  2248. "time": "2014-09-11 09:05:40"
  2249. },
  2250. {
  2251. "name": "sonata-project/google-authenticator",
  2252. "version": "1.0.2",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/sonata-project/GoogleAuthenticator.git",
  2256. "reference": "72f47caddd09d09c0d3c3e046f6b435e0c004cd4"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/sonata-project/GoogleAuthenticator/zipball/72f47caddd09d09c0d3c3e046f6b435e0c004cd4",
  2261. "reference": "72f47caddd09d09c0d3c3e046f6b435e0c004cd4",
  2262. "shasum": ""
  2263. },
  2264. "require": {
  2265. "php": ">=5.3.0"
  2266. },
  2267. "type": "library",
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Google\\Authenticator\\": "lib/",
  2271. "Google\\Authenticator\\Tests\\": "tests/"
  2272. }
  2273. },
  2274. "notification-url": "https://packagist.org/downloads/",
  2275. "license": [
  2276. "MIT"
  2277. ],
  2278. "authors": [
  2279. {
  2280. "name": "Thomas Rabaix",
  2281. "email": "thomas.rabaix@gmail.com",
  2282. "homepage": "http://sonata-project.org/"
  2283. },
  2284. {
  2285. "name": "Christian Stocker",
  2286. "email": "me@chregu.tv"
  2287. },
  2288. {
  2289. "name": "Andre DeMarre",
  2290. "homepage": "http://www.devnetwork.net/viewtopic.php?f=50&t=94989"
  2291. }
  2292. ],
  2293. "description": "Library to integrate Google Authenticator into a PHP project",
  2294. "homepage": "https://github.com/sonata-project/GoogleAuthenticator",
  2295. "keywords": [
  2296. "google authenticator"
  2297. ],
  2298. "time": "2014-03-31 09:18:53"
  2299. },
  2300. {
  2301. "name": "sonata-project/user-bundle",
  2302. "version": "2.2.4",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/sonata-project/SonataUserBundle.git",
  2306. "reference": "993518c08cce9adcfd0a61c536b924279c978cc3"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/sonata-project/SonataUserBundle/zipball/993518c08cce9adcfd0a61c536b924279c978cc3",
  2311. "reference": "993518c08cce9adcfd0a61c536b924279c978cc3",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "friendsofsymfony/rest-bundle": "~1.1",
  2316. "friendsofsymfony/user-bundle": "~1.3",
  2317. "nelmio/api-doc-bundle": "~2.4",
  2318. "sonata-project/admin-bundle": "~2.2,>=2.2.9",
  2319. "sonata-project/core-bundle": "~2.2",
  2320. "sonata-project/doctrine-extensions": "~1.0",
  2321. "sonata-project/easy-extends-bundle": "~2.1",
  2322. "sonata-project/google-authenticator": "~1.0",
  2323. "symfony/console": "~2.2",
  2324. "symfony/form": "~2.2",
  2325. "symfony/http-foundation": "~2.2",
  2326. "symfony/security": "~2.2"
  2327. },
  2328. "require-dev": {
  2329. "sonata-project/seo-bundle": "~1.1"
  2330. },
  2331. "suggest": {
  2332. "sonata-project/doctrine-orm-admin-bundle": "~2.2",
  2333. "sonata-project/seo-bundle": "~1.1"
  2334. },
  2335. "type": "symfony-bundle",
  2336. "extra": {
  2337. "branch-alias": {
  2338. "dev-master": "2.2.x-dev"
  2339. }
  2340. },
  2341. "autoload": {
  2342. "psr-4": {
  2343. "Sonata\\UserBundle\\": ""
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "MIT"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "Thomas Rabaix",
  2353. "email": "thomas.rabaix@sonata-project.org",
  2354. "homepage": "http://sonata-project.org"
  2355. },
  2356. {
  2357. "name": "Sonata Community",
  2358. "homepage": "https://github.com/sonata-project/SonataUserBundle/contributors"
  2359. }
  2360. ],
  2361. "description": "Symfony SonataUserBundle",
  2362. "homepage": "http://sonata-project.org/bundles/user",
  2363. "keywords": [
  2364. "google authenticator",
  2365. "sonata",
  2366. "user"
  2367. ],
  2368. "time": "2014-02-14 14:56:14"
  2369. },
  2370. {
  2371. "name": "symfony/class-loader",
  2372. "version": "v2.6.4",
  2373. "target-dir": "Symfony/Component/ClassLoader",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://github.com/symfony/ClassLoader.git",
  2377. "reference": "deac802f76910708ab50d039806cfd1866895b52"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://api.github.com/repos/symfony/ClassLoader/zipball/deac802f76910708ab50d039806cfd1866895b52",
  2382. "reference": "deac802f76910708ab50d039806cfd1866895b52",
  2383. "shasum": ""
  2384. },
  2385. "require": {
  2386. "php": ">=5.3.3"
  2387. },
  2388. "require-dev": {
  2389. "symfony/finder": "~2.0,>=2.0.5"
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "2.6-dev"
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-0": {
  2399. "Symfony\\Component\\ClassLoader\\": ""
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Symfony Community",
  2409. "homepage": "http://symfony.com/contributors"
  2410. },
  2411. {
  2412. "name": "Fabien Potencier",
  2413. "email": "fabien@symfony.com"
  2414. }
  2415. ],
  2416. "description": "Symfony ClassLoader Component",
  2417. "homepage": "http://symfony.com",
  2418. "time": "2015-01-05 14:28:40"
  2419. },
  2420. {
  2421. "name": "symfony/config",
  2422. "version": "v2.6.4",
  2423. "target-dir": "Symfony/Component/Config",
  2424. "source": {
  2425. "type": "git",
  2426. "url": "https://github.com/symfony/Config.git",
  2427. "reference": "a9f781ba1221067d1f07c8cec0bc50f81b8d7408"
  2428. },
  2429. "dist": {
  2430. "type": "zip",
  2431. "url": "https://api.github.com/repos/symfony/Config/zipball/a9f781ba1221067d1f07c8cec0bc50f81b8d7408",
  2432. "reference": "a9f781ba1221067d1f07c8cec0bc50f81b8d7408",
  2433. "shasum": ""
  2434. },
  2435. "require": {
  2436. "php": ">=5.3.3",
  2437. "symfony/filesystem": "~2.3"
  2438. },
  2439. "type": "library",
  2440. "extra": {
  2441. "branch-alias": {
  2442. "dev-master": "2.6-dev"
  2443. }
  2444. },
  2445. "autoload": {
  2446. "psr-0": {
  2447. "Symfony\\Component\\Config\\": ""
  2448. }
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Symfony Community",
  2457. "homepage": "http://symfony.com/contributors"
  2458. },
  2459. {
  2460. "name": "Fabien Potencier",
  2461. "email": "fabien@symfony.com"
  2462. }
  2463. ],
  2464. "description": "Symfony Config Component",
  2465. "homepage": "http://symfony.com",
  2466. "time": "2015-01-21 20:57:55"
  2467. },
  2468. {
  2469. "name": "symfony/console",
  2470. "version": "v2.6.4",
  2471. "target-dir": "Symfony/Component/Console",
  2472. "source": {
  2473. "type": "git",
  2474. "url": "https://github.com/symfony/Console.git",
  2475. "reference": "e44154bfe3e41e8267d7a3794cd9da9a51cfac34"
  2476. },
  2477. "dist": {
  2478. "type": "zip",
  2479. "url": "https://api.github.com/repos/symfony/Console/zipball/e44154bfe3e41e8267d7a3794cd9da9a51cfac34",
  2480. "reference": "e44154bfe3e41e8267d7a3794cd9da9a51cfac34",
  2481. "shasum": ""
  2482. },
  2483. "require": {
  2484. "php": ">=5.3.3"
  2485. },
  2486. "require-dev": {
  2487. "psr/log": "~1.0",
  2488. "symfony/event-dispatcher": "~2.1",
  2489. "symfony/process": "~2.1"
  2490. },
  2491. "suggest": {
  2492. "psr/log": "For using the console logger",
  2493. "symfony/event-dispatcher": "",
  2494. "symfony/process": ""
  2495. },
  2496. "type": "library",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-master": "2.6-dev"
  2500. }
  2501. },
  2502. "autoload": {
  2503. "psr-0": {
  2504. "Symfony\\Component\\Console\\": ""
  2505. }
  2506. },
  2507. "notification-url": "https://packagist.org/downloads/",
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "Symfony Community",
  2514. "homepage": "http://symfony.com/contributors"
  2515. },
  2516. {
  2517. "name": "Fabien Potencier",
  2518. "email": "fabien@symfony.com"
  2519. }
  2520. ],
  2521. "description": "Symfony Console Component",
  2522. "homepage": "http://symfony.com",
  2523. "time": "2015-01-25 04:39:26"
  2524. },
  2525. {
  2526. "name": "symfony/debug",
  2527. "version": "v2.6.4",
  2528. "target-dir": "Symfony/Component/Debug",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/symfony/Debug.git",
  2532. "reference": "150c80059c3ccf68f96a4fceb513eb6b41f23300"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/symfony/Debug/zipball/150c80059c3ccf68f96a4fceb513eb6b41f23300",
  2537. "reference": "150c80059c3ccf68f96a4fceb513eb6b41f23300",
  2538. "shasum": ""
  2539. },
  2540. "require": {
  2541. "php": ">=5.3.3",
  2542. "psr/log": "~1.0"
  2543. },
  2544. "conflict": {
  2545. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2546. },
  2547. "require-dev": {
  2548. "symfony/class-loader": "~2.2",
  2549. "symfony/http-foundation": "~2.1",
  2550. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2"
  2551. },
  2552. "suggest": {
  2553. "symfony/http-foundation": "",
  2554. "symfony/http-kernel": ""
  2555. },
  2556. "type": "library",
  2557. "extra": {
  2558. "branch-alias": {
  2559. "dev-master": "2.6-dev"
  2560. }
  2561. },
  2562. "autoload": {
  2563. "psr-0": {
  2564. "Symfony\\Component\\Debug\\": ""
  2565. }
  2566. },
  2567. "notification-url": "https://packagist.org/downloads/",
  2568. "license": [
  2569. "MIT"
  2570. ],
  2571. "authors": [
  2572. {
  2573. "name": "Symfony Community",
  2574. "homepage": "http://symfony.com/contributors"
  2575. },
  2576. {
  2577. "name": "Fabien Potencier",
  2578. "email": "fabien@symfony.com"
  2579. }
  2580. ],
  2581. "description": "Symfony Debug Component",
  2582. "homepage": "http://symfony.com",
  2583. "time": "2015-01-21 20:57:55"
  2584. },
  2585. {
  2586. "name": "symfony/dependency-injection",
  2587. "version": "v2.6.4",
  2588. "target-dir": "Symfony/Component/DependencyInjection",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/symfony/DependencyInjection.git",
  2592. "reference": "42bbb43fab66292a1865dc9616c299904c3d4d14"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/42bbb43fab66292a1865dc9616c299904c3d4d14",
  2597. "reference": "42bbb43fab66292a1865dc9616c299904c3d4d14",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "php": ">=5.3.3"
  2602. },
  2603. "conflict": {
  2604. "symfony/expression-language": "<2.6"
  2605. },
  2606. "require-dev": {
  2607. "symfony/config": "~2.2",
  2608. "symfony/expression-language": "~2.6",
  2609. "symfony/yaml": "~2.1"
  2610. },
  2611. "suggest": {
  2612. "symfony/config": "",
  2613. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2614. "symfony/yaml": ""
  2615. },
  2616. "type": "library",
  2617. "extra": {
  2618. "branch-alias": {
  2619. "dev-master": "2.6-dev"
  2620. }
  2621. },
  2622. "autoload": {
  2623. "psr-0": {
  2624. "Symfony\\Component\\DependencyInjection\\": ""
  2625. }
  2626. },
  2627. "notification-url": "https://packagist.org/downloads/",
  2628. "license": [
  2629. "MIT"
  2630. ],
  2631. "authors": [
  2632. {
  2633. "name": "Symfony Community",
  2634. "homepage": "http://symfony.com/contributors"
  2635. },
  2636. {
  2637. "name": "Fabien Potencier",
  2638. "email": "fabien@symfony.com"
  2639. }
  2640. ],
  2641. "description": "Symfony DependencyInjection Component",
  2642. "homepage": "http://symfony.com",
  2643. "time": "2015-01-25 04:39:26"
  2644. },
  2645. {
  2646. "name": "symfony/doctrine-bridge",
  2647. "version": "v2.6.4",
  2648. "target-dir": "Symfony/Bridge/Doctrine",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/symfony/DoctrineBridge.git",
  2652. "reference": "5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d",
  2657. "reference": "5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "doctrine/common": "~2.3",
  2662. "php": ">=5.3.3"
  2663. },
  2664. "require-dev": {
  2665. "doctrine/data-fixtures": "1.0.*",
  2666. "doctrine/dbal": "~2.2",
  2667. "doctrine/orm": "~2.2,>=2.2.3",
  2668. "symfony/dependency-injection": "~2.2",
  2669. "symfony/expression-language": "~2.2",
  2670. "symfony/form": "~2.3,>=2.3.8",
  2671. "symfony/http-kernel": "~2.2",
  2672. "symfony/property-access": "~2.3",
  2673. "symfony/security": "~2.2",
  2674. "symfony/stopwatch": "~2.2",
  2675. "symfony/translation": "~2.0,>=2.0.5",
  2676. "symfony/validator": "~2.5,>=2.5.5"
  2677. },
  2678. "suggest": {
  2679. "doctrine/data-fixtures": "",
  2680. "doctrine/dbal": "",
  2681. "doctrine/orm": "",
  2682. "symfony/form": "",
  2683. "symfony/validator": ""
  2684. },
  2685. "type": "symfony-bridge",
  2686. "extra": {
  2687. "branch-alias": {
  2688. "dev-master": "2.6-dev"
  2689. }
  2690. },
  2691. "autoload": {
  2692. "psr-0": {
  2693. "Symfony\\Bridge\\Doctrine\\": ""
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "MIT"
  2699. ],
  2700. "authors": [
  2701. {
  2702. "name": "Symfony Community",
  2703. "homepage": "http://symfony.com/contributors"
  2704. },
  2705. {
  2706. "name": "Fabien Potencier",
  2707. "email": "fabien@symfony.com"
  2708. }
  2709. ],
  2710. "description": "Symfony Doctrine Bridge",
  2711. "homepage": "http://symfony.com",
  2712. "time": "2015-02-01 16:10:57"
  2713. },
  2714. {
  2715. "name": "symfony/event-dispatcher",
  2716. "version": "v2.6.4",
  2717. "target-dir": "Symfony/Component/EventDispatcher",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://github.com/symfony/EventDispatcher.git",
  2721. "reference": "f75989f3ab2743a82fe0b03ded2598a2b1546813"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/f75989f3ab2743a82fe0b03ded2598a2b1546813",
  2726. "reference": "f75989f3ab2743a82fe0b03ded2598a2b1546813",
  2727. "shasum": ""
  2728. },
  2729. "require": {
  2730. "php": ">=5.3.3"
  2731. },
  2732. "require-dev": {
  2733. "psr/log": "~1.0",
  2734. "symfony/config": "~2.0,>=2.0.5",
  2735. "symfony/dependency-injection": "~2.6",
  2736. "symfony/expression-language": "~2.6",
  2737. "symfony/stopwatch": "~2.3"
  2738. },
  2739. "suggest": {
  2740. "symfony/dependency-injection": "",
  2741. "symfony/http-kernel": ""
  2742. },
  2743. "type": "library",
  2744. "extra": {
  2745. "branch-alias": {
  2746. "dev-master": "2.6-dev"
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-0": {
  2751. "Symfony\\Component\\EventDispatcher\\": ""
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Symfony Community",
  2761. "homepage": "http://symfony.com/contributors"
  2762. },
  2763. {
  2764. "name": "Fabien Potencier",
  2765. "email": "fabien@symfony.com"
  2766. }
  2767. ],
  2768. "description": "Symfony EventDispatcher Component",
  2769. "homepage": "http://symfony.com",
  2770. "time": "2015-02-01 16:10:57"
  2771. },
  2772. {
  2773. "name": "symfony/filesystem",
  2774. "version": "v2.6.4",
  2775. "target-dir": "Symfony/Component/Filesystem",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/symfony/Filesystem.git",
  2779. "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/symfony/Filesystem/zipball/a1f566d1f92e142fa1593f4555d6d89e3044a9b7",
  2784. "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "php": ">=5.3.3"
  2789. },
  2790. "type": "library",
  2791. "extra": {
  2792. "branch-alias": {
  2793. "dev-master": "2.6-dev"
  2794. }
  2795. },
  2796. "autoload": {
  2797. "psr-0": {
  2798. "Symfony\\Component\\Filesystem\\": ""
  2799. }
  2800. },
  2801. "notification-url": "https://packagist.org/downloads/",
  2802. "license": [
  2803. "MIT"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "Symfony Community",
  2808. "homepage": "http://symfony.com/contributors"
  2809. },
  2810. {
  2811. "name": "Fabien Potencier",
  2812. "email": "fabien@symfony.com"
  2813. }
  2814. ],
  2815. "description": "Symfony Filesystem Component",
  2816. "homepage": "http://symfony.com",
  2817. "time": "2015-01-03 21:13:09"
  2818. },
  2819. {
  2820. "name": "symfony/finder",
  2821. "version": "v2.6.4",
  2822. "target-dir": "Symfony/Component/Finder",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/symfony/Finder.git",
  2826. "reference": "16513333bca64186c01609961a2bb1b95b5e1355"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/symfony/Finder/zipball/16513333bca64186c01609961a2bb1b95b5e1355",
  2831. "reference": "16513333bca64186c01609961a2bb1b95b5e1355",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "php": ">=5.3.3"
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "branch-alias": {
  2840. "dev-master": "2.6-dev"
  2841. }
  2842. },
  2843. "autoload": {
  2844. "psr-0": {
  2845. "Symfony\\Component\\Finder\\": ""
  2846. }
  2847. },
  2848. "notification-url": "https://packagist.org/downloads/",
  2849. "license": [
  2850. "MIT"
  2851. ],
  2852. "authors": [
  2853. {
  2854. "name": "Symfony Community",
  2855. "homepage": "http://symfony.com/contributors"
  2856. },
  2857. {
  2858. "name": "Fabien Potencier",
  2859. "email": "fabien@symfony.com"
  2860. }
  2861. ],
  2862. "description": "Symfony Finder Component",
  2863. "homepage": "http://symfony.com",
  2864. "time": "2015-01-03 08:01:59"
  2865. },
  2866. {
  2867. "name": "symfony/form",
  2868. "version": "v2.6.4",
  2869. "target-dir": "Symfony/Component/Form",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/symfony/Form.git",
  2873. "reference": "4158baad5dca9cdea1b10a721ee2d8ea0233cbee"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/symfony/Form/zipball/4158baad5dca9cdea1b10a721ee2d8ea0233cbee",
  2878. "reference": "4158baad5dca9cdea1b10a721ee2d8ea0233cbee",
  2879. "shasum": ""
  2880. },
  2881. "require": {
  2882. "php": ">=5.3.3",
  2883. "symfony/event-dispatcher": "~2.1",
  2884. "symfony/intl": "~2.3",
  2885. "symfony/options-resolver": "~2.6",
  2886. "symfony/property-access": "~2.3"
  2887. },
  2888. "require-dev": {
  2889. "doctrine/collections": "~1.0",
  2890. "symfony/http-foundation": "~2.2",
  2891. "symfony/http-kernel": "~2.4",
  2892. "symfony/security-csrf": "~2.4",
  2893. "symfony/translation": "~2.0,>=2.0.5",
  2894. "symfony/validator": "~2.6"
  2895. },
  2896. "suggest": {
  2897. "symfony/framework-bundle": "For templating with PHP.",
  2898. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  2899. "symfony/twig-bridge": "For templating with Twig.",
  2900. "symfony/validator": "For form validation."
  2901. },
  2902. "type": "library",
  2903. "extra": {
  2904. "branch-alias": {
  2905. "dev-master": "2.6-dev"
  2906. }
  2907. },
  2908. "autoload": {
  2909. "psr-0": {
  2910. "Symfony\\Component\\Form\\": ""
  2911. }
  2912. },
  2913. "notification-url": "https://packagist.org/downloads/",
  2914. "license": [
  2915. "MIT"
  2916. ],
  2917. "authors": [
  2918. {
  2919. "name": "Symfony Community",
  2920. "homepage": "http://symfony.com/contributors"
  2921. },
  2922. {
  2923. "name": "Fabien Potencier",
  2924. "email": "fabien@symfony.com"
  2925. }
  2926. ],
  2927. "description": "Symfony Form Component",
  2928. "homepage": "http://symfony.com",
  2929. "time": "2015-01-25 03:35:46"
  2930. },
  2931. {
  2932. "name": "symfony/framework-bundle",
  2933. "version": "v2.6.4",
  2934. "target-dir": "Symfony/Bundle/FrameworkBundle",
  2935. "source": {
  2936. "type": "git",
  2937. "url": "https://github.com/symfony/FrameworkBundle.git",
  2938. "reference": "91c0ab8cc6307953a38b8d543eed63b1693bf5c5"
  2939. },
  2940. "dist": {
  2941. "type": "zip",
  2942. "url": "https://api.github.com/repos/symfony/FrameworkBundle/zipball/91c0ab8cc6307953a38b8d543eed63b1693bf5c5",
  2943. "reference": "91c0ab8cc6307953a38b8d543eed63b1693bf5c5",
  2944. "shasum": ""
  2945. },
  2946. "require": {
  2947. "doctrine/annotations": "~1.0",
  2948. "php": ">=5.3.3",
  2949. "symfony/config": "~2.4",
  2950. "symfony/dependency-injection": "~2.6,>=2.6.2",
  2951. "symfony/event-dispatcher": "~2.5",
  2952. "symfony/filesystem": "~2.3",
  2953. "symfony/http-foundation": "~2.4.9|~2.5,>=2.5.4",
  2954. "symfony/http-kernel": "~2.6",
  2955. "symfony/routing": "~2.2",
  2956. "symfony/security-core": "~2.6",
  2957. "symfony/security-csrf": "~2.6",
  2958. "symfony/stopwatch": "~2.3",
  2959. "symfony/templating": "~2.1",
  2960. "symfony/translation": "~2.6"
  2961. },
  2962. "require-dev": {
  2963. "symfony/browser-kit": "~2.4",
  2964. "symfony/class-loader": "~2.1",
  2965. "symfony/console": "~2.5,>=2.5.2",
  2966. "symfony/css-selector": "~2.0,>=2.0.5",
  2967. "symfony/dom-crawler": "~2.0,>=2.0.5",
  2968. "symfony/expression-language": "~2.6",
  2969. "symfony/finder": "~2.0,>=2.0.5",
  2970. "symfony/form": "~2.6",
  2971. "symfony/intl": "~2.3",
  2972. "symfony/process": "~2.0,>=2.0.5",
  2973. "symfony/security": "~2.6",
  2974. "symfony/validator": "~2.5",
  2975. "symfony/yaml": "~2.0,>=2.0.5"
  2976. },
  2977. "suggest": {
  2978. "doctrine/cache": "For using alternative cache drivers",
  2979. "symfony/console": "For using the console commands",
  2980. "symfony/finder": "For using the translation loader and cache warmer",
  2981. "symfony/form": "For using forms",
  2982. "symfony/validator": "For using validation",
  2983. "symfony/yaml": "For using the debug:config and yaml:lint commands"
  2984. },
  2985. "type": "symfony-bundle",
  2986. "extra": {
  2987. "branch-alias": {
  2988. "dev-master": "2.6-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-0": {
  2993. "Symfony\\Bundle\\FrameworkBundle\\": ""
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "Symfony Community",
  3003. "homepage": "http://symfony.com/contributors"
  3004. },
  3005. {
  3006. "name": "Fabien Potencier",
  3007. "email": "fabien@symfony.com"
  3008. }
  3009. ],
  3010. "description": "Symfony FrameworkBundle",
  3011. "homepage": "http://symfony.com",
  3012. "time": "2015-02-01 16:10:57"
  3013. },
  3014. {
  3015. "name": "symfony/http-foundation",
  3016. "version": "v2.6.4",
  3017. "target-dir": "Symfony/Component/HttpFoundation",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/symfony/HttpFoundation.git",
  3021. "reference": "8fa63d614d56ccfe033e30411d90913cfc483ff6"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/8fa63d614d56ccfe033e30411d90913cfc483ff6",
  3026. "reference": "8fa63d614d56ccfe033e30411d90913cfc483ff6",
  3027. "shasum": ""
  3028. },
  3029. "require": {
  3030. "php": ">=5.3.3"
  3031. },
  3032. "require-dev": {
  3033. "symfony/expression-language": "~2.4"
  3034. },
  3035. "type": "library",
  3036. "extra": {
  3037. "branch-alias": {
  3038. "dev-master": "2.6-dev"
  3039. }
  3040. },
  3041. "autoload": {
  3042. "psr-0": {
  3043. "Symfony\\Component\\HttpFoundation\\": ""
  3044. },
  3045. "classmap": [
  3046. "Symfony/Component/HttpFoundation/Resources/stubs"
  3047. ]
  3048. },
  3049. "notification-url": "https://packagist.org/downloads/",
  3050. "license": [
  3051. "MIT"
  3052. ],
  3053. "authors": [
  3054. {
  3055. "name": "Symfony Community",
  3056. "homepage": "http://symfony.com/contributors"
  3057. },
  3058. {
  3059. "name": "Fabien Potencier",
  3060. "email": "fabien@symfony.com"
  3061. }
  3062. ],
  3063. "description": "Symfony HttpFoundation Component",
  3064. "homepage": "http://symfony.com",
  3065. "time": "2015-02-01 16:10:57"
  3066. },
  3067. {
  3068. "name": "symfony/http-kernel",
  3069. "version": "v2.6.4",
  3070. "target-dir": "Symfony/Component/HttpKernel",
  3071. "source": {
  3072. "type": "git",
  3073. "url": "https://github.com/symfony/HttpKernel.git",
  3074. "reference": "27abf3106d8bd08562070dd4e2438c279792c434"
  3075. },
  3076. "dist": {
  3077. "type": "zip",
  3078. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/27abf3106d8bd08562070dd4e2438c279792c434",
  3079. "reference": "27abf3106d8bd08562070dd4e2438c279792c434",
  3080. "shasum": ""
  3081. },
  3082. "require": {
  3083. "php": ">=5.3.3",
  3084. "psr/log": "~1.0",
  3085. "symfony/debug": "~2.6,>=2.6.2",
  3086. "symfony/event-dispatcher": "~2.5.9|~2.6,>=2.6.2",
  3087. "symfony/http-foundation": "~2.5,>=2.5.4"
  3088. },
  3089. "require-dev": {
  3090. "symfony/browser-kit": "~2.3",
  3091. "symfony/class-loader": "~2.1",
  3092. "symfony/config": "~2.0,>=2.0.5",
  3093. "symfony/console": "~2.3",
  3094. "symfony/css-selector": "~2.0,>=2.0.5",
  3095. "symfony/dependency-injection": "~2.2",
  3096. "symfony/dom-crawler": "~2.0,>=2.0.5",
  3097. "symfony/expression-language": "~2.4",
  3098. "symfony/finder": "~2.0,>=2.0.5",
  3099. "symfony/process": "~2.0,>=2.0.5",
  3100. "symfony/routing": "~2.2",
  3101. "symfony/stopwatch": "~2.3",
  3102. "symfony/templating": "~2.2",
  3103. "symfony/translation": "~2.0,>=2.0.5",
  3104. "symfony/var-dumper": "~2.6"
  3105. },
  3106. "suggest": {
  3107. "symfony/browser-kit": "",
  3108. "symfony/class-loader": "",
  3109. "symfony/config": "",
  3110. "symfony/console": "",
  3111. "symfony/dependency-injection": "",
  3112. "symfony/finder": "",
  3113. "symfony/var-dumper": ""
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "branch-alias": {
  3118. "dev-master": "2.6-dev"
  3119. }
  3120. },
  3121. "autoload": {
  3122. "psr-0": {
  3123. "Symfony\\Component\\HttpKernel\\": ""
  3124. }
  3125. },
  3126. "notification-url": "https://packagist.org/downloads/",
  3127. "license": [
  3128. "MIT"
  3129. ],
  3130. "authors": [
  3131. {
  3132. "name": "Symfony Community",
  3133. "homepage": "http://symfony.com/contributors"
  3134. },
  3135. {
  3136. "name": "Fabien Potencier",
  3137. "email": "fabien@symfony.com"
  3138. }
  3139. ],
  3140. "description": "Symfony HttpKernel Component",
  3141. "homepage": "http://symfony.com",
  3142. "time": "2015-02-02 18:02:30"
  3143. },
  3144. {
  3145. "name": "symfony/intl",
  3146. "version": "v2.6.4",
  3147. "target-dir": "Symfony/Component/Intl",
  3148. "source": {
  3149. "type": "git",
  3150. "url": "https://github.com/symfony/Intl.git",
  3151. "reference": "59b04458fa72b260f3bd3d889a8fcd7d330a9cf9"
  3152. },
  3153. "dist": {
  3154. "type": "zip",
  3155. "url": "https://api.github.com/repos/symfony/Intl/zipball/59b04458fa72b260f3bd3d889a8fcd7d330a9cf9",
  3156. "reference": "59b04458fa72b260f3bd3d889a8fcd7d330a9cf9",
  3157. "shasum": ""
  3158. },
  3159. "require": {
  3160. "php": ">=5.3.3"
  3161. },
  3162. "require-dev": {
  3163. "symfony/filesystem": ">=2.1"
  3164. },
  3165. "suggest": {
  3166. "ext-intl": "to use the component with locales other than \"en\""
  3167. },
  3168. "type": "library",
  3169. "extra": {
  3170. "branch-alias": {
  3171. "dev-master": "2.6-dev"
  3172. }
  3173. },
  3174. "autoload": {
  3175. "psr-0": {
  3176. "Symfony\\Component\\Intl\\": ""
  3177. },
  3178. "classmap": [
  3179. "Symfony/Component/Intl/Resources/stubs"
  3180. ],
  3181. "files": [
  3182. "Symfony/Component/Intl/Resources/stubs/functions.php"
  3183. ]
  3184. },
  3185. "notification-url": "https://packagist.org/downloads/",
  3186. "license": [
  3187. "MIT"
  3188. ],
  3189. "authors": [
  3190. {
  3191. "name": "Symfony Community",
  3192. "homepage": "http://symfony.com/contributors"
  3193. },
  3194. {
  3195. "name": "Bernhard Schussek",
  3196. "email": "bschussek@gmail.com"
  3197. },
  3198. {
  3199. "name": "Eriksen Costa",
  3200. "email": "eriksen.costa@infranology.com.br"
  3201. },
  3202. {
  3203. "name": "Igor Wiedler",
  3204. "email": "igor@wiedler.ch"
  3205. }
  3206. ],
  3207. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  3208. "homepage": "http://symfony.com",
  3209. "keywords": [
  3210. "i18n",
  3211. "icu",
  3212. "internationalization",
  3213. "intl",
  3214. "l10n",
  3215. "localization"
  3216. ],
  3217. "time": "2015-01-25 04:39:26"
  3218. },
  3219. {
  3220. "name": "symfony/options-resolver",
  3221. "version": "v2.6.4",
  3222. "target-dir": "Symfony/Component/OptionsResolver",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/symfony/OptionsResolver.git",
  3226. "reference": "ae68b6c97d26edcdf65eb3c2dd2aee502573e0ec"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/ae68b6c97d26edcdf65eb3c2dd2aee502573e0ec",
  3231. "reference": "ae68b6c97d26edcdf65eb3c2dd2aee502573e0ec",
  3232. "shasum": ""
  3233. },
  3234. "require": {
  3235. "php": ">=5.3.3"
  3236. },
  3237. "type": "library",
  3238. "extra": {
  3239. "branch-alias": {
  3240. "dev-master": "2.6-dev"
  3241. }
  3242. },
  3243. "autoload": {
  3244. "psr-0": {
  3245. "Symfony\\Component\\OptionsResolver\\": ""
  3246. }
  3247. },
  3248. "notification-url": "https://packagist.org/downloads/",
  3249. "license": [
  3250. "MIT"
  3251. ],
  3252. "authors": [
  3253. {
  3254. "name": "Symfony Community",
  3255. "homepage": "http://symfony.com/contributors"
  3256. },
  3257. {
  3258. "name": "Fabien Potencier",
  3259. "email": "fabien@symfony.com"
  3260. }
  3261. ],
  3262. "description": "Symfony OptionsResolver Component",
  3263. "homepage": "http://symfony.com",
  3264. "keywords": [
  3265. "config",
  3266. "configuration",
  3267. "options"
  3268. ],
  3269. "time": "2015-01-08 13:00:41"
  3270. },
  3271. {
  3272. "name": "symfony/process",
  3273. "version": "v2.6.4",
  3274. "target-dir": "Symfony/Component/Process",
  3275. "source": {
  3276. "type": "git",
  3277. "url": "https://github.com/symfony/Process.git",
  3278. "reference": "ecfc23e89d9967999fa5f60a1e9af7384396e9ae"
  3279. },
  3280. "dist": {
  3281. "type": "zip",
  3282. "url": "https://api.github.com/repos/symfony/Process/zipball/ecfc23e89d9967999fa5f60a1e9af7384396e9ae",
  3283. "reference": "ecfc23e89d9967999fa5f60a1e9af7384396e9ae",
  3284. "shasum": ""
  3285. },
  3286. "require": {
  3287. "php": ">=5.3.3"
  3288. },
  3289. "type": "library",
  3290. "extra": {
  3291. "branch-alias": {
  3292. "dev-master": "2.6-dev"
  3293. }
  3294. },
  3295. "autoload": {
  3296. "psr-0": {
  3297. "Symfony\\Component\\Process\\": ""
  3298. }
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Symfony Community",
  3307. "homepage": "http://symfony.com/contributors"
  3308. },
  3309. {
  3310. "name": "Fabien Potencier",
  3311. "email": "fabien@symfony.com"
  3312. }
  3313. ],
  3314. "description": "Symfony Process Component",
  3315. "homepage": "http://symfony.com",
  3316. "time": "2015-01-25 04:39:26"
  3317. },
  3318. {
  3319. "name": "symfony/property-access",
  3320. "version": "v2.6.4",
  3321. "target-dir": "Symfony/Component/PropertyAccess",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/symfony/PropertyAccess.git",
  3325. "reference": "9c0b67ea9c1a2b59cc7afae9177cd3c5ca5ac608"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/9c0b67ea9c1a2b59cc7afae9177cd3c5ca5ac608",
  3330. "reference": "9c0b67ea9c1a2b59cc7afae9177cd3c5ca5ac608",
  3331. "shasum": ""
  3332. },
  3333. "require": {
  3334. "php": ">=5.3.3"
  3335. },
  3336. "type": "library",
  3337. "extra": {
  3338. "branch-alias": {
  3339. "dev-master": "2.6-dev"
  3340. }
  3341. },
  3342. "autoload": {
  3343. "psr-0": {
  3344. "Symfony\\Component\\PropertyAccess\\": ""
  3345. }
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "Symfony Community",
  3354. "homepage": "http://symfony.com/contributors"
  3355. },
  3356. {
  3357. "name": "Fabien Potencier",
  3358. "email": "fabien@symfony.com"
  3359. }
  3360. ],
  3361. "description": "Symfony PropertyAccess Component",
  3362. "homepage": "http://symfony.com",
  3363. "keywords": [
  3364. "access",
  3365. "array",
  3366. "extraction",
  3367. "index",
  3368. "injection",
  3369. "object",
  3370. "property",
  3371. "property path",
  3372. "reflection"
  3373. ],
  3374. "time": "2015-01-25 04:39:26"
  3375. },
  3376. {
  3377. "name": "symfony/routing",
  3378. "version": "v2.6.4",
  3379. "target-dir": "Symfony/Component/Routing",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/symfony/Routing.git",
  3383. "reference": "bda1c3c67f2a33bbeabb1d321feaf626a0ca5698"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/symfony/Routing/zipball/bda1c3c67f2a33bbeabb1d321feaf626a0ca5698",
  3388. "reference": "bda1c3c67f2a33bbeabb1d321feaf626a0ca5698",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "php": ">=5.3.3"
  3393. },
  3394. "require-dev": {
  3395. "doctrine/annotations": "~1.0",
  3396. "doctrine/common": "~2.2",
  3397. "psr/log": "~1.0",
  3398. "symfony/config": "~2.2",
  3399. "symfony/expression-language": "~2.4",
  3400. "symfony/http-foundation": "~2.3",
  3401. "symfony/yaml": "~2.0,>=2.0.5"
  3402. },
  3403. "suggest": {
  3404. "doctrine/annotations": "For using the annotation loader",
  3405. "symfony/config": "For using the all-in-one router or any loader",
  3406. "symfony/expression-language": "For using expression matching",
  3407. "symfony/yaml": "For using the YAML loader"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "2.6-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-0": {
  3417. "Symfony\\Component\\Routing\\": ""
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Symfony Community",
  3427. "homepage": "http://symfony.com/contributors"
  3428. },
  3429. {
  3430. "name": "Fabien Potencier",
  3431. "email": "fabien@symfony.com"
  3432. }
  3433. ],
  3434. "description": "Symfony Routing Component",
  3435. "homepage": "http://symfony.com",
  3436. "keywords": [
  3437. "router",
  3438. "routing",
  3439. "uri",
  3440. "url"
  3441. ],
  3442. "time": "2015-01-15 12:15:12"
  3443. },
  3444. {
  3445. "name": "symfony/security",
  3446. "version": "v2.6.4",
  3447. "target-dir": "Symfony/Component/Security",
  3448. "source": {
  3449. "type": "git",
  3450. "url": "https://github.com/symfony/Security.git",
  3451. "reference": "109e94008f1a0da86d0abd354860b765d569b3c3"
  3452. },
  3453. "dist": {
  3454. "type": "zip",
  3455. "url": "https://api.github.com/repos/symfony/Security/zipball/109e94008f1a0da86d0abd354860b765d569b3c3",
  3456. "reference": "109e94008f1a0da86d0abd354860b765d569b3c3",
  3457. "shasum": ""
  3458. },
  3459. "require": {
  3460. "php": ">=5.3.3",
  3461. "symfony/event-dispatcher": "~2.2",
  3462. "symfony/http-foundation": "~2.1",
  3463. "symfony/http-kernel": "~2.4"
  3464. },
  3465. "replace": {
  3466. "symfony/security-acl": "self.version",
  3467. "symfony/security-core": "self.version",
  3468. "symfony/security-csrf": "self.version",
  3469. "symfony/security-http": "self.version"
  3470. },
  3471. "require-dev": {
  3472. "doctrine/common": "~2.2",
  3473. "doctrine/dbal": "~2.2",
  3474. "ircmaxell/password-compat": "~1.0",
  3475. "psr/log": "~1.0",
  3476. "symfony/expression-language": "~2.6",
  3477. "symfony/intl": "~2.3",
  3478. "symfony/routing": "~2.2",
  3479. "symfony/translation": "~2.0,>=2.0.5",
  3480. "symfony/validator": "~2.5,>=2.5.5"
  3481. },
  3482. "suggest": {
  3483. "doctrine/dbal": "For using the built-in ACL implementation",
  3484. "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5",
  3485. "symfony/class-loader": "For using the ACL generateSql script",
  3486. "symfony/expression-language": "For using the expression voter",
  3487. "symfony/finder": "For using the ACL generateSql script",
  3488. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  3489. "symfony/validator": "For using the user password constraint"
  3490. },
  3491. "type": "library",
  3492. "extra": {
  3493. "branch-alias": {
  3494. "dev-master": "2.6-dev"
  3495. }
  3496. },
  3497. "autoload": {
  3498. "psr-0": {
  3499. "Symfony\\Component\\Security\\": ""
  3500. }
  3501. },
  3502. "notification-url": "https://packagist.org/downloads/",
  3503. "license": [
  3504. "MIT"
  3505. ],
  3506. "authors": [
  3507. {
  3508. "name": "Symfony Community",
  3509. "homepage": "http://symfony.com/contributors"
  3510. },
  3511. {
  3512. "name": "Fabien Potencier",
  3513. "email": "fabien@symfony.com"
  3514. }
  3515. ],
  3516. "description": "Symfony Security Component",
  3517. "homepage": "http://symfony.com",
  3518. "time": "2015-01-25 04:39:26"
  3519. },
  3520. {
  3521. "name": "symfony/security-bundle",
  3522. "version": "v2.6.4",
  3523. "target-dir": "Symfony/Bundle/SecurityBundle",
  3524. "source": {
  3525. "type": "git",
  3526. "url": "https://github.com/symfony/SecurityBundle.git",
  3527. "reference": "b47bae8d7e7d918b53aab4228d9bc696d4790afb"
  3528. },
  3529. "dist": {
  3530. "type": "zip",
  3531. "url": "https://api.github.com/repos/symfony/SecurityBundle/zipball/b47bae8d7e7d918b53aab4228d9bc696d4790afb",
  3532. "reference": "b47bae8d7e7d918b53aab4228d9bc696d4790afb",
  3533. "shasum": ""
  3534. },
  3535. "require": {
  3536. "php": ">=5.3.3",
  3537. "symfony/http-kernel": "~2.2",
  3538. "symfony/security": "~2.6"
  3539. },
  3540. "require-dev": {
  3541. "doctrine/doctrine-bundle": "~1.2",
  3542. "symfony/browser-kit": "~2.4",
  3543. "symfony/console": "~2.3",
  3544. "symfony/css-selector": "~2.0,>=2.0.5",
  3545. "symfony/dependency-injection": "~2.3",
  3546. "symfony/dom-crawler": "~2.0,>=2.0.5",
  3547. "symfony/expression-language": "~2.6",
  3548. "symfony/form": "~2.4",
  3549. "symfony/framework-bundle": "~2.6",
  3550. "symfony/http-foundation": "~2.3",
  3551. "symfony/process": "~2.0,>=2.0.5",
  3552. "symfony/twig-bridge": "~2.2,>=2.2.6",
  3553. "symfony/twig-bundle": "~2.2",
  3554. "symfony/validator": "~2.5",
  3555. "symfony/yaml": "~2.0,>=2.0.5",
  3556. "twig/twig": "~1.12"
  3557. },
  3558. "type": "symfony-bundle",
  3559. "extra": {
  3560. "branch-alias": {
  3561. "dev-master": "2.6-dev"
  3562. }
  3563. },
  3564. "autoload": {
  3565. "psr-0": {
  3566. "Symfony\\Bundle\\SecurityBundle\\": ""
  3567. }
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "MIT"
  3572. ],
  3573. "authors": [
  3574. {
  3575. "name": "Symfony Community",
  3576. "homepage": "http://symfony.com/contributors"
  3577. },
  3578. {
  3579. "name": "Fabien Potencier",
  3580. "email": "fabien@symfony.com"
  3581. }
  3582. ],
  3583. "description": "Symfony SecurityBundle",
  3584. "homepage": "http://symfony.com",
  3585. "time": "2015-01-25 06:09:57"
  3586. },
  3587. {
  3588. "name": "symfony/stopwatch",
  3589. "version": "v2.6.4",
  3590. "target-dir": "Symfony/Component/Stopwatch",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://github.com/symfony/Stopwatch.git",
  3594. "reference": "e8da5286132ba75ce4b4275fbf0f4cd369bfd71c"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://api.github.com/repos/symfony/Stopwatch/zipball/e8da5286132ba75ce4b4275fbf0f4cd369bfd71c",
  3599. "reference": "e8da5286132ba75ce4b4275fbf0f4cd369bfd71c",
  3600. "shasum": ""
  3601. },
  3602. "require": {
  3603. "php": ">=5.3.3"
  3604. },
  3605. "type": "library",
  3606. "extra": {
  3607. "branch-alias": {
  3608. "dev-master": "2.6-dev"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-0": {
  3613. "Symfony\\Component\\Stopwatch\\": ""
  3614. }
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "MIT"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Symfony Community",
  3623. "homepage": "http://symfony.com/contributors"
  3624. },
  3625. {
  3626. "name": "Fabien Potencier",
  3627. "email": "fabien@symfony.com"
  3628. }
  3629. ],
  3630. "description": "Symfony Stopwatch Component",
  3631. "homepage": "http://symfony.com",
  3632. "time": "2015-01-03 08:01:59"
  3633. },
  3634. {
  3635. "name": "symfony/templating",
  3636. "version": "v2.6.4",
  3637. "target-dir": "Symfony/Component/Templating",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/symfony/Templating.git",
  3641. "reference": "2468e748c0583273fbd164de20b4d037ba55ee58"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/symfony/Templating/zipball/2468e748c0583273fbd164de20b4d037ba55ee58",
  3646. "reference": "2468e748c0583273fbd164de20b4d037ba55ee58",
  3647. "shasum": ""
  3648. },
  3649. "require": {
  3650. "php": ">=5.3.3"
  3651. },
  3652. "require-dev": {
  3653. "psr/log": "~1.0"
  3654. },
  3655. "suggest": {
  3656. "psr/log": "For using debug logging in loaders"
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "2.6-dev"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-0": {
  3666. "Symfony\\Component\\Templating\\": ""
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Symfony Community",
  3676. "homepage": "http://symfony.com/contributors"
  3677. },
  3678. {
  3679. "name": "Fabien Potencier",
  3680. "email": "fabien@symfony.com"
  3681. }
  3682. ],
  3683. "description": "Symfony Templating Component",
  3684. "homepage": "http://symfony.com",
  3685. "time": "2015-01-05 17:57:42"
  3686. },
  3687. {
  3688. "name": "symfony/translation",
  3689. "version": "v2.6.4",
  3690. "target-dir": "Symfony/Component/Translation",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/symfony/Translation.git",
  3694. "reference": "f289cdf8179d32058c1e1cbac723106a5ff6fa39"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/symfony/Translation/zipball/f289cdf8179d32058c1e1cbac723106a5ff6fa39",
  3699. "reference": "f289cdf8179d32058c1e1cbac723106a5ff6fa39",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": ">=5.3.3"
  3704. },
  3705. "require-dev": {
  3706. "psr/log": "~1.0",
  3707. "symfony/config": "~2.3,>=2.3.12",
  3708. "symfony/intl": "~2.3",
  3709. "symfony/yaml": "~2.2"
  3710. },
  3711. "suggest": {
  3712. "psr/log": "To use logging capability in translator",
  3713. "symfony/config": "",
  3714. "symfony/yaml": ""
  3715. },
  3716. "type": "library",
  3717. "extra": {
  3718. "branch-alias": {
  3719. "dev-master": "2.6-dev"
  3720. }
  3721. },
  3722. "autoload": {
  3723. "psr-0": {
  3724. "Symfony\\Component\\Translation\\": ""
  3725. }
  3726. },
  3727. "notification-url": "https://packagist.org/downloads/",
  3728. "license": [
  3729. "MIT"
  3730. ],
  3731. "authors": [
  3732. {
  3733. "name": "Symfony Community",
  3734. "homepage": "http://symfony.com/contributors"
  3735. },
  3736. {
  3737. "name": "Fabien Potencier",
  3738. "email": "fabien@symfony.com"
  3739. }
  3740. ],
  3741. "description": "Symfony Translation Component",
  3742. "homepage": "http://symfony.com",
  3743. "time": "2015-01-03 15:33:07"
  3744. },
  3745. {
  3746. "name": "symfony/twig-bridge",
  3747. "version": "v2.6.4",
  3748. "target-dir": "Symfony/Bridge/Twig",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/symfony/TwigBridge.git",
  3752. "reference": "85572fed6e76dd1794d12ac8c1dd9ffa6882d45d"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/85572fed6e76dd1794d12ac8c1dd9ffa6882d45d",
  3757. "reference": "85572fed6e76dd1794d12ac8c1dd9ffa6882d45d",
  3758. "shasum": ""
  3759. },
  3760. "require": {
  3761. "php": ">=5.3.3",
  3762. "symfony/security-csrf": "~2.4",
  3763. "twig/twig": "~1.13,>=1.13.1"
  3764. },
  3765. "require-dev": {
  3766. "symfony/console": "~2.4",
  3767. "symfony/expression-language": "~2.4",
  3768. "symfony/finder": "~2.3",
  3769. "symfony/form": "~2.6",
  3770. "symfony/http-kernel": "~2.3",
  3771. "symfony/intl": "~2.3",
  3772. "symfony/routing": "~2.2",
  3773. "symfony/security": "~2.4",
  3774. "symfony/stopwatch": "~2.2",
  3775. "symfony/templating": "~2.1",
  3776. "symfony/translation": "~2.2",
  3777. "symfony/var-dumper": "~2.6",
  3778. "symfony/yaml": "~2.0,>=2.0.5"
  3779. },
  3780. "suggest": {
  3781. "symfony/expression-language": "For using the ExpressionExtension",
  3782. "symfony/finder": "",
  3783. "symfony/form": "For using the FormExtension",
  3784. "symfony/http-kernel": "For using the HttpKernelExtension",
  3785. "symfony/routing": "For using the RoutingExtension",
  3786. "symfony/security": "For using the SecurityExtension",
  3787. "symfony/stopwatch": "For using the StopwatchExtension",
  3788. "symfony/templating": "For using the TwigEngine",
  3789. "symfony/translation": "For using the TranslationExtension",
  3790. "symfony/var-dumper": "For using the DumpExtension",
  3791. "symfony/yaml": "For using the YamlExtension"
  3792. },
  3793. "type": "symfony-bridge",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-master": "2.6-dev"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-0": {
  3801. "Symfony\\Bridge\\Twig\\": ""
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "Symfony Community",
  3811. "homepage": "http://symfony.com/contributors"
  3812. },
  3813. {
  3814. "name": "Fabien Potencier",
  3815. "email": "fabien@symfony.com"
  3816. }
  3817. ],
  3818. "description": "Symfony Twig Bridge",
  3819. "homepage": "http://symfony.com",
  3820. "time": "2015-01-25 04:39:26"
  3821. },
  3822. {
  3823. "name": "symfony/twig-bundle",
  3824. "version": "v2.6.4",
  3825. "target-dir": "Symfony/Bundle/TwigBundle",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/symfony/TwigBundle.git",
  3829. "reference": "a8d76e1b66119b6e36c4e449c9894b83a2e2f38c"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/symfony/TwigBundle/zipball/a8d76e1b66119b6e36c4e449c9894b83a2e2f38c",
  3834. "reference": "a8d76e1b66119b6e36c4e449c9894b83a2e2f38c",
  3835. "shasum": ""
  3836. },
  3837. "require": {
  3838. "php": ">=5.3.3",
  3839. "symfony/http-foundation": "~2.5",
  3840. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2",
  3841. "symfony/twig-bridge": "~2.6"
  3842. },
  3843. "require-dev": {
  3844. "symfony/config": "~2.2",
  3845. "symfony/dependency-injection": "~2.2",
  3846. "symfony/expression-language": "~2.4",
  3847. "symfony/framework-bundle": "~2.1",
  3848. "symfony/routing": "~2.1",
  3849. "symfony/stopwatch": "~2.2",
  3850. "symfony/templating": "~2.1"
  3851. },
  3852. "type": "symfony-bundle",
  3853. "extra": {
  3854. "branch-alias": {
  3855. "dev-master": "2.6-dev"
  3856. }
  3857. },
  3858. "autoload": {
  3859. "psr-0": {
  3860. "Symfony\\Bundle\\TwigBundle\\": ""
  3861. }
  3862. },
  3863. "notification-url": "https://packagist.org/downloads/",
  3864. "license": [
  3865. "MIT"
  3866. ],
  3867. "authors": [
  3868. {
  3869. "name": "Symfony Community",
  3870. "homepage": "http://symfony.com/contributors"
  3871. },
  3872. {
  3873. "name": "Fabien Potencier",
  3874. "email": "fabien@symfony.com"
  3875. }
  3876. ],
  3877. "description": "Symfony TwigBundle",
  3878. "homepage": "http://symfony.com",
  3879. "time": "2015-01-06 17:50:02"
  3880. },
  3881. {
  3882. "name": "symfony/validator",
  3883. "version": "v2.6.4",
  3884. "target-dir": "Symfony/Component/Validator",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/symfony/Validator.git",
  3888. "reference": "1906eb78a5049b41a80094c20faf66dfbaaf2049"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/symfony/Validator/zipball/1906eb78a5049b41a80094c20faf66dfbaaf2049",
  3893. "reference": "1906eb78a5049b41a80094c20faf66dfbaaf2049",
  3894. "shasum": ""
  3895. },
  3896. "require": {
  3897. "php": ">=5.3.3",
  3898. "symfony/translation": "~2.0,>=2.0.5"
  3899. },
  3900. "require-dev": {
  3901. "doctrine/annotations": "~1.0",
  3902. "doctrine/cache": "~1.0",
  3903. "doctrine/common": "~2.3",
  3904. "egulias/email-validator": "~1.2,>=1.2.1",
  3905. "symfony/config": "~2.2",
  3906. "symfony/expression-language": "~2.4",
  3907. "symfony/http-foundation": "~2.1",
  3908. "symfony/intl": "~2.3",
  3909. "symfony/property-access": "~2.3",
  3910. "symfony/yaml": "~2.0,>=2.0.5"
  3911. },
  3912. "suggest": {
  3913. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  3914. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  3915. "egulias/email-validator": "Strict (RFC compliant) email validation",
  3916. "symfony/config": "",
  3917. "symfony/expression-language": "For using the 2.4 Expression validator",
  3918. "symfony/http-foundation": "",
  3919. "symfony/intl": "",
  3920. "symfony/property-access": "For using the 2.4 Validator API",
  3921. "symfony/yaml": ""
  3922. },
  3923. "type": "library",
  3924. "extra": {
  3925. "branch-alias": {
  3926. "dev-master": "2.6-dev"
  3927. }
  3928. },
  3929. "autoload": {
  3930. "psr-0": {
  3931. "Symfony\\Component\\Validator\\": ""
  3932. }
  3933. },
  3934. "notification-url": "https://packagist.org/downloads/",
  3935. "license": [
  3936. "MIT"
  3937. ],
  3938. "authors": [
  3939. {
  3940. "name": "Symfony Community",
  3941. "homepage": "http://symfony.com/contributors"
  3942. },
  3943. {
  3944. "name": "Fabien Potencier",
  3945. "email": "fabien@symfony.com"
  3946. }
  3947. ],
  3948. "description": "Symfony Validator Component",
  3949. "homepage": "http://symfony.com",
  3950. "time": "2015-02-01 16:10:57"
  3951. },
  3952. {
  3953. "name": "symfony/yaml",
  3954. "version": "v2.6.4",
  3955. "target-dir": "Symfony/Component/Yaml",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://github.com/symfony/Yaml.git",
  3959. "reference": "60ed7751671113cf1ee7d7778e691642c2e9acd8"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://api.github.com/repos/symfony/Yaml/zipball/60ed7751671113cf1ee7d7778e691642c2e9acd8",
  3964. "reference": "60ed7751671113cf1ee7d7778e691642c2e9acd8",
  3965. "shasum": ""
  3966. },
  3967. "require": {
  3968. "php": ">=5.3.3"
  3969. },
  3970. "type": "library",
  3971. "extra": {
  3972. "branch-alias": {
  3973. "dev-master": "2.6-dev"
  3974. }
  3975. },
  3976. "autoload": {
  3977. "psr-0": {
  3978. "Symfony\\Component\\Yaml\\": ""
  3979. }
  3980. },
  3981. "notification-url": "https://packagist.org/downloads/",
  3982. "license": [
  3983. "MIT"
  3984. ],
  3985. "authors": [
  3986. {
  3987. "name": "Symfony Community",
  3988. "homepage": "http://symfony.com/contributors"
  3989. },
  3990. {
  3991. "name": "Fabien Potencier",
  3992. "email": "fabien@symfony.com"
  3993. }
  3994. ],
  3995. "description": "Symfony Yaml Component",
  3996. "homepage": "http://symfony.com",
  3997. "time": "2015-01-25 04:39:26"
  3998. },
  3999. {
  4000. "name": "szymach/c-pchart",
  4001. "version": "1.1.5",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/szymach/c-pchart.git",
  4005. "reference": "1d54c14f8b7295abc87039ba806fed45d29d67d9"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/szymach/c-pchart/zipball/1d54c14f8b7295abc87039ba806fed45d29d67d9",
  4010. "reference": "1d54c14f8b7295abc87039ba806fed45d29d67d9",
  4011. "shasum": ""
  4012. },
  4013. "require": {
  4014. "ext-gd": "*",
  4015. "php": ">=5.3.3"
  4016. },
  4017. "type": "project",
  4018. "autoload": {
  4019. "psr-4": {
  4020. "CpChart\\": "src/"
  4021. },
  4022. "files": [
  4023. "src/Resources/data/constants.php"
  4024. ]
  4025. },
  4026. "notification-url": "https://packagist.org/downloads/",
  4027. "license": [
  4028. "MIT"
  4029. ],
  4030. "description": "Port of \"pChart\" library into PHP 5.3.",
  4031. "homepage": "https://github.com/szymach/c-pchart",
  4032. "keywords": [
  4033. "c-pChart",
  4034. "charts",
  4035. "composer",
  4036. "pchart",
  4037. "statistics"
  4038. ],
  4039. "time": "2015-01-28 19:54:53"
  4040. },
  4041. {
  4042. "name": "toin0u/digitalocean",
  4043. "version": "1.4.2",
  4044. "source": {
  4045. "type": "git",
  4046. "url": "https://github.com/toin0u/DigitalOcean.git",
  4047. "reference": "fb460785207fa4029217eef489508b9ed6c61b00"
  4048. },
  4049. "dist": {
  4050. "type": "zip",
  4051. "url": "https://api.github.com/repos/toin0u/DigitalOcean/zipball/fb460785207fa4029217eef489508b9ed6c61b00",
  4052. "reference": "fb460785207fa4029217eef489508b9ed6c61b00",
  4053. "shasum": ""
  4054. },
  4055. "require": {
  4056. "php": ">=5.3.0",
  4057. "symfony/console": "~2.3",
  4058. "symfony/yaml": "~2.3",
  4059. "toin0u/http-adapter": "~1.0"
  4060. },
  4061. "require-dev": {
  4062. "satooshi/php-coveralls": "~0.6"
  4063. },
  4064. "bin": [
  4065. "digitalocean"
  4066. ],
  4067. "type": "library",
  4068. "extra": {
  4069. "branch-alias": {
  4070. "dev-master": "1.4-dev"
  4071. }
  4072. },
  4073. "autoload": {
  4074. "psr-0": {
  4075. "DigitalOcean": "src/"
  4076. }
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Antoine Corcy",
  4085. "email": "contact@sbin.dk",
  4086. "homepage": "http://sbin.dk",
  4087. "role": "Developer"
  4088. }
  4089. ],
  4090. "description": "DigitalOcean API PHP 5.3+ library",
  4091. "homepage": "https://github.com/toin0u/DigitalOcean",
  4092. "keywords": [
  4093. "Cloud Hosting",
  4094. "SSD",
  4095. "api",
  4096. "digitalocean",
  4097. "vps"
  4098. ],
  4099. "time": "2014-01-14 22:20:56"
  4100. },
  4101. {
  4102. "name": "toin0u/http-adapter",
  4103. "version": "1.0.3",
  4104. "source": {
  4105. "type": "git",
  4106. "url": "https://github.com/toin0u/HttpAdapter.git",
  4107. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10"
  4108. },
  4109. "dist": {
  4110. "type": "zip",
  4111. "url": "https://api.github.com/repos/toin0u/HttpAdapter/zipball/29253948d446bc3afc29897ac67b4cd01f56cd10",
  4112. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10",
  4113. "shasum": ""
  4114. },
  4115. "require": {
  4116. "ext-curl": "*",
  4117. "php": ">=5.3.0"
  4118. },
  4119. "require-dev": {
  4120. "guzzle/guzzle": "@stable",
  4121. "kriswallsmith/buzz": "@stable",
  4122. "satooshi/php-coveralls": "~0.6",
  4123. "zendframework/zendframework": "~2.1"
  4124. },
  4125. "suggest": {
  4126. "guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
  4127. "kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
  4128. "zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
  4129. },
  4130. "type": "library",
  4131. "extra": {
  4132. "branch-alias": {
  4133. "dev-master": "1.0-dev"
  4134. }
  4135. },
  4136. "autoload": {
  4137. "psr-0": {
  4138. "HttpAdapter": "src/"
  4139. }
  4140. },
  4141. "notification-url": "https://packagist.org/downloads/",
  4142. "license": [
  4143. "MIT"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "Antoine Corcy",
  4148. "email": "contact@sbin.dk",
  4149. "homepage": "http://sbin.dk",
  4150. "role": "Developer"
  4151. }
  4152. ],
  4153. "description": "HttpAdapter PHP 5.3+ library",
  4154. "homepage": "https://github.com/toin0u/HttpAdapter",
  4155. "keywords": [
  4156. "adapter",
  4157. "http"
  4158. ],
  4159. "time": "2013-05-26 18:18:11"
  4160. },
  4161. {
  4162. "name": "twig/extensions",
  4163. "version": "v1.2.0",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/twigphp/Twig-extensions.git",
  4167. "reference": "8cf4b9fe04077bd54fc73f4fde83347040c3b8cd"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/8cf4b9fe04077bd54fc73f4fde83347040c3b8cd",
  4172. "reference": "8cf4b9fe04077bd54fc73f4fde83347040c3b8cd",
  4173. "shasum": ""
  4174. },
  4175. "require": {
  4176. "twig/twig": "~1.12"
  4177. },
  4178. "require-dev": {
  4179. "symfony/translation": "~2.3"
  4180. },
  4181. "suggest": {
  4182. "symfony/translation": "Allow the time_diff output to be translated"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-master": "1.2.x-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "psr-0": {
  4192. "Twig_Extensions_": "lib/"
  4193. }
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "MIT"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Fabien Potencier",
  4202. "email": "fabien@symfony.com"
  4203. }
  4204. ],
  4205. "description": "Common additional features for Twig that do not directly belong in core",
  4206. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  4207. "keywords": [
  4208. "i18n",
  4209. "text"
  4210. ],
  4211. "time": "2014-10-30 14:30:03"
  4212. },
  4213. {
  4214. "name": "twig/twig",
  4215. "version": "v1.18.0",
  4216. "source": {
  4217. "type": "git",
  4218. "url": "https://github.com/twigphp/Twig.git",
  4219. "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf"
  4220. },
  4221. "dist": {
  4222. "type": "zip",
  4223. "url": "https://api.github.com/repos/twigphp/Twig/zipball/4cf7464348e7f9893a93f7096a90b73722be99cf",
  4224. "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf",
  4225. "shasum": ""
  4226. },
  4227. "require": {
  4228. "php": ">=5.2.4"
  4229. },
  4230. "type": "library",
  4231. "extra": {
  4232. "branch-alias": {
  4233. "dev-master": "1.18-dev"
  4234. }
  4235. },
  4236. "autoload": {
  4237. "psr-0": {
  4238. "Twig_": "lib/"
  4239. }
  4240. },
  4241. "notification-url": "https://packagist.org/downloads/",
  4242. "license": [
  4243. "BSD-3-Clause"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Fabien Potencier",
  4248. "email": "fabien@symfony.com",
  4249. "homepage": "http://fabien.potencier.org",
  4250. "role": "Lead Developer"
  4251. },
  4252. {
  4253. "name": "Armin Ronacher",
  4254. "email": "armin.ronacher@active-4.com",
  4255. "role": "Project Founder"
  4256. },
  4257. {
  4258. "name": "Twig Team",
  4259. "homepage": "http://twig.sensiolabs.org/contributors",
  4260. "role": "Contributors"
  4261. }
  4262. ],
  4263. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4264. "homepage": "http://twig.sensiolabs.org",
  4265. "keywords": [
  4266. "templating"
  4267. ],
  4268. "time": "2015-01-25 17:32:08"
  4269. },
  4270. {
  4271. "name": "willdurand/jsonp-callback-validator",
  4272. "version": "v1.1.0",
  4273. "source": {
  4274. "type": "git",
  4275. "url": "https://github.com/willdurand/JsonpCallbackValidator.git",
  4276. "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909"
  4277. },
  4278. "dist": {
  4279. "type": "zip",
  4280. "url": "https://api.github.com/repos/willdurand/JsonpCallbackValidator/zipball/1a7d388bb521959e612ef50c5c7b1691b097e909",
  4281. "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909",
  4282. "shasum": ""
  4283. },
  4284. "require": {
  4285. "php": ">=5.3.0"
  4286. },
  4287. "require-dev": {
  4288. "phpunit/phpunit": "~3.7"
  4289. },
  4290. "type": "library",
  4291. "autoload": {
  4292. "psr-0": {
  4293. "JsonpCallbackValidator": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "William Durand",
  4303. "email": "william.durand1@gmail.com",
  4304. "homepage": "http://www.willdurand.fr"
  4305. }
  4306. ],
  4307. "description": "JSONP callback validator.",
  4308. "time": "2014-01-20 22:35:06"
  4309. },
  4310. {
  4311. "name": "willdurand/negotiation",
  4312. "version": "1.3.4",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://github.com/willdurand/Negotiation.git",
  4316. "reference": "d7fa4ce4a0436915b9ba9f7cb5ff37719f0a834c"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/d7fa4ce4a0436915b9ba9f7cb5ff37719f0a834c",
  4321. "reference": "d7fa4ce4a0436915b9ba9f7cb5ff37719f0a834c",
  4322. "shasum": ""
  4323. },
  4324. "require": {
  4325. "php": ">=5.3.0"
  4326. },
  4327. "type": "library",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-master": "1.3-dev"
  4331. }
  4332. },
  4333. "autoload": {
  4334. "psr-0": {
  4335. "Negotiation": "src/"
  4336. }
  4337. },
  4338. "notification-url": "https://packagist.org/downloads/",
  4339. "license": [
  4340. "MIT"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "William Durand",
  4345. "email": "william.durand1@gmail.com"
  4346. }
  4347. ],
  4348. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  4349. "homepage": "http://williamdurand.fr/Negotiation/",
  4350. "keywords": [
  4351. "accept",
  4352. "content",
  4353. "format",
  4354. "header",
  4355. "negotiation"
  4356. ],
  4357. "time": "2014-10-02 07:26:00"
  4358. },
  4359. {
  4360. "name": "zendframework/zend-config",
  4361. "version": "2.3.3",
  4362. "target-dir": "Zend/Config",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/zendframework/Component_ZendConfig.git",
  4366. "reference": "a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/zendframework/Component_ZendConfig/zipball/a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8",
  4371. "reference": "a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8",
  4372. "shasum": ""
  4373. },
  4374. "require": {
  4375. "php": ">=5.3.23",
  4376. "zendframework/zend-stdlib": "self.version"
  4377. },
  4378. "require-dev": {
  4379. "zendframework/zend-filter": "self.version",
  4380. "zendframework/zend-i18n": "self.version",
  4381. "zendframework/zend-json": "self.version",
  4382. "zendframework/zend-servicemanager": "self.version"
  4383. },
  4384. "suggest": {
  4385. "zendframework/zend-filter": "Zend\\Filter component",
  4386. "zendframework/zend-i18n": "Zend\\I18n component",
  4387. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  4388. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  4389. },
  4390. "type": "library",
  4391. "extra": {
  4392. "branch-alias": {
  4393. "dev-master": "2.3-dev",
  4394. "dev-develop": "2.4-dev"
  4395. }
  4396. },
  4397. "autoload": {
  4398. "psr-0": {
  4399. "Zend\\Config\\": ""
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "BSD-3-Clause"
  4405. ],
  4406. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  4407. "homepage": "https://github.com/zendframework/zf2",
  4408. "keywords": [
  4409. "config",
  4410. "zf2"
  4411. ],
  4412. "time": "2014-09-16 22:58:11"
  4413. },
  4414. {
  4415. "name": "zendframework/zend-stdlib",
  4416. "version": "2.3.3",
  4417. "target-dir": "Zend/Stdlib",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/zendframework/Component_ZendStdlib.git",
  4421. "reference": "fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/zendframework/Component_ZendStdlib/zipball/fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33",
  4426. "reference": "fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33",
  4427. "shasum": ""
  4428. },
  4429. "require": {
  4430. "php": ">=5.3.23"
  4431. },
  4432. "require-dev": {
  4433. "zendframework/zend-eventmanager": "self.version",
  4434. "zendframework/zend-serializer": "self.version",
  4435. "zendframework/zend-servicemanager": "self.version"
  4436. },
  4437. "suggest": {
  4438. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  4439. "zendframework/zend-serializer": "Zend\\Serializer component",
  4440. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "branch-alias": {
  4445. "dev-master": "2.3-dev",
  4446. "dev-develop": "2.4-dev"
  4447. }
  4448. },
  4449. "autoload": {
  4450. "psr-0": {
  4451. "Zend\\Stdlib\\": ""
  4452. }
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "BSD-3-Clause"
  4457. ],
  4458. "homepage": "https://github.com/zendframework/zf2",
  4459. "keywords": [
  4460. "stdlib",
  4461. "zf2"
  4462. ],
  4463. "time": "2014-09-16 22:58:11"
  4464. }
  4465. ],
  4466. "packages-dev": [],
  4467. "aliases": [],
  4468. "minimum-stability": "stable",
  4469. "stability-flags": [],
  4470. "prefer-stable": false,
  4471. "prefer-lowest": false,
  4472. "platform": {
  4473. "php": ">=5.4"
  4474. },
  4475. "platform-dev": []
  4476. }