composer.lock 198 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "3d7826bcd5b94b1502cbb55942e6a2de",
  8. "content-hash": "7c0bb648a819dea55af72094112d1666",
  9. "packages": [
  10. {
  11. "name": "cebe/markdown",
  12. "version": "1.1.1",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/cebe/markdown.git",
  16. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/cebe/markdown/zipball/c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  21. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "lib-pcre": "*",
  26. "php": ">=5.4.0"
  27. },
  28. "require-dev": {
  29. "cebe/indent": "*",
  30. "facebook/xhprof": "*@dev",
  31. "phpunit/phpunit": "4.1.*"
  32. },
  33. "bin": [
  34. "bin/markdown"
  35. ],
  36. "type": "library",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "cebe\\markdown\\": ""
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Carsten Brandt",
  54. "email": "mail@cebe.cc",
  55. "homepage": "http://cebe.cc/",
  56. "role": "Creator"
  57. }
  58. ],
  59. "description": "A super fast, highly extensible markdown parser for PHP",
  60. "homepage": "https://github.com/cebe/markdown#readme",
  61. "keywords": [
  62. "extensible",
  63. "fast",
  64. "gfm",
  65. "markdown",
  66. "markdown-extra"
  67. ],
  68. "time": "2016-09-14 20:40:20"
  69. },
  70. {
  71. "name": "composer/ca-bundle",
  72. "version": "1.0.4",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/composer/ca-bundle.git",
  76. "reference": "ec21a59414b99501e723b63fd664aa8ead9c5680"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/ec21a59414b99501e723b63fd664aa8ead9c5680",
  81. "reference": "ec21a59414b99501e723b63fd664aa8ead9c5680",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "ext-openssl": "*",
  86. "ext-pcre": "*",
  87. "php": "^5.3.2 || ^7.0"
  88. },
  89. "require-dev": {
  90. "psr/log": "^1.0",
  91. "symfony/process": "^2.5 || ^3.0"
  92. },
  93. "suggest": {
  94. "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.x-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Composer\\CaBundle\\": "src"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Jordi Boggiano",
  114. "email": "j.boggiano@seld.be",
  115. "homepage": "http://seld.be"
  116. }
  117. ],
  118. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  119. "keywords": [
  120. "cabundle",
  121. "cacert",
  122. "certificate",
  123. "ssl",
  124. "tls"
  125. ],
  126. "time": "2016-09-04 19:00:06"
  127. },
  128. {
  129. "name": "composer/composer",
  130. "version": "dev-master",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/composer/composer.git",
  134. "reference": "2782d37a15d76e4e7e774b289f32bda489f0314a"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://api.github.com/repos/composer/composer/zipball/2782d37a15d76e4e7e774b289f32bda489f0314a",
  139. "reference": "2782d37a15d76e4e7e774b289f32bda489f0314a",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "composer/ca-bundle": "^1.0",
  144. "composer/semver": "^1.0",
  145. "composer/spdx-licenses": "^1.0",
  146. "justinrainbow/json-schema": "^1.6 || ^2.0 || ^3.0 || ^4.0",
  147. "php": "^5.3.2 || ^7.0",
  148. "psr/log": "^1.0",
  149. "seld/cli-prompt": "^1.0",
  150. "seld/jsonlint": "^1.4",
  151. "seld/phar-utils": "^1.0",
  152. "symfony/console": "^2.7 || ^3.0",
  153. "symfony/filesystem": "^2.7 || ^3.0",
  154. "symfony/finder": "^2.7 || ^3.0",
  155. "symfony/process": "^2.7 || ^3.0"
  156. },
  157. "require-dev": {
  158. "phpunit/phpunit": "^4.5 || ^5.0.5",
  159. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  160. },
  161. "suggest": {
  162. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  163. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  164. "ext-zlib": "Allow gzip compression of HTTP requests"
  165. },
  166. "bin": [
  167. "bin/composer"
  168. ],
  169. "type": "library",
  170. "extra": {
  171. "branch-alias": {
  172. "dev-master": "1.3-dev"
  173. }
  174. },
  175. "autoload": {
  176. "psr-4": {
  177. "Composer\\": "src/Composer"
  178. }
  179. },
  180. "notification-url": "https://packagist.org/downloads/",
  181. "license": [
  182. "MIT"
  183. ],
  184. "authors": [
  185. {
  186. "name": "Nils Adermann",
  187. "email": "naderman@naderman.de",
  188. "homepage": "http://www.naderman.de"
  189. },
  190. {
  191. "name": "Jordi Boggiano",
  192. "email": "j.boggiano@seld.be",
  193. "homepage": "http://seld.be"
  194. }
  195. ],
  196. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  197. "homepage": "https://getcomposer.org/",
  198. "keywords": [
  199. "autoload",
  200. "dependency",
  201. "package"
  202. ],
  203. "time": "2016-12-24 00:47:04"
  204. },
  205. {
  206. "name": "composer/semver",
  207. "version": "1.4.2",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/composer/semver.git",
  211. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  216. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  217. "shasum": ""
  218. },
  219. "require": {
  220. "php": "^5.3.2 || ^7.0"
  221. },
  222. "require-dev": {
  223. "phpunit/phpunit": "^4.5 || ^5.0.5",
  224. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  225. },
  226. "type": "library",
  227. "extra": {
  228. "branch-alias": {
  229. "dev-master": "1.x-dev"
  230. }
  231. },
  232. "autoload": {
  233. "psr-4": {
  234. "Composer\\Semver\\": "src"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Nils Adermann",
  244. "email": "naderman@naderman.de",
  245. "homepage": "http://www.naderman.de"
  246. },
  247. {
  248. "name": "Jordi Boggiano",
  249. "email": "j.boggiano@seld.be",
  250. "homepage": "http://seld.be"
  251. },
  252. {
  253. "name": "Rob Bast",
  254. "email": "rob.bast@gmail.com",
  255. "homepage": "http://robbast.nl"
  256. }
  257. ],
  258. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  259. "keywords": [
  260. "semantic",
  261. "semver",
  262. "validation",
  263. "versioning"
  264. ],
  265. "time": "2016-08-30 16:08:34"
  266. },
  267. {
  268. "name": "composer/spdx-licenses",
  269. "version": "1.1.4",
  270. "source": {
  271. "type": "git",
  272. "url": "https://github.com/composer/spdx-licenses.git",
  273. "reference": "88c26372b1afac36d8db601cdf04ad8716f53d88"
  274. },
  275. "dist": {
  276. "type": "zip",
  277. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/88c26372b1afac36d8db601cdf04ad8716f53d88",
  278. "reference": "88c26372b1afac36d8db601cdf04ad8716f53d88",
  279. "shasum": ""
  280. },
  281. "require": {
  282. "php": "^5.3.2 || ^7.0"
  283. },
  284. "require-dev": {
  285. "phpunit/phpunit": "^4.5 || ^5.0.5",
  286. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  287. },
  288. "type": "library",
  289. "extra": {
  290. "branch-alias": {
  291. "dev-master": "1.x-dev"
  292. }
  293. },
  294. "autoload": {
  295. "psr-4": {
  296. "Composer\\Spdx\\": "src"
  297. }
  298. },
  299. "notification-url": "https://packagist.org/downloads/",
  300. "license": [
  301. "MIT"
  302. ],
  303. "authors": [
  304. {
  305. "name": "Nils Adermann",
  306. "email": "naderman@naderman.de",
  307. "homepage": "http://www.naderman.de"
  308. },
  309. {
  310. "name": "Jordi Boggiano",
  311. "email": "j.boggiano@seld.be",
  312. "homepage": "http://seld.be"
  313. },
  314. {
  315. "name": "Rob Bast",
  316. "email": "rob.bast@gmail.com",
  317. "homepage": "http://robbast.nl"
  318. }
  319. ],
  320. "description": "SPDX licenses list and validation library.",
  321. "keywords": [
  322. "license",
  323. "spdx",
  324. "validator"
  325. ],
  326. "time": "2016-05-04 12:27:30"
  327. },
  328. {
  329. "name": "container-interop/container-interop",
  330. "version": "1.1.0",
  331. "source": {
  332. "type": "git",
  333. "url": "https://github.com/container-interop/container-interop.git",
  334. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e"
  335. },
  336. "dist": {
  337. "type": "zip",
  338. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/fc08354828f8fd3245f77a66b9e23a6bca48297e",
  339. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e",
  340. "shasum": ""
  341. },
  342. "type": "library",
  343. "autoload": {
  344. "psr-4": {
  345. "Interop\\Container\\": "src/Interop/Container/"
  346. }
  347. },
  348. "notification-url": "https://packagist.org/downloads/",
  349. "license": [
  350. "MIT"
  351. ],
  352. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  353. "time": "2014-12-30 15:22:37"
  354. },
  355. {
  356. "name": "doctrine/annotations",
  357. "version": "v1.2.7",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/doctrine/annotations.git",
  361. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  366. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  367. "shasum": ""
  368. },
  369. "require": {
  370. "doctrine/lexer": "1.*",
  371. "php": ">=5.3.2"
  372. },
  373. "require-dev": {
  374. "doctrine/cache": "1.*",
  375. "phpunit/phpunit": "4.*"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "branch-alias": {
  380. "dev-master": "1.3.x-dev"
  381. }
  382. },
  383. "autoload": {
  384. "psr-0": {
  385. "Doctrine\\Common\\Annotations\\": "lib/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Roman Borschel",
  395. "email": "roman@code-factory.org"
  396. },
  397. {
  398. "name": "Benjamin Eberlei",
  399. "email": "kontakt@beberlei.de"
  400. },
  401. {
  402. "name": "Guilherme Blanco",
  403. "email": "guilhermeblanco@gmail.com"
  404. },
  405. {
  406. "name": "Jonathan Wage",
  407. "email": "jonwage@gmail.com"
  408. },
  409. {
  410. "name": "Johannes Schmitt",
  411. "email": "schmittjoh@gmail.com"
  412. }
  413. ],
  414. "description": "Docblock Annotations Parser",
  415. "homepage": "http://www.doctrine-project.org",
  416. "keywords": [
  417. "annotations",
  418. "docblock",
  419. "parser"
  420. ],
  421. "time": "2015-08-31 12:32:49"
  422. },
  423. {
  424. "name": "doctrine/cache",
  425. "version": "v1.6.0",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/doctrine/cache.git",
  429. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6",
  434. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "php": "~5.5|~7.0"
  439. },
  440. "conflict": {
  441. "doctrine/common": ">2.2,<2.4"
  442. },
  443. "require-dev": {
  444. "phpunit/phpunit": "~4.8|~5.0",
  445. "predis/predis": "~1.0",
  446. "satooshi/php-coveralls": "~0.6"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "branch-alias": {
  451. "dev-master": "1.6.x-dev"
  452. }
  453. },
  454. "autoload": {
  455. "psr-4": {
  456. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  457. }
  458. },
  459. "notification-url": "https://packagist.org/downloads/",
  460. "license": [
  461. "MIT"
  462. ],
  463. "authors": [
  464. {
  465. "name": "Roman Borschel",
  466. "email": "roman@code-factory.org"
  467. },
  468. {
  469. "name": "Benjamin Eberlei",
  470. "email": "kontakt@beberlei.de"
  471. },
  472. {
  473. "name": "Guilherme Blanco",
  474. "email": "guilhermeblanco@gmail.com"
  475. },
  476. {
  477. "name": "Jonathan Wage",
  478. "email": "jonwage@gmail.com"
  479. },
  480. {
  481. "name": "Johannes Schmitt",
  482. "email": "schmittjoh@gmail.com"
  483. }
  484. ],
  485. "description": "Caching library offering an object-oriented API for many cache backends",
  486. "homepage": "http://www.doctrine-project.org",
  487. "keywords": [
  488. "cache",
  489. "caching"
  490. ],
  491. "time": "2015-12-31 16:37:02"
  492. },
  493. {
  494. "name": "doctrine/collections",
  495. "version": "v1.3.0",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/doctrine/collections.git",
  499. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  504. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "php": ">=5.3.2"
  509. },
  510. "require-dev": {
  511. "phpunit/phpunit": "~4.0"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-master": "1.2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-0": {
  521. "Doctrine\\Common\\Collections\\": "lib/"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Roman Borschel",
  531. "email": "roman@code-factory.org"
  532. },
  533. {
  534. "name": "Benjamin Eberlei",
  535. "email": "kontakt@beberlei.de"
  536. },
  537. {
  538. "name": "Guilherme Blanco",
  539. "email": "guilhermeblanco@gmail.com"
  540. },
  541. {
  542. "name": "Jonathan Wage",
  543. "email": "jonwage@gmail.com"
  544. },
  545. {
  546. "name": "Johannes Schmitt",
  547. "email": "schmittjoh@gmail.com"
  548. }
  549. ],
  550. "description": "Collections Abstraction library",
  551. "homepage": "http://www.doctrine-project.org",
  552. "keywords": [
  553. "array",
  554. "collections",
  555. "iterator"
  556. ],
  557. "time": "2015-04-14 22:21:58"
  558. },
  559. {
  560. "name": "doctrine/common",
  561. "version": "v2.6.1",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/doctrine/common.git",
  565. "reference": "a579557bc689580c19fee4e27487a67fe60defc0"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0",
  570. "reference": "a579557bc689580c19fee4e27487a67fe60defc0",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "doctrine/annotations": "1.*",
  575. "doctrine/cache": "1.*",
  576. "doctrine/collections": "1.*",
  577. "doctrine/inflector": "1.*",
  578. "doctrine/lexer": "1.*",
  579. "php": "~5.5|~7.0"
  580. },
  581. "require-dev": {
  582. "phpunit/phpunit": "~4.8|~5.0"
  583. },
  584. "type": "library",
  585. "extra": {
  586. "branch-alias": {
  587. "dev-master": "2.7.x-dev"
  588. }
  589. },
  590. "autoload": {
  591. "psr-4": {
  592. "Doctrine\\Common\\": "lib/Doctrine/Common"
  593. }
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Roman Borschel",
  602. "email": "roman@code-factory.org"
  603. },
  604. {
  605. "name": "Benjamin Eberlei",
  606. "email": "kontakt@beberlei.de"
  607. },
  608. {
  609. "name": "Guilherme Blanco",
  610. "email": "guilhermeblanco@gmail.com"
  611. },
  612. {
  613. "name": "Jonathan Wage",
  614. "email": "jonwage@gmail.com"
  615. },
  616. {
  617. "name": "Johannes Schmitt",
  618. "email": "schmittjoh@gmail.com"
  619. }
  620. ],
  621. "description": "Common Library for Doctrine projects",
  622. "homepage": "http://www.doctrine-project.org",
  623. "keywords": [
  624. "annotations",
  625. "collections",
  626. "eventmanager",
  627. "persistence",
  628. "spl"
  629. ],
  630. "time": "2015-12-25 13:18:31"
  631. },
  632. {
  633. "name": "doctrine/dbal",
  634. "version": "v2.5.5",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/doctrine/dbal.git",
  638. "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
  643. "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "doctrine/common": ">=2.4,<2.7-dev",
  648. "php": ">=5.3.2"
  649. },
  650. "require-dev": {
  651. "phpunit/phpunit": "4.*",
  652. "symfony/console": "2.*||^3.0"
  653. },
  654. "suggest": {
  655. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  656. },
  657. "bin": [
  658. "bin/doctrine-dbal"
  659. ],
  660. "type": "library",
  661. "extra": {
  662. "branch-alias": {
  663. "dev-master": "2.5.x-dev"
  664. }
  665. },
  666. "autoload": {
  667. "psr-0": {
  668. "Doctrine\\DBAL\\": "lib/"
  669. }
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "authors": [
  676. {
  677. "name": "Roman Borschel",
  678. "email": "roman@code-factory.org"
  679. },
  680. {
  681. "name": "Benjamin Eberlei",
  682. "email": "kontakt@beberlei.de"
  683. },
  684. {
  685. "name": "Guilherme Blanco",
  686. "email": "guilhermeblanco@gmail.com"
  687. },
  688. {
  689. "name": "Jonathan Wage",
  690. "email": "jonwage@gmail.com"
  691. }
  692. ],
  693. "description": "Database Abstraction Layer",
  694. "homepage": "http://www.doctrine-project.org",
  695. "keywords": [
  696. "database",
  697. "dbal",
  698. "persistence",
  699. "queryobject"
  700. ],
  701. "time": "2016-09-09 19:13:33"
  702. },
  703. {
  704. "name": "doctrine/doctrine-bundle",
  705. "version": "1.6.4",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/doctrine/DoctrineBundle.git",
  709. "reference": "dd40b0a7fb16658cda9def9786992b8df8a49be7"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/dd40b0a7fb16658cda9def9786992b8df8a49be7",
  714. "reference": "dd40b0a7fb16658cda9def9786992b8df8a49be7",
  715. "shasum": ""
  716. },
  717. "require": {
  718. "doctrine/dbal": "~2.3",
  719. "doctrine/doctrine-cache-bundle": "~1.0",
  720. "jdorn/sql-formatter": "~1.1",
  721. "php": ">=5.3.2",
  722. "symfony/console": "~2.3|~3.0",
  723. "symfony/dependency-injection": "~2.3|~3.0",
  724. "symfony/doctrine-bridge": "~2.2|~3.0",
  725. "symfony/framework-bundle": "~2.3|~3.0"
  726. },
  727. "require-dev": {
  728. "doctrine/orm": "~2.3",
  729. "phpunit/phpunit": "~4",
  730. "satooshi/php-coveralls": "~0.6.1",
  731. "symfony/phpunit-bridge": "~2.7|~3.0",
  732. "symfony/property-info": "~2.8|~3.0",
  733. "symfony/validator": "~2.2|~3.0",
  734. "symfony/yaml": "~2.2|~3.0",
  735. "twig/twig": "~1.10"
  736. },
  737. "suggest": {
  738. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  739. "symfony/web-profiler-bundle": "To use the data collector."
  740. },
  741. "type": "symfony-bundle",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-master": "1.6.x-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Symfony Community",
  759. "homepage": "http://symfony.com/contributors"
  760. },
  761. {
  762. "name": "Benjamin Eberlei",
  763. "email": "kontakt@beberlei.de"
  764. },
  765. {
  766. "name": "Doctrine Project",
  767. "homepage": "http://www.doctrine-project.org/"
  768. },
  769. {
  770. "name": "Fabien Potencier",
  771. "email": "fabien@symfony.com"
  772. }
  773. ],
  774. "description": "Symfony DoctrineBundle",
  775. "homepage": "http://www.doctrine-project.org",
  776. "keywords": [
  777. "database",
  778. "dbal",
  779. "orm",
  780. "persistence"
  781. ],
  782. "time": "2016-08-10 15:35:22"
  783. },
  784. {
  785. "name": "doctrine/doctrine-cache-bundle",
  786. "version": "1.3.0",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  790. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  795. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "doctrine/cache": "^1.4.2",
  800. "doctrine/inflector": "~1.0",
  801. "php": ">=5.3.2",
  802. "symfony/doctrine-bridge": "~2.2|~3.0"
  803. },
  804. "require-dev": {
  805. "instaclick/coding-standard": "~1.1",
  806. "instaclick/object-calisthenics-sniffs": "dev-master",
  807. "instaclick/symfony2-coding-standard": "dev-remaster",
  808. "phpunit/phpunit": "~4",
  809. "predis/predis": "~0.8",
  810. "satooshi/php-coveralls": "~0.6.1",
  811. "squizlabs/php_codesniffer": "~1.5",
  812. "symfony/console": "~2.2|~3.0",
  813. "symfony/finder": "~2.2|~3.0",
  814. "symfony/framework-bundle": "~2.2|~3.0",
  815. "symfony/phpunit-bridge": "~2.7|~3.0",
  816. "symfony/security-acl": "~2.3|~3.0",
  817. "symfony/validator": "~2.2|~3.0",
  818. "symfony/yaml": "~2.2|~3.0"
  819. },
  820. "suggest": {
  821. "symfony/security-acl": "For using this bundle to cache ACLs"
  822. },
  823. "type": "symfony-bundle",
  824. "extra": {
  825. "branch-alias": {
  826. "dev-master": "1.2.x-dev"
  827. }
  828. },
  829. "autoload": {
  830. "psr-4": {
  831. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  832. }
  833. },
  834. "notification-url": "https://packagist.org/downloads/",
  835. "license": [
  836. "MIT"
  837. ],
  838. "authors": [
  839. {
  840. "name": "Symfony Community",
  841. "homepage": "http://symfony.com/contributors"
  842. },
  843. {
  844. "name": "Benjamin Eberlei",
  845. "email": "kontakt@beberlei.de"
  846. },
  847. {
  848. "name": "Fabio B. Silva",
  849. "email": "fabio.bat.silva@gmail.com"
  850. },
  851. {
  852. "name": "Guilherme Blanco",
  853. "email": "guilhermeblanco@hotmail.com"
  854. },
  855. {
  856. "name": "Doctrine Project",
  857. "homepage": "http://www.doctrine-project.org/"
  858. },
  859. {
  860. "name": "Fabien Potencier",
  861. "email": "fabien@symfony.com"
  862. }
  863. ],
  864. "description": "Symfony Bundle for Doctrine Cache",
  865. "homepage": "http://www.doctrine-project.org",
  866. "keywords": [
  867. "cache",
  868. "caching"
  869. ],
  870. "time": "2016-01-26 17:28:51"
  871. },
  872. {
  873. "name": "doctrine/inflector",
  874. "version": "v1.1.0",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/doctrine/inflector.git",
  878. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  883. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": ">=5.3.2"
  888. },
  889. "require-dev": {
  890. "phpunit/phpunit": "4.*"
  891. },
  892. "type": "library",
  893. "extra": {
  894. "branch-alias": {
  895. "dev-master": "1.1.x-dev"
  896. }
  897. },
  898. "autoload": {
  899. "psr-0": {
  900. "Doctrine\\Common\\Inflector\\": "lib/"
  901. }
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "MIT"
  906. ],
  907. "authors": [
  908. {
  909. "name": "Roman Borschel",
  910. "email": "roman@code-factory.org"
  911. },
  912. {
  913. "name": "Benjamin Eberlei",
  914. "email": "kontakt@beberlei.de"
  915. },
  916. {
  917. "name": "Guilherme Blanco",
  918. "email": "guilhermeblanco@gmail.com"
  919. },
  920. {
  921. "name": "Jonathan Wage",
  922. "email": "jonwage@gmail.com"
  923. },
  924. {
  925. "name": "Johannes Schmitt",
  926. "email": "schmittjoh@gmail.com"
  927. }
  928. ],
  929. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  930. "homepage": "http://www.doctrine-project.org",
  931. "keywords": [
  932. "inflection",
  933. "pluralize",
  934. "singularize",
  935. "string"
  936. ],
  937. "time": "2015-11-06 14:35:42"
  938. },
  939. {
  940. "name": "doctrine/instantiator",
  941. "version": "1.0.5",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/doctrine/instantiator.git",
  945. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  950. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "php": ">=5.3,<8.0-DEV"
  955. },
  956. "require-dev": {
  957. "athletic/athletic": "~0.1.8",
  958. "ext-pdo": "*",
  959. "ext-phar": "*",
  960. "phpunit/phpunit": "~4.0",
  961. "squizlabs/php_codesniffer": "~2.0"
  962. },
  963. "type": "library",
  964. "extra": {
  965. "branch-alias": {
  966. "dev-master": "1.0.x-dev"
  967. }
  968. },
  969. "autoload": {
  970. "psr-4": {
  971. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  972. }
  973. },
  974. "notification-url": "https://packagist.org/downloads/",
  975. "license": [
  976. "MIT"
  977. ],
  978. "authors": [
  979. {
  980. "name": "Marco Pivetta",
  981. "email": "ocramius@gmail.com",
  982. "homepage": "http://ocramius.github.com/"
  983. }
  984. ],
  985. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  986. "homepage": "https://github.com/doctrine/instantiator",
  987. "keywords": [
  988. "constructor",
  989. "instantiate"
  990. ],
  991. "time": "2015-06-14 21:17:01"
  992. },
  993. {
  994. "name": "doctrine/lexer",
  995. "version": "v1.0.1",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/doctrine/lexer.git",
  999. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1004. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": ">=5.3.2"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "branch-alias": {
  1013. "dev-master": "1.0.x-dev"
  1014. }
  1015. },
  1016. "autoload": {
  1017. "psr-0": {
  1018. "Doctrine\\Common\\Lexer\\": "lib/"
  1019. }
  1020. },
  1021. "notification-url": "https://packagist.org/downloads/",
  1022. "license": [
  1023. "MIT"
  1024. ],
  1025. "authors": [
  1026. {
  1027. "name": "Roman Borschel",
  1028. "email": "roman@code-factory.org"
  1029. },
  1030. {
  1031. "name": "Guilherme Blanco",
  1032. "email": "guilhermeblanco@gmail.com"
  1033. },
  1034. {
  1035. "name": "Johannes Schmitt",
  1036. "email": "schmittjoh@gmail.com"
  1037. }
  1038. ],
  1039. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1040. "homepage": "http://www.doctrine-project.org",
  1041. "keywords": [
  1042. "lexer",
  1043. "parser"
  1044. ],
  1045. "time": "2014-09-09 13:34:57"
  1046. },
  1047. {
  1048. "name": "doctrine/orm",
  1049. "version": "v2.5.4",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/doctrine/doctrine2.git",
  1053. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  1058. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  1059. "shasum": ""
  1060. },
  1061. "require": {
  1062. "doctrine/cache": "~1.4",
  1063. "doctrine/collections": "~1.2",
  1064. "doctrine/common": ">=2.5-dev,<2.7-dev",
  1065. "doctrine/dbal": ">=2.5-dev,<2.6-dev",
  1066. "doctrine/instantiator": "~1.0.1",
  1067. "ext-pdo": "*",
  1068. "php": ">=5.4",
  1069. "symfony/console": "~2.5|~3.0"
  1070. },
  1071. "require-dev": {
  1072. "phpunit/phpunit": "~4.0",
  1073. "symfony/yaml": "~2.3|~3.0"
  1074. },
  1075. "suggest": {
  1076. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1077. },
  1078. "bin": [
  1079. "bin/doctrine",
  1080. "bin/doctrine.php"
  1081. ],
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "2.6.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-0": {
  1090. "Doctrine\\ORM\\": "lib/"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Roman Borschel",
  1100. "email": "roman@code-factory.org"
  1101. },
  1102. {
  1103. "name": "Benjamin Eberlei",
  1104. "email": "kontakt@beberlei.de"
  1105. },
  1106. {
  1107. "name": "Guilherme Blanco",
  1108. "email": "guilhermeblanco@gmail.com"
  1109. },
  1110. {
  1111. "name": "Jonathan Wage",
  1112. "email": "jonwage@gmail.com"
  1113. }
  1114. ],
  1115. "description": "Object-Relational-Mapper for PHP",
  1116. "homepage": "http://www.doctrine-project.org",
  1117. "keywords": [
  1118. "database",
  1119. "orm"
  1120. ],
  1121. "time": "2016-01-05 21:34:58"
  1122. },
  1123. {
  1124. "name": "ezyang/htmlpurifier",
  1125. "version": "v4.8.0",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/ezyang/htmlpurifier.git",
  1129. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  1134. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  1135. "shasum": ""
  1136. },
  1137. "require": {
  1138. "php": ">=5.2"
  1139. },
  1140. "type": "library",
  1141. "autoload": {
  1142. "psr-0": {
  1143. "HTMLPurifier": "library/"
  1144. },
  1145. "files": [
  1146. "library/HTMLPurifier.composer.php"
  1147. ]
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "LGPL"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Edward Z. Yang",
  1156. "email": "admin@htmlpurifier.org",
  1157. "homepage": "http://ezyang.com"
  1158. }
  1159. ],
  1160. "description": "Standards compliant HTML filter written in PHP",
  1161. "homepage": "http://htmlpurifier.org/",
  1162. "keywords": [
  1163. "html"
  1164. ],
  1165. "time": "2016-07-16 12:58:58"
  1166. },
  1167. {
  1168. "name": "friendsofsymfony/user-bundle",
  1169. "version": "dev-master",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1173. "reference": "528f0a93aebb641a0bc6471cc24562fbd01432cb"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/528f0a93aebb641a0bc6471cc24562fbd01432cb",
  1178. "reference": "528f0a93aebb641a0bc6471cc24562fbd01432cb",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "php": ">=5.3.9",
  1183. "symfony/form": "~2.3|~3.0",
  1184. "symfony/framework-bundle": "~2.3|~3.0",
  1185. "symfony/security-bundle": "~2.3|~3.0",
  1186. "symfony/twig-bundle": "~2.3|~3.0"
  1187. },
  1188. "conflict": {
  1189. "symfony/doctrine-bridge": "<2.3"
  1190. },
  1191. "require-dev": {
  1192. "doctrine/doctrine-bundle": "~1.3",
  1193. "swiftmailer/swiftmailer": "~4.3|~5",
  1194. "symfony/console": "~2.3|~3.0",
  1195. "symfony/phpunit-bridge": "~2.7|~3.0",
  1196. "symfony/validator": "~2.3|~3.0",
  1197. "symfony/yaml": "~2.3|~3.0",
  1198. "willdurand/propel-typehintable-behavior": "~1.0"
  1199. },
  1200. "suggest": {
  1201. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1202. },
  1203. "type": "symfony-bundle",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "2.0.x-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "psr-4": {
  1211. "FOS\\UserBundle\\": ""
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Christophe Coevoet",
  1221. "email": "stof@notk.org"
  1222. },
  1223. {
  1224. "name": "FriendsOfSymfony Community",
  1225. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1226. },
  1227. {
  1228. "name": "Thibault Duplessis",
  1229. "email": "thibault.duplessis@gmail.com"
  1230. }
  1231. ],
  1232. "description": "Symfony FOSUserBundle",
  1233. "homepage": "http://friendsofsymfony.github.com",
  1234. "keywords": [
  1235. "User management"
  1236. ],
  1237. "time": "2016-09-09 10:00:40"
  1238. },
  1239. {
  1240. "name": "hwi/oauth-bundle",
  1241. "version": "0.4.2",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1245. "reference": "2554f2b2947d1614d9e8b04800967b175b0afd8a"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/2554f2b2947d1614d9e8b04800967b175b0afd8a",
  1250. "reference": "2554f2b2947d1614d9e8b04800967b175b0afd8a",
  1251. "shasum": ""
  1252. },
  1253. "require": {
  1254. "kriswallsmith/buzz": "~0.13",
  1255. "php": ">=5.3.3",
  1256. "symfony/form": "~2.3",
  1257. "symfony/framework-bundle": "~2.3",
  1258. "symfony/options-resolver": "~2.3",
  1259. "symfony/security-bundle": "~2.3",
  1260. "symfony/yaml": "~2.3"
  1261. },
  1262. "conflict": {
  1263. "twig/twig": "<1.12"
  1264. },
  1265. "require-dev": {
  1266. "doctrine/orm": "~2.3",
  1267. "friendsofsymfony/user-bundle": "~1.3|~2.0",
  1268. "phpunit/phpunit": "~4.8|~5.0",
  1269. "symfony/phpunit-bridge": "~2.7",
  1270. "symfony/property-access": "~2.3",
  1271. "symfony/twig-bundle": "~2.3",
  1272. "symfony/validator": "~2.3"
  1273. },
  1274. "suggest": {
  1275. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1276. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1277. "symfony/property-access": "to use FOSUB integration with this bundle",
  1278. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1279. },
  1280. "type": "symfony-bundle",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "0.4-dev"
  1284. }
  1285. },
  1286. "autoload": {
  1287. "psr-4": {
  1288. "HWI\\Bundle\\OAuthBundle\\": ""
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "authors": [
  1296. {
  1297. "name": "Contributors",
  1298. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1299. },
  1300. {
  1301. "name": "Joseph Bielawski",
  1302. "email": "stloyd@gmail.com"
  1303. },
  1304. {
  1305. "name": "Alexander",
  1306. "email": "iam.asm89@gmail.com"
  1307. },
  1308. {
  1309. "name": "Geoffrey Bachelet",
  1310. "email": "geoffrey.bachelet@gmail.com"
  1311. }
  1312. ],
  1313. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1314. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1315. "keywords": [
  1316. "37signals",
  1317. "Authentication",
  1318. "Deezer",
  1319. "EVE Online",
  1320. "amazon",
  1321. "auth0",
  1322. "azure",
  1323. "bitbucket",
  1324. "bitly",
  1325. "box",
  1326. "bufferapp",
  1327. "dailymotion",
  1328. "deviantart",
  1329. "discogs",
  1330. "disqus",
  1331. "dropbox",
  1332. "eventbrite",
  1333. "facebook",
  1334. "firewall",
  1335. "fiware",
  1336. "flickr",
  1337. "foursquare",
  1338. "github",
  1339. "google",
  1340. "hubic",
  1341. "instagram",
  1342. "jira",
  1343. "linkedin",
  1344. "mail.ru",
  1345. "oauth",
  1346. "oauth1",
  1347. "oauth2",
  1348. "odnoklassniki",
  1349. "paypal",
  1350. "qq",
  1351. "reddit",
  1352. "runkeeper",
  1353. "salesforce",
  1354. "security",
  1355. "sensio connect",
  1356. "sina weibo",
  1357. "slack",
  1358. "sound cloud",
  1359. "spotify",
  1360. "stack exchange",
  1361. "stereomood",
  1362. "strava",
  1363. "toshl",
  1364. "trakt",
  1365. "trello",
  1366. "twitch",
  1367. "twitter",
  1368. "vkontakte",
  1369. "wechat",
  1370. "windows live",
  1371. "wordpress",
  1372. "xing",
  1373. "yahoo",
  1374. "yandex",
  1375. "youtube"
  1376. ],
  1377. "time": "2016-07-27 14:43:30"
  1378. },
  1379. {
  1380. "name": "ircmaxell/password-compat",
  1381. "version": "v1.0.4",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/ircmaxell/password_compat.git",
  1385. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1390. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1391. "shasum": ""
  1392. },
  1393. "require-dev": {
  1394. "phpunit/phpunit": "4.*"
  1395. },
  1396. "type": "library",
  1397. "autoload": {
  1398. "files": [
  1399. "lib/password.php"
  1400. ]
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Anthony Ferrara",
  1409. "email": "ircmaxell@php.net",
  1410. "homepage": "http://blog.ircmaxell.com"
  1411. }
  1412. ],
  1413. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  1414. "homepage": "https://github.com/ircmaxell/password_compat",
  1415. "keywords": [
  1416. "hashing",
  1417. "password"
  1418. ],
  1419. "time": "2014-11-20 16:49:30"
  1420. },
  1421. {
  1422. "name": "jdorn/sql-formatter",
  1423. "version": "v1.2.17",
  1424. "source": {
  1425. "type": "git",
  1426. "url": "https://github.com/jdorn/sql-formatter.git",
  1427. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1428. },
  1429. "dist": {
  1430. "type": "zip",
  1431. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1432. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1433. "shasum": ""
  1434. },
  1435. "require": {
  1436. "php": ">=5.2.4"
  1437. },
  1438. "require-dev": {
  1439. "phpunit/phpunit": "3.7.*"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "1.3.x-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "classmap": [
  1449. "lib"
  1450. ]
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Jeremy Dorn",
  1459. "email": "jeremy@jeremydorn.com",
  1460. "homepage": "http://jeremydorn.com/"
  1461. }
  1462. ],
  1463. "description": "a PHP SQL highlighting library",
  1464. "homepage": "https://github.com/jdorn/sql-formatter/",
  1465. "keywords": [
  1466. "highlight",
  1467. "sql"
  1468. ],
  1469. "time": "2014-01-12 16:20:24"
  1470. },
  1471. {
  1472. "name": "jms/aop-bundle",
  1473. "version": "1.2.0",
  1474. "source": {
  1475. "type": "git",
  1476. "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  1477. "reference": "78000d007e74283cc564a58e184d7f62548ad394"
  1478. },
  1479. "dist": {
  1480. "type": "zip",
  1481. "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/78000d007e74283cc564a58e184d7f62548ad394",
  1482. "reference": "78000d007e74283cc564a58e184d7f62548ad394",
  1483. "shasum": ""
  1484. },
  1485. "require": {
  1486. "jms/cg": "^1.1",
  1487. "php": ">=5.3.9",
  1488. "symfony/framework-bundle": "^2.3|^3.0"
  1489. },
  1490. "require-dev": {
  1491. "symfony/phpunit-bridge": "^2.7"
  1492. },
  1493. "type": "symfony-bundle",
  1494. "extra": {
  1495. "branch-alias": {
  1496. "dev-master": "1.1.x-dev"
  1497. }
  1498. },
  1499. "autoload": {
  1500. "psr-4": {
  1501. "JMS\\AopBundle\\": ""
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "Apache-2.0"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Johannes M. Schmitt",
  1511. "email": "schmittjoh@gmail.com"
  1512. }
  1513. ],
  1514. "description": "Adds AOP capabilities to Symfony2",
  1515. "keywords": [
  1516. "annotations",
  1517. "aop"
  1518. ],
  1519. "time": "2015-12-09 16:30:46"
  1520. },
  1521. {
  1522. "name": "jms/cg",
  1523. "version": "1.2.0",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/schmittjoh/cg-library.git",
  1527. "reference": "2152ea2c48f746a676debb841644ae64cae27835"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/2152ea2c48f746a676debb841644ae64cae27835",
  1532. "reference": "2152ea2c48f746a676debb841644ae64cae27835",
  1533. "shasum": ""
  1534. },
  1535. "require": {
  1536. "php": ">=5.3.0"
  1537. },
  1538. "require-dev": {
  1539. "phpunit/phpunit": ">=4.5"
  1540. },
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "1.1-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-0": {
  1549. "CG\\": "src/"
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "Apache2"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Johannes M. Schmitt",
  1559. "email": "schmittjoh@gmail.com"
  1560. }
  1561. ],
  1562. "description": "Toolset for generating PHP code",
  1563. "keywords": [
  1564. "code generation"
  1565. ],
  1566. "time": "2016-04-07 10:21:44"
  1567. },
  1568. {
  1569. "name": "jms/di-extra-bundle",
  1570. "version": "1.8.0",
  1571. "source": {
  1572. "type": "git",
  1573. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1574. "reference": "7c8e23ffd65eb05f7b76869aa8ef1949e90789c7"
  1575. },
  1576. "dist": {
  1577. "type": "zip",
  1578. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/7c8e23ffd65eb05f7b76869aa8ef1949e90789c7",
  1579. "reference": "7c8e23ffd65eb05f7b76869aa8ef1949e90789c7",
  1580. "shasum": ""
  1581. },
  1582. "require": {
  1583. "jms/aop-bundle": "~1.1",
  1584. "jms/metadata": "~1.0",
  1585. "php": "~5.3|~7.0",
  1586. "symfony/dependency-injection": "~2.3|~3.0",
  1587. "symfony/finder": "~2.3|~3.0",
  1588. "symfony/framework-bundle": "~2.3|~3.0",
  1589. "symfony/http-kernel": "^2.3.24|~3.0",
  1590. "symfony/process": "~2.3|~3.0",
  1591. "symfony/routing": "~2.3|~3.0"
  1592. },
  1593. "require-dev": {
  1594. "doctrine/doctrine-bundle": "~1.5",
  1595. "doctrine/orm": "~2.3",
  1596. "jms/security-extra-bundle": "~1.0",
  1597. "phpcollection/phpcollection": ">=0.2,<0.3-dev",
  1598. "sensio/framework-extra-bundle": "~2.0|~3.0",
  1599. "symfony/browser-kit": "~2.3|~3.0",
  1600. "symfony/class-loader": "~2.3|~3.0",
  1601. "symfony/expression-language": "~2.6|~3.0",
  1602. "symfony/form": "~2.3|~3.0",
  1603. "symfony/phpunit-bridge": "~2.7",
  1604. "symfony/security-bundle": "~2.3",
  1605. "symfony/twig-bundle": "~2.3|~3.0",
  1606. "symfony/validator": "~2.3|~3.0",
  1607. "symfony/yaml": "~2.3|~3.0"
  1608. },
  1609. "type": "symfony-bundle",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "1.7-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-4": {
  1617. "JMS\\DiExtraBundle\\": ""
  1618. }
  1619. },
  1620. "notification-url": "https://packagist.org/downloads/",
  1621. "license": [
  1622. "Apache-2.0"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Johannes M. Schmitt",
  1627. "email": "schmittjoh@gmail.com"
  1628. }
  1629. ],
  1630. "description": "Allows to configure dependency injection using annotations",
  1631. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1632. "keywords": [
  1633. "annotations",
  1634. "dependency injection"
  1635. ],
  1636. "time": "2016-09-09 12:35:58"
  1637. },
  1638. {
  1639. "name": "jms/metadata",
  1640. "version": "1.5.1",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/schmittjoh/metadata.git",
  1644. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1649. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "php": ">=5.3.0"
  1654. },
  1655. "require-dev": {
  1656. "doctrine/cache": "~1.0"
  1657. },
  1658. "type": "library",
  1659. "extra": {
  1660. "branch-alias": {
  1661. "dev-master": "1.5.x-dev"
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-0": {
  1666. "Metadata\\": "src/"
  1667. }
  1668. },
  1669. "notification-url": "https://packagist.org/downloads/",
  1670. "license": [
  1671. "Apache"
  1672. ],
  1673. "authors": [
  1674. {
  1675. "name": "Johannes Schmitt",
  1676. "email": "schmittjoh@gmail.com",
  1677. "homepage": "https://github.com/schmittjoh",
  1678. "role": "Developer of wrapped JMSSerializerBundle"
  1679. }
  1680. ],
  1681. "description": "Class/method/property metadata management in PHP",
  1682. "keywords": [
  1683. "annotations",
  1684. "metadata",
  1685. "xml",
  1686. "yaml"
  1687. ],
  1688. "time": "2014-07-12 07:13:19"
  1689. },
  1690. {
  1691. "name": "jms/parser-lib",
  1692. "version": "1.0.0",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/schmittjoh/parser-lib.git",
  1696. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1701. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1702. "shasum": ""
  1703. },
  1704. "require": {
  1705. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1706. },
  1707. "type": "library",
  1708. "extra": {
  1709. "branch-alias": {
  1710. "dev-master": "1.0-dev"
  1711. }
  1712. },
  1713. "autoload": {
  1714. "psr-0": {
  1715. "JMS\\": "src/"
  1716. }
  1717. },
  1718. "notification-url": "https://packagist.org/downloads/",
  1719. "license": [
  1720. "Apache2"
  1721. ],
  1722. "description": "A library for easily creating recursive-descent parsers.",
  1723. "time": "2012-11-18 18:08:43"
  1724. },
  1725. {
  1726. "name": "jms/security-extra-bundle",
  1727. "version": "1.6.0",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1731. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1736. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "jms/aop-bundle": "~1.0",
  1741. "jms/di-extra-bundle": "~1.4",
  1742. "jms/metadata": "~1.0",
  1743. "jms/parser-lib": "~1.0",
  1744. "php": "~5.3|~7.0",
  1745. "symfony/dependency-injection": "~2.3|~3.0",
  1746. "symfony/framework-bundle": "~2.3|~3.0",
  1747. "symfony/routing": "~2.3|~3.0",
  1748. "symfony/security-acl": "~2.2|~3.0",
  1749. "symfony/security-bundle": "~2.3|~3.0"
  1750. },
  1751. "require-dev": {
  1752. "doctrine/common": "~2.3",
  1753. "doctrine/doctrine-bundle": "~1.0",
  1754. "doctrine/orm": "~2.3",
  1755. "sensio/framework-extra-bundle": "^2.2.1|~3.0",
  1756. "symfony/browser-kit": "~2.0|~3.0",
  1757. "symfony/class-loader": "~2.1|~3.0",
  1758. "symfony/css-selector": "^2.0.5|~3.0",
  1759. "symfony/finder": "^2.0.5|~3.0",
  1760. "symfony/form": "~2.2|~3.0",
  1761. "symfony/phpunit-bridge": "~2.7|~3.0",
  1762. "symfony/process": "^2.0.5|~3.0",
  1763. "symfony/twig-bridge": "^2.2.6|~3.0",
  1764. "symfony/twig-bundle": "~2.2|~3.0",
  1765. "symfony/validator": "~2.2|~3.0",
  1766. "symfony/yaml": "^2.2.11|~3.0",
  1767. "twig/twig": "^1.23.1"
  1768. },
  1769. "type": "symfony-bundle",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "1.6-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "psr-4": {
  1777. "JMS\\SecurityExtraBundle\\": ""
  1778. }
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "Apache2"
  1783. ],
  1784. "authors": [
  1785. {
  1786. "name": "Johannes M. Schmitt",
  1787. "email": "schmittjoh@gmail.com"
  1788. }
  1789. ],
  1790. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1791. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1792. "keywords": [
  1793. "annotations",
  1794. "authorization",
  1795. "expression",
  1796. "secure",
  1797. "security"
  1798. ],
  1799. "time": "2016-02-03 15:29:16"
  1800. },
  1801. {
  1802. "name": "justinrainbow/json-schema",
  1803. "version": "2.0.5",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/justinrainbow/json-schema.git",
  1807. "reference": "6b2a33e6a768f96bdc2ead5600af0822eed17d67"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/6b2a33e6a768f96bdc2ead5600af0822eed17d67",
  1812. "reference": "6b2a33e6a768f96bdc2ead5600af0822eed17d67",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "php": ">=5.3.3"
  1817. },
  1818. "require-dev": {
  1819. "json-schema/json-schema-test-suite": "1.2.0",
  1820. "phpdocumentor/phpdocumentor": "~2",
  1821. "phpunit/phpunit": "^4.8.22"
  1822. },
  1823. "bin": [
  1824. "bin/validate-json"
  1825. ],
  1826. "type": "library",
  1827. "extra": {
  1828. "branch-alias": {
  1829. "dev-master": "2.0.x-dev"
  1830. }
  1831. },
  1832. "autoload": {
  1833. "psr-4": {
  1834. "JsonSchema\\": "src/JsonSchema/"
  1835. }
  1836. },
  1837. "notification-url": "https://packagist.org/downloads/",
  1838. "license": [
  1839. "MIT"
  1840. ],
  1841. "authors": [
  1842. {
  1843. "name": "Bruno Prieto Reis",
  1844. "email": "bruno.p.reis@gmail.com"
  1845. },
  1846. {
  1847. "name": "Justin Rainbow",
  1848. "email": "justin.rainbow@gmail.com"
  1849. },
  1850. {
  1851. "name": "Igor Wiedler",
  1852. "email": "igor@wiedler.ch"
  1853. },
  1854. {
  1855. "name": "Robert Schönthal",
  1856. "email": "seroscho@googlemail.com"
  1857. }
  1858. ],
  1859. "description": "A library to validate a json schema.",
  1860. "homepage": "https://github.com/justinrainbow/json-schema",
  1861. "keywords": [
  1862. "json",
  1863. "schema"
  1864. ],
  1865. "time": "2016-06-02 10:59:52"
  1866. },
  1867. {
  1868. "name": "knplabs/knp-menu",
  1869. "version": "v2.1.1",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1873. "reference": "9917b999a3c3d3901386d60c4888b07679291031"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/9917b999a3c3d3901386d60c4888b07679291031",
  1878. "reference": "9917b999a3c3d3901386d60c4888b07679291031",
  1879. "shasum": ""
  1880. },
  1881. "require": {
  1882. "php": ">=5.3.0"
  1883. },
  1884. "require-dev": {
  1885. "pimple/pimple": "~1.0",
  1886. "silex/silex": "~1.0",
  1887. "symfony/phpunit-bridge": "~2.7|~3.0",
  1888. "symfony/routing": "~2.3|~3.0",
  1889. "twig/twig": "~1.16|~2.0"
  1890. },
  1891. "suggest": {
  1892. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1893. "silex/silex": "for the integration with your silex application",
  1894. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1895. },
  1896. "type": "library",
  1897. "extra": {
  1898. "branch-alias": {
  1899. "dev-master": "2.1-dev"
  1900. }
  1901. },
  1902. "autoload": {
  1903. "psr-4": {
  1904. "Knp\\Menu\\": "src/Knp/Menu"
  1905. }
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Christophe Coevoet",
  1914. "email": "stof@notk.org"
  1915. },
  1916. {
  1917. "name": "KnpLabs",
  1918. "homepage": "http://knplabs.com"
  1919. },
  1920. {
  1921. "name": "Symfony Community",
  1922. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1923. }
  1924. ],
  1925. "description": "An object oriented menu library",
  1926. "homepage": "http://knplabs.com",
  1927. "keywords": [
  1928. "menu",
  1929. "tree"
  1930. ],
  1931. "time": "2016-01-08 15:42:54"
  1932. },
  1933. {
  1934. "name": "knplabs/knp-menu-bundle",
  1935. "version": "2.1.2",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1939. "reference": "42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca",
  1944. "reference": "42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca",
  1945. "shasum": ""
  1946. },
  1947. "require": {
  1948. "knplabs/knp-menu": "~2.1",
  1949. "symfony/framework-bundle": "~2.3|~3.0"
  1950. },
  1951. "require-dev": {
  1952. "symfony/expression-language": "~2.4|~3.0",
  1953. "symfony/phpunit-bridge": "~2.7|~3.0"
  1954. },
  1955. "type": "symfony-bundle",
  1956. "extra": {
  1957. "branch-alias": {
  1958. "dev-master": "2.1.x-dev"
  1959. }
  1960. },
  1961. "autoload": {
  1962. "psr-4": {
  1963. "Knp\\Bundle\\MenuBundle\\": ""
  1964. }
  1965. },
  1966. "notification-url": "https://packagist.org/downloads/",
  1967. "license": [
  1968. "MIT"
  1969. ],
  1970. "authors": [
  1971. {
  1972. "name": "Christophe Coevoet",
  1973. "email": "stof@notk.org"
  1974. },
  1975. {
  1976. "name": "KnpLabs",
  1977. "homepage": "http://knplabs.com"
  1978. },
  1979. {
  1980. "name": "Symfony Community",
  1981. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1982. }
  1983. ],
  1984. "description": "This bundle provides an integration of the KnpMenu library",
  1985. "keywords": [
  1986. "menu"
  1987. ],
  1988. "time": "2016-06-21 06:53:03"
  1989. },
  1990. {
  1991. "name": "kriswallsmith/buzz",
  1992. "version": "v0.15",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/kriswallsmith/Buzz.git",
  1996. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
  2001. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
  2002. "shasum": ""
  2003. },
  2004. "require": {
  2005. "php": ">=5.3.0"
  2006. },
  2007. "require-dev": {
  2008. "phpunit/phpunit": "3.7.*"
  2009. },
  2010. "suggest": {
  2011. "ext-curl": "*"
  2012. },
  2013. "type": "library",
  2014. "autoload": {
  2015. "psr-0": {
  2016. "Buzz": "lib/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Kris Wallsmith",
  2026. "email": "kris.wallsmith@gmail.com",
  2027. "homepage": "http://kriswallsmith.net/"
  2028. }
  2029. ],
  2030. "description": "Lightweight HTTP client",
  2031. "homepage": "https://github.com/kriswallsmith/Buzz",
  2032. "keywords": [
  2033. "curl",
  2034. "http client"
  2035. ],
  2036. "time": "2015-06-25 17:26:56"
  2037. },
  2038. {
  2039. "name": "monolog/monolog",
  2040. "version": "1.21.0",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/Seldaek/monolog.git",
  2044. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  2049. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.3.0",
  2054. "psr/log": "~1.0"
  2055. },
  2056. "provide": {
  2057. "psr/log-implementation": "1.0.0"
  2058. },
  2059. "require-dev": {
  2060. "aws/aws-sdk-php": "^2.4.9",
  2061. "doctrine/couchdb": "~1.0@dev",
  2062. "graylog2/gelf-php": "~1.0",
  2063. "jakub-onderka/php-parallel-lint": "0.9",
  2064. "php-amqplib/php-amqplib": "~2.4",
  2065. "php-console/php-console": "^3.1.3",
  2066. "phpunit/phpunit": "~4.5",
  2067. "phpunit/phpunit-mock-objects": "2.3.0",
  2068. "ruflin/elastica": ">=0.90 <3.0",
  2069. "sentry/sentry": "^0.13",
  2070. "swiftmailer/swiftmailer": "~5.3"
  2071. },
  2072. "suggest": {
  2073. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2074. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2075. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2076. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2077. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2078. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2079. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2080. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2081. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2082. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2083. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2084. },
  2085. "type": "library",
  2086. "extra": {
  2087. "branch-alias": {
  2088. "dev-master": "2.0.x-dev"
  2089. }
  2090. },
  2091. "autoload": {
  2092. "psr-4": {
  2093. "Monolog\\": "src/Monolog"
  2094. }
  2095. },
  2096. "notification-url": "https://packagist.org/downloads/",
  2097. "license": [
  2098. "MIT"
  2099. ],
  2100. "authors": [
  2101. {
  2102. "name": "Jordi Boggiano",
  2103. "email": "j.boggiano@seld.be",
  2104. "homepage": "http://seld.be"
  2105. }
  2106. ],
  2107. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2108. "homepage": "http://github.com/Seldaek/monolog",
  2109. "keywords": [
  2110. "log",
  2111. "logging",
  2112. "psr-3"
  2113. ],
  2114. "time": "2016-07-29 03:23:52"
  2115. },
  2116. {
  2117. "name": "nelmio/cors-bundle",
  2118. "version": "1.4.1",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2122. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/fa14a81737c605bf4766054cdcb72a16a433d537",
  2127. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "symfony/framework-bundle": "^2.2 || ^3.0"
  2132. },
  2133. "require-dev": {
  2134. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
  2135. "mockery/mockery": "0.9.*"
  2136. },
  2137. "type": "symfony-bundle",
  2138. "extra": {
  2139. "branch-alias": {
  2140. "dev-master": "1.4.x-dev"
  2141. }
  2142. },
  2143. "autoload": {
  2144. "psr-4": {
  2145. "Nelmio\\CorsBundle\\": ""
  2146. },
  2147. "exclude-from-classmap": [
  2148. "/Tests/"
  2149. ]
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Nelmio",
  2158. "homepage": "http://nelm.io"
  2159. },
  2160. {
  2161. "name": "Symfony Community",
  2162. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2163. }
  2164. ],
  2165. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2166. "keywords": [
  2167. "api",
  2168. "cors",
  2169. "crossdomain"
  2170. ],
  2171. "time": "2015-12-09 17:26:34"
  2172. },
  2173. {
  2174. "name": "nelmio/security-bundle",
  2175. "version": "1.10.0",
  2176. "source": {
  2177. "type": "git",
  2178. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2179. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9"
  2180. },
  2181. "dist": {
  2182. "type": "zip",
  2183. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2184. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2185. "shasum": ""
  2186. },
  2187. "require": {
  2188. "symfony/framework-bundle": "~2.3|~3.0",
  2189. "symfony/security": "~2.3|~3.0"
  2190. },
  2191. "require-dev": {
  2192. "phpunit/phpunit": "^5.2"
  2193. },
  2194. "type": "symfony-bundle",
  2195. "extra": {
  2196. "branch-alias": {
  2197. "dev-master": "1.10.x-dev"
  2198. }
  2199. },
  2200. "autoload": {
  2201. "psr-4": {
  2202. "Nelmio\\SecurityBundle\\": ""
  2203. }
  2204. },
  2205. "notification-url": "https://packagist.org/downloads/",
  2206. "license": [
  2207. "MIT"
  2208. ],
  2209. "authors": [
  2210. {
  2211. "name": "Nelmio",
  2212. "homepage": "http://nelm.io"
  2213. },
  2214. {
  2215. "name": "Symfony Community",
  2216. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2217. }
  2218. ],
  2219. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2220. "keywords": [
  2221. "security"
  2222. ],
  2223. "time": "2016-02-23 10:42:13"
  2224. },
  2225. {
  2226. "name": "nelmio/solarium-bundle",
  2227. "version": "v1.1.0",
  2228. "target-dir": "Nelmio/SolariumBundle",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  2232. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  2237. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  2238. "shasum": ""
  2239. },
  2240. "require": {
  2241. "solarium/solarium": "~2.4.0",
  2242. "symfony/framework-bundle": "2.*"
  2243. },
  2244. "require-dev": {
  2245. "symfony/yaml": "2.*"
  2246. },
  2247. "type": "symfony-bundle",
  2248. "extra": {
  2249. "branch-alias": {
  2250. "dev-master": "1.1-dev"
  2251. }
  2252. },
  2253. "autoload": {
  2254. "psr-0": {
  2255. "Nelmio\\SolariumBundle": ""
  2256. }
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "MIT"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Nelmio",
  2265. "homepage": "http://nelm.io"
  2266. },
  2267. {
  2268. "name": "Symfony Community",
  2269. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  2270. }
  2271. ],
  2272. "description": "Integration with solarium solr client.",
  2273. "keywords": [
  2274. "search",
  2275. "solarium",
  2276. "solr"
  2277. ],
  2278. "time": "2013-01-07 10:35:43"
  2279. },
  2280. {
  2281. "name": "pagerfanta/pagerfanta",
  2282. "version": "v1.0.3",
  2283. "source": {
  2284. "type": "git",
  2285. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2286. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2287. },
  2288. "dist": {
  2289. "type": "zip",
  2290. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2291. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2292. "shasum": ""
  2293. },
  2294. "require": {
  2295. "php": ">=5.3.0"
  2296. },
  2297. "require-dev": {
  2298. "doctrine/orm": "~2.3",
  2299. "doctrine/phpcr-odm": "1.*",
  2300. "jackalope/jackalope-doctrine-dbal": "1.*",
  2301. "jmikola/geojson": "~1.0",
  2302. "mandango/mandango": "~1.0@dev",
  2303. "mandango/mondator": "~1.0@dev",
  2304. "phpunit/phpunit": "~4",
  2305. "propel/propel1": "~1.6",
  2306. "ruflin/elastica": "~1.3",
  2307. "solarium/solarium": "~3.1"
  2308. },
  2309. "suggest": {
  2310. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2311. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2312. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2313. "mandango/mandango": "To use the MandangoAdapter.",
  2314. "propel/propel1": "To use the PropelAdapter",
  2315. "solarium/solarium": "To use the SolariumAdapter."
  2316. },
  2317. "type": "library",
  2318. "extra": {
  2319. "branch-alias": {
  2320. "dev-master": "1.0.x-dev"
  2321. }
  2322. },
  2323. "autoload": {
  2324. "psr-0": {
  2325. "Pagerfanta\\": "src/"
  2326. }
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "MIT"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "Pablo Díez",
  2335. "email": "pablodip@gmail.com"
  2336. }
  2337. ],
  2338. "description": "Pagination for PHP 5.3",
  2339. "keywords": [
  2340. "page",
  2341. "pagination",
  2342. "paginator",
  2343. "paging"
  2344. ],
  2345. "time": "2014-10-06 10:57:25"
  2346. },
  2347. {
  2348. "name": "paragonie/random_compat",
  2349. "version": "v2.0.2",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/paragonie/random_compat.git",
  2353. "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf",
  2358. "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "php": ">=5.2.0"
  2363. },
  2364. "require-dev": {
  2365. "phpunit/phpunit": "4.*|5.*"
  2366. },
  2367. "suggest": {
  2368. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2369. },
  2370. "type": "library",
  2371. "autoload": {
  2372. "files": [
  2373. "lib/random.php"
  2374. ]
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "MIT"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Paragon Initiative Enterprises",
  2383. "email": "security@paragonie.com",
  2384. "homepage": "https://paragonie.com"
  2385. }
  2386. ],
  2387. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2388. "keywords": [
  2389. "csprng",
  2390. "pseudorandom",
  2391. "random"
  2392. ],
  2393. "time": "2016-04-03 06:00:07"
  2394. },
  2395. {
  2396. "name": "phpoption/phpoption",
  2397. "version": "1.5.0",
  2398. "source": {
  2399. "type": "git",
  2400. "url": "https://github.com/schmittjoh/php-option.git",
  2401. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2402. },
  2403. "dist": {
  2404. "type": "zip",
  2405. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2406. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2407. "shasum": ""
  2408. },
  2409. "require": {
  2410. "php": ">=5.3.0"
  2411. },
  2412. "require-dev": {
  2413. "phpunit/phpunit": "4.7.*"
  2414. },
  2415. "type": "library",
  2416. "extra": {
  2417. "branch-alias": {
  2418. "dev-master": "1.3-dev"
  2419. }
  2420. },
  2421. "autoload": {
  2422. "psr-0": {
  2423. "PhpOption\\": "src/"
  2424. }
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "Apache2"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Johannes M. Schmitt",
  2433. "email": "schmittjoh@gmail.com"
  2434. }
  2435. ],
  2436. "description": "Option Type for PHP",
  2437. "keywords": [
  2438. "language",
  2439. "option",
  2440. "php",
  2441. "type"
  2442. ],
  2443. "time": "2015-07-25 16:39:46"
  2444. },
  2445. {
  2446. "name": "predis/predis",
  2447. "version": "v1.1.1",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://github.com/nrk/predis.git",
  2451. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2456. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  2457. "shasum": ""
  2458. },
  2459. "require": {
  2460. "php": ">=5.3.9"
  2461. },
  2462. "require-dev": {
  2463. "phpunit/phpunit": "~4.8"
  2464. },
  2465. "suggest": {
  2466. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2467. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2468. },
  2469. "type": "library",
  2470. "autoload": {
  2471. "psr-4": {
  2472. "Predis\\": "src/"
  2473. }
  2474. },
  2475. "notification-url": "https://packagist.org/downloads/",
  2476. "license": [
  2477. "MIT"
  2478. ],
  2479. "authors": [
  2480. {
  2481. "name": "Daniele Alessandri",
  2482. "email": "suppakilla@gmail.com",
  2483. "homepage": "http://clorophilla.net"
  2484. }
  2485. ],
  2486. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2487. "homepage": "http://github.com/nrk/predis",
  2488. "keywords": [
  2489. "nosql",
  2490. "predis",
  2491. "redis"
  2492. ],
  2493. "time": "2016-06-16 16:22:20"
  2494. },
  2495. {
  2496. "name": "psr/log",
  2497. "version": "1.0.0",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/php-fig/log.git",
  2501. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2506. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2507. "shasum": ""
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-0": {
  2512. "Psr\\Log\\": ""
  2513. }
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "PHP-FIG",
  2522. "homepage": "http://www.php-fig.org/"
  2523. }
  2524. ],
  2525. "description": "Common interface for logging libraries",
  2526. "keywords": [
  2527. "log",
  2528. "psr",
  2529. "psr-3"
  2530. ],
  2531. "time": "2012-12-21 11:40:51"
  2532. },
  2533. {
  2534. "name": "seld/cli-prompt",
  2535. "version": "1.0.2",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/Seldaek/cli-prompt.git",
  2539. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  2544. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "php": ">=5.3"
  2549. },
  2550. "type": "library",
  2551. "extra": {
  2552. "branch-alias": {
  2553. "dev-master": "1.x-dev"
  2554. }
  2555. },
  2556. "autoload": {
  2557. "psr-4": {
  2558. "Seld\\CliPrompt\\": "src/"
  2559. }
  2560. },
  2561. "notification-url": "https://packagist.org/downloads/",
  2562. "license": [
  2563. "MIT"
  2564. ],
  2565. "authors": [
  2566. {
  2567. "name": "Jordi Boggiano",
  2568. "email": "j.boggiano@seld.be"
  2569. }
  2570. ],
  2571. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2572. "keywords": [
  2573. "cli",
  2574. "console",
  2575. "hidden",
  2576. "input",
  2577. "prompt"
  2578. ],
  2579. "time": "2016-04-18 09:31:41"
  2580. },
  2581. {
  2582. "name": "seld/jsonlint",
  2583. "version": "1.4.0",
  2584. "source": {
  2585. "type": "git",
  2586. "url": "https://github.com/Seldaek/jsonlint.git",
  2587. "reference": "66834d3e3566bb5798db7294619388786ae99394"
  2588. },
  2589. "dist": {
  2590. "type": "zip",
  2591. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394",
  2592. "reference": "66834d3e3566bb5798db7294619388786ae99394",
  2593. "shasum": ""
  2594. },
  2595. "require": {
  2596. "php": "^5.3 || ^7.0"
  2597. },
  2598. "bin": [
  2599. "bin/jsonlint"
  2600. ],
  2601. "type": "library",
  2602. "autoload": {
  2603. "psr-4": {
  2604. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2605. }
  2606. },
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "MIT"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "Jordi Boggiano",
  2614. "email": "j.boggiano@seld.be",
  2615. "homepage": "http://seld.be"
  2616. }
  2617. ],
  2618. "description": "JSON Linter",
  2619. "keywords": [
  2620. "json",
  2621. "linter",
  2622. "parser",
  2623. "validator"
  2624. ],
  2625. "time": "2015-11-21 02:21:41"
  2626. },
  2627. {
  2628. "name": "seld/phar-utils",
  2629. "version": "1.0.1",
  2630. "source": {
  2631. "type": "git",
  2632. "url": "https://github.com/Seldaek/phar-utils.git",
  2633. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2634. },
  2635. "dist": {
  2636. "type": "zip",
  2637. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2638. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2639. "shasum": ""
  2640. },
  2641. "require": {
  2642. "php": ">=5.3"
  2643. },
  2644. "type": "library",
  2645. "extra": {
  2646. "branch-alias": {
  2647. "dev-master": "1.x-dev"
  2648. }
  2649. },
  2650. "autoload": {
  2651. "psr-4": {
  2652. "Seld\\PharUtils\\": "src/"
  2653. }
  2654. },
  2655. "notification-url": "https://packagist.org/downloads/",
  2656. "license": [
  2657. "MIT"
  2658. ],
  2659. "authors": [
  2660. {
  2661. "name": "Jordi Boggiano",
  2662. "email": "j.boggiano@seld.be"
  2663. }
  2664. ],
  2665. "description": "PHAR file format utilities, for when PHP phars you up",
  2666. "keywords": [
  2667. "phra"
  2668. ],
  2669. "time": "2015-10-13 18:44:15"
  2670. },
  2671. {
  2672. "name": "sensio/distribution-bundle",
  2673. "version": "v5.0.9",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2677. "reference": "e5e0d8d06b07864b2752bd865537b0817edf4c5a"
  2678. },
  2679. "dist": {
  2680. "type": "zip",
  2681. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/e5e0d8d06b07864b2752bd865537b0817edf4c5a",
  2682. "reference": "e5e0d8d06b07864b2752bd865537b0817edf4c5a",
  2683. "shasum": ""
  2684. },
  2685. "require": {
  2686. "php": ">=5.3.9",
  2687. "sensiolabs/security-checker": "~3.0",
  2688. "symfony/class-loader": "~2.3|~3.0",
  2689. "symfony/config": "~2.3|~3.0",
  2690. "symfony/dependency-injection": "~2.3|~3.0",
  2691. "symfony/filesystem": "~2.3|~3.0",
  2692. "symfony/http-kernel": "~2.3|~3.0",
  2693. "symfony/process": "~2.3|~3.0"
  2694. },
  2695. "type": "symfony-bundle",
  2696. "extra": {
  2697. "branch-alias": {
  2698. "dev-master": "5.0.x-dev"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Sensio\\Bundle\\DistributionBundle\\": ""
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Fabien Potencier",
  2713. "email": "fabien@symfony.com"
  2714. }
  2715. ],
  2716. "description": "Base bundle for Symfony Distributions",
  2717. "keywords": [
  2718. "configuration",
  2719. "distribution"
  2720. ],
  2721. "time": "2016-09-06 01:05:01"
  2722. },
  2723. {
  2724. "name": "sensio/framework-extra-bundle",
  2725. "version": "v3.0.16",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2729. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2734. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2735. "shasum": ""
  2736. },
  2737. "require": {
  2738. "doctrine/common": "~2.2",
  2739. "symfony/dependency-injection": "~2.3|~3.0",
  2740. "symfony/framework-bundle": "~2.3|~3.0"
  2741. },
  2742. "require-dev": {
  2743. "symfony/browser-kit": "~2.3|~3.0",
  2744. "symfony/dom-crawler": "~2.3|~3.0",
  2745. "symfony/expression-language": "~2.4|~3.0",
  2746. "symfony/finder": "~2.3|~3.0",
  2747. "symfony/phpunit-bridge": "~2.7|~3.0",
  2748. "symfony/security-bundle": "~2.4|~3.0",
  2749. "symfony/twig-bundle": "~2.3|~3.0",
  2750. "twig/twig": "~1.11|~2.0"
  2751. },
  2752. "suggest": {
  2753. "symfony/expression-language": "",
  2754. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  2755. "symfony/security-bundle": ""
  2756. },
  2757. "type": "symfony-bundle",
  2758. "extra": {
  2759. "branch-alias": {
  2760. "dev-master": "3.0.x-dev"
  2761. }
  2762. },
  2763. "autoload": {
  2764. "psr-4": {
  2765. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  2766. }
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "MIT"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "Fabien Potencier",
  2775. "email": "fabien@symfony.com"
  2776. }
  2777. ],
  2778. "description": "This bundle provides a way to configure your controllers with annotations",
  2779. "keywords": [
  2780. "annotations",
  2781. "controllers"
  2782. ],
  2783. "time": "2016-03-25 17:08:27"
  2784. },
  2785. {
  2786. "name": "sensio/generator-bundle",
  2787. "version": "v3.0.8",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2791. "reference": "3c20d16512f37d2be159eca0411b99a141b90fa4"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/3c20d16512f37d2be159eca0411b99a141b90fa4",
  2796. "reference": "3c20d16512f37d2be159eca0411b99a141b90fa4",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "symfony/console": "~2.7|~3.0",
  2801. "symfony/framework-bundle": "~2.7|~3.0",
  2802. "symfony/process": "~2.7|~3.0",
  2803. "symfony/yaml": "~2.7|~3.0"
  2804. },
  2805. "require-dev": {
  2806. "doctrine/orm": "~2.4",
  2807. "symfony/doctrine-bridge": "~2.7|~3.0",
  2808. "twig/twig": "~1.18"
  2809. },
  2810. "type": "symfony-bundle",
  2811. "extra": {
  2812. "branch-alias": {
  2813. "dev-master": "3.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2819. },
  2820. "exclude-from-classmap": [
  2821. "/Tests/"
  2822. ]
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "Fabien Potencier",
  2831. "email": "fabien@symfony.com"
  2832. }
  2833. ],
  2834. "description": "This bundle generates code for you",
  2835. "time": "2016-09-06 01:30:19"
  2836. },
  2837. {
  2838. "name": "sensiolabs/security-checker",
  2839. "version": "v3.0.2",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/sensiolabs/security-checker.git",
  2843. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/21696b0daa731064c23cfb694c60a2584a7b6e93",
  2848. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "symfony/console": "~2.0|~3.0"
  2853. },
  2854. "bin": [
  2855. "security-checker"
  2856. ],
  2857. "type": "library",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-master": "3.0-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-0": {
  2865. "SensioLabs\\Security": ""
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Fabien Potencier",
  2875. "email": "fabien.potencier@gmail.com"
  2876. }
  2877. ],
  2878. "description": "A security checker for your composer.lock",
  2879. "time": "2015-11-07 08:07:40"
  2880. },
  2881. {
  2882. "name": "snc/redis-bundle",
  2883. "version": "2.0.0",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://github.com/snc/SncRedisBundle.git",
  2887. "reference": "b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb",
  2892. "reference": "b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb",
  2893. "shasum": ""
  2894. },
  2895. "require": {
  2896. "php": ">=5.3.3",
  2897. "symfony/framework-bundle": "^2.7 || ^3.0",
  2898. "symfony/yaml": "^2.7 || ^3.0"
  2899. },
  2900. "require-dev": {
  2901. "doctrine/cache": "1.*",
  2902. "phpunit/phpunit": "4.8.*",
  2903. "predis/predis": "^1.0",
  2904. "symfony/console": "^2.7 || ^3.0",
  2905. "symfony/phpunit-bridge": "^2.7 || ^3.0"
  2906. },
  2907. "suggest": {
  2908. "monolog/monolog": "If you want to use the monolog redis handler.",
  2909. "predis/predis": "If you want to use predis.",
  2910. "symfony/console": "If you want to use commands to interact with the redis database"
  2911. },
  2912. "type": "symfony-bundle",
  2913. "extra": {
  2914. "branch-alias": {
  2915. "dev-master": "2.x-dev"
  2916. }
  2917. },
  2918. "autoload": {
  2919. "psr-4": {
  2920. "Snc\\RedisBundle\\": ""
  2921. }
  2922. },
  2923. "notification-url": "https://packagist.org/downloads/",
  2924. "license": [
  2925. "MIT"
  2926. ],
  2927. "authors": [
  2928. {
  2929. "name": "Henrik Westphal",
  2930. "email": "henrik.westphal@gmail.com"
  2931. },
  2932. {
  2933. "name": "Community contributors",
  2934. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2935. }
  2936. ],
  2937. "description": "A Redis bundle for Symfony",
  2938. "homepage": "https://github.com/snc/SncRedisBundle",
  2939. "keywords": [
  2940. "nosql",
  2941. "redis",
  2942. "symfony"
  2943. ],
  2944. "time": "2016-06-17 11:50:26"
  2945. },
  2946. {
  2947. "name": "solarium/solarium",
  2948. "version": "2.4.1",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/solariumphp/solarium.git",
  2952. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2957. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "php": ">=5.2.0"
  2962. },
  2963. "type": "library",
  2964. "autoload": {
  2965. "psr-0": {
  2966. "Solarium": "library/"
  2967. }
  2968. },
  2969. "notification-url": "https://packagist.org/downloads/",
  2970. "license": [
  2971. "NewBSD"
  2972. ],
  2973. "authors": [
  2974. {
  2975. "name": "See GitHub contributors",
  2976. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2977. }
  2978. ],
  2979. "description": "PHP Solr client",
  2980. "homepage": "http://www.solarium-project.org",
  2981. "keywords": [
  2982. "php",
  2983. "search",
  2984. "solr"
  2985. ],
  2986. "time": "2013-02-11 13:12:43"
  2987. },
  2988. {
  2989. "name": "swiftmailer/swiftmailer",
  2990. "version": "v5.4.3",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2994. "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
  2999. "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "php": ">=5.3.3"
  3004. },
  3005. "require-dev": {
  3006. "mockery/mockery": "~0.9.1"
  3007. },
  3008. "type": "library",
  3009. "extra": {
  3010. "branch-alias": {
  3011. "dev-master": "5.4-dev"
  3012. }
  3013. },
  3014. "autoload": {
  3015. "files": [
  3016. "lib/swift_required.php"
  3017. ]
  3018. },
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "MIT"
  3022. ],
  3023. "authors": [
  3024. {
  3025. "name": "Chris Corbyn"
  3026. },
  3027. {
  3028. "name": "Fabien Potencier",
  3029. "email": "fabien@symfony.com"
  3030. }
  3031. ],
  3032. "description": "Swiftmailer, free feature-rich PHP mailer",
  3033. "homepage": "http://swiftmailer.org",
  3034. "keywords": [
  3035. "email",
  3036. "mail",
  3037. "mailer"
  3038. ],
  3039. "time": "2016-07-08 11:51:25"
  3040. },
  3041. {
  3042. "name": "symfony/monolog-bundle",
  3043. "version": "2.11.1",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://github.com/symfony/monolog-bundle.git",
  3047. "reference": "e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00",
  3052. "reference": "e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00",
  3053. "shasum": ""
  3054. },
  3055. "require": {
  3056. "monolog/monolog": "~1.18",
  3057. "php": ">=5.3.2",
  3058. "symfony/config": "~2.3|~3.0",
  3059. "symfony/dependency-injection": "~2.3|~3.0",
  3060. "symfony/http-kernel": "~2.3|~3.0",
  3061. "symfony/monolog-bridge": "~2.3|~3.0"
  3062. },
  3063. "require-dev": {
  3064. "phpunit/phpunit": "^4.8",
  3065. "symfony/console": "~2.3|~3.0",
  3066. "symfony/yaml": "~2.3|~3.0"
  3067. },
  3068. "type": "symfony-bundle",
  3069. "extra": {
  3070. "branch-alias": {
  3071. "dev-master": "2.x-dev"
  3072. }
  3073. },
  3074. "autoload": {
  3075. "psr-4": {
  3076. "Symfony\\Bundle\\MonologBundle\\": ""
  3077. }
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "Symfony Community",
  3086. "homepage": "http://symfony.com/contributors"
  3087. },
  3088. {
  3089. "name": "Fabien Potencier",
  3090. "email": "fabien@symfony.com"
  3091. }
  3092. ],
  3093. "description": "Symfony MonologBundle",
  3094. "homepage": "http://symfony.com",
  3095. "keywords": [
  3096. "log",
  3097. "logging"
  3098. ],
  3099. "time": "2016-04-13 16:21:01"
  3100. },
  3101. {
  3102. "name": "symfony/polyfill-apcu",
  3103. "version": "v1.2.0",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/symfony/polyfill-apcu.git",
  3107. "reference": "6d58bceaeea2c2d3eb62503839b18646e161cd6b"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/6d58bceaeea2c2d3eb62503839b18646e161cd6b",
  3112. "reference": "6d58bceaeea2c2d3eb62503839b18646e161cd6b",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=5.3.3"
  3117. },
  3118. "type": "library",
  3119. "extra": {
  3120. "branch-alias": {
  3121. "dev-master": "1.2-dev"
  3122. }
  3123. },
  3124. "autoload": {
  3125. "files": [
  3126. "bootstrap.php"
  3127. ]
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "Nicolas Grekas",
  3136. "email": "p@tchwork.com"
  3137. },
  3138. {
  3139. "name": "Symfony Community",
  3140. "homepage": "https://symfony.com/contributors"
  3141. }
  3142. ],
  3143. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  3144. "homepage": "https://symfony.com",
  3145. "keywords": [
  3146. "apcu",
  3147. "compatibility",
  3148. "polyfill",
  3149. "portable",
  3150. "shim"
  3151. ],
  3152. "time": "2016-05-18 14:26:46"
  3153. },
  3154. {
  3155. "name": "symfony/polyfill-intl-icu",
  3156. "version": "v1.2.0",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3160. "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/0f8dc2c45f69f8672379e9210bca4a115cd5146f",
  3165. "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "php": ">=5.3.3",
  3170. "symfony/intl": "~2.3|~3.0"
  3171. },
  3172. "suggest": {
  3173. "ext-intl": "For best performance"
  3174. },
  3175. "type": "library",
  3176. "extra": {
  3177. "branch-alias": {
  3178. "dev-master": "1.2-dev"
  3179. }
  3180. },
  3181. "autoload": {
  3182. "files": [
  3183. "bootstrap.php"
  3184. ]
  3185. },
  3186. "notification-url": "https://packagist.org/downloads/",
  3187. "license": [
  3188. "MIT"
  3189. ],
  3190. "authors": [
  3191. {
  3192. "name": "Nicolas Grekas",
  3193. "email": "p@tchwork.com"
  3194. },
  3195. {
  3196. "name": "Symfony Community",
  3197. "homepage": "https://symfony.com/contributors"
  3198. }
  3199. ],
  3200. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3201. "homepage": "https://symfony.com",
  3202. "keywords": [
  3203. "compatibility",
  3204. "icu",
  3205. "intl",
  3206. "polyfill",
  3207. "portable",
  3208. "shim"
  3209. ],
  3210. "time": "2016-05-18 14:26:46"
  3211. },
  3212. {
  3213. "name": "symfony/polyfill-mbstring",
  3214. "version": "v1.2.0",
  3215. "source": {
  3216. "type": "git",
  3217. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3218. "reference": "dff51f72b0706335131b00a7f49606168c582594"
  3219. },
  3220. "dist": {
  3221. "type": "zip",
  3222. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594",
  3223. "reference": "dff51f72b0706335131b00a7f49606168c582594",
  3224. "shasum": ""
  3225. },
  3226. "require": {
  3227. "php": ">=5.3.3"
  3228. },
  3229. "suggest": {
  3230. "ext-mbstring": "For best performance"
  3231. },
  3232. "type": "library",
  3233. "extra": {
  3234. "branch-alias": {
  3235. "dev-master": "1.2-dev"
  3236. }
  3237. },
  3238. "autoload": {
  3239. "psr-4": {
  3240. "Symfony\\Polyfill\\Mbstring\\": ""
  3241. },
  3242. "files": [
  3243. "bootstrap.php"
  3244. ]
  3245. },
  3246. "notification-url": "https://packagist.org/downloads/",
  3247. "license": [
  3248. "MIT"
  3249. ],
  3250. "authors": [
  3251. {
  3252. "name": "Nicolas Grekas",
  3253. "email": "p@tchwork.com"
  3254. },
  3255. {
  3256. "name": "Symfony Community",
  3257. "homepage": "https://symfony.com/contributors"
  3258. }
  3259. ],
  3260. "description": "Symfony polyfill for the Mbstring extension",
  3261. "homepage": "https://symfony.com",
  3262. "keywords": [
  3263. "compatibility",
  3264. "mbstring",
  3265. "polyfill",
  3266. "portable",
  3267. "shim"
  3268. ],
  3269. "time": "2016-05-18 14:26:46"
  3270. },
  3271. {
  3272. "name": "symfony/polyfill-php54",
  3273. "version": "v1.2.0",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/symfony/polyfill-php54.git",
  3277. "reference": "34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1",
  3282. "reference": "34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "php": ">=5.3.3"
  3287. },
  3288. "type": "library",
  3289. "extra": {
  3290. "branch-alias": {
  3291. "dev-master": "1.2-dev"
  3292. }
  3293. },
  3294. "autoload": {
  3295. "psr-4": {
  3296. "Symfony\\Polyfill\\Php54\\": ""
  3297. },
  3298. "files": [
  3299. "bootstrap.php"
  3300. ],
  3301. "classmap": [
  3302. "Resources/stubs"
  3303. ]
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Nicolas Grekas",
  3312. "email": "p@tchwork.com"
  3313. },
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. }
  3318. ],
  3319. "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
  3320. "homepage": "https://symfony.com",
  3321. "keywords": [
  3322. "compatibility",
  3323. "polyfill",
  3324. "portable",
  3325. "shim"
  3326. ],
  3327. "time": "2016-05-18 14:26:46"
  3328. },
  3329. {
  3330. "name": "symfony/polyfill-php55",
  3331. "version": "v1.2.0",
  3332. "source": {
  3333. "type": "git",
  3334. "url": "https://github.com/symfony/polyfill-php55.git",
  3335. "reference": "bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d"
  3336. },
  3337. "dist": {
  3338. "type": "zip",
  3339. "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d",
  3340. "reference": "bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d",
  3341. "shasum": ""
  3342. },
  3343. "require": {
  3344. "ircmaxell/password-compat": "~1.0",
  3345. "php": ">=5.3.3"
  3346. },
  3347. "type": "library",
  3348. "extra": {
  3349. "branch-alias": {
  3350. "dev-master": "1.2-dev"
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Symfony\\Polyfill\\Php55\\": ""
  3356. },
  3357. "files": [
  3358. "bootstrap.php"
  3359. ]
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "Nicolas Grekas",
  3368. "email": "p@tchwork.com"
  3369. },
  3370. {
  3371. "name": "Symfony Community",
  3372. "homepage": "https://symfony.com/contributors"
  3373. }
  3374. ],
  3375. "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
  3376. "homepage": "https://symfony.com",
  3377. "keywords": [
  3378. "compatibility",
  3379. "polyfill",
  3380. "portable",
  3381. "shim"
  3382. ],
  3383. "time": "2016-05-18 14:26:46"
  3384. },
  3385. {
  3386. "name": "symfony/polyfill-php56",
  3387. "version": "v1.2.0",
  3388. "source": {
  3389. "type": "git",
  3390. "url": "https://github.com/symfony/polyfill-php56.git",
  3391. "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a"
  3392. },
  3393. "dist": {
  3394. "type": "zip",
  3395. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/3edf57a8fbf9a927533344cef65ad7e1cf31030a",
  3396. "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a",
  3397. "shasum": ""
  3398. },
  3399. "require": {
  3400. "php": ">=5.3.3",
  3401. "symfony/polyfill-util": "~1.0"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-master": "1.2-dev"
  3407. }
  3408. },
  3409. "autoload": {
  3410. "psr-4": {
  3411. "Symfony\\Polyfill\\Php56\\": ""
  3412. },
  3413. "files": [
  3414. "bootstrap.php"
  3415. ]
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "Nicolas Grekas",
  3424. "email": "p@tchwork.com"
  3425. },
  3426. {
  3427. "name": "Symfony Community",
  3428. "homepage": "https://symfony.com/contributors"
  3429. }
  3430. ],
  3431. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3432. "homepage": "https://symfony.com",
  3433. "keywords": [
  3434. "compatibility",
  3435. "polyfill",
  3436. "portable",
  3437. "shim"
  3438. ],
  3439. "time": "2016-05-18 14:26:46"
  3440. },
  3441. {
  3442. "name": "symfony/polyfill-php70",
  3443. "version": "v1.2.0",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/symfony/polyfill-php70.git",
  3447. "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/a42f4b6b05ed458910f8af4c4e1121b0101b2d85",
  3452. "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85",
  3453. "shasum": ""
  3454. },
  3455. "require": {
  3456. "paragonie/random_compat": "~1.0|~2.0",
  3457. "php": ">=5.3.3"
  3458. },
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "1.2-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "psr-4": {
  3467. "Symfony\\Polyfill\\Php70\\": ""
  3468. },
  3469. "files": [
  3470. "bootstrap.php"
  3471. ],
  3472. "classmap": [
  3473. "Resources/stubs"
  3474. ]
  3475. },
  3476. "notification-url": "https://packagist.org/downloads/",
  3477. "license": [
  3478. "MIT"
  3479. ],
  3480. "authors": [
  3481. {
  3482. "name": "Nicolas Grekas",
  3483. "email": "p@tchwork.com"
  3484. },
  3485. {
  3486. "name": "Symfony Community",
  3487. "homepage": "https://symfony.com/contributors"
  3488. }
  3489. ],
  3490. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3491. "homepage": "https://symfony.com",
  3492. "keywords": [
  3493. "compatibility",
  3494. "polyfill",
  3495. "portable",
  3496. "shim"
  3497. ],
  3498. "time": "2016-05-18 14:26:46"
  3499. },
  3500. {
  3501. "name": "symfony/polyfill-util",
  3502. "version": "v1.2.0",
  3503. "source": {
  3504. "type": "git",
  3505. "url": "https://github.com/symfony/polyfill-util.git",
  3506. "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99"
  3507. },
  3508. "dist": {
  3509. "type": "zip",
  3510. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ef830ce3d218e622b221d6bfad42c751d974bf99",
  3511. "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99",
  3512. "shasum": ""
  3513. },
  3514. "require": {
  3515. "php": ">=5.3.3"
  3516. },
  3517. "type": "library",
  3518. "extra": {
  3519. "branch-alias": {
  3520. "dev-master": "1.2-dev"
  3521. }
  3522. },
  3523. "autoload": {
  3524. "psr-4": {
  3525. "Symfony\\Polyfill\\Util\\": ""
  3526. }
  3527. },
  3528. "notification-url": "https://packagist.org/downloads/",
  3529. "license": [
  3530. "MIT"
  3531. ],
  3532. "authors": [
  3533. {
  3534. "name": "Nicolas Grekas",
  3535. "email": "p@tchwork.com"
  3536. },
  3537. {
  3538. "name": "Symfony Community",
  3539. "homepage": "https://symfony.com/contributors"
  3540. }
  3541. ],
  3542. "description": "Symfony utilities for portability of PHP codes",
  3543. "homepage": "https://symfony.com",
  3544. "keywords": [
  3545. "compat",
  3546. "compatibility",
  3547. "polyfill",
  3548. "shim"
  3549. ],
  3550. "time": "2016-05-18 14:26:46"
  3551. },
  3552. {
  3553. "name": "symfony/security-acl",
  3554. "version": "v3.0.0",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/symfony/security-acl.git",
  3558. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/symfony/security-acl/zipball/053b49bf4aa333a392c83296855989bcf88ddad1",
  3563. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1",
  3564. "shasum": ""
  3565. },
  3566. "require": {
  3567. "php": ">=5.5.9",
  3568. "symfony/security-core": "~2.8|~3.0"
  3569. },
  3570. "require-dev": {
  3571. "doctrine/common": "~2.2",
  3572. "doctrine/dbal": "~2.2",
  3573. "psr/log": "~1.0",
  3574. "symfony/phpunit-bridge": "~2.8|~3.0"
  3575. },
  3576. "suggest": {
  3577. "doctrine/dbal": "For using the built-in ACL implementation",
  3578. "symfony/class-loader": "For using the ACL generateSql script",
  3579. "symfony/finder": "For using the ACL generateSql script"
  3580. },
  3581. "type": "library",
  3582. "extra": {
  3583. "branch-alias": {
  3584. "dev-master": "3.0-dev"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Symfony\\Component\\Security\\Acl\\": ""
  3590. },
  3591. "exclude-from-classmap": [
  3592. "/Tests/"
  3593. ]
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "MIT"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "Fabien Potencier",
  3602. "email": "fabien@symfony.com"
  3603. },
  3604. {
  3605. "name": "Symfony Community",
  3606. "homepage": "https://symfony.com/contributors"
  3607. }
  3608. ],
  3609. "description": "Symfony Security Component - ACL (Access Control List)",
  3610. "homepage": "https://symfony.com",
  3611. "time": "2015-12-28 09:39:46"
  3612. },
  3613. {
  3614. "name": "symfony/swiftmailer-bundle",
  3615. "version": "v2.3.11",
  3616. "source": {
  3617. "type": "git",
  3618. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  3619. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690"
  3620. },
  3621. "dist": {
  3622. "type": "zip",
  3623. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3624. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3625. "shasum": ""
  3626. },
  3627. "require": {
  3628. "php": ">=5.3.2",
  3629. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  3630. "symfony/config": "~2.3|~3.0",
  3631. "symfony/dependency-injection": "~2.3|~3.0",
  3632. "symfony/http-kernel": "~2.3|~3.0",
  3633. "symfony/yaml": "~2.3|~3.0"
  3634. },
  3635. "require-dev": {
  3636. "symfony/phpunit-bridge": "~2.7|~3.0"
  3637. },
  3638. "suggest": {
  3639. "psr/log": "Allows logging"
  3640. },
  3641. "type": "symfony-bundle",
  3642. "extra": {
  3643. "branch-alias": {
  3644. "dev-master": "2.3-dev"
  3645. }
  3646. },
  3647. "autoload": {
  3648. "psr-4": {
  3649. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  3650. }
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "MIT"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "Symfony Community",
  3659. "homepage": "http://symfony.com/contributors"
  3660. },
  3661. {
  3662. "name": "Fabien Potencier",
  3663. "email": "fabien@symfony.com"
  3664. }
  3665. ],
  3666. "description": "Symfony SwiftmailerBundle",
  3667. "homepage": "http://symfony.com",
  3668. "time": "2016-01-15 16:41:20"
  3669. },
  3670. {
  3671. "name": "symfony/symfony",
  3672. "version": "v2.8.11",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/symfony.git",
  3676. "reference": "f588c92c3e263b2eaa2f96a7b1359199eb209b3d"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/symfony/zipball/f588c92c3e263b2eaa2f96a7b1359199eb209b3d",
  3681. "reference": "f588c92c3e263b2eaa2f96a7b1359199eb209b3d",
  3682. "shasum": ""
  3683. },
  3684. "require": {
  3685. "doctrine/common": "~2.4",
  3686. "php": ">=5.3.9",
  3687. "psr/log": "~1.0",
  3688. "symfony/polyfill-apcu": "~1.1",
  3689. "symfony/polyfill-intl-icu": "~1.0",
  3690. "symfony/polyfill-mbstring": "~1.0",
  3691. "symfony/polyfill-php54": "~1.0",
  3692. "symfony/polyfill-php55": "~1.0",
  3693. "symfony/polyfill-php56": "~1.0",
  3694. "symfony/polyfill-php70": "~1.0",
  3695. "symfony/polyfill-util": "~1.0",
  3696. "symfony/security-acl": "~2.7|~3.0.0",
  3697. "twig/twig": "~1.23|~2.0"
  3698. },
  3699. "conflict": {
  3700. "phpdocumentor/reflection": "<1.0.7"
  3701. },
  3702. "replace": {
  3703. "symfony/asset": "self.version",
  3704. "symfony/browser-kit": "self.version",
  3705. "symfony/class-loader": "self.version",
  3706. "symfony/config": "self.version",
  3707. "symfony/console": "self.version",
  3708. "symfony/css-selector": "self.version",
  3709. "symfony/debug": "self.version",
  3710. "symfony/debug-bundle": "self.version",
  3711. "symfony/dependency-injection": "self.version",
  3712. "symfony/doctrine-bridge": "self.version",
  3713. "symfony/dom-crawler": "self.version",
  3714. "symfony/event-dispatcher": "self.version",
  3715. "symfony/expression-language": "self.version",
  3716. "symfony/filesystem": "self.version",
  3717. "symfony/finder": "self.version",
  3718. "symfony/form": "self.version",
  3719. "symfony/framework-bundle": "self.version",
  3720. "symfony/http-foundation": "self.version",
  3721. "symfony/http-kernel": "self.version",
  3722. "symfony/intl": "self.version",
  3723. "symfony/ldap": "self.version",
  3724. "symfony/locale": "self.version",
  3725. "symfony/monolog-bridge": "self.version",
  3726. "symfony/options-resolver": "self.version",
  3727. "symfony/process": "self.version",
  3728. "symfony/property-access": "self.version",
  3729. "symfony/property-info": "self.version",
  3730. "symfony/proxy-manager-bridge": "self.version",
  3731. "symfony/routing": "self.version",
  3732. "symfony/security": "self.version",
  3733. "symfony/security-bundle": "self.version",
  3734. "symfony/security-core": "self.version",
  3735. "symfony/security-csrf": "self.version",
  3736. "symfony/security-guard": "self.version",
  3737. "symfony/security-http": "self.version",
  3738. "symfony/serializer": "self.version",
  3739. "symfony/stopwatch": "self.version",
  3740. "symfony/swiftmailer-bridge": "self.version",
  3741. "symfony/templating": "self.version",
  3742. "symfony/translation": "self.version",
  3743. "symfony/twig-bridge": "self.version",
  3744. "symfony/twig-bundle": "self.version",
  3745. "symfony/validator": "self.version",
  3746. "symfony/var-dumper": "self.version",
  3747. "symfony/web-profiler-bundle": "self.version",
  3748. "symfony/yaml": "self.version"
  3749. },
  3750. "require-dev": {
  3751. "doctrine/data-fixtures": "1.0.*",
  3752. "doctrine/dbal": "~2.4",
  3753. "doctrine/doctrine-bundle": "~1.2",
  3754. "doctrine/orm": "~2.4,>=2.4.5",
  3755. "egulias/email-validator": "~1.2,>=1.2.1",
  3756. "monolog/monolog": "~1.11",
  3757. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  3758. "phpdocumentor/reflection": "^1.0.7"
  3759. },
  3760. "type": "library",
  3761. "extra": {
  3762. "branch-alias": {
  3763. "dev-master": "2.8-dev"
  3764. }
  3765. },
  3766. "autoload": {
  3767. "psr-4": {
  3768. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  3769. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  3770. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  3771. "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/",
  3772. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  3773. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  3774. "Symfony\\Component\\": "src/Symfony/Component/"
  3775. },
  3776. "classmap": [
  3777. "src/Symfony/Component/Intl/Resources/stubs"
  3778. ],
  3779. "exclude-from-classmap": [
  3780. "**/Tests/"
  3781. ]
  3782. },
  3783. "notification-url": "https://packagist.org/downloads/",
  3784. "license": [
  3785. "MIT"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Fabien Potencier",
  3790. "email": "fabien@symfony.com"
  3791. },
  3792. {
  3793. "name": "Symfony Community",
  3794. "homepage": "https://symfony.com/contributors"
  3795. }
  3796. ],
  3797. "description": "The Symfony PHP framework",
  3798. "homepage": "https://symfony.com",
  3799. "keywords": [
  3800. "framework"
  3801. ],
  3802. "time": "2016-09-07 02:04:25"
  3803. },
  3804. {
  3805. "name": "twig/extensions",
  3806. "version": "v1.3.0",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/twigphp/Twig-extensions.git",
  3810. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/449e3c8a9ffad7c2479c7864557275a32b037499",
  3815. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "twig/twig": "~1.20|~2.0"
  3820. },
  3821. "require-dev": {
  3822. "symfony/translation": "~2.3"
  3823. },
  3824. "suggest": {
  3825. "symfony/translation": "Allow the time_diff output to be translated"
  3826. },
  3827. "type": "library",
  3828. "extra": {
  3829. "branch-alias": {
  3830. "dev-master": "1.3-dev"
  3831. }
  3832. },
  3833. "autoload": {
  3834. "psr-0": {
  3835. "Twig_Extensions_": "lib/"
  3836. }
  3837. },
  3838. "notification-url": "https://packagist.org/downloads/",
  3839. "license": [
  3840. "MIT"
  3841. ],
  3842. "authors": [
  3843. {
  3844. "name": "Fabien Potencier",
  3845. "email": "fabien@symfony.com"
  3846. }
  3847. ],
  3848. "description": "Common additional features for Twig that do not directly belong in core",
  3849. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  3850. "keywords": [
  3851. "i18n",
  3852. "text"
  3853. ],
  3854. "time": "2015-08-22 16:38:35"
  3855. },
  3856. {
  3857. "name": "twig/twig",
  3858. "version": "v1.24.2",
  3859. "source": {
  3860. "type": "git",
  3861. "url": "https://github.com/twigphp/Twig.git",
  3862. "reference": "33093f6e310e6976baeac7b14f3a6ec02f2d79b7"
  3863. },
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://api.github.com/repos/twigphp/Twig/zipball/33093f6e310e6976baeac7b14f3a6ec02f2d79b7",
  3867. "reference": "33093f6e310e6976baeac7b14f3a6ec02f2d79b7",
  3868. "shasum": ""
  3869. },
  3870. "require": {
  3871. "php": ">=5.2.7"
  3872. },
  3873. "require-dev": {
  3874. "symfony/debug": "~2.7",
  3875. "symfony/phpunit-bridge": "~2.7"
  3876. },
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "1.24-dev"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "psr-0": {
  3885. "Twig_": "lib/"
  3886. }
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "BSD-3-Clause"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Fabien Potencier",
  3895. "email": "fabien@symfony.com",
  3896. "homepage": "http://fabien.potencier.org",
  3897. "role": "Lead Developer"
  3898. },
  3899. {
  3900. "name": "Armin Ronacher",
  3901. "email": "armin.ronacher@active-4.com",
  3902. "role": "Project Founder"
  3903. },
  3904. {
  3905. "name": "Twig Team",
  3906. "homepage": "http://twig.sensiolabs.org/contributors",
  3907. "role": "Contributors"
  3908. }
  3909. ],
  3910. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3911. "homepage": "http://twig.sensiolabs.org",
  3912. "keywords": [
  3913. "templating"
  3914. ],
  3915. "time": "2016-09-01 17:50:53"
  3916. },
  3917. {
  3918. "name": "white-october/pagerfanta-bundle",
  3919. "version": "v1.0.7",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  3923. "reference": "f7e0fdf94a763a21a7c4c36ec9d9b5bcf4e12521"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/f7e0fdf94a763a21a7c4c36ec9d9b5bcf4e12521",
  3928. "reference": "f7e0fdf94a763a21a7c4c36ec9d9b5bcf4e12521",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "pagerfanta/pagerfanta": "1.0.*",
  3933. "symfony/framework-bundle": "~2.3|~3.0",
  3934. "symfony/property-access": "~2.3|~3.0",
  3935. "symfony/twig-bundle": "~2.3|~3.0"
  3936. },
  3937. "require-dev": {
  3938. "phpunit/phpunit": "~3.7",
  3939. "symfony/symfony": "~2.3|~3.0"
  3940. },
  3941. "type": "symfony-bundle",
  3942. "extra": {
  3943. "branch-alias": {
  3944. "dev-master": "1.0.x-dev"
  3945. }
  3946. },
  3947. "autoload": {
  3948. "psr-4": {
  3949. "WhiteOctober\\PagerfantaBundle\\": ""
  3950. }
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "Pablo Díez",
  3959. "email": "pablodip@gmail.com"
  3960. }
  3961. ],
  3962. "description": "Bundle to use Pagerfanta with Symfony2",
  3963. "keywords": [
  3964. "page",
  3965. "paging"
  3966. ],
  3967. "time": "2016-08-04 15:48:14"
  3968. },
  3969. {
  3970. "name": "zendframework/zend-escaper",
  3971. "version": "2.5.2",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/zendframework/zend-escaper.git",
  3975. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  3980. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "php": ">=5.5"
  3985. },
  3986. "require-dev": {
  3987. "fabpot/php-cs-fixer": "1.7.*",
  3988. "phpunit/phpunit": "~4.0"
  3989. },
  3990. "type": "library",
  3991. "extra": {
  3992. "branch-alias": {
  3993. "dev-master": "2.5-dev",
  3994. "dev-develop": "2.6-dev"
  3995. }
  3996. },
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Zend\\Escaper\\": "src/"
  4000. }
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "BSD-3-Clause"
  4005. ],
  4006. "homepage": "https://github.com/zendframework/zend-escaper",
  4007. "keywords": [
  4008. "escaper",
  4009. "zf2"
  4010. ],
  4011. "time": "2016-06-30 19:48:38"
  4012. },
  4013. {
  4014. "name": "zendframework/zend-feed",
  4015. "version": "2.7.0",
  4016. "source": {
  4017. "type": "git",
  4018. "url": "https://github.com/zendframework/zend-feed.git",
  4019. "reference": "12b328d382aa5200f1de53d4147033b885776b67"
  4020. },
  4021. "dist": {
  4022. "type": "zip",
  4023. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/12b328d382aa5200f1de53d4147033b885776b67",
  4024. "reference": "12b328d382aa5200f1de53d4147033b885776b67",
  4025. "shasum": ""
  4026. },
  4027. "require": {
  4028. "php": "^5.5 || ^7.0",
  4029. "zendframework/zend-escaper": "^2.5",
  4030. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4031. },
  4032. "require-dev": {
  4033. "fabpot/php-cs-fixer": "1.7.*",
  4034. "phpunit/phpunit": "~4.0",
  4035. "psr/http-message": "^1.0",
  4036. "zendframework/zend-cache": "^2.5",
  4037. "zendframework/zend-db": "^2.5",
  4038. "zendframework/zend-http": "^2.5",
  4039. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4040. "zendframework/zend-validator": "^2.5"
  4041. },
  4042. "suggest": {
  4043. "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4044. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4045. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4046. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4047. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4048. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  4049. },
  4050. "type": "library",
  4051. "extra": {
  4052. "branch-alias": {
  4053. "dev-master": "2.7-dev",
  4054. "dev-develop": "2.8-dev"
  4055. }
  4056. },
  4057. "autoload": {
  4058. "psr-4": {
  4059. "Zend\\Feed\\": "src/"
  4060. }
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "BSD-3-Clause"
  4065. ],
  4066. "description": "provides functionality for consuming RSS and Atom feeds",
  4067. "homepage": "https://github.com/zendframework/zend-feed",
  4068. "keywords": [
  4069. "feed",
  4070. "zf2"
  4071. ],
  4072. "time": "2016-02-11 18:54:29"
  4073. },
  4074. {
  4075. "name": "zendframework/zend-json",
  4076. "version": "2.6.1",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://github.com/zendframework/zend-json.git",
  4080. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4085. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4086. "shasum": ""
  4087. },
  4088. "require": {
  4089. "php": "^5.5 || ^7.0"
  4090. },
  4091. "require-dev": {
  4092. "fabpot/php-cs-fixer": "1.7.*",
  4093. "phpunit/phpunit": "~4.0",
  4094. "zendframework/zend-http": "^2.5.4",
  4095. "zendframework/zend-server": "^2.6.1",
  4096. "zendframework/zend-stdlib": "^2.5 || ^3.0",
  4097. "zendframework/zendxml": "^1.0.2"
  4098. },
  4099. "suggest": {
  4100. "zendframework/zend-http": "Zend\\Http component, required to use Zend\\Json\\Server",
  4101. "zendframework/zend-server": "Zend\\Server component, required to use Zend\\Json\\Server",
  4102. "zendframework/zend-stdlib": "Zend\\Stdlib component, for use with caching Zend\\Json\\Server responses",
  4103. "zendframework/zendxml": "To support Zend\\Json\\Json::fromXml() usage"
  4104. },
  4105. "type": "library",
  4106. "extra": {
  4107. "branch-alias": {
  4108. "dev-master": "2.6-dev",
  4109. "dev-develop": "2.7-dev"
  4110. }
  4111. },
  4112. "autoload": {
  4113. "psr-4": {
  4114. "Zend\\Json\\": "src/"
  4115. }
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "BSD-3-Clause"
  4120. ],
  4121. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  4122. "homepage": "https://github.com/zendframework/zend-json",
  4123. "keywords": [
  4124. "json",
  4125. "zf2"
  4126. ],
  4127. "time": "2016-02-04 21:20:26"
  4128. },
  4129. {
  4130. "name": "zendframework/zend-servicemanager",
  4131. "version": "2.7.7",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/zendframework/zend-servicemanager.git",
  4135. "reference": "eeecb78945c2a9f653caded36ba5274e8a8f5468"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/eeecb78945c2a9f653caded36ba5274e8a8f5468",
  4140. "reference": "eeecb78945c2a9f653caded36ba5274e8a8f5468",
  4141. "shasum": ""
  4142. },
  4143. "require": {
  4144. "container-interop/container-interop": "~1.0",
  4145. "php": "^5.5 || ^7.0"
  4146. },
  4147. "require-dev": {
  4148. "athletic/athletic": "dev-master",
  4149. "fabpot/php-cs-fixer": "1.7.*",
  4150. "phpunit/phpunit": "~4.0",
  4151. "zendframework/zend-di": "~2.5",
  4152. "zendframework/zend-mvc": "~2.5"
  4153. },
  4154. "suggest": {
  4155. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  4156. "zendframework/zend-di": "Zend\\Di component"
  4157. },
  4158. "type": "library",
  4159. "extra": {
  4160. "branch-alias": {
  4161. "dev-master": "2.7-dev",
  4162. "dev-develop": "3.0-dev"
  4163. }
  4164. },
  4165. "autoload": {
  4166. "psr-4": {
  4167. "Zend\\ServiceManager\\": "src/"
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "BSD-3-Clause"
  4173. ],
  4174. "homepage": "https://github.com/zendframework/zend-servicemanager",
  4175. "keywords": [
  4176. "servicemanager",
  4177. "zf2"
  4178. ],
  4179. "time": "2016-09-01 19:03:15"
  4180. },
  4181. {
  4182. "name": "zendframework/zend-stdlib",
  4183. "version": "3.0.1",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/zendframework/zend-stdlib.git",
  4187. "reference": "8bafa58574204bdff03c275d1d618aaa601588ae"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae",
  4192. "reference": "8bafa58574204bdff03c275d1d618aaa601588ae",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "php": "^5.5 || ^7.0"
  4197. },
  4198. "require-dev": {
  4199. "athletic/athletic": "~0.1",
  4200. "fabpot/php-cs-fixer": "1.7.*",
  4201. "phpunit/phpunit": "~4.0"
  4202. },
  4203. "type": "library",
  4204. "extra": {
  4205. "branch-alias": {
  4206. "dev-master": "3.0-dev",
  4207. "dev-develop": "3.1-dev"
  4208. }
  4209. },
  4210. "autoload": {
  4211. "psr-4": {
  4212. "Zend\\Stdlib\\": "src/"
  4213. }
  4214. },
  4215. "notification-url": "https://packagist.org/downloads/",
  4216. "license": [
  4217. "BSD-3-Clause"
  4218. ],
  4219. "homepage": "https://github.com/zendframework/zend-stdlib",
  4220. "keywords": [
  4221. "stdlib",
  4222. "zf2"
  4223. ],
  4224. "time": "2016-04-12 21:19:36"
  4225. },
  4226. {
  4227. "name": "zendframework/zend-uri",
  4228. "version": "2.5.2",
  4229. "source": {
  4230. "type": "git",
  4231. "url": "https://github.com/zendframework/zend-uri.git",
  4232. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  4233. },
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  4237. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  4238. "shasum": ""
  4239. },
  4240. "require": {
  4241. "php": "^5.5 || ^7.0",
  4242. "zendframework/zend-escaper": "^2.5",
  4243. "zendframework/zend-validator": "^2.5"
  4244. },
  4245. "require-dev": {
  4246. "fabpot/php-cs-fixer": "1.7.*",
  4247. "phpunit/phpunit": "~4.0"
  4248. },
  4249. "type": "library",
  4250. "extra": {
  4251. "branch-alias": {
  4252. "dev-master": "2.5-dev",
  4253. "dev-develop": "2.6-dev"
  4254. }
  4255. },
  4256. "autoload": {
  4257. "psr-4": {
  4258. "Zend\\Uri\\": "src/"
  4259. }
  4260. },
  4261. "notification-url": "https://packagist.org/downloads/",
  4262. "license": [
  4263. "BSD-3-Clause"
  4264. ],
  4265. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  4266. "homepage": "https://github.com/zendframework/zend-uri",
  4267. "keywords": [
  4268. "uri",
  4269. "zf2"
  4270. ],
  4271. "time": "2016-02-17 22:38:51"
  4272. },
  4273. {
  4274. "name": "zendframework/zend-validator",
  4275. "version": "2.8.1",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/zendframework/zend-validator.git",
  4279. "reference": "8ec9f57a717dd37340308aa632f148a2c2be1cfc"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/8ec9f57a717dd37340308aa632f148a2c2be1cfc",
  4284. "reference": "8ec9f57a717dd37340308aa632f148a2c2be1cfc",
  4285. "shasum": ""
  4286. },
  4287. "require": {
  4288. "container-interop/container-interop": "^1.1",
  4289. "php": "^5.5 || ^7.0",
  4290. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4291. },
  4292. "require-dev": {
  4293. "fabpot/php-cs-fixer": "1.7.*",
  4294. "phpunit/phpunit": "^4.0",
  4295. "zendframework/zend-cache": "^2.6.1",
  4296. "zendframework/zend-config": "^2.6",
  4297. "zendframework/zend-db": "^2.7",
  4298. "zendframework/zend-filter": "^2.6",
  4299. "zendframework/zend-http": "^2.5.4",
  4300. "zendframework/zend-i18n": "^2.6",
  4301. "zendframework/zend-math": "^2.6",
  4302. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4303. "zendframework/zend-session": "^2.6.2",
  4304. "zendframework/zend-uri": "^2.5"
  4305. },
  4306. "suggest": {
  4307. "zendframework/zend-db": "Zend\\Db component",
  4308. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  4309. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  4310. "zendframework/zend-i18n-resources": "Translations of validator messages",
  4311. "zendframework/zend-math": "Zend\\Math component",
  4312. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  4313. "zendframework/zend-session": "Zend\\Session component",
  4314. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "2.8-dev",
  4320. "dev-develop": "2.9-dev"
  4321. },
  4322. "zf": {
  4323. "component": "Zend\\Validator",
  4324. "config-provider": "Zend\\Validator\\ConfigProvider"
  4325. }
  4326. },
  4327. "autoload": {
  4328. "psr-4": {
  4329. "Zend\\Validator\\": "src/"
  4330. }
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "BSD-3-Clause"
  4335. ],
  4336. "description": "provides a set of commonly needed validators",
  4337. "homepage": "https://github.com/zendframework/zend-validator",
  4338. "keywords": [
  4339. "validator",
  4340. "zf2"
  4341. ],
  4342. "time": "2016-06-23 13:44:31"
  4343. },
  4344. {
  4345. "name": "zendframework/zend-version",
  4346. "version": "2.5.1",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://github.com/zendframework/zend-version.git",
  4350. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://api.github.com/repos/zendframework/zend-version/zipball/e30c55dc394eaf396f0347887af0a7bef471fe08",
  4355. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08",
  4356. "shasum": ""
  4357. },
  4358. "require": {
  4359. "php": ">=5.3.23",
  4360. "zendframework/zend-json": "~2.5"
  4361. },
  4362. "require-dev": {
  4363. "fabpot/php-cs-fixer": "1.7.*",
  4364. "phpunit/phpunit": "~4.0",
  4365. "zendframework/zend-http": "~2.5"
  4366. },
  4367. "suggest": {
  4368. "zendframework/zend-http": "Allows use of Zend\\Http\\Client to check version information",
  4369. "zendframework/zend-json": "To check latest version hosted in GitHub"
  4370. },
  4371. "type": "library",
  4372. "extra": {
  4373. "branch-alias": {
  4374. "dev-master": "2.5-dev",
  4375. "dev-develop": "2.6-dev"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "psr-4": {
  4380. "Zend\\Version\\": "src/"
  4381. }
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "BSD-3-Clause"
  4386. ],
  4387. "homepage": "https://github.com/zendframework/zend-version",
  4388. "keywords": [
  4389. "version",
  4390. "zf2"
  4391. ],
  4392. "time": "2015-06-04 15:41:05"
  4393. }
  4394. ],
  4395. "packages-dev": [
  4396. {
  4397. "name": "myclabs/deep-copy",
  4398. "version": "1.5.2",
  4399. "source": {
  4400. "type": "git",
  4401. "url": "https://github.com/myclabs/DeepCopy.git",
  4402. "reference": "da8529775f14f4fdae33f916eb0cf65f6afbddbc"
  4403. },
  4404. "dist": {
  4405. "type": "zip",
  4406. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/da8529775f14f4fdae33f916eb0cf65f6afbddbc",
  4407. "reference": "da8529775f14f4fdae33f916eb0cf65f6afbddbc",
  4408. "shasum": ""
  4409. },
  4410. "require": {
  4411. "php": ">=5.4.0"
  4412. },
  4413. "require-dev": {
  4414. "doctrine/collections": "1.*",
  4415. "phpunit/phpunit": "~4.1"
  4416. },
  4417. "type": "library",
  4418. "autoload": {
  4419. "psr-4": {
  4420. "DeepCopy\\": "src/DeepCopy/"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "description": "Create deep copies (clones) of your objects",
  4428. "homepage": "https://github.com/myclabs/DeepCopy",
  4429. "keywords": [
  4430. "clone",
  4431. "copy",
  4432. "duplicate",
  4433. "object",
  4434. "object graph"
  4435. ],
  4436. "time": "2016-09-06 16:07:05"
  4437. },
  4438. {
  4439. "name": "phpdocumentor/reflection-common",
  4440. "version": "1.0",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4444. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  4449. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "php": ">=5.5"
  4454. },
  4455. "require-dev": {
  4456. "phpunit/phpunit": "^4.6"
  4457. },
  4458. "type": "library",
  4459. "extra": {
  4460. "branch-alias": {
  4461. "dev-master": "1.0.x-dev"
  4462. }
  4463. },
  4464. "autoload": {
  4465. "psr-4": {
  4466. "phpDocumentor\\Reflection\\": [
  4467. "src"
  4468. ]
  4469. }
  4470. },
  4471. "notification-url": "https://packagist.org/downloads/",
  4472. "license": [
  4473. "MIT"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "Jaap van Otterdijk",
  4478. "email": "opensource@ijaap.nl"
  4479. }
  4480. ],
  4481. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4482. "homepage": "http://www.phpdoc.org",
  4483. "keywords": [
  4484. "FQSEN",
  4485. "phpDocumentor",
  4486. "phpdoc",
  4487. "reflection",
  4488. "static analysis"
  4489. ],
  4490. "time": "2015-12-27 11:43:31"
  4491. },
  4492. {
  4493. "name": "phpdocumentor/reflection-docblock",
  4494. "version": "3.1.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4498. "reference": "9270140b940ff02e58ec577c237274e92cd40cdd"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9270140b940ff02e58ec577c237274e92cd40cdd",
  4503. "reference": "9270140b940ff02e58ec577c237274e92cd40cdd",
  4504. "shasum": ""
  4505. },
  4506. "require": {
  4507. "php": ">=5.5",
  4508. "phpdocumentor/reflection-common": "^1.0@dev",
  4509. "phpdocumentor/type-resolver": "^0.2.0",
  4510. "webmozart/assert": "^1.0"
  4511. },
  4512. "require-dev": {
  4513. "mockery/mockery": "^0.9.4",
  4514. "phpunit/phpunit": "^4.4"
  4515. },
  4516. "type": "library",
  4517. "autoload": {
  4518. "psr-4": {
  4519. "phpDocumentor\\Reflection\\": [
  4520. "src/"
  4521. ]
  4522. }
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Mike van Riel",
  4531. "email": "me@mikevanriel.com"
  4532. }
  4533. ],
  4534. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4535. "time": "2016-06-10 09:48:41"
  4536. },
  4537. {
  4538. "name": "phpdocumentor/type-resolver",
  4539. "version": "0.2",
  4540. "source": {
  4541. "type": "git",
  4542. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4543. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443"
  4544. },
  4545. "dist": {
  4546. "type": "zip",
  4547. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443",
  4548. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443",
  4549. "shasum": ""
  4550. },
  4551. "require": {
  4552. "php": ">=5.5",
  4553. "phpdocumentor/reflection-common": "^1.0"
  4554. },
  4555. "require-dev": {
  4556. "mockery/mockery": "^0.9.4",
  4557. "phpunit/phpunit": "^5.2||^4.8.24"
  4558. },
  4559. "type": "library",
  4560. "extra": {
  4561. "branch-alias": {
  4562. "dev-master": "1.0.x-dev"
  4563. }
  4564. },
  4565. "autoload": {
  4566. "psr-4": {
  4567. "phpDocumentor\\Reflection\\": [
  4568. "src/"
  4569. ]
  4570. }
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Mike van Riel",
  4579. "email": "me@mikevanriel.com"
  4580. }
  4581. ],
  4582. "time": "2016-06-10 07:14:17"
  4583. },
  4584. {
  4585. "name": "phpspec/prophecy",
  4586. "version": "v1.6.1",
  4587. "source": {
  4588. "type": "git",
  4589. "url": "https://github.com/phpspec/prophecy.git",
  4590. "reference": "58a8137754bc24b25740d4281399a4a3596058e0"
  4591. },
  4592. "dist": {
  4593. "type": "zip",
  4594. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/58a8137754bc24b25740d4281399a4a3596058e0",
  4595. "reference": "58a8137754bc24b25740d4281399a4a3596058e0",
  4596. "shasum": ""
  4597. },
  4598. "require": {
  4599. "doctrine/instantiator": "^1.0.2",
  4600. "php": "^5.3|^7.0",
  4601. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  4602. "sebastian/comparator": "^1.1",
  4603. "sebastian/recursion-context": "^1.0"
  4604. },
  4605. "require-dev": {
  4606. "phpspec/phpspec": "^2.0"
  4607. },
  4608. "type": "library",
  4609. "extra": {
  4610. "branch-alias": {
  4611. "dev-master": "1.6.x-dev"
  4612. }
  4613. },
  4614. "autoload": {
  4615. "psr-0": {
  4616. "Prophecy\\": "src/"
  4617. }
  4618. },
  4619. "notification-url": "https://packagist.org/downloads/",
  4620. "license": [
  4621. "MIT"
  4622. ],
  4623. "authors": [
  4624. {
  4625. "name": "Konstantin Kudryashov",
  4626. "email": "ever.zet@gmail.com",
  4627. "homepage": "http://everzet.com"
  4628. },
  4629. {
  4630. "name": "Marcello Duarte",
  4631. "email": "marcello.duarte@gmail.com"
  4632. }
  4633. ],
  4634. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4635. "homepage": "https://github.com/phpspec/prophecy",
  4636. "keywords": [
  4637. "Double",
  4638. "Dummy",
  4639. "fake",
  4640. "mock",
  4641. "spy",
  4642. "stub"
  4643. ],
  4644. "time": "2016-06-07 08:13:47"
  4645. },
  4646. {
  4647. "name": "phpunit/php-code-coverage",
  4648. "version": "4.0.1",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4652. "reference": "5f3f7e736d6319d5f1fc402aff8b026da26709a3"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/5f3f7e736d6319d5f1fc402aff8b026da26709a3",
  4657. "reference": "5f3f7e736d6319d5f1fc402aff8b026da26709a3",
  4658. "shasum": ""
  4659. },
  4660. "require": {
  4661. "php": "^5.6 || ^7.0",
  4662. "phpunit/php-file-iterator": "~1.3",
  4663. "phpunit/php-text-template": "~1.2",
  4664. "phpunit/php-token-stream": "^1.4.2",
  4665. "sebastian/code-unit-reverse-lookup": "~1.0",
  4666. "sebastian/environment": "^1.3.2 || ^2.0",
  4667. "sebastian/version": "~1.0|~2.0"
  4668. },
  4669. "require-dev": {
  4670. "ext-xdebug": ">=2.1.4",
  4671. "phpunit/phpunit": "^5.4"
  4672. },
  4673. "suggest": {
  4674. "ext-dom": "*",
  4675. "ext-xdebug": ">=2.4.0",
  4676. "ext-xmlwriter": "*"
  4677. },
  4678. "type": "library",
  4679. "extra": {
  4680. "branch-alias": {
  4681. "dev-master": "4.0.x-dev"
  4682. }
  4683. },
  4684. "autoload": {
  4685. "classmap": [
  4686. "src/"
  4687. ]
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "BSD-3-Clause"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "Sebastian Bergmann",
  4696. "email": "sb@sebastian-bergmann.de",
  4697. "role": "lead"
  4698. }
  4699. ],
  4700. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4701. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4702. "keywords": [
  4703. "coverage",
  4704. "testing",
  4705. "xunit"
  4706. ],
  4707. "time": "2016-07-26 14:39:29"
  4708. },
  4709. {
  4710. "name": "phpunit/php-file-iterator",
  4711. "version": "1.4.1",
  4712. "source": {
  4713. "type": "git",
  4714. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4715. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  4716. },
  4717. "dist": {
  4718. "type": "zip",
  4719. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4720. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4721. "shasum": ""
  4722. },
  4723. "require": {
  4724. "php": ">=5.3.3"
  4725. },
  4726. "type": "library",
  4727. "extra": {
  4728. "branch-alias": {
  4729. "dev-master": "1.4.x-dev"
  4730. }
  4731. },
  4732. "autoload": {
  4733. "classmap": [
  4734. "src/"
  4735. ]
  4736. },
  4737. "notification-url": "https://packagist.org/downloads/",
  4738. "license": [
  4739. "BSD-3-Clause"
  4740. ],
  4741. "authors": [
  4742. {
  4743. "name": "Sebastian Bergmann",
  4744. "email": "sb@sebastian-bergmann.de",
  4745. "role": "lead"
  4746. }
  4747. ],
  4748. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4749. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4750. "keywords": [
  4751. "filesystem",
  4752. "iterator"
  4753. ],
  4754. "time": "2015-06-21 13:08:43"
  4755. },
  4756. {
  4757. "name": "phpunit/php-text-template",
  4758. "version": "1.2.1",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4762. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4767. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4768. "shasum": ""
  4769. },
  4770. "require": {
  4771. "php": ">=5.3.3"
  4772. },
  4773. "type": "library",
  4774. "autoload": {
  4775. "classmap": [
  4776. "src/"
  4777. ]
  4778. },
  4779. "notification-url": "https://packagist.org/downloads/",
  4780. "license": [
  4781. "BSD-3-Clause"
  4782. ],
  4783. "authors": [
  4784. {
  4785. "name": "Sebastian Bergmann",
  4786. "email": "sebastian@phpunit.de",
  4787. "role": "lead"
  4788. }
  4789. ],
  4790. "description": "Simple template engine.",
  4791. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4792. "keywords": [
  4793. "template"
  4794. ],
  4795. "time": "2015-06-21 13:50:34"
  4796. },
  4797. {
  4798. "name": "phpunit/php-timer",
  4799. "version": "1.0.8",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4803. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
  4808. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  4809. "shasum": ""
  4810. },
  4811. "require": {
  4812. "php": ">=5.3.3"
  4813. },
  4814. "require-dev": {
  4815. "phpunit/phpunit": "~4|~5"
  4816. },
  4817. "type": "library",
  4818. "autoload": {
  4819. "classmap": [
  4820. "src/"
  4821. ]
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "BSD-3-Clause"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Sebastian Bergmann",
  4830. "email": "sb@sebastian-bergmann.de",
  4831. "role": "lead"
  4832. }
  4833. ],
  4834. "description": "Utility class for timing",
  4835. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4836. "keywords": [
  4837. "timer"
  4838. ],
  4839. "time": "2016-05-12 18:03:57"
  4840. },
  4841. {
  4842. "name": "phpunit/php-token-stream",
  4843. "version": "1.4.8",
  4844. "source": {
  4845. "type": "git",
  4846. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4847. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  4848. },
  4849. "dist": {
  4850. "type": "zip",
  4851. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4852. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4853. "shasum": ""
  4854. },
  4855. "require": {
  4856. "ext-tokenizer": "*",
  4857. "php": ">=5.3.3"
  4858. },
  4859. "require-dev": {
  4860. "phpunit/phpunit": "~4.2"
  4861. },
  4862. "type": "library",
  4863. "extra": {
  4864. "branch-alias": {
  4865. "dev-master": "1.4-dev"
  4866. }
  4867. },
  4868. "autoload": {
  4869. "classmap": [
  4870. "src/"
  4871. ]
  4872. },
  4873. "notification-url": "https://packagist.org/downloads/",
  4874. "license": [
  4875. "BSD-3-Clause"
  4876. ],
  4877. "authors": [
  4878. {
  4879. "name": "Sebastian Bergmann",
  4880. "email": "sebastian@phpunit.de"
  4881. }
  4882. ],
  4883. "description": "Wrapper around PHP's tokenizer extension.",
  4884. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4885. "keywords": [
  4886. "tokenizer"
  4887. ],
  4888. "time": "2015-09-15 10:49:45"
  4889. },
  4890. {
  4891. "name": "phpunit/phpunit",
  4892. "version": "5.5.4",
  4893. "source": {
  4894. "type": "git",
  4895. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4896. "reference": "3e6e88e56c912133de6e99b87728cca7ed70c5f5"
  4897. },
  4898. "dist": {
  4899. "type": "zip",
  4900. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6e88e56c912133de6e99b87728cca7ed70c5f5",
  4901. "reference": "3e6e88e56c912133de6e99b87728cca7ed70c5f5",
  4902. "shasum": ""
  4903. },
  4904. "require": {
  4905. "ext-dom": "*",
  4906. "ext-json": "*",
  4907. "ext-pcre": "*",
  4908. "ext-reflection": "*",
  4909. "ext-spl": "*",
  4910. "myclabs/deep-copy": "~1.3",
  4911. "php": "^5.6 || ^7.0",
  4912. "phpspec/prophecy": "^1.3.1",
  4913. "phpunit/php-code-coverage": "^4.0.1",
  4914. "phpunit/php-file-iterator": "~1.4",
  4915. "phpunit/php-text-template": "~1.2",
  4916. "phpunit/php-timer": "^1.0.6",
  4917. "phpunit/phpunit-mock-objects": "^3.2",
  4918. "sebastian/comparator": "~1.1",
  4919. "sebastian/diff": "~1.2",
  4920. "sebastian/environment": "^1.3 || ^2.0",
  4921. "sebastian/exporter": "~1.2",
  4922. "sebastian/global-state": "~1.0",
  4923. "sebastian/object-enumerator": "~1.0",
  4924. "sebastian/resource-operations": "~1.0",
  4925. "sebastian/version": "~1.0|~2.0",
  4926. "symfony/yaml": "~2.1|~3.0"
  4927. },
  4928. "conflict": {
  4929. "phpdocumentor/reflection-docblock": "3.0.2"
  4930. },
  4931. "suggest": {
  4932. "phpunit/php-invoker": "~1.1"
  4933. },
  4934. "bin": [
  4935. "phpunit"
  4936. ],
  4937. "type": "library",
  4938. "extra": {
  4939. "branch-alias": {
  4940. "dev-master": "5.5.x-dev"
  4941. }
  4942. },
  4943. "autoload": {
  4944. "classmap": [
  4945. "src/"
  4946. ]
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "BSD-3-Clause"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "Sebastian Bergmann",
  4955. "email": "sebastian@phpunit.de",
  4956. "role": "lead"
  4957. }
  4958. ],
  4959. "description": "The PHP Unit Testing framework.",
  4960. "homepage": "https://phpunit.de/",
  4961. "keywords": [
  4962. "phpunit",
  4963. "testing",
  4964. "xunit"
  4965. ],
  4966. "time": "2016-08-26 07:11:44"
  4967. },
  4968. {
  4969. "name": "phpunit/phpunit-mock-objects",
  4970. "version": "3.2.7",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4974. "reference": "546898a2c0c356ef2891b39dd7d07f5d82c8ed0a"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/546898a2c0c356ef2891b39dd7d07f5d82c8ed0a",
  4979. "reference": "546898a2c0c356ef2891b39dd7d07f5d82c8ed0a",
  4980. "shasum": ""
  4981. },
  4982. "require": {
  4983. "doctrine/instantiator": "^1.0.2",
  4984. "php": "^5.6 || ^7.0",
  4985. "phpunit/php-text-template": "^1.2",
  4986. "sebastian/exporter": "^1.2"
  4987. },
  4988. "conflict": {
  4989. "phpunit/phpunit": "<5.4.0"
  4990. },
  4991. "require-dev": {
  4992. "phpunit/phpunit": "^5.4"
  4993. },
  4994. "suggest": {
  4995. "ext-soap": "*"
  4996. },
  4997. "type": "library",
  4998. "extra": {
  4999. "branch-alias": {
  5000. "dev-master": "3.2.x-dev"
  5001. }
  5002. },
  5003. "autoload": {
  5004. "classmap": [
  5005. "src/"
  5006. ]
  5007. },
  5008. "notification-url": "https://packagist.org/downloads/",
  5009. "license": [
  5010. "BSD-3-Clause"
  5011. ],
  5012. "authors": [
  5013. {
  5014. "name": "Sebastian Bergmann",
  5015. "email": "sb@sebastian-bergmann.de",
  5016. "role": "lead"
  5017. }
  5018. ],
  5019. "description": "Mock Object library for PHPUnit",
  5020. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  5021. "keywords": [
  5022. "mock",
  5023. "xunit"
  5024. ],
  5025. "time": "2016-09-06 16:07:45"
  5026. },
  5027. {
  5028. "name": "sebastian/code-unit-reverse-lookup",
  5029. "version": "1.0.0",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5033. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  5038. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "php": ">=5.6"
  5043. },
  5044. "require-dev": {
  5045. "phpunit/phpunit": "~5"
  5046. },
  5047. "type": "library",
  5048. "extra": {
  5049. "branch-alias": {
  5050. "dev-master": "1.0.x-dev"
  5051. }
  5052. },
  5053. "autoload": {
  5054. "classmap": [
  5055. "src/"
  5056. ]
  5057. },
  5058. "notification-url": "https://packagist.org/downloads/",
  5059. "license": [
  5060. "BSD-3-Clause"
  5061. ],
  5062. "authors": [
  5063. {
  5064. "name": "Sebastian Bergmann",
  5065. "email": "sebastian@phpunit.de"
  5066. }
  5067. ],
  5068. "description": "Looks up which function or method a line of code belongs to",
  5069. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5070. "time": "2016-02-13 06:45:14"
  5071. },
  5072. {
  5073. "name": "sebastian/comparator",
  5074. "version": "1.2.0",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://github.com/sebastianbergmann/comparator.git",
  5078. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  5079. },
  5080. "dist": {
  5081. "type": "zip",
  5082. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  5083. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  5084. "shasum": ""
  5085. },
  5086. "require": {
  5087. "php": ">=5.3.3",
  5088. "sebastian/diff": "~1.2",
  5089. "sebastian/exporter": "~1.2"
  5090. },
  5091. "require-dev": {
  5092. "phpunit/phpunit": "~4.4"
  5093. },
  5094. "type": "library",
  5095. "extra": {
  5096. "branch-alias": {
  5097. "dev-master": "1.2.x-dev"
  5098. }
  5099. },
  5100. "autoload": {
  5101. "classmap": [
  5102. "src/"
  5103. ]
  5104. },
  5105. "notification-url": "https://packagist.org/downloads/",
  5106. "license": [
  5107. "BSD-3-Clause"
  5108. ],
  5109. "authors": [
  5110. {
  5111. "name": "Jeff Welch",
  5112. "email": "whatthejeff@gmail.com"
  5113. },
  5114. {
  5115. "name": "Volker Dusch",
  5116. "email": "github@wallbash.com"
  5117. },
  5118. {
  5119. "name": "Bernhard Schussek",
  5120. "email": "bschussek@2bepublished.at"
  5121. },
  5122. {
  5123. "name": "Sebastian Bergmann",
  5124. "email": "sebastian@phpunit.de"
  5125. }
  5126. ],
  5127. "description": "Provides the functionality to compare PHP values for equality",
  5128. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  5129. "keywords": [
  5130. "comparator",
  5131. "compare",
  5132. "equality"
  5133. ],
  5134. "time": "2015-07-26 15:48:44"
  5135. },
  5136. {
  5137. "name": "sebastian/diff",
  5138. "version": "1.4.1",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/sebastianbergmann/diff.git",
  5142. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  5147. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  5148. "shasum": ""
  5149. },
  5150. "require": {
  5151. "php": ">=5.3.3"
  5152. },
  5153. "require-dev": {
  5154. "phpunit/phpunit": "~4.8"
  5155. },
  5156. "type": "library",
  5157. "extra": {
  5158. "branch-alias": {
  5159. "dev-master": "1.4-dev"
  5160. }
  5161. },
  5162. "autoload": {
  5163. "classmap": [
  5164. "src/"
  5165. ]
  5166. },
  5167. "notification-url": "https://packagist.org/downloads/",
  5168. "license": [
  5169. "BSD-3-Clause"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Kore Nordmann",
  5174. "email": "mail@kore-nordmann.de"
  5175. },
  5176. {
  5177. "name": "Sebastian Bergmann",
  5178. "email": "sebastian@phpunit.de"
  5179. }
  5180. ],
  5181. "description": "Diff implementation",
  5182. "homepage": "https://github.com/sebastianbergmann/diff",
  5183. "keywords": [
  5184. "diff"
  5185. ],
  5186. "time": "2015-12-08 07:14:41"
  5187. },
  5188. {
  5189. "name": "sebastian/environment",
  5190. "version": "1.3.8",
  5191. "source": {
  5192. "type": "git",
  5193. "url": "https://github.com/sebastianbergmann/environment.git",
  5194. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  5195. },
  5196. "dist": {
  5197. "type": "zip",
  5198. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5199. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5200. "shasum": ""
  5201. },
  5202. "require": {
  5203. "php": "^5.3.3 || ^7.0"
  5204. },
  5205. "require-dev": {
  5206. "phpunit/phpunit": "^4.8 || ^5.0"
  5207. },
  5208. "type": "library",
  5209. "extra": {
  5210. "branch-alias": {
  5211. "dev-master": "1.3.x-dev"
  5212. }
  5213. },
  5214. "autoload": {
  5215. "classmap": [
  5216. "src/"
  5217. ]
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "BSD-3-Clause"
  5222. ],
  5223. "authors": [
  5224. {
  5225. "name": "Sebastian Bergmann",
  5226. "email": "sebastian@phpunit.de"
  5227. }
  5228. ],
  5229. "description": "Provides functionality to handle HHVM/PHP environments",
  5230. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5231. "keywords": [
  5232. "Xdebug",
  5233. "environment",
  5234. "hhvm"
  5235. ],
  5236. "time": "2016-08-18 05:49:44"
  5237. },
  5238. {
  5239. "name": "sebastian/exporter",
  5240. "version": "1.2.2",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/sebastianbergmann/exporter.git",
  5244. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  5249. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "php": ">=5.3.3",
  5254. "sebastian/recursion-context": "~1.0"
  5255. },
  5256. "require-dev": {
  5257. "ext-mbstring": "*",
  5258. "phpunit/phpunit": "~4.4"
  5259. },
  5260. "type": "library",
  5261. "extra": {
  5262. "branch-alias": {
  5263. "dev-master": "1.3.x-dev"
  5264. }
  5265. },
  5266. "autoload": {
  5267. "classmap": [
  5268. "src/"
  5269. ]
  5270. },
  5271. "notification-url": "https://packagist.org/downloads/",
  5272. "license": [
  5273. "BSD-3-Clause"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "Jeff Welch",
  5278. "email": "whatthejeff@gmail.com"
  5279. },
  5280. {
  5281. "name": "Volker Dusch",
  5282. "email": "github@wallbash.com"
  5283. },
  5284. {
  5285. "name": "Bernhard Schussek",
  5286. "email": "bschussek@2bepublished.at"
  5287. },
  5288. {
  5289. "name": "Sebastian Bergmann",
  5290. "email": "sebastian@phpunit.de"
  5291. },
  5292. {
  5293. "name": "Adam Harvey",
  5294. "email": "aharvey@php.net"
  5295. }
  5296. ],
  5297. "description": "Provides the functionality to export PHP variables for visualization",
  5298. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5299. "keywords": [
  5300. "export",
  5301. "exporter"
  5302. ],
  5303. "time": "2016-06-17 09:04:28"
  5304. },
  5305. {
  5306. "name": "sebastian/global-state",
  5307. "version": "1.1.1",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/sebastianbergmann/global-state.git",
  5311. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5316. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5317. "shasum": ""
  5318. },
  5319. "require": {
  5320. "php": ">=5.3.3"
  5321. },
  5322. "require-dev": {
  5323. "phpunit/phpunit": "~4.2"
  5324. },
  5325. "suggest": {
  5326. "ext-uopz": "*"
  5327. },
  5328. "type": "library",
  5329. "extra": {
  5330. "branch-alias": {
  5331. "dev-master": "1.0-dev"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "classmap": [
  5336. "src/"
  5337. ]
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "BSD-3-Clause"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Sebastian Bergmann",
  5346. "email": "sebastian@phpunit.de"
  5347. }
  5348. ],
  5349. "description": "Snapshotting of global state",
  5350. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5351. "keywords": [
  5352. "global state"
  5353. ],
  5354. "time": "2015-10-12 03:26:01"
  5355. },
  5356. {
  5357. "name": "sebastian/object-enumerator",
  5358. "version": "1.0.0",
  5359. "source": {
  5360. "type": "git",
  5361. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5362. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26"
  5363. },
  5364. "dist": {
  5365. "type": "zip",
  5366. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/d4ca2fb70344987502567bc50081c03e6192fb26",
  5367. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26",
  5368. "shasum": ""
  5369. },
  5370. "require": {
  5371. "php": ">=5.6",
  5372. "sebastian/recursion-context": "~1.0"
  5373. },
  5374. "require-dev": {
  5375. "phpunit/phpunit": "~5"
  5376. },
  5377. "type": "library",
  5378. "extra": {
  5379. "branch-alias": {
  5380. "dev-master": "1.0.x-dev"
  5381. }
  5382. },
  5383. "autoload": {
  5384. "classmap": [
  5385. "src/"
  5386. ]
  5387. },
  5388. "notification-url": "https://packagist.org/downloads/",
  5389. "license": [
  5390. "BSD-3-Clause"
  5391. ],
  5392. "authors": [
  5393. {
  5394. "name": "Sebastian Bergmann",
  5395. "email": "sebastian@phpunit.de"
  5396. }
  5397. ],
  5398. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5399. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5400. "time": "2016-01-28 13:25:10"
  5401. },
  5402. {
  5403. "name": "sebastian/recursion-context",
  5404. "version": "1.0.2",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5408. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
  5413. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  5414. "shasum": ""
  5415. },
  5416. "require": {
  5417. "php": ">=5.3.3"
  5418. },
  5419. "require-dev": {
  5420. "phpunit/phpunit": "~4.4"
  5421. },
  5422. "type": "library",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-master": "1.0.x-dev"
  5426. }
  5427. },
  5428. "autoload": {
  5429. "classmap": [
  5430. "src/"
  5431. ]
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "BSD-3-Clause"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Jeff Welch",
  5440. "email": "whatthejeff@gmail.com"
  5441. },
  5442. {
  5443. "name": "Sebastian Bergmann",
  5444. "email": "sebastian@phpunit.de"
  5445. },
  5446. {
  5447. "name": "Adam Harvey",
  5448. "email": "aharvey@php.net"
  5449. }
  5450. ],
  5451. "description": "Provides functionality to recursively process PHP variables",
  5452. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5453. "time": "2015-11-11 19:50:13"
  5454. },
  5455. {
  5456. "name": "sebastian/resource-operations",
  5457. "version": "1.0.0",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5461. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5466. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5467. "shasum": ""
  5468. },
  5469. "require": {
  5470. "php": ">=5.6.0"
  5471. },
  5472. "type": "library",
  5473. "extra": {
  5474. "branch-alias": {
  5475. "dev-master": "1.0.x-dev"
  5476. }
  5477. },
  5478. "autoload": {
  5479. "classmap": [
  5480. "src/"
  5481. ]
  5482. },
  5483. "notification-url": "https://packagist.org/downloads/",
  5484. "license": [
  5485. "BSD-3-Clause"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Sebastian Bergmann",
  5490. "email": "sebastian@phpunit.de"
  5491. }
  5492. ],
  5493. "description": "Provides a list of PHP built-in functions that operate on resources",
  5494. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5495. "time": "2015-07-28 20:34:47"
  5496. },
  5497. {
  5498. "name": "sebastian/version",
  5499. "version": "2.0.0",
  5500. "source": {
  5501. "type": "git",
  5502. "url": "https://github.com/sebastianbergmann/version.git",
  5503. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
  5504. },
  5505. "dist": {
  5506. "type": "zip",
  5507. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5508. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5509. "shasum": ""
  5510. },
  5511. "require": {
  5512. "php": ">=5.6"
  5513. },
  5514. "type": "library",
  5515. "extra": {
  5516. "branch-alias": {
  5517. "dev-master": "2.0.x-dev"
  5518. }
  5519. },
  5520. "autoload": {
  5521. "classmap": [
  5522. "src/"
  5523. ]
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "BSD-3-Clause"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Sebastian Bergmann",
  5532. "email": "sebastian@phpunit.de",
  5533. "role": "lead"
  5534. }
  5535. ],
  5536. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5537. "homepage": "https://github.com/sebastianbergmann/version",
  5538. "time": "2016-02-04 12:56:52"
  5539. },
  5540. {
  5541. "name": "symfony/phpunit-bridge",
  5542. "version": "v3.1.4",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/symfony/phpunit-bridge.git",
  5546. "reference": "1f4e2059cf4ecae1053b9c3027b3fc548fd077b9"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/1f4e2059cf4ecae1053b9c3027b3fc548fd077b9",
  5551. "reference": "1f4e2059cf4ecae1053b9c3027b3fc548fd077b9",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=5.3.3"
  5556. },
  5557. "suggest": {
  5558. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  5559. },
  5560. "type": "symfony-bridge",
  5561. "extra": {
  5562. "branch-alias": {
  5563. "dev-master": "3.1-dev"
  5564. }
  5565. },
  5566. "autoload": {
  5567. "files": [
  5568. "bootstrap.php"
  5569. ],
  5570. "psr-4": {
  5571. "Symfony\\Bridge\\PhpUnit\\": ""
  5572. },
  5573. "exclude-from-classmap": [
  5574. "/Tests/"
  5575. ]
  5576. },
  5577. "notification-url": "https://packagist.org/downloads/",
  5578. "license": [
  5579. "MIT"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "Nicolas Grekas",
  5584. "email": "p@tchwork.com"
  5585. },
  5586. {
  5587. "name": "Symfony Community",
  5588. "homepage": "https://symfony.com/contributors"
  5589. }
  5590. ],
  5591. "description": "Symfony PHPUnit Bridge",
  5592. "homepage": "https://symfony.com",
  5593. "time": "2016-08-19 06:48:39"
  5594. },
  5595. {
  5596. "name": "webmozart/assert",
  5597. "version": "1.1.0",
  5598. "source": {
  5599. "type": "git",
  5600. "url": "https://github.com/webmozart/assert.git",
  5601. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308"
  5602. },
  5603. "dist": {
  5604. "type": "zip",
  5605. "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308",
  5606. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308",
  5607. "shasum": ""
  5608. },
  5609. "require": {
  5610. "php": "^5.3.3|^7.0"
  5611. },
  5612. "require-dev": {
  5613. "phpunit/phpunit": "^4.6",
  5614. "sebastian/version": "^1.0.1"
  5615. },
  5616. "type": "library",
  5617. "extra": {
  5618. "branch-alias": {
  5619. "dev-master": "1.2-dev"
  5620. }
  5621. },
  5622. "autoload": {
  5623. "psr-4": {
  5624. "Webmozart\\Assert\\": "src/"
  5625. }
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Bernhard Schussek",
  5634. "email": "bschussek@gmail.com"
  5635. }
  5636. ],
  5637. "description": "Assertions to validate method input/output with nice error messages.",
  5638. "keywords": [
  5639. "assert",
  5640. "check",
  5641. "validate"
  5642. ],
  5643. "time": "2016-08-09 15:02:57"
  5644. }
  5645. ],
  5646. "aliases": [],
  5647. "minimum-stability": "stable",
  5648. "stability-flags": {
  5649. "composer/composer": 20,
  5650. "friendsofsymfony/user-bundle": 20
  5651. },
  5652. "prefer-stable": false,
  5653. "prefer-lowest": false,
  5654. "platform": {
  5655. "php": ">=5.6"
  5656. },
  5657. "platform-dev": []
  5658. }