composer.lock 190 KB

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