composer.lock 175 KB

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