composer.lock 190 KB

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