composer.lock 236 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "d4f57e285245a75fc6a87e8922185e21",
  8. "packages": [
  9. {
  10. "name": "algolia/algoliasearch-client-php",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/algolia/algoliasearch-client-php.git",
  15. "reference": "d2477f550cabf12c99a018183d2bd4494ed39b0b"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/algolia/algoliasearch-client-php/zipball/d2477f550cabf12c99a018183d2bd4494ed39b0b",
  20. "reference": "d2477f550cabf12c99a018183d2bd4494ed39b0b",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-curl": "*",
  25. "ext-json": "*",
  26. "ext-mbstring": "*",
  27. "php": "^5.3 || ^7.0",
  28. "psr/http-message": "^1.0",
  29. "psr/log": "^1.0",
  30. "psr/simple-cache": "^1.0"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^4.8",
  34. "symfony/yaml": "^2.0 || ^4.0"
  35. },
  36. "suggest": {
  37. "guzzlehttp/guzzle": "If you prefer to use Guzzle HTTP client instead of the Http Client implementation provided by the package"
  38. },
  39. "bin": [
  40. "bin/algolia-doctor"
  41. ],
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-2.0": "2.0.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Algolia\\AlgoliaSearch\\": "src/"
  51. },
  52. "files": [
  53. "src/Http/Psr7/functions.php",
  54. "src/functions.php"
  55. ]
  56. },
  57. "notification-url": "https://packagist.org/downloads/",
  58. "license": [
  59. "MIT"
  60. ],
  61. "authors": [
  62. {
  63. "name": "Algolia Team",
  64. "email": "contact@algolia.com"
  65. }
  66. ],
  67. "description": "Algolia Search API Client for PHP",
  68. "keywords": [
  69. "algolia",
  70. "api",
  71. "client",
  72. "php",
  73. "search"
  74. ],
  75. "time": "2019-01-23T10:44:28+00:00"
  76. },
  77. {
  78. "name": "cebe/markdown",
  79. "version": "1.2.1",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/cebe/markdown.git",
  83. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  88. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "lib-pcre": "*",
  93. "php": ">=5.4.0"
  94. },
  95. "require-dev": {
  96. "cebe/indent": "*",
  97. "facebook/xhprof": "*@dev",
  98. "phpunit/phpunit": "4.1.*"
  99. },
  100. "bin": [
  101. "bin/markdown"
  102. ],
  103. "type": "library",
  104. "extra": {
  105. "branch-alias": {
  106. "dev-master": "1.2.x-dev"
  107. }
  108. },
  109. "autoload": {
  110. "psr-4": {
  111. "cebe\\markdown\\": ""
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "MIT"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Carsten Brandt",
  121. "email": "mail@cebe.cc",
  122. "homepage": "http://cebe.cc/",
  123. "role": "Creator"
  124. }
  125. ],
  126. "description": "A super fast, highly extensible markdown parser for PHP",
  127. "homepage": "https://github.com/cebe/markdown#readme",
  128. "keywords": [
  129. "extensible",
  130. "fast",
  131. "gfm",
  132. "markdown",
  133. "markdown-extra"
  134. ],
  135. "time": "2018-03-26T11:24:36+00:00"
  136. },
  137. {
  138. "name": "clue/stream-filter",
  139. "version": "v1.4.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/clue/php-stream-filter.git",
  143. "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0",
  148. "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "php": ">=5.3"
  153. },
  154. "require-dev": {
  155. "phpunit/phpunit": "^5.0 || ^4.8"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Clue\\StreamFilter\\": "src/"
  161. },
  162. "files": [
  163. "src/functions.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Christian Lück",
  173. "email": "christian@lueck.tv"
  174. }
  175. ],
  176. "description": "A simple and modern approach to stream filtering in PHP",
  177. "homepage": "https://github.com/clue/php-stream-filter",
  178. "keywords": [
  179. "bucket brigade",
  180. "callback",
  181. "filter",
  182. "php_user_filter",
  183. "stream",
  184. "stream_filter_append",
  185. "stream_filter_register"
  186. ],
  187. "time": "2017-08-18T09:54:01+00:00"
  188. },
  189. {
  190. "name": "composer/ca-bundle",
  191. "version": "1.1.4",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/ca-bundle.git",
  195. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  200. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "ext-openssl": "*",
  205. "ext-pcre": "*",
  206. "php": "^5.3.2 || ^7.0"
  207. },
  208. "require-dev": {
  209. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  210. "psr/log": "^1.0",
  211. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  212. },
  213. "type": "library",
  214. "extra": {
  215. "branch-alias": {
  216. "dev-master": "1.x-dev"
  217. }
  218. },
  219. "autoload": {
  220. "psr-4": {
  221. "Composer\\CaBundle\\": "src"
  222. }
  223. },
  224. "notification-url": "https://packagist.org/downloads/",
  225. "license": [
  226. "MIT"
  227. ],
  228. "authors": [
  229. {
  230. "name": "Jordi Boggiano",
  231. "email": "j.boggiano@seld.be",
  232. "homepage": "http://seld.be"
  233. }
  234. ],
  235. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  236. "keywords": [
  237. "cabundle",
  238. "cacert",
  239. "certificate",
  240. "ssl",
  241. "tls"
  242. ],
  243. "time": "2019-01-28T09:30:10+00:00"
  244. },
  245. {
  246. "name": "composer/composer",
  247. "version": "dev-master",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/composer/composer.git",
  251. "reference": "ba1e5c213c2932093ee3d8aa3ee1591ffa35e877"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/composer/composer/zipball/ba1e5c213c2932093ee3d8aa3ee1591ffa35e877",
  256. "reference": "ba1e5c213c2932093ee3d8aa3ee1591ffa35e877",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "composer/ca-bundle": "^1.0",
  261. "composer/semver": "^1.0",
  262. "composer/spdx-licenses": "^1.2",
  263. "composer/xdebug-handler": "^1.1",
  264. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  265. "php": "^5.3.2 || ^7.0",
  266. "psr/log": "^1.0",
  267. "seld/jsonlint": "^1.4",
  268. "seld/phar-utils": "^1.0",
  269. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  270. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  271. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  272. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  273. },
  274. "conflict": {
  275. "symfony/console": "2.8.38"
  276. },
  277. "require-dev": {
  278. "phpunit/phpunit": "^4.8.35 || ^5.7",
  279. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  280. },
  281. "suggest": {
  282. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  283. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  284. "ext-zlib": "Allow gzip compression of HTTP requests"
  285. },
  286. "bin": [
  287. "bin/composer"
  288. ],
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-master": "1.9-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\": "src/Composer"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. }
  315. ],
  316. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  317. "homepage": "https://getcomposer.org/",
  318. "keywords": [
  319. "autoload",
  320. "dependency",
  321. "package"
  322. ],
  323. "time": "2019-02-27T14:07:33+00:00"
  324. },
  325. {
  326. "name": "composer/semver",
  327. "version": "1.4.2",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/composer/semver.git",
  331. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  336. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  337. "shasum": ""
  338. },
  339. "require": {
  340. "php": "^5.3.2 || ^7.0"
  341. },
  342. "require-dev": {
  343. "phpunit/phpunit": "^4.5 || ^5.0.5",
  344. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  345. },
  346. "type": "library",
  347. "extra": {
  348. "branch-alias": {
  349. "dev-master": "1.x-dev"
  350. }
  351. },
  352. "autoload": {
  353. "psr-4": {
  354. "Composer\\Semver\\": "src"
  355. }
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "MIT"
  360. ],
  361. "authors": [
  362. {
  363. "name": "Nils Adermann",
  364. "email": "naderman@naderman.de",
  365. "homepage": "http://www.naderman.de"
  366. },
  367. {
  368. "name": "Jordi Boggiano",
  369. "email": "j.boggiano@seld.be",
  370. "homepage": "http://seld.be"
  371. },
  372. {
  373. "name": "Rob Bast",
  374. "email": "rob.bast@gmail.com",
  375. "homepage": "http://robbast.nl"
  376. }
  377. ],
  378. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  379. "keywords": [
  380. "semantic",
  381. "semver",
  382. "validation",
  383. "versioning"
  384. ],
  385. "time": "2016-08-30T16:08:34+00:00"
  386. },
  387. {
  388. "name": "composer/spdx-licenses",
  389. "version": "1.5.0",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/composer/spdx-licenses.git",
  393. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  398. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "php": "^5.3.2 || ^7.0"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  406. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  407. },
  408. "type": "library",
  409. "extra": {
  410. "branch-alias": {
  411. "dev-master": "1.x-dev"
  412. }
  413. },
  414. "autoload": {
  415. "psr-4": {
  416. "Composer\\Spdx\\": "src"
  417. }
  418. },
  419. "notification-url": "https://packagist.org/downloads/",
  420. "license": [
  421. "MIT"
  422. ],
  423. "authors": [
  424. {
  425. "name": "Nils Adermann",
  426. "email": "naderman@naderman.de",
  427. "homepage": "http://www.naderman.de"
  428. },
  429. {
  430. "name": "Jordi Boggiano",
  431. "email": "j.boggiano@seld.be",
  432. "homepage": "http://seld.be"
  433. },
  434. {
  435. "name": "Rob Bast",
  436. "email": "rob.bast@gmail.com",
  437. "homepage": "http://robbast.nl"
  438. }
  439. ],
  440. "description": "SPDX licenses list and validation library.",
  441. "keywords": [
  442. "license",
  443. "spdx",
  444. "validator"
  445. ],
  446. "time": "2018-11-01T09:45:54+00:00"
  447. },
  448. {
  449. "name": "composer/xdebug-handler",
  450. "version": "1.3.2",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/composer/xdebug-handler.git",
  454. "reference": "d17708133b6c276d6e42ef887a877866b909d892"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/d17708133b6c276d6e42ef887a877866b909d892",
  459. "reference": "d17708133b6c276d6e42ef887a877866b909d892",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^5.3.2 || ^7.0",
  464. "psr/log": "^1.0"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "Composer\\XdebugHandler\\": "src"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "John Stevenson",
  482. "email": "john-stevenson@blueyonder.co.uk"
  483. }
  484. ],
  485. "description": "Restarts a process without xdebug.",
  486. "keywords": [
  487. "Xdebug",
  488. "performance"
  489. ],
  490. "time": "2019-01-28T20:25:53+00:00"
  491. },
  492. {
  493. "name": "container-interop/container-interop",
  494. "version": "1.2.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/container-interop/container-interop.git",
  498. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  503. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "psr/container": "^1.0"
  508. },
  509. "type": "library",
  510. "autoload": {
  511. "psr-4": {
  512. "Interop\\Container\\": "src/Interop/Container/"
  513. }
  514. },
  515. "notification-url": "https://packagist.org/downloads/",
  516. "license": [
  517. "MIT"
  518. ],
  519. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  520. "homepage": "https://github.com/container-interop/container-interop",
  521. "time": "2017-02-14T19:40:03+00:00"
  522. },
  523. {
  524. "name": "doctrine/annotations",
  525. "version": "v1.4.0",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/doctrine/annotations.git",
  529. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  534. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  535. "shasum": ""
  536. },
  537. "require": {
  538. "doctrine/lexer": "1.*",
  539. "php": "^5.6 || ^7.0"
  540. },
  541. "require-dev": {
  542. "doctrine/cache": "1.*",
  543. "phpunit/phpunit": "^5.7"
  544. },
  545. "type": "library",
  546. "extra": {
  547. "branch-alias": {
  548. "dev-master": "1.4.x-dev"
  549. }
  550. },
  551. "autoload": {
  552. "psr-4": {
  553. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  554. }
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Roman Borschel",
  563. "email": "roman@code-factory.org"
  564. },
  565. {
  566. "name": "Benjamin Eberlei",
  567. "email": "kontakt@beberlei.de"
  568. },
  569. {
  570. "name": "Guilherme Blanco",
  571. "email": "guilhermeblanco@gmail.com"
  572. },
  573. {
  574. "name": "Jonathan Wage",
  575. "email": "jonwage@gmail.com"
  576. },
  577. {
  578. "name": "Johannes Schmitt",
  579. "email": "schmittjoh@gmail.com"
  580. }
  581. ],
  582. "description": "Docblock Annotations Parser",
  583. "homepage": "http://www.doctrine-project.org",
  584. "keywords": [
  585. "annotations",
  586. "docblock",
  587. "parser"
  588. ],
  589. "time": "2017-02-24T16:22:25+00:00"
  590. },
  591. {
  592. "name": "doctrine/cache",
  593. "version": "v1.6.2",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/doctrine/cache.git",
  597. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  602. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": "~5.5|~7.0"
  607. },
  608. "conflict": {
  609. "doctrine/common": ">2.2,<2.4"
  610. },
  611. "require-dev": {
  612. "phpunit/phpunit": "~4.8|~5.0",
  613. "predis/predis": "~1.0",
  614. "satooshi/php-coveralls": "~0.6"
  615. },
  616. "type": "library",
  617. "extra": {
  618. "branch-alias": {
  619. "dev-master": "1.6.x-dev"
  620. }
  621. },
  622. "autoload": {
  623. "psr-4": {
  624. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Roman Borschel",
  634. "email": "roman@code-factory.org"
  635. },
  636. {
  637. "name": "Benjamin Eberlei",
  638. "email": "kontakt@beberlei.de"
  639. },
  640. {
  641. "name": "Guilherme Blanco",
  642. "email": "guilhermeblanco@gmail.com"
  643. },
  644. {
  645. "name": "Jonathan Wage",
  646. "email": "jonwage@gmail.com"
  647. },
  648. {
  649. "name": "Johannes Schmitt",
  650. "email": "schmittjoh@gmail.com"
  651. }
  652. ],
  653. "description": "Caching library offering an object-oriented API for many cache backends",
  654. "homepage": "http://www.doctrine-project.org",
  655. "keywords": [
  656. "cache",
  657. "caching"
  658. ],
  659. "time": "2017-07-22T12:49:21+00:00"
  660. },
  661. {
  662. "name": "doctrine/collections",
  663. "version": "v1.4.0",
  664. "source": {
  665. "type": "git",
  666. "url": "https://github.com/doctrine/collections.git",
  667. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  668. },
  669. "dist": {
  670. "type": "zip",
  671. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  672. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  673. "shasum": ""
  674. },
  675. "require": {
  676. "php": "^5.6 || ^7.0"
  677. },
  678. "require-dev": {
  679. "doctrine/coding-standard": "~0.1@dev",
  680. "phpunit/phpunit": "^5.7"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "branch-alias": {
  685. "dev-master": "1.3.x-dev"
  686. }
  687. },
  688. "autoload": {
  689. "psr-0": {
  690. "Doctrine\\Common\\Collections\\": "lib/"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Roman Borschel",
  700. "email": "roman@code-factory.org"
  701. },
  702. {
  703. "name": "Benjamin Eberlei",
  704. "email": "kontakt@beberlei.de"
  705. },
  706. {
  707. "name": "Guilherme Blanco",
  708. "email": "guilhermeblanco@gmail.com"
  709. },
  710. {
  711. "name": "Jonathan Wage",
  712. "email": "jonwage@gmail.com"
  713. },
  714. {
  715. "name": "Johannes Schmitt",
  716. "email": "schmittjoh@gmail.com"
  717. }
  718. ],
  719. "description": "Collections Abstraction library",
  720. "homepage": "http://www.doctrine-project.org",
  721. "keywords": [
  722. "array",
  723. "collections",
  724. "iterator"
  725. ],
  726. "time": "2017-01-03T10:49:41+00:00"
  727. },
  728. {
  729. "name": "doctrine/common",
  730. "version": "v2.7.3",
  731. "source": {
  732. "type": "git",
  733. "url": "https://github.com/doctrine/common.git",
  734. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  735. },
  736. "dist": {
  737. "type": "zip",
  738. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  739. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  740. "shasum": ""
  741. },
  742. "require": {
  743. "doctrine/annotations": "1.*",
  744. "doctrine/cache": "1.*",
  745. "doctrine/collections": "1.*",
  746. "doctrine/inflector": "1.*",
  747. "doctrine/lexer": "1.*",
  748. "php": "~5.6|~7.0"
  749. },
  750. "require-dev": {
  751. "phpunit/phpunit": "^5.4.6"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "branch-alias": {
  756. "dev-master": "2.7.x-dev"
  757. }
  758. },
  759. "autoload": {
  760. "psr-4": {
  761. "Doctrine\\Common\\": "lib/Doctrine/Common"
  762. }
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "authors": [
  769. {
  770. "name": "Roman Borschel",
  771. "email": "roman@code-factory.org"
  772. },
  773. {
  774. "name": "Benjamin Eberlei",
  775. "email": "kontakt@beberlei.de"
  776. },
  777. {
  778. "name": "Guilherme Blanco",
  779. "email": "guilhermeblanco@gmail.com"
  780. },
  781. {
  782. "name": "Jonathan Wage",
  783. "email": "jonwage@gmail.com"
  784. },
  785. {
  786. "name": "Johannes Schmitt",
  787. "email": "schmittjoh@gmail.com"
  788. }
  789. ],
  790. "description": "Common Library for Doctrine projects",
  791. "homepage": "http://www.doctrine-project.org",
  792. "keywords": [
  793. "annotations",
  794. "collections",
  795. "eventmanager",
  796. "persistence",
  797. "spl"
  798. ],
  799. "time": "2017-07-22T08:35:12+00:00"
  800. },
  801. {
  802. "name": "doctrine/dbal",
  803. "version": "v2.5.13",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/doctrine/dbal.git",
  807. "reference": "729340d8d1eec8f01bff708e12e449a3415af873"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/doctrine/dbal/zipball/729340d8d1eec8f01bff708e12e449a3415af873",
  812. "reference": "729340d8d1eec8f01bff708e12e449a3415af873",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "doctrine/common": ">=2.4,<2.8-dev",
  817. "php": ">=5.3.2"
  818. },
  819. "require-dev": {
  820. "phpunit/phpunit": "4.*",
  821. "symfony/console": "2.*||^3.0"
  822. },
  823. "suggest": {
  824. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  825. },
  826. "bin": [
  827. "bin/doctrine-dbal"
  828. ],
  829. "type": "library",
  830. "extra": {
  831. "branch-alias": {
  832. "dev-master": "2.5.x-dev"
  833. }
  834. },
  835. "autoload": {
  836. "psr-0": {
  837. "Doctrine\\DBAL\\": "lib/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Roman Borschel",
  847. "email": "roman@code-factory.org"
  848. },
  849. {
  850. "name": "Benjamin Eberlei",
  851. "email": "kontakt@beberlei.de"
  852. },
  853. {
  854. "name": "Guilherme Blanco",
  855. "email": "guilhermeblanco@gmail.com"
  856. },
  857. {
  858. "name": "Jonathan Wage",
  859. "email": "jonwage@gmail.com"
  860. }
  861. ],
  862. "description": "Database Abstraction Layer",
  863. "homepage": "http://www.doctrine-project.org",
  864. "keywords": [
  865. "database",
  866. "dbal",
  867. "persistence",
  868. "queryobject"
  869. ],
  870. "time": "2017-07-22T20:44:48+00:00"
  871. },
  872. {
  873. "name": "doctrine/doctrine-bundle",
  874. "version": "1.10.1",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/doctrine/DoctrineBundle.git",
  878. "reference": "98551d71f515692c2278073e0d483763ac70b341"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/98551d71f515692c2278073e0d483763ac70b341",
  883. "reference": "98551d71f515692c2278073e0d483763ac70b341",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "doctrine/dbal": "^2.5.12",
  888. "doctrine/doctrine-cache-bundle": "~1.2",
  889. "jdorn/sql-formatter": "^1.2.16",
  890. "php": "^5.5.9|^7.0",
  891. "symfony/console": "~2.7|~3.0|~4.0",
  892. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  893. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  894. "symfony/framework-bundle": "^2.7.22|~3.0|~4.0"
  895. },
  896. "conflict": {
  897. "symfony/http-foundation": "<2.6"
  898. },
  899. "require-dev": {
  900. "doctrine/orm": "~2.4",
  901. "php-coveralls/php-coveralls": "^2.1",
  902. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  903. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  904. "symfony/property-info": "~2.8|~3.0|~4.0",
  905. "symfony/validator": "~2.7|~3.0|~4.0",
  906. "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
  907. "symfony/yaml": "~2.7|~3.0|~4.0",
  908. "twig/twig": "~1.26|~2.0"
  909. },
  910. "suggest": {
  911. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  912. "symfony/web-profiler-bundle": "To use the data collector."
  913. },
  914. "type": "symfony-bundle",
  915. "extra": {
  916. "branch-alias": {
  917. "dev-master": "1.9.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Symfony Community",
  932. "homepage": "http://symfony.com/contributors"
  933. },
  934. {
  935. "name": "Benjamin Eberlei",
  936. "email": "kontakt@beberlei.de"
  937. },
  938. {
  939. "name": "Doctrine Project",
  940. "homepage": "http://www.doctrine-project.org/"
  941. },
  942. {
  943. "name": "Fabien Potencier",
  944. "email": "fabien@symfony.com"
  945. }
  946. ],
  947. "description": "Symfony DoctrineBundle",
  948. "homepage": "http://www.doctrine-project.org",
  949. "keywords": [
  950. "database",
  951. "dbal",
  952. "orm",
  953. "persistence"
  954. ],
  955. "time": "2019-01-07T15:31:08+00:00"
  956. },
  957. {
  958. "name": "doctrine/doctrine-cache-bundle",
  959. "version": "1.3.5",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  963. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  968. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "doctrine/cache": "^1.4.2",
  973. "doctrine/inflector": "~1.0",
  974. "php": ">=5.3.2",
  975. "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
  976. },
  977. "require-dev": {
  978. "instaclick/coding-standard": "~1.1",
  979. "instaclick/object-calisthenics-sniffs": "dev-master",
  980. "instaclick/symfony2-coding-standard": "dev-remaster",
  981. "phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0",
  982. "predis/predis": "~0.8",
  983. "satooshi/php-coveralls": "^1.0",
  984. "squizlabs/php_codesniffer": "~1.5",
  985. "symfony/console": "~2.7|~3.3|~4.0",
  986. "symfony/finder": "~2.7|~3.3|~4.0",
  987. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  988. "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
  989. "symfony/security-acl": "~2.7|~3.3",
  990. "symfony/validator": "~2.7|~3.3|~4.0",
  991. "symfony/yaml": "~2.7|~3.3|~4.0"
  992. },
  993. "suggest": {
  994. "symfony/security-acl": "For using this bundle to cache ACLs"
  995. },
  996. "type": "symfony-bundle",
  997. "extra": {
  998. "branch-alias": {
  999. "dev-master": "1.3.x-dev"
  1000. }
  1001. },
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  1005. },
  1006. "exclude-from-classmap": [
  1007. "/Tests/"
  1008. ]
  1009. },
  1010. "notification-url": "https://packagist.org/downloads/",
  1011. "license": [
  1012. "MIT"
  1013. ],
  1014. "authors": [
  1015. {
  1016. "name": "Symfony Community",
  1017. "homepage": "http://symfony.com/contributors"
  1018. },
  1019. {
  1020. "name": "Benjamin Eberlei",
  1021. "email": "kontakt@beberlei.de"
  1022. },
  1023. {
  1024. "name": "Fabio B. Silva",
  1025. "email": "fabio.bat.silva@gmail.com"
  1026. },
  1027. {
  1028. "name": "Guilherme Blanco",
  1029. "email": "guilhermeblanco@hotmail.com"
  1030. },
  1031. {
  1032. "name": "Doctrine Project",
  1033. "homepage": "http://www.doctrine-project.org/"
  1034. },
  1035. {
  1036. "name": "Fabien Potencier",
  1037. "email": "fabien@symfony.com"
  1038. }
  1039. ],
  1040. "description": "Symfony Bundle for Doctrine Cache",
  1041. "homepage": "https://www.doctrine-project.org",
  1042. "keywords": [
  1043. "cache",
  1044. "caching"
  1045. ],
  1046. "time": "2018-11-09T06:25:35+00:00"
  1047. },
  1048. {
  1049. "name": "doctrine/inflector",
  1050. "version": "v1.2.0",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/doctrine/inflector.git",
  1054. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1059. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1060. "shasum": ""
  1061. },
  1062. "require": {
  1063. "php": "^7.0"
  1064. },
  1065. "require-dev": {
  1066. "phpunit/phpunit": "^6.2"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "branch-alias": {
  1071. "dev-master": "1.2.x-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Roman Borschel",
  1086. "email": "roman@code-factory.org"
  1087. },
  1088. {
  1089. "name": "Benjamin Eberlei",
  1090. "email": "kontakt@beberlei.de"
  1091. },
  1092. {
  1093. "name": "Guilherme Blanco",
  1094. "email": "guilhermeblanco@gmail.com"
  1095. },
  1096. {
  1097. "name": "Jonathan Wage",
  1098. "email": "jonwage@gmail.com"
  1099. },
  1100. {
  1101. "name": "Johannes Schmitt",
  1102. "email": "schmittjoh@gmail.com"
  1103. }
  1104. ],
  1105. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1106. "homepage": "http://www.doctrine-project.org",
  1107. "keywords": [
  1108. "inflection",
  1109. "pluralize",
  1110. "singularize",
  1111. "string"
  1112. ],
  1113. "time": "2017-07-22T12:18:28+00:00"
  1114. },
  1115. {
  1116. "name": "doctrine/instantiator",
  1117. "version": "1.0.5",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/doctrine/instantiator.git",
  1121. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1126. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1127. "shasum": ""
  1128. },
  1129. "require": {
  1130. "php": ">=5.3,<8.0-DEV"
  1131. },
  1132. "require-dev": {
  1133. "athletic/athletic": "~0.1.8",
  1134. "ext-pdo": "*",
  1135. "ext-phar": "*",
  1136. "phpunit/phpunit": "~4.0",
  1137. "squizlabs/php_codesniffer": "~2.0"
  1138. },
  1139. "type": "library",
  1140. "extra": {
  1141. "branch-alias": {
  1142. "dev-master": "1.0.x-dev"
  1143. }
  1144. },
  1145. "autoload": {
  1146. "psr-4": {
  1147. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1148. }
  1149. },
  1150. "notification-url": "https://packagist.org/downloads/",
  1151. "license": [
  1152. "MIT"
  1153. ],
  1154. "authors": [
  1155. {
  1156. "name": "Marco Pivetta",
  1157. "email": "ocramius@gmail.com",
  1158. "homepage": "http://ocramius.github.com/"
  1159. }
  1160. ],
  1161. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1162. "homepage": "https://github.com/doctrine/instantiator",
  1163. "keywords": [
  1164. "constructor",
  1165. "instantiate"
  1166. ],
  1167. "time": "2015-06-14T21:17:01+00:00"
  1168. },
  1169. {
  1170. "name": "doctrine/lexer",
  1171. "version": "v1.0.1",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/doctrine/lexer.git",
  1175. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1180. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "php": ">=5.3.2"
  1185. },
  1186. "type": "library",
  1187. "extra": {
  1188. "branch-alias": {
  1189. "dev-master": "1.0.x-dev"
  1190. }
  1191. },
  1192. "autoload": {
  1193. "psr-0": {
  1194. "Doctrine\\Common\\Lexer\\": "lib/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Roman Borschel",
  1204. "email": "roman@code-factory.org"
  1205. },
  1206. {
  1207. "name": "Guilherme Blanco",
  1208. "email": "guilhermeblanco@gmail.com"
  1209. },
  1210. {
  1211. "name": "Johannes Schmitt",
  1212. "email": "schmittjoh@gmail.com"
  1213. }
  1214. ],
  1215. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1216. "homepage": "http://www.doctrine-project.org",
  1217. "keywords": [
  1218. "lexer",
  1219. "parser"
  1220. ],
  1221. "time": "2014-09-09T13:34:57+00:00"
  1222. },
  1223. {
  1224. "name": "doctrine/orm",
  1225. "version": "v2.5.14",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/doctrine/orm.git",
  1229. "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/doctrine/orm/zipball/810a7baf81462a5ddf10e8baa8cb94b6eec02754",
  1234. "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "doctrine/cache": "~1.4",
  1239. "doctrine/collections": "~1.2",
  1240. "doctrine/common": ">=2.5-dev,<2.9-dev",
  1241. "doctrine/dbal": ">=2.5-dev,<2.7-dev",
  1242. "doctrine/instantiator": "^1.0.1",
  1243. "ext-pdo": "*",
  1244. "php": ">=5.4",
  1245. "symfony/console": "~2.5|~3.0|~4.0"
  1246. },
  1247. "require-dev": {
  1248. "phpunit/phpunit": "~4.0",
  1249. "symfony/yaml": "~2.3|~3.0|~4.0"
  1250. },
  1251. "suggest": {
  1252. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1253. },
  1254. "bin": [
  1255. "bin/doctrine",
  1256. "bin/doctrine.php"
  1257. ],
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "2.6.x-dev"
  1262. }
  1263. },
  1264. "autoload": {
  1265. "psr-0": {
  1266. "Doctrine\\ORM\\": "lib/"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Roman Borschel",
  1276. "email": "roman@code-factory.org"
  1277. },
  1278. {
  1279. "name": "Benjamin Eberlei",
  1280. "email": "kontakt@beberlei.de"
  1281. },
  1282. {
  1283. "name": "Guilherme Blanco",
  1284. "email": "guilhermeblanco@gmail.com"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. }
  1290. ],
  1291. "description": "Object-Relational-Mapper for PHP",
  1292. "homepage": "http://www.doctrine-project.org",
  1293. "keywords": [
  1294. "database",
  1295. "orm"
  1296. ],
  1297. "time": "2017-12-17T02:57:51+00:00"
  1298. },
  1299. {
  1300. "name": "egulias/email-validator",
  1301. "version": "2.1.7",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/egulias/EmailValidator.git",
  1305. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1310. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "doctrine/lexer": "^1.0.1",
  1315. "php": ">= 5.5"
  1316. },
  1317. "require-dev": {
  1318. "dominicsayers/isemail": "dev-master",
  1319. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1320. "satooshi/php-coveralls": "^1.0.1"
  1321. },
  1322. "suggest": {
  1323. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1324. },
  1325. "type": "library",
  1326. "extra": {
  1327. "branch-alias": {
  1328. "dev-master": "2.0.x-dev"
  1329. }
  1330. },
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Egulias\\EmailValidator\\": "EmailValidator"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "Eduardo Gulias Davis"
  1343. }
  1344. ],
  1345. "description": "A library for validating emails against several RFCs",
  1346. "homepage": "https://github.com/egulias/EmailValidator",
  1347. "keywords": [
  1348. "email",
  1349. "emailvalidation",
  1350. "emailvalidator",
  1351. "validation",
  1352. "validator"
  1353. ],
  1354. "time": "2018-12-04T22:38:24+00:00"
  1355. },
  1356. {
  1357. "name": "ezyang/htmlpurifier",
  1358. "version": "v4.10.0",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/ezyang/htmlpurifier.git",
  1362. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1367. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "php": ">=5.2"
  1372. },
  1373. "require-dev": {
  1374. "simpletest/simpletest": "^1.1"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-0": {
  1379. "HTMLPurifier": "library/"
  1380. },
  1381. "files": [
  1382. "library/HTMLPurifier.composer.php"
  1383. ]
  1384. },
  1385. "notification-url": "https://packagist.org/downloads/",
  1386. "license": [
  1387. "LGPL"
  1388. ],
  1389. "authors": [
  1390. {
  1391. "name": "Edward Z. Yang",
  1392. "email": "admin@htmlpurifier.org",
  1393. "homepage": "http://ezyang.com"
  1394. }
  1395. ],
  1396. "description": "Standards compliant HTML filter written in PHP",
  1397. "homepage": "http://htmlpurifier.org/",
  1398. "keywords": [
  1399. "html"
  1400. ],
  1401. "time": "2018-02-23T01:58:20+00:00"
  1402. },
  1403. {
  1404. "name": "fig/link-util",
  1405. "version": "1.0.0",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://github.com/php-fig/link-util.git",
  1409. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  1410. },
  1411. "dist": {
  1412. "type": "zip",
  1413. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  1414. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  1415. "shasum": ""
  1416. },
  1417. "require": {
  1418. "php": ">=5.5.0",
  1419. "psr/link": "~1.0@dev"
  1420. },
  1421. "require-dev": {
  1422. "phpunit/phpunit": "^5.1",
  1423. "squizlabs/php_codesniffer": "^2.3.1"
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "1.0.x-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Fig\\Link\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "authors": [
  1441. {
  1442. "name": "PHP-FIG",
  1443. "homepage": "http://www.php-fig.org/"
  1444. }
  1445. ],
  1446. "description": "Common utility implementations for HTTP links",
  1447. "keywords": [
  1448. "http",
  1449. "http-link",
  1450. "link",
  1451. "psr",
  1452. "psr-13",
  1453. "rest"
  1454. ],
  1455. "time": "2016-10-17T18:31:11+00:00"
  1456. },
  1457. {
  1458. "name": "friendsofsymfony/user-bundle",
  1459. "version": "v2.1.2",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1463. "reference": "1049935edd24ec305cc6cfde1875372fa9600446"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/1049935edd24ec305cc6cfde1875372fa9600446",
  1468. "reference": "1049935edd24ec305cc6cfde1875372fa9600446",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "paragonie/random_compat": "^1 || ^2",
  1473. "php": "^5.5.9 || ^7.0",
  1474. "symfony/form": "^2.8 || ^3.0 || ^4.0",
  1475. "symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
  1476. "symfony/security-bundle": "^2.8 || ^3.0 || ^4.0",
  1477. "symfony/templating": "^2.8 || ^3.0 || ^4.0",
  1478. "symfony/twig-bundle": "^2.8 || ^3.0 || ^4.0",
  1479. "symfony/validator": "^2.8 || ^3.0 || ^4.0",
  1480. "twig/twig": "^1.28 || ^2.0"
  1481. },
  1482. "conflict": {
  1483. "doctrine/doctrine-bundle": "<1.3",
  1484. "symfony/doctrine-bridge": "<2.7"
  1485. },
  1486. "require-dev": {
  1487. "doctrine/doctrine-bundle": "^1.3",
  1488. "friendsofphp/php-cs-fixer": "^2.2",
  1489. "phpunit/phpunit": "^4.8.35|^5.7.11|^6.5",
  1490. "swiftmailer/swiftmailer": "^4.3 || ^5.0 || ^6.0",
  1491. "symfony/console": "^2.8 || ^3.0 || ^4.0",
  1492. "symfony/phpunit-bridge": "^2.8 || ^3.0 || ^4.0",
  1493. "symfony/yaml": "^2.8 || ^3.0 || ^4.0"
  1494. },
  1495. "type": "symfony-bundle",
  1496. "extra": {
  1497. "branch-alias": {
  1498. "dev-master": "2.1.x-dev"
  1499. }
  1500. },
  1501. "autoload": {
  1502. "psr-4": {
  1503. "FOS\\UserBundle\\": ""
  1504. },
  1505. "exclude-from-classmap": [
  1506. "/Tests/"
  1507. ]
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Christophe Coevoet",
  1516. "email": "stof@notk.org"
  1517. },
  1518. {
  1519. "name": "FriendsOfSymfony Community",
  1520. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1521. },
  1522. {
  1523. "name": "Thibault Duplessis"
  1524. }
  1525. ],
  1526. "description": "Symfony FOSUserBundle",
  1527. "homepage": "http://friendsofsymfony.github.com",
  1528. "keywords": [
  1529. "User management"
  1530. ],
  1531. "time": "2018-03-08T08:59:27+00:00"
  1532. },
  1533. {
  1534. "name": "guzzlehttp/guzzle",
  1535. "version": "6.3.3",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/guzzle/guzzle.git",
  1539. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1544. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "guzzlehttp/promises": "^1.0",
  1549. "guzzlehttp/psr7": "^1.4",
  1550. "php": ">=5.5"
  1551. },
  1552. "require-dev": {
  1553. "ext-curl": "*",
  1554. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1555. "psr/log": "^1.0"
  1556. },
  1557. "suggest": {
  1558. "psr/log": "Required for using the Log middleware"
  1559. },
  1560. "type": "library",
  1561. "extra": {
  1562. "branch-alias": {
  1563. "dev-master": "6.3-dev"
  1564. }
  1565. },
  1566. "autoload": {
  1567. "files": [
  1568. "src/functions_include.php"
  1569. ],
  1570. "psr-4": {
  1571. "GuzzleHttp\\": "src/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Michael Dowling",
  1581. "email": "mtdowling@gmail.com",
  1582. "homepage": "https://github.com/mtdowling"
  1583. }
  1584. ],
  1585. "description": "Guzzle is a PHP HTTP client library",
  1586. "homepage": "http://guzzlephp.org/",
  1587. "keywords": [
  1588. "client",
  1589. "curl",
  1590. "framework",
  1591. "http",
  1592. "http client",
  1593. "rest",
  1594. "web service"
  1595. ],
  1596. "time": "2018-04-22T15:46:56+00:00"
  1597. },
  1598. {
  1599. "name": "guzzlehttp/promises",
  1600. "version": "v1.3.1",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/guzzle/promises.git",
  1604. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1609. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "php": ">=5.5.0"
  1614. },
  1615. "require-dev": {
  1616. "phpunit/phpunit": "^4.0"
  1617. },
  1618. "type": "library",
  1619. "extra": {
  1620. "branch-alias": {
  1621. "dev-master": "1.4-dev"
  1622. }
  1623. },
  1624. "autoload": {
  1625. "psr-4": {
  1626. "GuzzleHttp\\Promise\\": "src/"
  1627. },
  1628. "files": [
  1629. "src/functions_include.php"
  1630. ]
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Michael Dowling",
  1639. "email": "mtdowling@gmail.com",
  1640. "homepage": "https://github.com/mtdowling"
  1641. }
  1642. ],
  1643. "description": "Guzzle promises library",
  1644. "keywords": [
  1645. "promise"
  1646. ],
  1647. "time": "2016-12-20T10:07:11+00:00"
  1648. },
  1649. {
  1650. "name": "guzzlehttp/psr7",
  1651. "version": "1.5.2",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/guzzle/psr7.git",
  1655. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1660. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "php": ">=5.4.0",
  1665. "psr/http-message": "~1.0",
  1666. "ralouphie/getallheaders": "^2.0.5"
  1667. },
  1668. "provide": {
  1669. "psr/http-message-implementation": "1.0"
  1670. },
  1671. "require-dev": {
  1672. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1673. },
  1674. "type": "library",
  1675. "extra": {
  1676. "branch-alias": {
  1677. "dev-master": "1.5-dev"
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "GuzzleHttp\\Psr7\\": "src/"
  1683. },
  1684. "files": [
  1685. "src/functions_include.php"
  1686. ]
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Michael Dowling",
  1695. "email": "mtdowling@gmail.com",
  1696. "homepage": "https://github.com/mtdowling"
  1697. },
  1698. {
  1699. "name": "Tobias Schultze",
  1700. "homepage": "https://github.com/Tobion"
  1701. }
  1702. ],
  1703. "description": "PSR-7 message implementation that also provides common utility methods",
  1704. "keywords": [
  1705. "http",
  1706. "message",
  1707. "psr-7",
  1708. "request",
  1709. "response",
  1710. "stream",
  1711. "uri",
  1712. "url"
  1713. ],
  1714. "time": "2018-12-04T20:46:45+00:00"
  1715. },
  1716. {
  1717. "name": "hwi/oauth-bundle",
  1718. "version": "0.6.3",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1722. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  1727. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "php": "^5.6|^7.0",
  1732. "php-http/client-common": "^1.3",
  1733. "php-http/client-implementation": "^1.0",
  1734. "php-http/discovery": "^1.0",
  1735. "php-http/httplug": "^1.0",
  1736. "php-http/message-factory": "^1.0",
  1737. "psr/http-message": "^1.0",
  1738. "symfony/form": "^2.8|^3.0|^4.0",
  1739. "symfony/framework-bundle": "^2.8|^3.0|^4.0",
  1740. "symfony/options-resolver": "^2.8|^3.0|^4.0",
  1741. "symfony/security-bundle": "^2.8|^3.0|^4.0",
  1742. "symfony/templating": "^2.8|^3.0|^4.0",
  1743. "symfony/yaml": "^2.8|^3.0|^4.0"
  1744. },
  1745. "conflict": {
  1746. "twig/twig": "<1.12"
  1747. },
  1748. "require-dev": {
  1749. "doctrine/orm": "^2.3",
  1750. "friendsofphp/php-cs-fixer": "^2.0",
  1751. "friendsofsymfony/user-bundle": "^1.3|^2.0",
  1752. "php-http/guzzle6-adapter": "^1.1",
  1753. "php-http/httplug-bundle": "^1.7",
  1754. "phpunit/phpunit": "^5.7",
  1755. "symfony/phpunit-bridge": "^2.8|^3.0|^4.0",
  1756. "symfony/property-access": "^2.8|^3.0|^4.0",
  1757. "symfony/stopwatch": "^2.8|^3.0|^4.0",
  1758. "symfony/twig-bundle": "^2.8|^3.0|^4.0",
  1759. "symfony/validator": "^2.8|^3.0|^4.0"
  1760. },
  1761. "suggest": {
  1762. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1763. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1764. "php-http/httplug-bundle": "to provide required HTTP client with ease.",
  1765. "symfony/property-access": "to use FOSUB integration with this bundle",
  1766. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1767. },
  1768. "type": "symfony-bundle",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "0.6-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-4": {
  1776. "HWI\\Bundle\\OAuthBundle\\": ""
  1777. },
  1778. "exclude-from-classmap": [
  1779. "/Tests/"
  1780. ]
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Contributors",
  1789. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1790. },
  1791. {
  1792. "name": "Joseph Bielawski",
  1793. "email": "stloyd@gmail.com"
  1794. },
  1795. {
  1796. "name": "Alexander",
  1797. "email": "iam.asm89@gmail.com"
  1798. },
  1799. {
  1800. "name": "Geoffrey Bachelet",
  1801. "email": "geoffrey.bachelet@gmail.com"
  1802. }
  1803. ],
  1804. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1805. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1806. "keywords": [
  1807. "37signals",
  1808. "Authentication",
  1809. "Deezer",
  1810. "EVE Online",
  1811. "amazon",
  1812. "asana",
  1813. "auth0",
  1814. "azure",
  1815. "bitbucket",
  1816. "bitly",
  1817. "box",
  1818. "bufferapp",
  1819. "clever",
  1820. "dailymotion",
  1821. "deviantart",
  1822. "discogs",
  1823. "disqus",
  1824. "dropbox",
  1825. "eventbrite",
  1826. "facebook",
  1827. "firewall",
  1828. "fiware",
  1829. "flickr",
  1830. "foursquare",
  1831. "github",
  1832. "gitlab",
  1833. "google",
  1834. "hubic",
  1835. "instagram",
  1836. "jawbone",
  1837. "jira",
  1838. "linkedin",
  1839. "mail.ru",
  1840. "oauth",
  1841. "oauth1",
  1842. "oauth2",
  1843. "odnoklassniki",
  1844. "paypal",
  1845. "qq",
  1846. "reddit",
  1847. "runkeeper",
  1848. "salesforce",
  1849. "security",
  1850. "sensio connect",
  1851. "sina weibo",
  1852. "slack",
  1853. "sound cloud",
  1854. "spotify",
  1855. "stack exchange",
  1856. "stereomood",
  1857. "strava",
  1858. "toshl",
  1859. "trakt",
  1860. "trello",
  1861. "twitch",
  1862. "twitter",
  1863. "vkontakte",
  1864. "windows live",
  1865. "wordpress",
  1866. "wunderlist",
  1867. "xing",
  1868. "yahoo",
  1869. "yandex",
  1870. "youtube"
  1871. ],
  1872. "time": "2018-07-31T10:19:28+00:00"
  1873. },
  1874. {
  1875. "name": "jdorn/sql-formatter",
  1876. "version": "v1.2.17",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/jdorn/sql-formatter.git",
  1880. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1885. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "php": ">=5.2.4"
  1890. },
  1891. "require-dev": {
  1892. "phpunit/phpunit": "3.7.*"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "branch-alias": {
  1897. "dev-master": "1.3.x-dev"
  1898. }
  1899. },
  1900. "autoload": {
  1901. "classmap": [
  1902. "lib"
  1903. ]
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "Jeremy Dorn",
  1912. "email": "jeremy@jeremydorn.com",
  1913. "homepage": "http://jeremydorn.com/"
  1914. }
  1915. ],
  1916. "description": "a PHP SQL highlighting library",
  1917. "homepage": "https://github.com/jdorn/sql-formatter/",
  1918. "keywords": [
  1919. "highlight",
  1920. "sql"
  1921. ],
  1922. "time": "2014-01-12T16:20:24+00:00"
  1923. },
  1924. {
  1925. "name": "justinrainbow/json-schema",
  1926. "version": "5.2.8",
  1927. "source": {
  1928. "type": "git",
  1929. "url": "https://github.com/justinrainbow/json-schema.git",
  1930. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4"
  1931. },
  1932. "dist": {
  1933. "type": "zip",
  1934. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  1935. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  1936. "shasum": ""
  1937. },
  1938. "require": {
  1939. "php": ">=5.3.3"
  1940. },
  1941. "require-dev": {
  1942. "friendsofphp/php-cs-fixer": "~2.2.20",
  1943. "json-schema/json-schema-test-suite": "1.2.0",
  1944. "phpunit/phpunit": "^4.8.35"
  1945. },
  1946. "bin": [
  1947. "bin/validate-json"
  1948. ],
  1949. "type": "library",
  1950. "extra": {
  1951. "branch-alias": {
  1952. "dev-master": "5.0.x-dev"
  1953. }
  1954. },
  1955. "autoload": {
  1956. "psr-4": {
  1957. "JsonSchema\\": "src/JsonSchema/"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Bruno Prieto Reis",
  1967. "email": "bruno.p.reis@gmail.com"
  1968. },
  1969. {
  1970. "name": "Justin Rainbow",
  1971. "email": "justin.rainbow@gmail.com"
  1972. },
  1973. {
  1974. "name": "Igor Wiedler",
  1975. "email": "igor@wiedler.ch"
  1976. },
  1977. {
  1978. "name": "Robert Schönthal",
  1979. "email": "seroscho@googlemail.com"
  1980. }
  1981. ],
  1982. "description": "A library to validate a json schema.",
  1983. "homepage": "https://github.com/justinrainbow/json-schema",
  1984. "keywords": [
  1985. "json",
  1986. "schema"
  1987. ],
  1988. "time": "2019-01-14T23:55:14+00:00"
  1989. },
  1990. {
  1991. "name": "knplabs/knp-menu",
  1992. "version": "2.3.0",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1996. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/655630a1db0b72108262d1a844de3b1ba0885be5",
  2001. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5",
  2002. "shasum": ""
  2003. },
  2004. "require": {
  2005. "php": ">=5.6.0"
  2006. },
  2007. "require-dev": {
  2008. "psr/container": "^1.0",
  2009. "symfony/http-foundation": "~2.4|~3.0|^4.0",
  2010. "symfony/phpunit-bridge": "~3.3|^4.0",
  2011. "symfony/routing": "~2.3|~3.0|^4.0",
  2012. "twig/twig": "~1.16|~2.0"
  2013. },
  2014. "suggest": {
  2015. "twig/twig": "for the TwigRenderer and the integration with your templates"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "branch-alias": {
  2020. "dev-master": "2.3-dev"
  2021. }
  2022. },
  2023. "autoload": {
  2024. "psr-4": {
  2025. "Knp\\Menu\\": "src/Knp/Menu"
  2026. }
  2027. },
  2028. "notification-url": "https://packagist.org/downloads/",
  2029. "license": [
  2030. "MIT"
  2031. ],
  2032. "authors": [
  2033. {
  2034. "name": "Christophe Coevoet",
  2035. "email": "stof@notk.org"
  2036. },
  2037. {
  2038. "name": "Symfony Community",
  2039. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  2040. },
  2041. {
  2042. "name": "KnpLabs",
  2043. "homepage": "https://knplabs.com"
  2044. }
  2045. ],
  2046. "description": "An object oriented menu library",
  2047. "homepage": "https://knplabs.com",
  2048. "keywords": [
  2049. "menu",
  2050. "tree"
  2051. ],
  2052. "time": "2017-11-18T20:49:26+00:00"
  2053. },
  2054. {
  2055. "name": "knplabs/knp-menu-bundle",
  2056. "version": "v2.2.1",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  2060. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2065. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "knplabs/knp-menu": "~2.3",
  2070. "php": "^5.6 || ^7",
  2071. "symfony/framework-bundle": "~2.7|~3.0 | ^4.0"
  2072. },
  2073. "require-dev": {
  2074. "symfony/expression-language": "~2.7|~3.0 | ^4.0",
  2075. "symfony/phpunit-bridge": "^3.3 | ^4.0",
  2076. "symfony/templating": "~2.7|~3.0 | ^4.0"
  2077. },
  2078. "type": "symfony-bundle",
  2079. "extra": {
  2080. "branch-alias": {
  2081. "dev-master": "2.2.x-dev"
  2082. }
  2083. },
  2084. "autoload": {
  2085. "psr-4": {
  2086. "Knp\\Bundle\\MenuBundle\\": "src"
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "MIT"
  2092. ],
  2093. "authors": [
  2094. {
  2095. "name": "Christophe Coevoet",
  2096. "email": "stof@notk.org"
  2097. },
  2098. {
  2099. "name": "Knplabs",
  2100. "homepage": "http://knplabs.com"
  2101. },
  2102. {
  2103. "name": "Symfony Community",
  2104. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  2105. }
  2106. ],
  2107. "description": "This bundle provides an integration of the KnpMenu library",
  2108. "keywords": [
  2109. "menu"
  2110. ],
  2111. "time": "2017-12-24T16:32:39+00:00"
  2112. },
  2113. {
  2114. "name": "monolog/monolog",
  2115. "version": "1.24.0",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/Seldaek/monolog.git",
  2119. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2124. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "php": ">=5.3.0",
  2129. "psr/log": "~1.0"
  2130. },
  2131. "provide": {
  2132. "psr/log-implementation": "1.0.0"
  2133. },
  2134. "require-dev": {
  2135. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2136. "doctrine/couchdb": "~1.0@dev",
  2137. "graylog2/gelf-php": "~1.0",
  2138. "jakub-onderka/php-parallel-lint": "0.9",
  2139. "php-amqplib/php-amqplib": "~2.4",
  2140. "php-console/php-console": "^3.1.3",
  2141. "phpunit/phpunit": "~4.5",
  2142. "phpunit/phpunit-mock-objects": "2.3.0",
  2143. "ruflin/elastica": ">=0.90 <3.0",
  2144. "sentry/sentry": "^0.13",
  2145. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2146. },
  2147. "suggest": {
  2148. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2149. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2150. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2151. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2152. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2153. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2154. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2155. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2156. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2157. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2158. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2159. },
  2160. "type": "library",
  2161. "extra": {
  2162. "branch-alias": {
  2163. "dev-master": "2.0.x-dev"
  2164. }
  2165. },
  2166. "autoload": {
  2167. "psr-4": {
  2168. "Monolog\\": "src/Monolog"
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Jordi Boggiano",
  2178. "email": "j.boggiano@seld.be",
  2179. "homepage": "http://seld.be"
  2180. }
  2181. ],
  2182. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2183. "homepage": "http://github.com/Seldaek/monolog",
  2184. "keywords": [
  2185. "log",
  2186. "logging",
  2187. "psr-3"
  2188. ],
  2189. "time": "2018-11-05T09:00:11+00:00"
  2190. },
  2191. {
  2192. "name": "nelmio/cors-bundle",
  2193. "version": "1.5.4",
  2194. "source": {
  2195. "type": "git",
  2196. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2197. "reference": "548dc8ebd3984acd2f6d8787ab1dac2e9aa14254"
  2198. },
  2199. "dist": {
  2200. "type": "zip",
  2201. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/548dc8ebd3984acd2f6d8787ab1dac2e9aa14254",
  2202. "reference": "548dc8ebd3984acd2f6d8787ab1dac2e9aa14254",
  2203. "shasum": ""
  2204. },
  2205. "require": {
  2206. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0"
  2207. },
  2208. "require-dev": {
  2209. "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0",
  2210. "mockery/mockery": "^0.9 || ^1.0",
  2211. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  2212. },
  2213. "type": "symfony-bundle",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "1.5.x-dev"
  2217. }
  2218. },
  2219. "autoload": {
  2220. "psr-4": {
  2221. "Nelmio\\CorsBundle\\": ""
  2222. },
  2223. "exclude-from-classmap": [
  2224. "/Tests/"
  2225. ]
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Nelmio",
  2234. "homepage": "http://nelm.io"
  2235. },
  2236. {
  2237. "name": "Symfony Community",
  2238. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2239. }
  2240. ],
  2241. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2242. "keywords": [
  2243. "api",
  2244. "cors",
  2245. "crossdomain"
  2246. ],
  2247. "time": "2017-12-11T18:41:54+00:00"
  2248. },
  2249. {
  2250. "name": "nelmio/security-bundle",
  2251. "version": "2.5.1",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2255. "reference": "fe1d31eb23c13e0918de9a66df9d315648c5d3d1"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/fe1d31eb23c13e0918de9a66df9d315648c5d3d1",
  2260. "reference": "fe1d31eb23c13e0918de9a66df9d315648c5d3d1",
  2261. "shasum": ""
  2262. },
  2263. "require": {
  2264. "paragonie/random_compat": "~1.0|~2.0",
  2265. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  2266. "symfony/security": "~2.3|~3.0|~4.0",
  2267. "ua-parser/uap-php": "^3.4.4"
  2268. },
  2269. "require-dev": {
  2270. "doctrine/cache": "^1.0",
  2271. "psr/cache": "^1.0",
  2272. "symfony/phpunit-bridge": "^3.2|~4.0",
  2273. "symfony/yaml": "~2.3|~3.0|~4.0",
  2274. "twig/twig": "^1.24"
  2275. },
  2276. "suggest": {
  2277. "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
  2278. },
  2279. "type": "symfony-bundle",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "2.4.x-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Nelmio\\SecurityBundle\\": ""
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Nelmio",
  2297. "homepage": "http://nelm.io"
  2298. },
  2299. {
  2300. "name": "Symfony Community",
  2301. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2302. }
  2303. ],
  2304. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2305. "keywords": [
  2306. "security"
  2307. ],
  2308. "time": "2018-03-21T14:33:42+00:00"
  2309. },
  2310. {
  2311. "name": "pagerfanta/pagerfanta",
  2312. "version": "v2.0.1",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2316. "reference": "15770d9d7f6e8e07af568aed104a51f869591e73"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/15770d9d7f6e8e07af568aed104a51f869591e73",
  2321. "reference": "15770d9d7f6e8e07af568aed104a51f869591e73",
  2322. "shasum": ""
  2323. },
  2324. "require": {
  2325. "php": ">=7.0"
  2326. },
  2327. "require-dev": {
  2328. "doctrine/orm": "~2.3",
  2329. "doctrine/phpcr-odm": "1.*",
  2330. "jackalope/jackalope-doctrine-dbal": "1.*",
  2331. "jmikola/geojson": "~1.0",
  2332. "mandango/mandango": "~1.0@dev",
  2333. "mandango/mondator": "~1.0@dev",
  2334. "phpunit/phpunit": "^5.7|^6",
  2335. "propel/propel": "~2.0@dev",
  2336. "propel/propel1": "~1.6",
  2337. "ruflin/elastica": "~1.3",
  2338. "solarium/solarium": "~3.1"
  2339. },
  2340. "suggest": {
  2341. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2342. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2343. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2344. "mandango/mandango": "To use the MandangoAdapter.",
  2345. "propel/propel": "To use the Propel2Adapter",
  2346. "propel/propel1": "To use the PropelAdapter",
  2347. "solarium/solarium": "To use the SolariumAdapter."
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "1.0.x-dev"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-0": {
  2357. "Pagerfanta\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "authors": [
  2365. {
  2366. "name": "Pablo Díez",
  2367. "email": "pablodip@gmail.com"
  2368. }
  2369. ],
  2370. "description": "Pagination for PHP 5.3",
  2371. "keywords": [
  2372. "page",
  2373. "pagination",
  2374. "paginator",
  2375. "paging"
  2376. ],
  2377. "time": "2018-05-17T09:23:52+00:00"
  2378. },
  2379. {
  2380. "name": "paragonie/random_compat",
  2381. "version": "v2.0.18",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/paragonie/random_compat.git",
  2385. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2390. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "php": ">=5.2.0"
  2395. },
  2396. "require-dev": {
  2397. "phpunit/phpunit": "4.*|5.*"
  2398. },
  2399. "suggest": {
  2400. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2401. },
  2402. "type": "library",
  2403. "autoload": {
  2404. "files": [
  2405. "lib/random.php"
  2406. ]
  2407. },
  2408. "notification-url": "https://packagist.org/downloads/",
  2409. "license": [
  2410. "MIT"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "Paragon Initiative Enterprises",
  2415. "email": "security@paragonie.com",
  2416. "homepage": "https://paragonie.com"
  2417. }
  2418. ],
  2419. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2420. "keywords": [
  2421. "csprng",
  2422. "polyfill",
  2423. "pseudorandom",
  2424. "random"
  2425. ],
  2426. "time": "2019-01-03T20:59:08+00:00"
  2427. },
  2428. {
  2429. "name": "php-http/cache-plugin",
  2430. "version": "1.6.0",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/php-http/cache-plugin.git",
  2434. "reference": "8e2505d2090316fac7cce637b39b6bbb5249c5a8"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/php-http/cache-plugin/zipball/8e2505d2090316fac7cce637b39b6bbb5249c5a8",
  2439. "reference": "8e2505d2090316fac7cce637b39b6bbb5249c5a8",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "php": "^5.4 || ^7.0",
  2444. "php-http/client-common": "^1.9 || ^2.0",
  2445. "php-http/message-factory": "^1.0",
  2446. "psr/cache": "^1.0",
  2447. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
  2448. },
  2449. "require-dev": {
  2450. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2451. "phpspec/phpspec": "^2.5"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-master": "1.6-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "psr-4": {
  2461. "Http\\Client\\Common\\Plugin\\": "src/"
  2462. }
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Márk Sági-Kazár",
  2471. "email": "mark.sagikazar@gmail.com"
  2472. }
  2473. ],
  2474. "description": "PSR-6 Cache plugin for HTTPlug",
  2475. "homepage": "http://httplug.io",
  2476. "keywords": [
  2477. "cache",
  2478. "http",
  2479. "httplug",
  2480. "plugin"
  2481. ],
  2482. "time": "2019-01-23T16:51:58+00:00"
  2483. },
  2484. {
  2485. "name": "php-http/client-common",
  2486. "version": "1.9.0",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/php-http/client-common.git",
  2490. "reference": "9c21b6058caafdf2fcc99a0cabdf31b3ecb33961"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/php-http/client-common/zipball/9c21b6058caafdf2fcc99a0cabdf31b3ecb33961",
  2495. "reference": "9c21b6058caafdf2fcc99a0cabdf31b3ecb33961",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "php": "^5.4 || ^7.0",
  2500. "php-http/httplug": "^1.1",
  2501. "php-http/message": "^1.6",
  2502. "php-http/message-factory": "^1.0",
  2503. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
  2504. },
  2505. "require-dev": {
  2506. "guzzlehttp/psr7": "^1.4",
  2507. "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2"
  2508. },
  2509. "suggest": {
  2510. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2511. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2512. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2513. },
  2514. "type": "library",
  2515. "extra": {
  2516. "branch-alias": {
  2517. "dev-master": "1.9.x-dev"
  2518. }
  2519. },
  2520. "autoload": {
  2521. "psr-4": {
  2522. "Http\\Client\\Common\\": "src/"
  2523. }
  2524. },
  2525. "notification-url": "https://packagist.org/downloads/",
  2526. "license": [
  2527. "MIT"
  2528. ],
  2529. "authors": [
  2530. {
  2531. "name": "Márk Sági-Kazár",
  2532. "email": "mark.sagikazar@gmail.com"
  2533. }
  2534. ],
  2535. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2536. "homepage": "http://httplug.io",
  2537. "keywords": [
  2538. "client",
  2539. "common",
  2540. "http",
  2541. "httplug"
  2542. ],
  2543. "time": "2019-01-03T10:59:55+00:00"
  2544. },
  2545. {
  2546. "name": "php-http/discovery",
  2547. "version": "1.6.0",
  2548. "source": {
  2549. "type": "git",
  2550. "url": "https://github.com/php-http/discovery.git",
  2551. "reference": "02b7ea21eafa0757af04140890a67d8ed45f83b2"
  2552. },
  2553. "dist": {
  2554. "type": "zip",
  2555. "url": "https://api.github.com/repos/php-http/discovery/zipball/02b7ea21eafa0757af04140890a67d8ed45f83b2",
  2556. "reference": "02b7ea21eafa0757af04140890a67d8ed45f83b2",
  2557. "shasum": ""
  2558. },
  2559. "require": {
  2560. "php": "^5.5 || ^7.0"
  2561. },
  2562. "conflict": {
  2563. "nyholm/psr7": "<1.0"
  2564. },
  2565. "require-dev": {
  2566. "php-http/httplug": "^1.0 || ^2.0",
  2567. "php-http/message-factory": "^1.0",
  2568. "phpspec/phpspec": "^2.4",
  2569. "puli/composer-plugin": "1.0.0-beta10"
  2570. },
  2571. "suggest": {
  2572. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  2573. "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details."
  2574. },
  2575. "type": "library",
  2576. "extra": {
  2577. "branch-alias": {
  2578. "dev-master": "1.5-dev"
  2579. }
  2580. },
  2581. "autoload": {
  2582. "psr-4": {
  2583. "Http\\Discovery\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "authors": [
  2591. {
  2592. "name": "Márk Sági-Kazár",
  2593. "email": "mark.sagikazar@gmail.com"
  2594. }
  2595. ],
  2596. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  2597. "homepage": "http://php-http.org",
  2598. "keywords": [
  2599. "adapter",
  2600. "client",
  2601. "discovery",
  2602. "factory",
  2603. "http",
  2604. "message",
  2605. "psr7"
  2606. ],
  2607. "time": "2019-01-23T12:41:22+00:00"
  2608. },
  2609. {
  2610. "name": "php-http/guzzle6-adapter",
  2611. "version": "v1.1.1",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/php-http/guzzle6-adapter.git",
  2615. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  2620. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "guzzlehttp/guzzle": "^6.0",
  2625. "php": ">=5.5.0",
  2626. "php-http/httplug": "^1.0"
  2627. },
  2628. "provide": {
  2629. "php-http/async-client-implementation": "1.0",
  2630. "php-http/client-implementation": "1.0"
  2631. },
  2632. "require-dev": {
  2633. "ext-curl": "*",
  2634. "php-http/adapter-integration-tests": "^0.4"
  2635. },
  2636. "type": "library",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-master": "1.2-dev"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Http\\Adapter\\Guzzle6\\": "src/"
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "authors": [
  2652. {
  2653. "name": "Márk Sági-Kazár",
  2654. "email": "mark.sagikazar@gmail.com"
  2655. },
  2656. {
  2657. "name": "David de Boer",
  2658. "email": "david@ddeboer.nl"
  2659. }
  2660. ],
  2661. "description": "Guzzle 6 HTTP Adapter",
  2662. "homepage": "http://httplug.io",
  2663. "keywords": [
  2664. "Guzzle",
  2665. "http"
  2666. ],
  2667. "time": "2016-05-10T06:13:32+00:00"
  2668. },
  2669. {
  2670. "name": "php-http/httplug",
  2671. "version": "v1.1.0",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/php-http/httplug.git",
  2675. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  2680. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "php": ">=5.4",
  2685. "php-http/promise": "^1.0",
  2686. "psr/http-message": "^1.0"
  2687. },
  2688. "require-dev": {
  2689. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2690. "phpspec/phpspec": "^2.4"
  2691. },
  2692. "type": "library",
  2693. "extra": {
  2694. "branch-alias": {
  2695. "dev-master": "1.1-dev"
  2696. }
  2697. },
  2698. "autoload": {
  2699. "psr-4": {
  2700. "Http\\Client\\": "src/"
  2701. }
  2702. },
  2703. "notification-url": "https://packagist.org/downloads/",
  2704. "license": [
  2705. "MIT"
  2706. ],
  2707. "authors": [
  2708. {
  2709. "name": "Eric GELOEN",
  2710. "email": "geloen.eric@gmail.com"
  2711. },
  2712. {
  2713. "name": "Márk Sági-Kazár",
  2714. "email": "mark.sagikazar@gmail.com"
  2715. }
  2716. ],
  2717. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2718. "homepage": "http://httplug.io",
  2719. "keywords": [
  2720. "client",
  2721. "http"
  2722. ],
  2723. "time": "2016-08-31T08:30:17+00:00"
  2724. },
  2725. {
  2726. "name": "php-http/httplug-bundle",
  2727. "version": "1.13.1",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/php-http/HttplugBundle.git",
  2731. "reference": "7dff65a21c324389a0c37064319e309cbc11357b"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/php-http/HttplugBundle/zipball/7dff65a21c324389a0c37064319e309cbc11357b",
  2736. "reference": "7dff65a21c324389a0c37064319e309cbc11357b",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": "^5.5 || ^7.0",
  2741. "php-http/cache-plugin": "^1.4",
  2742. "php-http/client-common": "^1.6",
  2743. "php-http/client-implementation": "^1.0",
  2744. "php-http/discovery": "^1.0",
  2745. "php-http/httplug": "^1.0 || ^2.0",
  2746. "php-http/logger-plugin": "^1.0",
  2747. "php-http/message": "^1.4",
  2748. "php-http/message-factory": "^1.0.2",
  2749. "php-http/stopwatch-plugin": "^1.0",
  2750. "psr/http-message": "^1.0",
  2751. "symfony/config": "^2.8 || ^3.0 || ^4.0",
  2752. "symfony/dependency-injection": "^2.8.3 || ^3.0.3 || ^4.0",
  2753. "symfony/event-dispatcher": "^2.8 || ^3.0 || ^4.0",
  2754. "symfony/http-kernel": "^2.8 || ^3.0 || ^4.0",
  2755. "symfony/options-resolver": "^2.8 || ^3.0 || ^4.0",
  2756. "twig/twig": "^1.18 || ^2.0"
  2757. },
  2758. "conflict": {
  2759. "php-http/guzzle6-adapter": "<1.1"
  2760. },
  2761. "require-dev": {
  2762. "guzzlehttp/psr7": "^1.0",
  2763. "matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3",
  2764. "nyholm/nsa": "^1.1",
  2765. "php-http/buzz-adapter": "^0.3",
  2766. "php-http/curl-client": "^1.0",
  2767. "php-http/guzzle6-adapter": "^1.1.1",
  2768. "php-http/mock-client": "^1.0",
  2769. "php-http/promise": "^1.0",
  2770. "php-http/react-adapter": "^0.2.1",
  2771. "php-http/socket-client": "^1.0",
  2772. "polishsymfonycommunity/symfony-mocker-container": "^1.0",
  2773. "symfony/browser-kit": "^2.8 || ^3.0 || ^4.0",
  2774. "symfony/cache": "^3.1 || ^4.0",
  2775. "symfony/dom-crawler": "^2.8 || ^3.0 || ^4.0",
  2776. "symfony/framework-bundle": "^2.8.1 || ^3.0.1 || ^4.0",
  2777. "symfony/http-foundation": "^2.8 || ^3.0 || ^4.0",
  2778. "symfony/phpunit-bridge": "^3.3 || ^4.0",
  2779. "symfony/stopwatch": "^2.8 || ^3.0 || ^4.0",
  2780. "symfony/twig-bundle": "^2.8 || ^3.0 || ^4.0",
  2781. "symfony/web-profiler-bundle": "^2.8 || ^3.0 || ^4.0"
  2782. },
  2783. "suggest": {
  2784. "php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily"
  2785. },
  2786. "type": "symfony-bundle",
  2787. "extra": {
  2788. "branch-alias": {
  2789. "dev-master": "1.x-dev"
  2790. }
  2791. },
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Http\\HttplugBundle\\": ""
  2795. }
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "authors": [
  2802. {
  2803. "name": "David Buchmann",
  2804. "email": "mail@davidbu.ch"
  2805. },
  2806. {
  2807. "name": "Tobias Nyholm",
  2808. "email": "tobias.nyholm@gmail.com"
  2809. }
  2810. ],
  2811. "description": "Symfony integration for HTTPlug",
  2812. "homepage": "http://httplug.io",
  2813. "keywords": [
  2814. "adapter",
  2815. "bundle",
  2816. "discovery",
  2817. "factory",
  2818. "http",
  2819. "httplug",
  2820. "message",
  2821. "php-http"
  2822. ],
  2823. "time": "2018-11-28T16:17:38+00:00"
  2824. },
  2825. {
  2826. "name": "php-http/logger-plugin",
  2827. "version": "v1.0.0",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/php-http/logger-plugin.git",
  2831. "reference": "d6c2ac7d542bf9928a0ac7a8a249d02848b824ec"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://api.github.com/repos/php-http/logger-plugin/zipball/d6c2ac7d542bf9928a0ac7a8a249d02848b824ec",
  2836. "reference": "d6c2ac7d542bf9928a0ac7a8a249d02848b824ec",
  2837. "shasum": ""
  2838. },
  2839. "require": {
  2840. "php": ">=5.4",
  2841. "php-http/client-common": "^1.1",
  2842. "php-http/message": "^1.0",
  2843. "psr/log": "^1.0"
  2844. },
  2845. "require-dev": {
  2846. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2847. "phpspec/phpspec": "^2.5"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-master": "1.0-dev"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "Http\\Client\\Common\\Plugin\\": "src/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Márk Sági-Kazár",
  2867. "email": "mark.sagikazar@gmail.com"
  2868. }
  2869. ],
  2870. "description": "PSR-3 Logger plugin for HTTPlug",
  2871. "homepage": "http://httplug.io",
  2872. "keywords": [
  2873. "http",
  2874. "httplug",
  2875. "logger",
  2876. "plugin"
  2877. ],
  2878. "time": "2016-05-04T22:43:46+00:00"
  2879. },
  2880. {
  2881. "name": "php-http/message",
  2882. "version": "1.7.2",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/php-http/message.git",
  2886. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/php-http/message/zipball/b159ffe570dffd335e22ef0b91a946eacb182fa1",
  2891. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1",
  2892. "shasum": ""
  2893. },
  2894. "require": {
  2895. "clue/stream-filter": "^1.4",
  2896. "php": "^5.4 || ^7.0",
  2897. "php-http/message-factory": "^1.0.2",
  2898. "psr/http-message": "^1.0"
  2899. },
  2900. "provide": {
  2901. "php-http/message-factory-implementation": "1.0"
  2902. },
  2903. "require-dev": {
  2904. "akeneo/phpspec-skip-example-extension": "^1.0",
  2905. "coduo/phpspec-data-provider-extension": "^1.0",
  2906. "ext-zlib": "*",
  2907. "guzzlehttp/psr7": "^1.0",
  2908. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2909. "phpspec/phpspec": "^2.4",
  2910. "slim/slim": "^3.0",
  2911. "zendframework/zend-diactoros": "^1.0"
  2912. },
  2913. "suggest": {
  2914. "ext-zlib": "Used with compressor/decompressor streams",
  2915. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  2916. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  2917. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  2918. },
  2919. "type": "library",
  2920. "extra": {
  2921. "branch-alias": {
  2922. "dev-master": "1.6-dev"
  2923. }
  2924. },
  2925. "autoload": {
  2926. "psr-4": {
  2927. "Http\\Message\\": "src/"
  2928. },
  2929. "files": [
  2930. "src/filters.php"
  2931. ]
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "Márk Sági-Kazár",
  2940. "email": "mark.sagikazar@gmail.com"
  2941. }
  2942. ],
  2943. "description": "HTTP Message related tools",
  2944. "homepage": "http://php-http.org",
  2945. "keywords": [
  2946. "http",
  2947. "message",
  2948. "psr-7"
  2949. ],
  2950. "time": "2018-11-01T09:32:41+00:00"
  2951. },
  2952. {
  2953. "name": "php-http/message-factory",
  2954. "version": "v1.0.2",
  2955. "source": {
  2956. "type": "git",
  2957. "url": "https://github.com/php-http/message-factory.git",
  2958. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  2959. },
  2960. "dist": {
  2961. "type": "zip",
  2962. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  2963. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  2964. "shasum": ""
  2965. },
  2966. "require": {
  2967. "php": ">=5.4",
  2968. "psr/http-message": "^1.0"
  2969. },
  2970. "type": "library",
  2971. "extra": {
  2972. "branch-alias": {
  2973. "dev-master": "1.0-dev"
  2974. }
  2975. },
  2976. "autoload": {
  2977. "psr-4": {
  2978. "Http\\Message\\": "src/"
  2979. }
  2980. },
  2981. "notification-url": "https://packagist.org/downloads/",
  2982. "license": [
  2983. "MIT"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Márk Sági-Kazár",
  2988. "email": "mark.sagikazar@gmail.com"
  2989. }
  2990. ],
  2991. "description": "Factory interfaces for PSR-7 HTTP Message",
  2992. "homepage": "http://php-http.org",
  2993. "keywords": [
  2994. "factory",
  2995. "http",
  2996. "message",
  2997. "stream",
  2998. "uri"
  2999. ],
  3000. "time": "2015-12-19T14:08:53+00:00"
  3001. },
  3002. {
  3003. "name": "php-http/promise",
  3004. "version": "v1.0.0",
  3005. "source": {
  3006. "type": "git",
  3007. "url": "https://github.com/php-http/promise.git",
  3008. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  3009. },
  3010. "dist": {
  3011. "type": "zip",
  3012. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  3013. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  3014. "shasum": ""
  3015. },
  3016. "require-dev": {
  3017. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3018. "phpspec/phpspec": "^2.4"
  3019. },
  3020. "type": "library",
  3021. "extra": {
  3022. "branch-alias": {
  3023. "dev-master": "1.1-dev"
  3024. }
  3025. },
  3026. "autoload": {
  3027. "psr-4": {
  3028. "Http\\Promise\\": "src/"
  3029. }
  3030. },
  3031. "notification-url": "https://packagist.org/downloads/",
  3032. "license": [
  3033. "MIT"
  3034. ],
  3035. "authors": [
  3036. {
  3037. "name": "Márk Sági-Kazár",
  3038. "email": "mark.sagikazar@gmail.com"
  3039. },
  3040. {
  3041. "name": "Joel Wurtz",
  3042. "email": "joel.wurtz@gmail.com"
  3043. }
  3044. ],
  3045. "description": "Promise used for asynchronous HTTP requests",
  3046. "homepage": "http://httplug.io",
  3047. "keywords": [
  3048. "promise"
  3049. ],
  3050. "time": "2016-01-26T13:27:02+00:00"
  3051. },
  3052. {
  3053. "name": "php-http/stopwatch-plugin",
  3054. "version": "1.1.0",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/php-http/stopwatch-plugin.git",
  3058. "reference": "b9d4ab7a0f4ca1fc17e323e880d1235076e31dbf"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/php-http/stopwatch-plugin/zipball/b9d4ab7a0f4ca1fc17e323e880d1235076e31dbf",
  3063. "reference": "b9d4ab7a0f4ca1fc17e323e880d1235076e31dbf",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "php": ">=5.4",
  3068. "php-http/client-common": "^1.1",
  3069. "symfony/stopwatch": "^2.7|^3.0|^4.0"
  3070. },
  3071. "require-dev": {
  3072. "phpspec/phpspec": "^2.5 || ^3.0 || ^4.0"
  3073. },
  3074. "type": "library",
  3075. "extra": {
  3076. "branch-alias": {
  3077. "dev-master": "1.0-dev"
  3078. }
  3079. },
  3080. "autoload": {
  3081. "psr-4": {
  3082. "Http\\Client\\Common\\Plugin\\": "src/"
  3083. }
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "Márk Sági-Kazár",
  3092. "email": "mark.sagikazar@gmail.com"
  3093. }
  3094. ],
  3095. "description": "Symfony Stopwatch plugin for HTTPlug",
  3096. "homepage": "http://httplug.io",
  3097. "keywords": [
  3098. "http",
  3099. "httplug",
  3100. "plugin",
  3101. "stopwatch"
  3102. ],
  3103. "time": "2017-11-29T19:20:03+00:00"
  3104. },
  3105. {
  3106. "name": "predis/predis",
  3107. "version": "v1.1.1",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/nrk/predis.git",
  3111. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3116. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3117. "shasum": ""
  3118. },
  3119. "require": {
  3120. "php": ">=5.3.9"
  3121. },
  3122. "require-dev": {
  3123. "phpunit/phpunit": "~4.8"
  3124. },
  3125. "suggest": {
  3126. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3127. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3128. },
  3129. "type": "library",
  3130. "autoload": {
  3131. "psr-4": {
  3132. "Predis\\": "src/"
  3133. }
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "MIT"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "Daniele Alessandri",
  3142. "email": "suppakilla@gmail.com",
  3143. "homepage": "http://clorophilla.net"
  3144. }
  3145. ],
  3146. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3147. "homepage": "http://github.com/nrk/predis",
  3148. "keywords": [
  3149. "nosql",
  3150. "predis",
  3151. "redis"
  3152. ],
  3153. "time": "2016-06-16T16:22:20+00:00"
  3154. },
  3155. {
  3156. "name": "psr/cache",
  3157. "version": "1.0.1",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/php-fig/cache.git",
  3161. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3166. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "php": ">=5.3.0"
  3171. },
  3172. "type": "library",
  3173. "extra": {
  3174. "branch-alias": {
  3175. "dev-master": "1.0.x-dev"
  3176. }
  3177. },
  3178. "autoload": {
  3179. "psr-4": {
  3180. "Psr\\Cache\\": "src/"
  3181. }
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "MIT"
  3186. ],
  3187. "authors": [
  3188. {
  3189. "name": "PHP-FIG",
  3190. "homepage": "http://www.php-fig.org/"
  3191. }
  3192. ],
  3193. "description": "Common interface for caching libraries",
  3194. "keywords": [
  3195. "cache",
  3196. "psr",
  3197. "psr-6"
  3198. ],
  3199. "time": "2016-08-06T20:24:11+00:00"
  3200. },
  3201. {
  3202. "name": "psr/container",
  3203. "version": "1.0.0",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/php-fig/container.git",
  3207. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3212. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "php": ">=5.3.0"
  3217. },
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "1.0.x-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "psr-4": {
  3226. "Psr\\Container\\": "src/"
  3227. }
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "MIT"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "PHP-FIG",
  3236. "homepage": "http://www.php-fig.org/"
  3237. }
  3238. ],
  3239. "description": "Common Container Interface (PHP FIG PSR-11)",
  3240. "homepage": "https://github.com/php-fig/container",
  3241. "keywords": [
  3242. "PSR-11",
  3243. "container",
  3244. "container-interface",
  3245. "container-interop",
  3246. "psr"
  3247. ],
  3248. "time": "2017-02-14T16:28:37+00:00"
  3249. },
  3250. {
  3251. "name": "psr/http-message",
  3252. "version": "1.0.1",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/php-fig/http-message.git",
  3256. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3261. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3262. "shasum": ""
  3263. },
  3264. "require": {
  3265. "php": ">=5.3.0"
  3266. },
  3267. "type": "library",
  3268. "extra": {
  3269. "branch-alias": {
  3270. "dev-master": "1.0.x-dev"
  3271. }
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Psr\\Http\\Message\\": "src/"
  3276. }
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "authors": [
  3283. {
  3284. "name": "PHP-FIG",
  3285. "homepage": "http://www.php-fig.org/"
  3286. }
  3287. ],
  3288. "description": "Common interface for HTTP messages",
  3289. "homepage": "https://github.com/php-fig/http-message",
  3290. "keywords": [
  3291. "http",
  3292. "http-message",
  3293. "psr",
  3294. "psr-7",
  3295. "request",
  3296. "response"
  3297. ],
  3298. "time": "2016-08-06T14:39:51+00:00"
  3299. },
  3300. {
  3301. "name": "psr/link",
  3302. "version": "1.0.0",
  3303. "source": {
  3304. "type": "git",
  3305. "url": "https://github.com/php-fig/link.git",
  3306. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  3307. },
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3311. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "php": ">=5.3.0"
  3316. },
  3317. "type": "library",
  3318. "extra": {
  3319. "branch-alias": {
  3320. "dev-master": "1.0.x-dev"
  3321. }
  3322. },
  3323. "autoload": {
  3324. "psr-4": {
  3325. "Psr\\Link\\": "src/"
  3326. }
  3327. },
  3328. "notification-url": "https://packagist.org/downloads/",
  3329. "license": [
  3330. "MIT"
  3331. ],
  3332. "authors": [
  3333. {
  3334. "name": "PHP-FIG",
  3335. "homepage": "http://www.php-fig.org/"
  3336. }
  3337. ],
  3338. "description": "Common interfaces for HTTP links",
  3339. "keywords": [
  3340. "http",
  3341. "http-link",
  3342. "link",
  3343. "psr",
  3344. "psr-13",
  3345. "rest"
  3346. ],
  3347. "time": "2016-10-28T16:06:13+00:00"
  3348. },
  3349. {
  3350. "name": "psr/log",
  3351. "version": "1.1.0",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/php-fig/log.git",
  3355. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3360. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=5.3.0"
  3365. },
  3366. "type": "library",
  3367. "extra": {
  3368. "branch-alias": {
  3369. "dev-master": "1.0.x-dev"
  3370. }
  3371. },
  3372. "autoload": {
  3373. "psr-4": {
  3374. "Psr\\Log\\": "Psr/Log/"
  3375. }
  3376. },
  3377. "notification-url": "https://packagist.org/downloads/",
  3378. "license": [
  3379. "MIT"
  3380. ],
  3381. "authors": [
  3382. {
  3383. "name": "PHP-FIG",
  3384. "homepage": "http://www.php-fig.org/"
  3385. }
  3386. ],
  3387. "description": "Common interface for logging libraries",
  3388. "homepage": "https://github.com/php-fig/log",
  3389. "keywords": [
  3390. "log",
  3391. "psr",
  3392. "psr-3"
  3393. ],
  3394. "time": "2018-11-20T15:27:04+00:00"
  3395. },
  3396. {
  3397. "name": "psr/simple-cache",
  3398. "version": "1.0.1",
  3399. "source": {
  3400. "type": "git",
  3401. "url": "https://github.com/php-fig/simple-cache.git",
  3402. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3403. },
  3404. "dist": {
  3405. "type": "zip",
  3406. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3407. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3408. "shasum": ""
  3409. },
  3410. "require": {
  3411. "php": ">=5.3.0"
  3412. },
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "1.0.x-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Psr\\SimpleCache\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "PHP-FIG",
  3431. "homepage": "http://www.php-fig.org/"
  3432. }
  3433. ],
  3434. "description": "Common interfaces for simple caching",
  3435. "keywords": [
  3436. "cache",
  3437. "caching",
  3438. "psr",
  3439. "psr-16",
  3440. "simple-cache"
  3441. ],
  3442. "time": "2017-10-23T01:57:42+00:00"
  3443. },
  3444. {
  3445. "name": "ralouphie/getallheaders",
  3446. "version": "2.0.5",
  3447. "source": {
  3448. "type": "git",
  3449. "url": "https://github.com/ralouphie/getallheaders.git",
  3450. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3451. },
  3452. "dist": {
  3453. "type": "zip",
  3454. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3455. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3456. "shasum": ""
  3457. },
  3458. "require": {
  3459. "php": ">=5.3"
  3460. },
  3461. "require-dev": {
  3462. "phpunit/phpunit": "~3.7.0",
  3463. "satooshi/php-coveralls": ">=1.0"
  3464. },
  3465. "type": "library",
  3466. "autoload": {
  3467. "files": [
  3468. "src/getallheaders.php"
  3469. ]
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "Ralph Khattar",
  3478. "email": "ralph.khattar@gmail.com"
  3479. }
  3480. ],
  3481. "description": "A polyfill for getallheaders.",
  3482. "time": "2016-02-11T07:05:27+00:00"
  3483. },
  3484. {
  3485. "name": "seld/jsonlint",
  3486. "version": "1.7.1",
  3487. "source": {
  3488. "type": "git",
  3489. "url": "https://github.com/Seldaek/jsonlint.git",
  3490. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  3491. },
  3492. "dist": {
  3493. "type": "zip",
  3494. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  3495. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  3496. "shasum": ""
  3497. },
  3498. "require": {
  3499. "php": "^5.3 || ^7.0"
  3500. },
  3501. "require-dev": {
  3502. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3503. },
  3504. "bin": [
  3505. "bin/jsonlint"
  3506. ],
  3507. "type": "library",
  3508. "autoload": {
  3509. "psr-4": {
  3510. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  3511. }
  3512. },
  3513. "notification-url": "https://packagist.org/downloads/",
  3514. "license": [
  3515. "MIT"
  3516. ],
  3517. "authors": [
  3518. {
  3519. "name": "Jordi Boggiano",
  3520. "email": "j.boggiano@seld.be",
  3521. "homepage": "http://seld.be"
  3522. }
  3523. ],
  3524. "description": "JSON Linter",
  3525. "keywords": [
  3526. "json",
  3527. "linter",
  3528. "parser",
  3529. "validator"
  3530. ],
  3531. "time": "2018-01-24T12:46:19+00:00"
  3532. },
  3533. {
  3534. "name": "seld/phar-utils",
  3535. "version": "1.0.1",
  3536. "source": {
  3537. "type": "git",
  3538. "url": "https://github.com/Seldaek/phar-utils.git",
  3539. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  3540. },
  3541. "dist": {
  3542. "type": "zip",
  3543. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  3544. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  3545. "shasum": ""
  3546. },
  3547. "require": {
  3548. "php": ">=5.3"
  3549. },
  3550. "type": "library",
  3551. "extra": {
  3552. "branch-alias": {
  3553. "dev-master": "1.x-dev"
  3554. }
  3555. },
  3556. "autoload": {
  3557. "psr-4": {
  3558. "Seld\\PharUtils\\": "src/"
  3559. }
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Jordi Boggiano",
  3568. "email": "j.boggiano@seld.be"
  3569. }
  3570. ],
  3571. "description": "PHAR file format utilities, for when PHP phars you up",
  3572. "keywords": [
  3573. "phra"
  3574. ],
  3575. "time": "2015-10-13T18:44:15+00:00"
  3576. },
  3577. {
  3578. "name": "seld/signal-handler",
  3579. "version": "1.1.0",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/Seldaek/signal-handler.git",
  3583. "reference": "86f791965478b33f76878139df78bc3f369f182c"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/86f791965478b33f76878139df78bc3f369f182c",
  3588. "reference": "86f791965478b33f76878139df78bc3f369f182c",
  3589. "shasum": ""
  3590. },
  3591. "require": {
  3592. "php": ">=5.4.0"
  3593. },
  3594. "require-dev": {
  3595. "phpunit/phpunit": "^4.8",
  3596. "psr/log": "^1.0"
  3597. },
  3598. "type": "library",
  3599. "autoload": {
  3600. "psr-4": {
  3601. "Seld\\Signal\\": "src/"
  3602. }
  3603. },
  3604. "notification-url": "https://packagist.org/downloads/",
  3605. "license": [
  3606. "MIT"
  3607. ],
  3608. "authors": [
  3609. {
  3610. "name": "Jordi Boggiano",
  3611. "email": "j.boggiano@seld.be",
  3612. "homepage": "http://seld.be"
  3613. }
  3614. ],
  3615. "description": "Simple unix signal handler that silently fails on windows for easy cross-platform development",
  3616. "keywords": [
  3617. "posix",
  3618. "sigint",
  3619. "signal",
  3620. "sigterm",
  3621. "unix"
  3622. ],
  3623. "time": "2016-09-14T09:32:56+00:00"
  3624. },
  3625. {
  3626. "name": "sensio/distribution-bundle",
  3627. "version": "v5.0.24",
  3628. "source": {
  3629. "type": "git",
  3630. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  3631. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b"
  3632. },
  3633. "dist": {
  3634. "type": "zip",
  3635. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  3636. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  3637. "shasum": ""
  3638. },
  3639. "require": {
  3640. "php": ">=5.3.9",
  3641. "sensiolabs/security-checker": "~5.0",
  3642. "symfony/class-loader": "~2.3|~3.0",
  3643. "symfony/config": "~2.3|~3.0",
  3644. "symfony/dependency-injection": "~2.3|~3.0",
  3645. "symfony/filesystem": "~2.3|~3.0",
  3646. "symfony/http-kernel": "~2.3|~3.0",
  3647. "symfony/process": "~2.3|~3.0"
  3648. },
  3649. "type": "symfony-bundle",
  3650. "extra": {
  3651. "branch-alias": {
  3652. "dev-master": "5.0.x-dev"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Sensio\\Bundle\\DistributionBundle\\": ""
  3658. }
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "MIT"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "Fabien Potencier",
  3667. "email": "fabien@symfony.com"
  3668. }
  3669. ],
  3670. "description": "Base bundle for Symfony Distributions",
  3671. "keywords": [
  3672. "configuration",
  3673. "distribution"
  3674. ],
  3675. "time": "2018-12-14T17:36:15+00:00"
  3676. },
  3677. {
  3678. "name": "sensio/framework-extra-bundle",
  3679. "version": "v5.2.4",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3683. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/1fdf591c4b388e62dbb2579de89c1560b33f865d",
  3688. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "doctrine/common": "^2.2",
  3693. "symfony/config": "^3.3|^4.0",
  3694. "symfony/dependency-injection": "^3.3|^4.0",
  3695. "symfony/framework-bundle": "^3.4|^4.0",
  3696. "symfony/http-kernel": "^3.3|^4.0"
  3697. },
  3698. "require-dev": {
  3699. "doctrine/doctrine-bundle": "^1.6",
  3700. "doctrine/orm": "^2.5",
  3701. "symfony/browser-kit": "^3.3|^4.0",
  3702. "symfony/dom-crawler": "^3.3|^4.0",
  3703. "symfony/expression-language": "^3.3|^4.0",
  3704. "symfony/finder": "^3.3|^4.0",
  3705. "symfony/monolog-bridge": "^3.0|^4.0",
  3706. "symfony/monolog-bundle": "^3.2",
  3707. "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
  3708. "symfony/psr-http-message-bridge": "^0.3",
  3709. "symfony/security-bundle": "^3.3|^4.0",
  3710. "symfony/twig-bundle": "^3.3|^4.0",
  3711. "symfony/yaml": "^3.3|^4.0",
  3712. "twig/twig": "~1.12|~2.0",
  3713. "zendframework/zend-diactoros": "^1.3"
  3714. },
  3715. "suggest": {
  3716. "symfony/expression-language": "",
  3717. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  3718. "symfony/security-bundle": ""
  3719. },
  3720. "type": "symfony-bundle",
  3721. "extra": {
  3722. "branch-alias": {
  3723. "dev-master": "5.2.x-dev"
  3724. }
  3725. },
  3726. "autoload": {
  3727. "psr-4": {
  3728. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  3729. }
  3730. },
  3731. "notification-url": "https://packagist.org/downloads/",
  3732. "license": [
  3733. "MIT"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "Fabien Potencier",
  3738. "email": "fabien@symfony.com"
  3739. }
  3740. ],
  3741. "description": "This bundle provides a way to configure your controllers with annotations",
  3742. "keywords": [
  3743. "annotations",
  3744. "controllers"
  3745. ],
  3746. "time": "2018-12-11T16:59:23+00:00"
  3747. },
  3748. {
  3749. "name": "sensio/generator-bundle",
  3750. "version": "v3.1.7",
  3751. "source": {
  3752. "type": "git",
  3753. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  3754. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  3755. },
  3756. "dist": {
  3757. "type": "zip",
  3758. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  3759. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  3760. "shasum": ""
  3761. },
  3762. "require": {
  3763. "symfony/console": "~2.7|~3.0",
  3764. "symfony/framework-bundle": "~2.7|~3.0",
  3765. "symfony/process": "~2.7|~3.0",
  3766. "symfony/yaml": "~2.7|~3.0",
  3767. "twig/twig": "^1.28.2|^2.0"
  3768. },
  3769. "require-dev": {
  3770. "doctrine/orm": "~2.4",
  3771. "symfony/doctrine-bridge": "~2.7|~3.0",
  3772. "symfony/filesystem": "~2.7|~3.0",
  3773. "symfony/phpunit-bridge": "^3.3"
  3774. },
  3775. "type": "symfony-bundle",
  3776. "extra": {
  3777. "branch-alias": {
  3778. "dev-master": "3.1.x-dev"
  3779. }
  3780. },
  3781. "autoload": {
  3782. "psr-4": {
  3783. "Sensio\\Bundle\\GeneratorBundle\\": ""
  3784. },
  3785. "exclude-from-classmap": [
  3786. "/Tests/"
  3787. ]
  3788. },
  3789. "notification-url": "https://packagist.org/downloads/",
  3790. "license": [
  3791. "MIT"
  3792. ],
  3793. "authors": [
  3794. {
  3795. "name": "Fabien Potencier",
  3796. "email": "fabien@symfony.com"
  3797. }
  3798. ],
  3799. "description": "This bundle generates code for you",
  3800. "time": "2017-12-07T15:36:41+00:00"
  3801. },
  3802. {
  3803. "name": "sensiolabs/security-checker",
  3804. "version": "v5.0.3",
  3805. "source": {
  3806. "type": "git",
  3807. "url": "https://github.com/sensiolabs/security-checker.git",
  3808. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1"
  3809. },
  3810. "dist": {
  3811. "type": "zip",
  3812. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/46be3f58adac13084497961e10eed9a7fb4d44d1",
  3813. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1",
  3814. "shasum": ""
  3815. },
  3816. "require": {
  3817. "composer/ca-bundle": "^1.0",
  3818. "php": ">=5.5.9",
  3819. "symfony/console": "~2.7|~3.0|~4.0"
  3820. },
  3821. "bin": [
  3822. "security-checker"
  3823. ],
  3824. "type": "library",
  3825. "extra": {
  3826. "branch-alias": {
  3827. "dev-master": "5.0-dev"
  3828. }
  3829. },
  3830. "autoload": {
  3831. "psr-4": {
  3832. "SensioLabs\\Security\\": "SensioLabs/Security"
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "Fabien Potencier",
  3842. "email": "fabien.potencier@gmail.com"
  3843. }
  3844. ],
  3845. "description": "A security checker for your composer.lock",
  3846. "time": "2018-12-19T17:14:59+00:00"
  3847. },
  3848. {
  3849. "name": "snc/redis-bundle",
  3850. "version": "2.1.7",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/snc/SncRedisBundle.git",
  3854. "reference": "13dee3562945bbdbfc02286a476837f9f3ce9cd1"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/13dee3562945bbdbfc02286a476837f9f3ce9cd1",
  3859. "reference": "13dee3562945bbdbfc02286a476837f9f3ce9cd1",
  3860. "shasum": ""
  3861. },
  3862. "require": {
  3863. "php": ">=5.3.3",
  3864. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
  3865. "symfony/yaml": "^2.7 || ^3.0 || ^4.0"
  3866. },
  3867. "require-dev": {
  3868. "doctrine/cache": "1.*",
  3869. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  3870. "predis/predis": "^1.0",
  3871. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  3872. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  3873. },
  3874. "suggest": {
  3875. "monolog/monolog": "If you want to use the monolog redis handler.",
  3876. "predis/predis": "If you want to use predis.",
  3877. "symfony/console": "If you want to use commands to interact with the redis database",
  3878. "symfony/proxy-manager-bridge": "If you want to lazy-load some services"
  3879. },
  3880. "type": "symfony-bundle",
  3881. "extra": {
  3882. "branch-alias": {
  3883. "dev-master": "2.x-dev"
  3884. }
  3885. },
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Snc\\RedisBundle\\": ""
  3889. }
  3890. },
  3891. "notification-url": "https://packagist.org/downloads/",
  3892. "license": [
  3893. "MIT"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "Henrik Westphal",
  3898. "email": "henrik.westphal@gmail.com"
  3899. },
  3900. {
  3901. "name": "Community contributors",
  3902. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  3903. }
  3904. ],
  3905. "description": "A Redis bundle for Symfony",
  3906. "homepage": "https://github.com/snc/SncRedisBundle",
  3907. "keywords": [
  3908. "nosql",
  3909. "redis",
  3910. "symfony"
  3911. ],
  3912. "time": "2018-10-15T12:07:05+00:00"
  3913. },
  3914. {
  3915. "name": "swiftmailer/swiftmailer",
  3916. "version": "v6.1.3",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3920. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  3925. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  3926. "shasum": ""
  3927. },
  3928. "require": {
  3929. "egulias/email-validator": "~2.0",
  3930. "php": ">=7.0.0"
  3931. },
  3932. "require-dev": {
  3933. "mockery/mockery": "~0.9.1",
  3934. "symfony/phpunit-bridge": "~3.3@dev"
  3935. },
  3936. "suggest": {
  3937. "ext-intl": "Needed to support internationalized email addresses",
  3938. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3939. },
  3940. "type": "library",
  3941. "extra": {
  3942. "branch-alias": {
  3943. "dev-master": "6.1-dev"
  3944. }
  3945. },
  3946. "autoload": {
  3947. "files": [
  3948. "lib/swift_required.php"
  3949. ]
  3950. },
  3951. "notification-url": "https://packagist.org/downloads/",
  3952. "license": [
  3953. "MIT"
  3954. ],
  3955. "authors": [
  3956. {
  3957. "name": "Chris Corbyn"
  3958. },
  3959. {
  3960. "name": "Fabien Potencier",
  3961. "email": "fabien@symfony.com"
  3962. }
  3963. ],
  3964. "description": "Swiftmailer, free feature-rich PHP mailer",
  3965. "homepage": "https://swiftmailer.symfony.com",
  3966. "keywords": [
  3967. "email",
  3968. "mail",
  3969. "mailer"
  3970. ],
  3971. "time": "2018-09-11T07:12:52+00:00"
  3972. },
  3973. {
  3974. "name": "symfony/monolog-bundle",
  3975. "version": "v3.3.1",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/symfony/monolog-bundle.git",
  3979. "reference": "572e143afc03419a75ab002c80a2fd99299195ff"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/572e143afc03419a75ab002c80a2fd99299195ff",
  3984. "reference": "572e143afc03419a75ab002c80a2fd99299195ff",
  3985. "shasum": ""
  3986. },
  3987. "require": {
  3988. "monolog/monolog": "~1.22",
  3989. "php": ">=5.6",
  3990. "symfony/config": "~2.7|~3.3|~4.0",
  3991. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  3992. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  3993. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  3994. },
  3995. "require-dev": {
  3996. "symfony/console": "~2.7|~3.3|~4.0",
  3997. "symfony/phpunit-bridge": "^3.3|^4.0",
  3998. "symfony/yaml": "~2.7|~3.3|~4.0"
  3999. },
  4000. "type": "symfony-bundle",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-master": "3.x-dev"
  4004. }
  4005. },
  4006. "autoload": {
  4007. "psr-4": {
  4008. "Symfony\\Bundle\\MonologBundle\\": ""
  4009. },
  4010. "exclude-from-classmap": [
  4011. "/Tests/"
  4012. ]
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Symfony Community",
  4021. "homepage": "http://symfony.com/contributors"
  4022. },
  4023. {
  4024. "name": "Fabien Potencier",
  4025. "email": "fabien@symfony.com"
  4026. }
  4027. ],
  4028. "description": "Symfony MonologBundle",
  4029. "homepage": "http://symfony.com",
  4030. "keywords": [
  4031. "log",
  4032. "logging"
  4033. ],
  4034. "time": "2018-11-04T09:58:13+00:00"
  4035. },
  4036. {
  4037. "name": "symfony/polyfill-apcu",
  4038. "version": "v1.10.0",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://github.com/symfony/polyfill-apcu.git",
  4042. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  4047. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  4048. "shasum": ""
  4049. },
  4050. "require": {
  4051. "php": ">=5.3.3"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "branch-alias": {
  4056. "dev-master": "1.9-dev"
  4057. }
  4058. },
  4059. "autoload": {
  4060. "psr-4": {
  4061. "Symfony\\Polyfill\\Apcu\\": ""
  4062. },
  4063. "files": [
  4064. "bootstrap.php"
  4065. ]
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Nicolas Grekas",
  4074. "email": "p@tchwork.com"
  4075. },
  4076. {
  4077. "name": "Symfony Community",
  4078. "homepage": "https://symfony.com/contributors"
  4079. }
  4080. ],
  4081. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  4082. "homepage": "https://symfony.com",
  4083. "keywords": [
  4084. "apcu",
  4085. "compatibility",
  4086. "polyfill",
  4087. "portable",
  4088. "shim"
  4089. ],
  4090. "time": "2018-08-06T14:22:27+00:00"
  4091. },
  4092. {
  4093. "name": "symfony/polyfill-ctype",
  4094. "version": "v1.10.0",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/symfony/polyfill-ctype.git",
  4098. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  4103. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "php": ">=5.3.3"
  4108. },
  4109. "suggest": {
  4110. "ext-ctype": "For best performance"
  4111. },
  4112. "type": "library",
  4113. "extra": {
  4114. "branch-alias": {
  4115. "dev-master": "1.9-dev"
  4116. }
  4117. },
  4118. "autoload": {
  4119. "psr-4": {
  4120. "Symfony\\Polyfill\\Ctype\\": ""
  4121. },
  4122. "files": [
  4123. "bootstrap.php"
  4124. ]
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "MIT"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "Symfony Community",
  4133. "homepage": "https://symfony.com/contributors"
  4134. },
  4135. {
  4136. "name": "Gert de Pagter",
  4137. "email": "backendtea@gmail.com"
  4138. }
  4139. ],
  4140. "description": "Symfony polyfill for ctype functions",
  4141. "homepage": "https://symfony.com",
  4142. "keywords": [
  4143. "compatibility",
  4144. "ctype",
  4145. "polyfill",
  4146. "portable"
  4147. ],
  4148. "time": "2018-08-06T14:22:27+00:00"
  4149. },
  4150. {
  4151. "name": "symfony/polyfill-intl-icu",
  4152. "version": "v1.10.0",
  4153. "source": {
  4154. "type": "git",
  4155. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4156. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644"
  4157. },
  4158. "dist": {
  4159. "type": "zip",
  4160. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/f22a90256d577c7ef7efad8df1f0201663d57644",
  4161. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644",
  4162. "shasum": ""
  4163. },
  4164. "require": {
  4165. "php": ">=5.3.3",
  4166. "symfony/intl": "~2.3|~3.0|~4.0"
  4167. },
  4168. "suggest": {
  4169. "ext-intl": "For best performance"
  4170. },
  4171. "type": "library",
  4172. "extra": {
  4173. "branch-alias": {
  4174. "dev-master": "1.9-dev"
  4175. }
  4176. },
  4177. "autoload": {
  4178. "files": [
  4179. "bootstrap.php"
  4180. ]
  4181. },
  4182. "notification-url": "https://packagist.org/downloads/",
  4183. "license": [
  4184. "MIT"
  4185. ],
  4186. "authors": [
  4187. {
  4188. "name": "Nicolas Grekas",
  4189. "email": "p@tchwork.com"
  4190. },
  4191. {
  4192. "name": "Symfony Community",
  4193. "homepage": "https://symfony.com/contributors"
  4194. }
  4195. ],
  4196. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4197. "homepage": "https://symfony.com",
  4198. "keywords": [
  4199. "compatibility",
  4200. "icu",
  4201. "intl",
  4202. "polyfill",
  4203. "portable",
  4204. "shim"
  4205. ],
  4206. "time": "2018-08-06T14:22:27+00:00"
  4207. },
  4208. {
  4209. "name": "symfony/polyfill-mbstring",
  4210. "version": "v1.10.0",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4214. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  4219. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "php": ">=5.3.3"
  4224. },
  4225. "suggest": {
  4226. "ext-mbstring": "For best performance"
  4227. },
  4228. "type": "library",
  4229. "extra": {
  4230. "branch-alias": {
  4231. "dev-master": "1.9-dev"
  4232. }
  4233. },
  4234. "autoload": {
  4235. "psr-4": {
  4236. "Symfony\\Polyfill\\Mbstring\\": ""
  4237. },
  4238. "files": [
  4239. "bootstrap.php"
  4240. ]
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "MIT"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "Nicolas Grekas",
  4249. "email": "p@tchwork.com"
  4250. },
  4251. {
  4252. "name": "Symfony Community",
  4253. "homepage": "https://symfony.com/contributors"
  4254. }
  4255. ],
  4256. "description": "Symfony polyfill for the Mbstring extension",
  4257. "homepage": "https://symfony.com",
  4258. "keywords": [
  4259. "compatibility",
  4260. "mbstring",
  4261. "polyfill",
  4262. "portable",
  4263. "shim"
  4264. ],
  4265. "time": "2018-09-21T13:07:52+00:00"
  4266. },
  4267. {
  4268. "name": "symfony/polyfill-php56",
  4269. "version": "v1.10.0",
  4270. "source": {
  4271. "type": "git",
  4272. "url": "https://github.com/symfony/polyfill-php56.git",
  4273. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  4274. },
  4275. "dist": {
  4276. "type": "zip",
  4277. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  4278. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  4279. "shasum": ""
  4280. },
  4281. "require": {
  4282. "php": ">=5.3.3",
  4283. "symfony/polyfill-util": "~1.0"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "1.9-dev"
  4289. }
  4290. },
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Symfony\\Polyfill\\Php56\\": ""
  4294. },
  4295. "files": [
  4296. "bootstrap.php"
  4297. ]
  4298. },
  4299. "notification-url": "https://packagist.org/downloads/",
  4300. "license": [
  4301. "MIT"
  4302. ],
  4303. "authors": [
  4304. {
  4305. "name": "Nicolas Grekas",
  4306. "email": "p@tchwork.com"
  4307. },
  4308. {
  4309. "name": "Symfony Community",
  4310. "homepage": "https://symfony.com/contributors"
  4311. }
  4312. ],
  4313. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  4314. "homepage": "https://symfony.com",
  4315. "keywords": [
  4316. "compatibility",
  4317. "polyfill",
  4318. "portable",
  4319. "shim"
  4320. ],
  4321. "time": "2018-09-21T06:26:08+00:00"
  4322. },
  4323. {
  4324. "name": "symfony/polyfill-php70",
  4325. "version": "v1.10.0",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/symfony/polyfill-php70.git",
  4329. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  4334. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4339. "php": ">=5.3.3"
  4340. },
  4341. "type": "library",
  4342. "extra": {
  4343. "branch-alias": {
  4344. "dev-master": "1.9-dev"
  4345. }
  4346. },
  4347. "autoload": {
  4348. "psr-4": {
  4349. "Symfony\\Polyfill\\Php70\\": ""
  4350. },
  4351. "files": [
  4352. "bootstrap.php"
  4353. ],
  4354. "classmap": [
  4355. "Resources/stubs"
  4356. ]
  4357. },
  4358. "notification-url": "https://packagist.org/downloads/",
  4359. "license": [
  4360. "MIT"
  4361. ],
  4362. "authors": [
  4363. {
  4364. "name": "Nicolas Grekas",
  4365. "email": "p@tchwork.com"
  4366. },
  4367. {
  4368. "name": "Symfony Community",
  4369. "homepage": "https://symfony.com/contributors"
  4370. }
  4371. ],
  4372. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4373. "homepage": "https://symfony.com",
  4374. "keywords": [
  4375. "compatibility",
  4376. "polyfill",
  4377. "portable",
  4378. "shim"
  4379. ],
  4380. "time": "2018-09-21T06:26:08+00:00"
  4381. },
  4382. {
  4383. "name": "symfony/polyfill-util",
  4384. "version": "v1.10.0",
  4385. "source": {
  4386. "type": "git",
  4387. "url": "https://github.com/symfony/polyfill-util.git",
  4388. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  4389. },
  4390. "dist": {
  4391. "type": "zip",
  4392. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  4393. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  4394. "shasum": ""
  4395. },
  4396. "require": {
  4397. "php": ">=5.3.3"
  4398. },
  4399. "type": "library",
  4400. "extra": {
  4401. "branch-alias": {
  4402. "dev-master": "1.9-dev"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "psr-4": {
  4407. "Symfony\\Polyfill\\Util\\": ""
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Nicolas Grekas",
  4417. "email": "p@tchwork.com"
  4418. },
  4419. {
  4420. "name": "Symfony Community",
  4421. "homepage": "https://symfony.com/contributors"
  4422. }
  4423. ],
  4424. "description": "Symfony utilities for portability of PHP codes",
  4425. "homepage": "https://symfony.com",
  4426. "keywords": [
  4427. "compat",
  4428. "compatibility",
  4429. "polyfill",
  4430. "shim"
  4431. ],
  4432. "time": "2018-09-30T16:36:12+00:00"
  4433. },
  4434. {
  4435. "name": "symfony/swiftmailer-bundle",
  4436. "version": "v3.2.5",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  4440. "reference": "ac4f38c2ec7957f2dec8b6c2f24a060b10a254f2"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/ac4f38c2ec7957f2dec8b6c2f24a060b10a254f2",
  4445. "reference": "ac4f38c2ec7957f2dec8b6c2f24a060b10a254f2",
  4446. "shasum": ""
  4447. },
  4448. "require": {
  4449. "php": ">=7.0.0",
  4450. "swiftmailer/swiftmailer": "^6.1.3",
  4451. "symfony/config": "~2.8|~3.3|~4.0",
  4452. "symfony/dependency-injection": "~2.7|~3.3|~4.0",
  4453. "symfony/http-kernel": "~2.7|~3.3|~4.0"
  4454. },
  4455. "require-dev": {
  4456. "symfony/console": "~2.7|~3.3|~4.0",
  4457. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  4458. "symfony/phpunit-bridge": "~3.3|~4.0",
  4459. "symfony/yaml": "~2.7|~3.3|~4.0"
  4460. },
  4461. "suggest": {
  4462. "psr/log": "Allows logging"
  4463. },
  4464. "type": "symfony-bundle",
  4465. "extra": {
  4466. "branch-alias": {
  4467. "dev-master": "3.2-dev"
  4468. }
  4469. },
  4470. "autoload": {
  4471. "psr-4": {
  4472. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  4473. },
  4474. "exclude-from-classmap": [
  4475. "/Tests/"
  4476. ]
  4477. },
  4478. "notification-url": "https://packagist.org/downloads/",
  4479. "license": [
  4480. "MIT"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "Symfony Community",
  4485. "homepage": "http://symfony.com/contributors"
  4486. },
  4487. {
  4488. "name": "Fabien Potencier",
  4489. "email": "fabien@symfony.com"
  4490. }
  4491. ],
  4492. "description": "Symfony SwiftmailerBundle",
  4493. "homepage": "http://symfony.com",
  4494. "time": "2019-01-05T11:51:59+00:00"
  4495. },
  4496. {
  4497. "name": "symfony/symfony",
  4498. "version": "v3.4.21",
  4499. "source": {
  4500. "type": "git",
  4501. "url": "https://github.com/symfony/symfony.git",
  4502. "reference": "c7a57e0bcc3c57ae697f072b3e862487b6fd0030"
  4503. },
  4504. "dist": {
  4505. "type": "zip",
  4506. "url": "https://api.github.com/repos/symfony/symfony/zipball/c7a57e0bcc3c57ae697f072b3e862487b6fd0030",
  4507. "reference": "c7a57e0bcc3c57ae697f072b3e862487b6fd0030",
  4508. "shasum": ""
  4509. },
  4510. "require": {
  4511. "doctrine/common": "~2.4",
  4512. "ext-xml": "*",
  4513. "fig/link-util": "^1.0",
  4514. "php": "^5.5.9|>=7.0.8",
  4515. "psr/cache": "~1.0",
  4516. "psr/container": "^1.0",
  4517. "psr/link": "^1.0",
  4518. "psr/log": "~1.0",
  4519. "psr/simple-cache": "^1.0",
  4520. "symfony/polyfill-apcu": "~1.1",
  4521. "symfony/polyfill-ctype": "~1.8",
  4522. "symfony/polyfill-intl-icu": "~1.0",
  4523. "symfony/polyfill-mbstring": "~1.0",
  4524. "symfony/polyfill-php56": "~1.0",
  4525. "symfony/polyfill-php70": "~1.6",
  4526. "twig/twig": "^1.35|^2.4.4"
  4527. },
  4528. "conflict": {
  4529. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  4530. "phpdocumentor/type-resolver": "<0.3.0",
  4531. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4532. },
  4533. "provide": {
  4534. "psr/cache-implementation": "1.0",
  4535. "psr/container-implementation": "1.0",
  4536. "psr/log-implementation": "1.0",
  4537. "psr/simple-cache-implementation": "1.0"
  4538. },
  4539. "replace": {
  4540. "symfony/asset": "self.version",
  4541. "symfony/browser-kit": "self.version",
  4542. "symfony/cache": "self.version",
  4543. "symfony/class-loader": "self.version",
  4544. "symfony/config": "self.version",
  4545. "symfony/console": "self.version",
  4546. "symfony/css-selector": "self.version",
  4547. "symfony/debug": "self.version",
  4548. "symfony/debug-bundle": "self.version",
  4549. "symfony/dependency-injection": "self.version",
  4550. "symfony/doctrine-bridge": "self.version",
  4551. "symfony/dom-crawler": "self.version",
  4552. "symfony/dotenv": "self.version",
  4553. "symfony/event-dispatcher": "self.version",
  4554. "symfony/expression-language": "self.version",
  4555. "symfony/filesystem": "self.version",
  4556. "symfony/finder": "self.version",
  4557. "symfony/form": "self.version",
  4558. "symfony/framework-bundle": "self.version",
  4559. "symfony/http-foundation": "self.version",
  4560. "symfony/http-kernel": "self.version",
  4561. "symfony/inflector": "self.version",
  4562. "symfony/intl": "self.version",
  4563. "symfony/ldap": "self.version",
  4564. "symfony/lock": "self.version",
  4565. "symfony/monolog-bridge": "self.version",
  4566. "symfony/options-resolver": "self.version",
  4567. "symfony/process": "self.version",
  4568. "symfony/property-access": "self.version",
  4569. "symfony/property-info": "self.version",
  4570. "symfony/proxy-manager-bridge": "self.version",
  4571. "symfony/routing": "self.version",
  4572. "symfony/security": "self.version",
  4573. "symfony/security-bundle": "self.version",
  4574. "symfony/security-core": "self.version",
  4575. "symfony/security-csrf": "self.version",
  4576. "symfony/security-guard": "self.version",
  4577. "symfony/security-http": "self.version",
  4578. "symfony/serializer": "self.version",
  4579. "symfony/stopwatch": "self.version",
  4580. "symfony/templating": "self.version",
  4581. "symfony/translation": "self.version",
  4582. "symfony/twig-bridge": "self.version",
  4583. "symfony/twig-bundle": "self.version",
  4584. "symfony/validator": "self.version",
  4585. "symfony/var-dumper": "self.version",
  4586. "symfony/web-link": "self.version",
  4587. "symfony/web-profiler-bundle": "self.version",
  4588. "symfony/web-server-bundle": "self.version",
  4589. "symfony/workflow": "self.version",
  4590. "symfony/yaml": "self.version"
  4591. },
  4592. "require-dev": {
  4593. "cache/integration-tests": "dev-master",
  4594. "doctrine/annotations": "~1.0",
  4595. "doctrine/cache": "~1.6",
  4596. "doctrine/data-fixtures": "1.0.*",
  4597. "doctrine/dbal": "~2.4",
  4598. "doctrine/doctrine-bundle": "~1.4",
  4599. "doctrine/orm": "~2.4,>=2.4.5",
  4600. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  4601. "monolog/monolog": "~1.11",
  4602. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  4603. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4604. "predis/predis": "~1.0",
  4605. "symfony/phpunit-bridge": "~3.4|~4.0",
  4606. "symfony/security-acl": "~2.8|~3.0"
  4607. },
  4608. "type": "library",
  4609. "extra": {
  4610. "branch-alias": {
  4611. "dev-master": "3.4-dev"
  4612. }
  4613. },
  4614. "autoload": {
  4615. "psr-4": {
  4616. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  4617. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  4618. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  4619. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  4620. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  4621. "Symfony\\Component\\": "src/Symfony/Component/"
  4622. },
  4623. "classmap": [
  4624. "src/Symfony/Component/Intl/Resources/stubs"
  4625. ],
  4626. "exclude-from-classmap": [
  4627. "**/Tests/"
  4628. ]
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Fabien Potencier",
  4637. "email": "fabien@symfony.com"
  4638. },
  4639. {
  4640. "name": "Symfony Community",
  4641. "homepage": "https://symfony.com/contributors"
  4642. }
  4643. ],
  4644. "description": "The Symfony PHP framework",
  4645. "homepage": "https://symfony.com",
  4646. "keywords": [
  4647. "framework"
  4648. ],
  4649. "time": "2019-01-06T15:54:26+00:00"
  4650. },
  4651. {
  4652. "name": "twig/extensions",
  4653. "version": "v1.5.4",
  4654. "source": {
  4655. "type": "git",
  4656. "url": "https://github.com/twigphp/Twig-extensions.git",
  4657. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  4658. },
  4659. "dist": {
  4660. "type": "zip",
  4661. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  4662. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  4663. "shasum": ""
  4664. },
  4665. "require": {
  4666. "twig/twig": "^1.27|^2.0"
  4667. },
  4668. "require-dev": {
  4669. "symfony/phpunit-bridge": "^3.4",
  4670. "symfony/translation": "^2.7|^3.4"
  4671. },
  4672. "suggest": {
  4673. "symfony/translation": "Allow the time_diff output to be translated"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "1.5-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "psr-0": {
  4683. "Twig_Extensions_": "lib/"
  4684. },
  4685. "psr-4": {
  4686. "Twig\\Extensions\\": "src/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "Fabien Potencier",
  4696. "email": "fabien@symfony.com"
  4697. }
  4698. ],
  4699. "description": "Common additional features for Twig that do not directly belong in core",
  4700. "keywords": [
  4701. "i18n",
  4702. "text"
  4703. ],
  4704. "time": "2018-12-05T18:34:18+00:00"
  4705. },
  4706. {
  4707. "name": "twig/twig",
  4708. "version": "v2.6.2",
  4709. "source": {
  4710. "type": "git",
  4711. "url": "https://github.com/twigphp/Twig.git",
  4712. "reference": "7d7342c8a4059fefb9b8d07db0cc14007021f9b7"
  4713. },
  4714. "dist": {
  4715. "type": "zip",
  4716. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7d7342c8a4059fefb9b8d07db0cc14007021f9b7",
  4717. "reference": "7d7342c8a4059fefb9b8d07db0cc14007021f9b7",
  4718. "shasum": ""
  4719. },
  4720. "require": {
  4721. "php": "^7.0",
  4722. "symfony/polyfill-ctype": "^1.8",
  4723. "symfony/polyfill-mbstring": "^1.3"
  4724. },
  4725. "require-dev": {
  4726. "psr/container": "^1.0",
  4727. "symfony/debug": "^2.7",
  4728. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4729. },
  4730. "type": "library",
  4731. "extra": {
  4732. "branch-alias": {
  4733. "dev-master": "2.6-dev"
  4734. }
  4735. },
  4736. "autoload": {
  4737. "psr-0": {
  4738. "Twig_": "lib/"
  4739. },
  4740. "psr-4": {
  4741. "Twig\\": "src/"
  4742. }
  4743. },
  4744. "notification-url": "https://packagist.org/downloads/",
  4745. "license": [
  4746. "BSD-3-Clause"
  4747. ],
  4748. "authors": [
  4749. {
  4750. "name": "Fabien Potencier",
  4751. "email": "fabien@symfony.com",
  4752. "homepage": "http://fabien.potencier.org",
  4753. "role": "Lead Developer"
  4754. },
  4755. {
  4756. "name": "Armin Ronacher",
  4757. "email": "armin.ronacher@active-4.com",
  4758. "role": "Project Founder"
  4759. },
  4760. {
  4761. "name": "Twig Team",
  4762. "homepage": "https://twig.symfony.com/contributors",
  4763. "role": "Contributors"
  4764. }
  4765. ],
  4766. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4767. "homepage": "https://twig.symfony.com",
  4768. "keywords": [
  4769. "templating"
  4770. ],
  4771. "time": "2019-01-14T15:00:48+00:00"
  4772. },
  4773. {
  4774. "name": "ua-parser/uap-php",
  4775. "version": "v3.8.3",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/ua-parser/uap-php.git",
  4779. "reference": "851915a08d45055feaad1b6ff3074143df07a11e"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/851915a08d45055feaad1b6ff3074143df07a11e",
  4784. "reference": "851915a08d45055feaad1b6ff3074143df07a11e",
  4785. "shasum": ""
  4786. },
  4787. "require": {
  4788. "composer/ca-bundle": "^1.1",
  4789. "php": ">=5.3.0"
  4790. },
  4791. "require-dev": {
  4792. "phpunit/phpunit": "*",
  4793. "symfony/console": "^2.0 || ^3.0 || ^4.0",
  4794. "symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
  4795. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  4796. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  4797. },
  4798. "suggest": {
  4799. "symfony/console": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  4800. "symfony/filesystem": "Required for CLI usage - 2.0 || ^3.0 || ^4.0",
  4801. "symfony/finder": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  4802. "symfony/yaml": "Required for CLI usage - ^4.0 || ^5.0"
  4803. },
  4804. "bin": [
  4805. "bin/uaparser"
  4806. ],
  4807. "type": "library",
  4808. "autoload": {
  4809. "psr-4": {
  4810. "UAParser\\": "src"
  4811. }
  4812. },
  4813. "notification-url": "https://packagist.org/downloads/",
  4814. "license": [
  4815. "MIT"
  4816. ],
  4817. "authors": [
  4818. {
  4819. "name": "Lars Strojny",
  4820. "email": "lars@strojny.net"
  4821. },
  4822. {
  4823. "name": "Dave Olsen",
  4824. "email": "dmolsen@gmail.com"
  4825. }
  4826. ],
  4827. "description": "A multi-language port of Browserscope's user agent parser.",
  4828. "time": "2019-01-29T12:24:04+00:00"
  4829. },
  4830. {
  4831. "name": "white-october/pagerfanta-bundle",
  4832. "version": "v1.2.3",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  4836. "reference": "3a2f39fecde9b8aefe7c9cbd0baf06bc72ef3e5e"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/3a2f39fecde9b8aefe7c9cbd0baf06bc72ef3e5e",
  4841. "reference": "3a2f39fecde9b8aefe7c9cbd0baf06bc72ef3e5e",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "pagerfanta/pagerfanta": "^1.1.0|^2.0.0",
  4846. "php": ">=5.3",
  4847. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  4848. "symfony/property-access": "~2.3|~3.0|~4.0",
  4849. "symfony/translation": "~2.3|~3.0|~4.0",
  4850. "symfony/twig-bundle": "~2.3|~3.0|~4.0"
  4851. },
  4852. "require-dev": {
  4853. "phpunit/phpunit": "~3.7|~4.0|^5.0",
  4854. "symfony/symfony": "~2.3|~3.0|~4.0"
  4855. },
  4856. "type": "symfony-bundle",
  4857. "extra": {
  4858. "branch-alias": {
  4859. "dev-master": "1.0.x-dev"
  4860. }
  4861. },
  4862. "autoload": {
  4863. "psr-4": {
  4864. "WhiteOctober\\PagerfantaBundle\\": ""
  4865. },
  4866. "exclude-from-classmap": [
  4867. "Tests/",
  4868. "TestsProject/"
  4869. ]
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "MIT"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "Pablo Díez",
  4878. "email": "pablodip@gmail.com"
  4879. }
  4880. ],
  4881. "description": "Bundle to use Pagerfanta with Symfony2",
  4882. "keywords": [
  4883. "page",
  4884. "paging"
  4885. ],
  4886. "time": "2018-12-05T16:58:18+00:00"
  4887. },
  4888. {
  4889. "name": "zendframework/zend-escaper",
  4890. "version": "2.6.0",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/zendframework/zend-escaper.git",
  4894. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  4899. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "php": "^5.6 || ^7.0"
  4904. },
  4905. "require-dev": {
  4906. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  4907. "zendframework/zend-coding-standard": "~1.0.0"
  4908. },
  4909. "type": "library",
  4910. "extra": {
  4911. "branch-alias": {
  4912. "dev-master": "2.6.x-dev",
  4913. "dev-develop": "2.7.x-dev"
  4914. }
  4915. },
  4916. "autoload": {
  4917. "psr-4": {
  4918. "Zend\\Escaper\\": "src/"
  4919. }
  4920. },
  4921. "notification-url": "https://packagist.org/downloads/",
  4922. "license": [
  4923. "BSD-3-Clause"
  4924. ],
  4925. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  4926. "keywords": [
  4927. "ZendFramework",
  4928. "escaper",
  4929. "zf"
  4930. ],
  4931. "time": "2018-04-25T15:48:53+00:00"
  4932. },
  4933. {
  4934. "name": "zendframework/zend-feed",
  4935. "version": "2.11.0",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/zendframework/zend-feed.git",
  4939. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/5248e9fffa760e5c36092aeff02c3797e4a8a690",
  4944. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690",
  4945. "shasum": ""
  4946. },
  4947. "require": {
  4948. "ext-dom": "*",
  4949. "ext-libxml": "*",
  4950. "php": "^5.6 || ^7.0",
  4951. "zendframework/zend-escaper": "^2.5.2",
  4952. "zendframework/zend-stdlib": "^3.2.1"
  4953. },
  4954. "require-dev": {
  4955. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  4956. "psr/http-message": "^1.0.1",
  4957. "zendframework/zend-cache": "^2.7.2",
  4958. "zendframework/zend-coding-standard": "~1.0.0",
  4959. "zendframework/zend-db": "^2.8.2",
  4960. "zendframework/zend-http": "^2.7",
  4961. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  4962. "zendframework/zend-validator": "^2.10.1"
  4963. },
  4964. "suggest": {
  4965. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4966. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4967. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4968. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4969. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4970. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  4971. },
  4972. "type": "library",
  4973. "extra": {
  4974. "branch-alias": {
  4975. "dev-master": "2.11.x-dev",
  4976. "dev-develop": "2.12.x-dev"
  4977. }
  4978. },
  4979. "autoload": {
  4980. "psr-4": {
  4981. "Zend\\Feed\\": "src/"
  4982. }
  4983. },
  4984. "notification-url": "https://packagist.org/downloads/",
  4985. "license": [
  4986. "BSD-3-Clause"
  4987. ],
  4988. "description": "provides functionality for consuming RSS and Atom feeds",
  4989. "keywords": [
  4990. "ZendFramework",
  4991. "feed",
  4992. "zf"
  4993. ],
  4994. "time": "2019-01-29T21:37:15+00:00"
  4995. },
  4996. {
  4997. "name": "zendframework/zend-servicemanager",
  4998. "version": "2.7.11",
  4999. "source": {
  5000. "type": "git",
  5001. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5002. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  5003. },
  5004. "dist": {
  5005. "type": "zip",
  5006. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5007. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5008. "shasum": ""
  5009. },
  5010. "require": {
  5011. "container-interop/container-interop": "~1.0",
  5012. "php": "^5.5 || ^7.0"
  5013. },
  5014. "require-dev": {
  5015. "athletic/athletic": "dev-master",
  5016. "fabpot/php-cs-fixer": "1.7.*",
  5017. "phpunit/phpunit": "~4.0",
  5018. "zendframework/zend-di": "~2.5",
  5019. "zendframework/zend-mvc": "~2.5"
  5020. },
  5021. "suggest": {
  5022. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5023. "zendframework/zend-di": "Zend\\Di component"
  5024. },
  5025. "type": "library",
  5026. "extra": {
  5027. "branch-alias": {
  5028. "dev-master": "2.7-dev",
  5029. "dev-develop": "3.0-dev"
  5030. }
  5031. },
  5032. "autoload": {
  5033. "psr-4": {
  5034. "Zend\\ServiceManager\\": "src/"
  5035. }
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "BSD-3-Clause"
  5040. ],
  5041. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5042. "keywords": [
  5043. "servicemanager",
  5044. "zf2"
  5045. ],
  5046. "time": "2018-06-22T14:49:54+00:00"
  5047. },
  5048. {
  5049. "name": "zendframework/zend-stdlib",
  5050. "version": "3.2.1",
  5051. "source": {
  5052. "type": "git",
  5053. "url": "https://github.com/zendframework/zend-stdlib.git",
  5054. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  5055. },
  5056. "dist": {
  5057. "type": "zip",
  5058. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  5059. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  5060. "shasum": ""
  5061. },
  5062. "require": {
  5063. "php": "^5.6 || ^7.0"
  5064. },
  5065. "require-dev": {
  5066. "phpbench/phpbench": "^0.13",
  5067. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5068. "zendframework/zend-coding-standard": "~1.0.0"
  5069. },
  5070. "type": "library",
  5071. "extra": {
  5072. "branch-alias": {
  5073. "dev-master": "3.2.x-dev",
  5074. "dev-develop": "3.3.x-dev"
  5075. }
  5076. },
  5077. "autoload": {
  5078. "psr-4": {
  5079. "Zend\\Stdlib\\": "src/"
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "BSD-3-Clause"
  5085. ],
  5086. "description": "SPL extensions, array utilities, error handlers, and more",
  5087. "keywords": [
  5088. "ZendFramework",
  5089. "stdlib",
  5090. "zf"
  5091. ],
  5092. "time": "2018-08-28T21:34:05+00:00"
  5093. },
  5094. {
  5095. "name": "zendframework/zend-uri",
  5096. "version": "2.6.1",
  5097. "source": {
  5098. "type": "git",
  5099. "url": "https://github.com/zendframework/zend-uri.git",
  5100. "reference": "3b6463645c6766f78ce537c70cb4fdabee1e725f"
  5101. },
  5102. "dist": {
  5103. "type": "zip",
  5104. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/3b6463645c6766f78ce537c70cb4fdabee1e725f",
  5105. "reference": "3b6463645c6766f78ce537c70cb4fdabee1e725f",
  5106. "shasum": ""
  5107. },
  5108. "require": {
  5109. "php": "^5.6 || ^7.0",
  5110. "zendframework/zend-escaper": "^2.5",
  5111. "zendframework/zend-validator": "^2.10"
  5112. },
  5113. "require-dev": {
  5114. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  5115. "zendframework/zend-coding-standard": "~1.0.0"
  5116. },
  5117. "type": "library",
  5118. "extra": {
  5119. "branch-alias": {
  5120. "dev-master": "2.6.x-dev",
  5121. "dev-develop": "2.7.x-dev"
  5122. }
  5123. },
  5124. "autoload": {
  5125. "psr-4": {
  5126. "Zend\\Uri\\": "src/"
  5127. }
  5128. },
  5129. "notification-url": "https://packagist.org/downloads/",
  5130. "license": [
  5131. "BSD-3-Clause"
  5132. ],
  5133. "description": "A component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  5134. "keywords": [
  5135. "ZendFramework",
  5136. "uri",
  5137. "zf"
  5138. ],
  5139. "time": "2018-04-30T13:40:08+00:00"
  5140. },
  5141. {
  5142. "name": "zendframework/zend-validator",
  5143. "version": "2.11.1",
  5144. "source": {
  5145. "type": "git",
  5146. "url": "https://github.com/zendframework/zend-validator.git",
  5147. "reference": "3c28dfe4e5951ba38059cea895244d9d206190b3"
  5148. },
  5149. "dist": {
  5150. "type": "zip",
  5151. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/3c28dfe4e5951ba38059cea895244d9d206190b3",
  5152. "reference": "3c28dfe4e5951ba38059cea895244d9d206190b3",
  5153. "shasum": ""
  5154. },
  5155. "require": {
  5156. "container-interop/container-interop": "^1.1",
  5157. "php": "^5.6 || ^7.0",
  5158. "zendframework/zend-stdlib": "^2.7.6 || ^3.1"
  5159. },
  5160. "require-dev": {
  5161. "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  5162. "psr/http-message": "^1.0",
  5163. "zendframework/zend-cache": "^2.6.1",
  5164. "zendframework/zend-coding-standard": "~1.0.0",
  5165. "zendframework/zend-config": "^2.6",
  5166. "zendframework/zend-db": "^2.7",
  5167. "zendframework/zend-filter": "^2.6",
  5168. "zendframework/zend-http": "^2.5.4",
  5169. "zendframework/zend-i18n": "^2.6",
  5170. "zendframework/zend-math": "^2.6",
  5171. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  5172. "zendframework/zend-session": "^2.8",
  5173. "zendframework/zend-uri": "^2.5"
  5174. },
  5175. "suggest": {
  5176. "psr/http-message": "psr/http-message, required when validating PSR-7 UploadedFileInterface instances via the Upload and UploadFile validators",
  5177. "zendframework/zend-db": "Zend\\Db component, required by the (No)RecordExists validator",
  5178. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  5179. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages",
  5180. "zendframework/zend-i18n-resources": "Translations of validator messages",
  5181. "zendframework/zend-math": "Zend\\Math component, required by the Csrf validator",
  5182. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  5183. "zendframework/zend-session": "Zend\\Session component, ^2.8; required by the Csrf validator",
  5184. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  5185. },
  5186. "type": "library",
  5187. "extra": {
  5188. "branch-alias": {
  5189. "dev-master": "2.11.x-dev",
  5190. "dev-develop": "2.12.x-dev"
  5191. },
  5192. "zf": {
  5193. "component": "Zend\\Validator",
  5194. "config-provider": "Zend\\Validator\\ConfigProvider"
  5195. }
  5196. },
  5197. "autoload": {
  5198. "psr-4": {
  5199. "Zend\\Validator\\": "src/"
  5200. }
  5201. },
  5202. "notification-url": "https://packagist.org/downloads/",
  5203. "license": [
  5204. "BSD-3-Clause"
  5205. ],
  5206. "description": "provides a set of commonly needed validators",
  5207. "homepage": "https://github.com/zendframework/zend-validator",
  5208. "keywords": [
  5209. "validator",
  5210. "zf2"
  5211. ],
  5212. "time": "2019-01-29T22:26:39+00:00"
  5213. }
  5214. ],
  5215. "packages-dev": [
  5216. {
  5217. "name": "myclabs/deep-copy",
  5218. "version": "1.7.0",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/myclabs/DeepCopy.git",
  5222. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  5227. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  5228. "shasum": ""
  5229. },
  5230. "require": {
  5231. "php": "^5.6 || ^7.0"
  5232. },
  5233. "require-dev": {
  5234. "doctrine/collections": "^1.0",
  5235. "doctrine/common": "^2.6",
  5236. "phpunit/phpunit": "^4.1"
  5237. },
  5238. "type": "library",
  5239. "autoload": {
  5240. "psr-4": {
  5241. "DeepCopy\\": "src/DeepCopy/"
  5242. },
  5243. "files": [
  5244. "src/DeepCopy/deep_copy.php"
  5245. ]
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "description": "Create deep copies (clones) of your objects",
  5252. "keywords": [
  5253. "clone",
  5254. "copy",
  5255. "duplicate",
  5256. "object",
  5257. "object graph"
  5258. ],
  5259. "time": "2017-10-19T19:58:43+00:00"
  5260. },
  5261. {
  5262. "name": "phar-io/manifest",
  5263. "version": "1.0.1",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://github.com/phar-io/manifest.git",
  5267. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5272. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5273. "shasum": ""
  5274. },
  5275. "require": {
  5276. "ext-dom": "*",
  5277. "ext-phar": "*",
  5278. "phar-io/version": "^1.0.1",
  5279. "php": "^5.6 || ^7.0"
  5280. },
  5281. "type": "library",
  5282. "extra": {
  5283. "branch-alias": {
  5284. "dev-master": "1.0.x-dev"
  5285. }
  5286. },
  5287. "autoload": {
  5288. "classmap": [
  5289. "src/"
  5290. ]
  5291. },
  5292. "notification-url": "https://packagist.org/downloads/",
  5293. "license": [
  5294. "BSD-3-Clause"
  5295. ],
  5296. "authors": [
  5297. {
  5298. "name": "Arne Blankerts",
  5299. "email": "arne@blankerts.de",
  5300. "role": "Developer"
  5301. },
  5302. {
  5303. "name": "Sebastian Heuer",
  5304. "email": "sebastian@phpeople.de",
  5305. "role": "Developer"
  5306. },
  5307. {
  5308. "name": "Sebastian Bergmann",
  5309. "email": "sebastian@phpunit.de",
  5310. "role": "Developer"
  5311. }
  5312. ],
  5313. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5314. "time": "2017-03-05T18:14:27+00:00"
  5315. },
  5316. {
  5317. "name": "phar-io/version",
  5318. "version": "1.0.1",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://github.com/phar-io/version.git",
  5322. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  5327. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  5328. "shasum": ""
  5329. },
  5330. "require": {
  5331. "php": "^5.6 || ^7.0"
  5332. },
  5333. "type": "library",
  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": "Arne Blankerts",
  5346. "email": "arne@blankerts.de",
  5347. "role": "Developer"
  5348. },
  5349. {
  5350. "name": "Sebastian Heuer",
  5351. "email": "sebastian@phpeople.de",
  5352. "role": "Developer"
  5353. },
  5354. {
  5355. "name": "Sebastian Bergmann",
  5356. "email": "sebastian@phpunit.de",
  5357. "role": "Developer"
  5358. }
  5359. ],
  5360. "description": "Library for handling version information and constraints",
  5361. "time": "2017-03-05T17:38:23+00:00"
  5362. },
  5363. {
  5364. "name": "phpdocumentor/reflection-common",
  5365. "version": "1.0.1",
  5366. "source": {
  5367. "type": "git",
  5368. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5369. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5370. },
  5371. "dist": {
  5372. "type": "zip",
  5373. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5374. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5375. "shasum": ""
  5376. },
  5377. "require": {
  5378. "php": ">=5.5"
  5379. },
  5380. "require-dev": {
  5381. "phpunit/phpunit": "^4.6"
  5382. },
  5383. "type": "library",
  5384. "extra": {
  5385. "branch-alias": {
  5386. "dev-master": "1.0.x-dev"
  5387. }
  5388. },
  5389. "autoload": {
  5390. "psr-4": {
  5391. "phpDocumentor\\Reflection\\": [
  5392. "src"
  5393. ]
  5394. }
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "license": [
  5398. "MIT"
  5399. ],
  5400. "authors": [
  5401. {
  5402. "name": "Jaap van Otterdijk",
  5403. "email": "opensource@ijaap.nl"
  5404. }
  5405. ],
  5406. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5407. "homepage": "http://www.phpdoc.org",
  5408. "keywords": [
  5409. "FQSEN",
  5410. "phpDocumentor",
  5411. "phpdoc",
  5412. "reflection",
  5413. "static analysis"
  5414. ],
  5415. "time": "2017-09-11T18:02:19+00:00"
  5416. },
  5417. {
  5418. "name": "phpdocumentor/reflection-docblock",
  5419. "version": "4.3.0",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5423. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5428. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5429. "shasum": ""
  5430. },
  5431. "require": {
  5432. "php": "^7.0",
  5433. "phpdocumentor/reflection-common": "^1.0.0",
  5434. "phpdocumentor/type-resolver": "^0.4.0",
  5435. "webmozart/assert": "^1.0"
  5436. },
  5437. "require-dev": {
  5438. "doctrine/instantiator": "~1.0.5",
  5439. "mockery/mockery": "^1.0",
  5440. "phpunit/phpunit": "^6.4"
  5441. },
  5442. "type": "library",
  5443. "extra": {
  5444. "branch-alias": {
  5445. "dev-master": "4.x-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-4": {
  5450. "phpDocumentor\\Reflection\\": [
  5451. "src/"
  5452. ]
  5453. }
  5454. },
  5455. "notification-url": "https://packagist.org/downloads/",
  5456. "license": [
  5457. "MIT"
  5458. ],
  5459. "authors": [
  5460. {
  5461. "name": "Mike van Riel",
  5462. "email": "me@mikevanriel.com"
  5463. }
  5464. ],
  5465. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5466. "time": "2017-11-30T07:14:17+00:00"
  5467. },
  5468. {
  5469. "name": "phpdocumentor/type-resolver",
  5470. "version": "0.4.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5474. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5479. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5480. "shasum": ""
  5481. },
  5482. "require": {
  5483. "php": "^5.5 || ^7.0",
  5484. "phpdocumentor/reflection-common": "^1.0"
  5485. },
  5486. "require-dev": {
  5487. "mockery/mockery": "^0.9.4",
  5488. "phpunit/phpunit": "^5.2||^4.8.24"
  5489. },
  5490. "type": "library",
  5491. "extra": {
  5492. "branch-alias": {
  5493. "dev-master": "1.0.x-dev"
  5494. }
  5495. },
  5496. "autoload": {
  5497. "psr-4": {
  5498. "phpDocumentor\\Reflection\\": [
  5499. "src/"
  5500. ]
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Mike van Riel",
  5510. "email": "me@mikevanriel.com"
  5511. }
  5512. ],
  5513. "time": "2017-07-14T14:27:02+00:00"
  5514. },
  5515. {
  5516. "name": "phpspec/prophecy",
  5517. "version": "1.8.0",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/phpspec/prophecy.git",
  5521. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5526. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5527. "shasum": ""
  5528. },
  5529. "require": {
  5530. "doctrine/instantiator": "^1.0.2",
  5531. "php": "^5.3|^7.0",
  5532. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5533. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5534. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5535. },
  5536. "require-dev": {
  5537. "phpspec/phpspec": "^2.5|^3.2",
  5538. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5539. },
  5540. "type": "library",
  5541. "extra": {
  5542. "branch-alias": {
  5543. "dev-master": "1.8.x-dev"
  5544. }
  5545. },
  5546. "autoload": {
  5547. "psr-0": {
  5548. "Prophecy\\": "src/"
  5549. }
  5550. },
  5551. "notification-url": "https://packagist.org/downloads/",
  5552. "license": [
  5553. "MIT"
  5554. ],
  5555. "authors": [
  5556. {
  5557. "name": "Konstantin Kudryashov",
  5558. "email": "ever.zet@gmail.com",
  5559. "homepage": "http://everzet.com"
  5560. },
  5561. {
  5562. "name": "Marcello Duarte",
  5563. "email": "marcello.duarte@gmail.com"
  5564. }
  5565. ],
  5566. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5567. "homepage": "https://github.com/phpspec/prophecy",
  5568. "keywords": [
  5569. "Double",
  5570. "Dummy",
  5571. "fake",
  5572. "mock",
  5573. "spy",
  5574. "stub"
  5575. ],
  5576. "time": "2018-08-05T17:53:17+00:00"
  5577. },
  5578. {
  5579. "name": "phpunit/php-code-coverage",
  5580. "version": "5.3.2",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5584. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  5589. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "ext-dom": "*",
  5594. "ext-xmlwriter": "*",
  5595. "php": "^7.0",
  5596. "phpunit/php-file-iterator": "^1.4.2",
  5597. "phpunit/php-text-template": "^1.2.1",
  5598. "phpunit/php-token-stream": "^2.0.1",
  5599. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5600. "sebastian/environment": "^3.0",
  5601. "sebastian/version": "^2.0.1",
  5602. "theseer/tokenizer": "^1.1"
  5603. },
  5604. "require-dev": {
  5605. "phpunit/phpunit": "^6.0"
  5606. },
  5607. "suggest": {
  5608. "ext-xdebug": "^2.5.5"
  5609. },
  5610. "type": "library",
  5611. "extra": {
  5612. "branch-alias": {
  5613. "dev-master": "5.3.x-dev"
  5614. }
  5615. },
  5616. "autoload": {
  5617. "classmap": [
  5618. "src/"
  5619. ]
  5620. },
  5621. "notification-url": "https://packagist.org/downloads/",
  5622. "license": [
  5623. "BSD-3-Clause"
  5624. ],
  5625. "authors": [
  5626. {
  5627. "name": "Sebastian Bergmann",
  5628. "email": "sebastian@phpunit.de",
  5629. "role": "lead"
  5630. }
  5631. ],
  5632. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5633. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5634. "keywords": [
  5635. "coverage",
  5636. "testing",
  5637. "xunit"
  5638. ],
  5639. "time": "2018-04-06T15:36:58+00:00"
  5640. },
  5641. {
  5642. "name": "phpunit/php-file-iterator",
  5643. "version": "1.4.5",
  5644. "source": {
  5645. "type": "git",
  5646. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5647. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  5648. },
  5649. "dist": {
  5650. "type": "zip",
  5651. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5652. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5653. "shasum": ""
  5654. },
  5655. "require": {
  5656. "php": ">=5.3.3"
  5657. },
  5658. "type": "library",
  5659. "extra": {
  5660. "branch-alias": {
  5661. "dev-master": "1.4.x-dev"
  5662. }
  5663. },
  5664. "autoload": {
  5665. "classmap": [
  5666. "src/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "BSD-3-Clause"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Sebastian Bergmann",
  5676. "email": "sb@sebastian-bergmann.de",
  5677. "role": "lead"
  5678. }
  5679. ],
  5680. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5681. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5682. "keywords": [
  5683. "filesystem",
  5684. "iterator"
  5685. ],
  5686. "time": "2017-11-27T13:52:08+00:00"
  5687. },
  5688. {
  5689. "name": "phpunit/php-text-template",
  5690. "version": "1.2.1",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5694. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5699. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "php": ">=5.3.3"
  5704. },
  5705. "type": "library",
  5706. "autoload": {
  5707. "classmap": [
  5708. "src/"
  5709. ]
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "BSD-3-Clause"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Sebastian Bergmann",
  5718. "email": "sebastian@phpunit.de",
  5719. "role": "lead"
  5720. }
  5721. ],
  5722. "description": "Simple template engine.",
  5723. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5724. "keywords": [
  5725. "template"
  5726. ],
  5727. "time": "2015-06-21T13:50:34+00:00"
  5728. },
  5729. {
  5730. "name": "phpunit/php-timer",
  5731. "version": "1.0.9",
  5732. "source": {
  5733. "type": "git",
  5734. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5735. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  5736. },
  5737. "dist": {
  5738. "type": "zip",
  5739. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5740. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5741. "shasum": ""
  5742. },
  5743. "require": {
  5744. "php": "^5.3.3 || ^7.0"
  5745. },
  5746. "require-dev": {
  5747. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5748. },
  5749. "type": "library",
  5750. "extra": {
  5751. "branch-alias": {
  5752. "dev-master": "1.0-dev"
  5753. }
  5754. },
  5755. "autoload": {
  5756. "classmap": [
  5757. "src/"
  5758. ]
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "BSD-3-Clause"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "Sebastian Bergmann",
  5767. "email": "sb@sebastian-bergmann.de",
  5768. "role": "lead"
  5769. }
  5770. ],
  5771. "description": "Utility class for timing",
  5772. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5773. "keywords": [
  5774. "timer"
  5775. ],
  5776. "time": "2017-02-26T11:10:40+00:00"
  5777. },
  5778. {
  5779. "name": "phpunit/php-token-stream",
  5780. "version": "2.0.2",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5784. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  5789. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  5790. "shasum": ""
  5791. },
  5792. "require": {
  5793. "ext-tokenizer": "*",
  5794. "php": "^7.0"
  5795. },
  5796. "require-dev": {
  5797. "phpunit/phpunit": "^6.2.4"
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "branch-alias": {
  5802. "dev-master": "2.0-dev"
  5803. }
  5804. },
  5805. "autoload": {
  5806. "classmap": [
  5807. "src/"
  5808. ]
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "BSD-3-Clause"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "Sebastian Bergmann",
  5817. "email": "sebastian@phpunit.de"
  5818. }
  5819. ],
  5820. "description": "Wrapper around PHP's tokenizer extension.",
  5821. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5822. "keywords": [
  5823. "tokenizer"
  5824. ],
  5825. "time": "2017-11-27T05:48:46+00:00"
  5826. },
  5827. {
  5828. "name": "phpunit/phpunit",
  5829. "version": "6.5.13",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5833. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  5838. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "ext-dom": "*",
  5843. "ext-json": "*",
  5844. "ext-libxml": "*",
  5845. "ext-mbstring": "*",
  5846. "ext-xml": "*",
  5847. "myclabs/deep-copy": "^1.6.1",
  5848. "phar-io/manifest": "^1.0.1",
  5849. "phar-io/version": "^1.0",
  5850. "php": "^7.0",
  5851. "phpspec/prophecy": "^1.7",
  5852. "phpunit/php-code-coverage": "^5.3",
  5853. "phpunit/php-file-iterator": "^1.4.3",
  5854. "phpunit/php-text-template": "^1.2.1",
  5855. "phpunit/php-timer": "^1.0.9",
  5856. "phpunit/phpunit-mock-objects": "^5.0.9",
  5857. "sebastian/comparator": "^2.1",
  5858. "sebastian/diff": "^2.0",
  5859. "sebastian/environment": "^3.1",
  5860. "sebastian/exporter": "^3.1",
  5861. "sebastian/global-state": "^2.0",
  5862. "sebastian/object-enumerator": "^3.0.3",
  5863. "sebastian/resource-operations": "^1.0",
  5864. "sebastian/version": "^2.0.1"
  5865. },
  5866. "conflict": {
  5867. "phpdocumentor/reflection-docblock": "3.0.2",
  5868. "phpunit/dbunit": "<3.0"
  5869. },
  5870. "require-dev": {
  5871. "ext-pdo": "*"
  5872. },
  5873. "suggest": {
  5874. "ext-xdebug": "*",
  5875. "phpunit/php-invoker": "^1.1"
  5876. },
  5877. "bin": [
  5878. "phpunit"
  5879. ],
  5880. "type": "library",
  5881. "extra": {
  5882. "branch-alias": {
  5883. "dev-master": "6.5.x-dev"
  5884. }
  5885. },
  5886. "autoload": {
  5887. "classmap": [
  5888. "src/"
  5889. ]
  5890. },
  5891. "notification-url": "https://packagist.org/downloads/",
  5892. "license": [
  5893. "BSD-3-Clause"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "Sebastian Bergmann",
  5898. "email": "sebastian@phpunit.de",
  5899. "role": "lead"
  5900. }
  5901. ],
  5902. "description": "The PHP Unit Testing framework.",
  5903. "homepage": "https://phpunit.de/",
  5904. "keywords": [
  5905. "phpunit",
  5906. "testing",
  5907. "xunit"
  5908. ],
  5909. "time": "2018-09-08T15:10:43+00:00"
  5910. },
  5911. {
  5912. "name": "phpunit/phpunit-mock-objects",
  5913. "version": "5.0.10",
  5914. "source": {
  5915. "type": "git",
  5916. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  5917. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  5918. },
  5919. "dist": {
  5920. "type": "zip",
  5921. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  5922. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  5923. "shasum": ""
  5924. },
  5925. "require": {
  5926. "doctrine/instantiator": "^1.0.5",
  5927. "php": "^7.0",
  5928. "phpunit/php-text-template": "^1.2.1",
  5929. "sebastian/exporter": "^3.1"
  5930. },
  5931. "conflict": {
  5932. "phpunit/phpunit": "<6.0"
  5933. },
  5934. "require-dev": {
  5935. "phpunit/phpunit": "^6.5.11"
  5936. },
  5937. "suggest": {
  5938. "ext-soap": "*"
  5939. },
  5940. "type": "library",
  5941. "extra": {
  5942. "branch-alias": {
  5943. "dev-master": "5.0.x-dev"
  5944. }
  5945. },
  5946. "autoload": {
  5947. "classmap": [
  5948. "src/"
  5949. ]
  5950. },
  5951. "notification-url": "https://packagist.org/downloads/",
  5952. "license": [
  5953. "BSD-3-Clause"
  5954. ],
  5955. "authors": [
  5956. {
  5957. "name": "Sebastian Bergmann",
  5958. "email": "sebastian@phpunit.de",
  5959. "role": "lead"
  5960. }
  5961. ],
  5962. "description": "Mock Object library for PHPUnit",
  5963. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  5964. "keywords": [
  5965. "mock",
  5966. "xunit"
  5967. ],
  5968. "abandoned": true,
  5969. "time": "2018-08-09T05:50:03+00:00"
  5970. },
  5971. {
  5972. "name": "sebastian/code-unit-reverse-lookup",
  5973. "version": "1.0.1",
  5974. "source": {
  5975. "type": "git",
  5976. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5977. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5978. },
  5979. "dist": {
  5980. "type": "zip",
  5981. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5982. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5983. "shasum": ""
  5984. },
  5985. "require": {
  5986. "php": "^5.6 || ^7.0"
  5987. },
  5988. "require-dev": {
  5989. "phpunit/phpunit": "^5.7 || ^6.0"
  5990. },
  5991. "type": "library",
  5992. "extra": {
  5993. "branch-alias": {
  5994. "dev-master": "1.0.x-dev"
  5995. }
  5996. },
  5997. "autoload": {
  5998. "classmap": [
  5999. "src/"
  6000. ]
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "BSD-3-Clause"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Sebastian Bergmann",
  6009. "email": "sebastian@phpunit.de"
  6010. }
  6011. ],
  6012. "description": "Looks up which function or method a line of code belongs to",
  6013. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6014. "time": "2017-03-04T06:30:41+00:00"
  6015. },
  6016. {
  6017. "name": "sebastian/comparator",
  6018. "version": "2.1.3",
  6019. "source": {
  6020. "type": "git",
  6021. "url": "https://github.com/sebastianbergmann/comparator.git",
  6022. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  6023. },
  6024. "dist": {
  6025. "type": "zip",
  6026. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  6027. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  6028. "shasum": ""
  6029. },
  6030. "require": {
  6031. "php": "^7.0",
  6032. "sebastian/diff": "^2.0 || ^3.0",
  6033. "sebastian/exporter": "^3.1"
  6034. },
  6035. "require-dev": {
  6036. "phpunit/phpunit": "^6.4"
  6037. },
  6038. "type": "library",
  6039. "extra": {
  6040. "branch-alias": {
  6041. "dev-master": "2.1.x-dev"
  6042. }
  6043. },
  6044. "autoload": {
  6045. "classmap": [
  6046. "src/"
  6047. ]
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "BSD-3-Clause"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Jeff Welch",
  6056. "email": "whatthejeff@gmail.com"
  6057. },
  6058. {
  6059. "name": "Volker Dusch",
  6060. "email": "github@wallbash.com"
  6061. },
  6062. {
  6063. "name": "Bernhard Schussek",
  6064. "email": "bschussek@2bepublished.at"
  6065. },
  6066. {
  6067. "name": "Sebastian Bergmann",
  6068. "email": "sebastian@phpunit.de"
  6069. }
  6070. ],
  6071. "description": "Provides the functionality to compare PHP values for equality",
  6072. "homepage": "https://github.com/sebastianbergmann/comparator",
  6073. "keywords": [
  6074. "comparator",
  6075. "compare",
  6076. "equality"
  6077. ],
  6078. "time": "2018-02-01T13:46:46+00:00"
  6079. },
  6080. {
  6081. "name": "sebastian/diff",
  6082. "version": "2.0.1",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://github.com/sebastianbergmann/diff.git",
  6086. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6091. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6092. "shasum": ""
  6093. },
  6094. "require": {
  6095. "php": "^7.0"
  6096. },
  6097. "require-dev": {
  6098. "phpunit/phpunit": "^6.2"
  6099. },
  6100. "type": "library",
  6101. "extra": {
  6102. "branch-alias": {
  6103. "dev-master": "2.0-dev"
  6104. }
  6105. },
  6106. "autoload": {
  6107. "classmap": [
  6108. "src/"
  6109. ]
  6110. },
  6111. "notification-url": "https://packagist.org/downloads/",
  6112. "license": [
  6113. "BSD-3-Clause"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Kore Nordmann",
  6118. "email": "mail@kore-nordmann.de"
  6119. },
  6120. {
  6121. "name": "Sebastian Bergmann",
  6122. "email": "sebastian@phpunit.de"
  6123. }
  6124. ],
  6125. "description": "Diff implementation",
  6126. "homepage": "https://github.com/sebastianbergmann/diff",
  6127. "keywords": [
  6128. "diff"
  6129. ],
  6130. "time": "2017-08-03T08:09:46+00:00"
  6131. },
  6132. {
  6133. "name": "sebastian/environment",
  6134. "version": "3.1.0",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/sebastianbergmann/environment.git",
  6138. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6143. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6144. "shasum": ""
  6145. },
  6146. "require": {
  6147. "php": "^7.0"
  6148. },
  6149. "require-dev": {
  6150. "phpunit/phpunit": "^6.1"
  6151. },
  6152. "type": "library",
  6153. "extra": {
  6154. "branch-alias": {
  6155. "dev-master": "3.1.x-dev"
  6156. }
  6157. },
  6158. "autoload": {
  6159. "classmap": [
  6160. "src/"
  6161. ]
  6162. },
  6163. "notification-url": "https://packagist.org/downloads/",
  6164. "license": [
  6165. "BSD-3-Clause"
  6166. ],
  6167. "authors": [
  6168. {
  6169. "name": "Sebastian Bergmann",
  6170. "email": "sebastian@phpunit.de"
  6171. }
  6172. ],
  6173. "description": "Provides functionality to handle HHVM/PHP environments",
  6174. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6175. "keywords": [
  6176. "Xdebug",
  6177. "environment",
  6178. "hhvm"
  6179. ],
  6180. "time": "2017-07-01T08:51:00+00:00"
  6181. },
  6182. {
  6183. "name": "sebastian/exporter",
  6184. "version": "3.1.0",
  6185. "source": {
  6186. "type": "git",
  6187. "url": "https://github.com/sebastianbergmann/exporter.git",
  6188. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6189. },
  6190. "dist": {
  6191. "type": "zip",
  6192. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6193. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6194. "shasum": ""
  6195. },
  6196. "require": {
  6197. "php": "^7.0",
  6198. "sebastian/recursion-context": "^3.0"
  6199. },
  6200. "require-dev": {
  6201. "ext-mbstring": "*",
  6202. "phpunit/phpunit": "^6.0"
  6203. },
  6204. "type": "library",
  6205. "extra": {
  6206. "branch-alias": {
  6207. "dev-master": "3.1.x-dev"
  6208. }
  6209. },
  6210. "autoload": {
  6211. "classmap": [
  6212. "src/"
  6213. ]
  6214. },
  6215. "notification-url": "https://packagist.org/downloads/",
  6216. "license": [
  6217. "BSD-3-Clause"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Jeff Welch",
  6222. "email": "whatthejeff@gmail.com"
  6223. },
  6224. {
  6225. "name": "Volker Dusch",
  6226. "email": "github@wallbash.com"
  6227. },
  6228. {
  6229. "name": "Bernhard Schussek",
  6230. "email": "bschussek@2bepublished.at"
  6231. },
  6232. {
  6233. "name": "Sebastian Bergmann",
  6234. "email": "sebastian@phpunit.de"
  6235. },
  6236. {
  6237. "name": "Adam Harvey",
  6238. "email": "aharvey@php.net"
  6239. }
  6240. ],
  6241. "description": "Provides the functionality to export PHP variables for visualization",
  6242. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6243. "keywords": [
  6244. "export",
  6245. "exporter"
  6246. ],
  6247. "time": "2017-04-03T13:19:02+00:00"
  6248. },
  6249. {
  6250. "name": "sebastian/global-state",
  6251. "version": "2.0.0",
  6252. "source": {
  6253. "type": "git",
  6254. "url": "https://github.com/sebastianbergmann/global-state.git",
  6255. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6256. },
  6257. "dist": {
  6258. "type": "zip",
  6259. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6260. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6261. "shasum": ""
  6262. },
  6263. "require": {
  6264. "php": "^7.0"
  6265. },
  6266. "require-dev": {
  6267. "phpunit/phpunit": "^6.0"
  6268. },
  6269. "suggest": {
  6270. "ext-uopz": "*"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-master": "2.0-dev"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "classmap": [
  6280. "src/"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "BSD-3-Clause"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Sebastian Bergmann",
  6290. "email": "sebastian@phpunit.de"
  6291. }
  6292. ],
  6293. "description": "Snapshotting of global state",
  6294. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6295. "keywords": [
  6296. "global state"
  6297. ],
  6298. "time": "2017-04-27T15:39:26+00:00"
  6299. },
  6300. {
  6301. "name": "sebastian/object-enumerator",
  6302. "version": "3.0.3",
  6303. "source": {
  6304. "type": "git",
  6305. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6306. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6307. },
  6308. "dist": {
  6309. "type": "zip",
  6310. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6311. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6312. "shasum": ""
  6313. },
  6314. "require": {
  6315. "php": "^7.0",
  6316. "sebastian/object-reflector": "^1.1.1",
  6317. "sebastian/recursion-context": "^3.0"
  6318. },
  6319. "require-dev": {
  6320. "phpunit/phpunit": "^6.0"
  6321. },
  6322. "type": "library",
  6323. "extra": {
  6324. "branch-alias": {
  6325. "dev-master": "3.0.x-dev"
  6326. }
  6327. },
  6328. "autoload": {
  6329. "classmap": [
  6330. "src/"
  6331. ]
  6332. },
  6333. "notification-url": "https://packagist.org/downloads/",
  6334. "license": [
  6335. "BSD-3-Clause"
  6336. ],
  6337. "authors": [
  6338. {
  6339. "name": "Sebastian Bergmann",
  6340. "email": "sebastian@phpunit.de"
  6341. }
  6342. ],
  6343. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6344. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6345. "time": "2017-08-03T12:35:26+00:00"
  6346. },
  6347. {
  6348. "name": "sebastian/object-reflector",
  6349. "version": "1.1.1",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6353. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6358. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6359. "shasum": ""
  6360. },
  6361. "require": {
  6362. "php": "^7.0"
  6363. },
  6364. "require-dev": {
  6365. "phpunit/phpunit": "^6.0"
  6366. },
  6367. "type": "library",
  6368. "extra": {
  6369. "branch-alias": {
  6370. "dev-master": "1.1-dev"
  6371. }
  6372. },
  6373. "autoload": {
  6374. "classmap": [
  6375. "src/"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "BSD-3-Clause"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Sebastian Bergmann",
  6385. "email": "sebastian@phpunit.de"
  6386. }
  6387. ],
  6388. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6389. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6390. "time": "2017-03-29T09:07:27+00:00"
  6391. },
  6392. {
  6393. "name": "sebastian/recursion-context",
  6394. "version": "3.0.0",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6398. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6403. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6404. "shasum": ""
  6405. },
  6406. "require": {
  6407. "php": "^7.0"
  6408. },
  6409. "require-dev": {
  6410. "phpunit/phpunit": "^6.0"
  6411. },
  6412. "type": "library",
  6413. "extra": {
  6414. "branch-alias": {
  6415. "dev-master": "3.0.x-dev"
  6416. }
  6417. },
  6418. "autoload": {
  6419. "classmap": [
  6420. "src/"
  6421. ]
  6422. },
  6423. "notification-url": "https://packagist.org/downloads/",
  6424. "license": [
  6425. "BSD-3-Clause"
  6426. ],
  6427. "authors": [
  6428. {
  6429. "name": "Jeff Welch",
  6430. "email": "whatthejeff@gmail.com"
  6431. },
  6432. {
  6433. "name": "Sebastian Bergmann",
  6434. "email": "sebastian@phpunit.de"
  6435. },
  6436. {
  6437. "name": "Adam Harvey",
  6438. "email": "aharvey@php.net"
  6439. }
  6440. ],
  6441. "description": "Provides functionality to recursively process PHP variables",
  6442. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6443. "time": "2017-03-03T06:23:57+00:00"
  6444. },
  6445. {
  6446. "name": "sebastian/resource-operations",
  6447. "version": "1.0.0",
  6448. "source": {
  6449. "type": "git",
  6450. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6451. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  6452. },
  6453. "dist": {
  6454. "type": "zip",
  6455. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6456. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6457. "shasum": ""
  6458. },
  6459. "require": {
  6460. "php": ">=5.6.0"
  6461. },
  6462. "type": "library",
  6463. "extra": {
  6464. "branch-alias": {
  6465. "dev-master": "1.0.x-dev"
  6466. }
  6467. },
  6468. "autoload": {
  6469. "classmap": [
  6470. "src/"
  6471. ]
  6472. },
  6473. "notification-url": "https://packagist.org/downloads/",
  6474. "license": [
  6475. "BSD-3-Clause"
  6476. ],
  6477. "authors": [
  6478. {
  6479. "name": "Sebastian Bergmann",
  6480. "email": "sebastian@phpunit.de"
  6481. }
  6482. ],
  6483. "description": "Provides a list of PHP built-in functions that operate on resources",
  6484. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6485. "time": "2015-07-28T20:34:47+00:00"
  6486. },
  6487. {
  6488. "name": "sebastian/version",
  6489. "version": "2.0.1",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/sebastianbergmann/version.git",
  6493. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6498. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6499. "shasum": ""
  6500. },
  6501. "require": {
  6502. "php": ">=5.6"
  6503. },
  6504. "type": "library",
  6505. "extra": {
  6506. "branch-alias": {
  6507. "dev-master": "2.0.x-dev"
  6508. }
  6509. },
  6510. "autoload": {
  6511. "classmap": [
  6512. "src/"
  6513. ]
  6514. },
  6515. "notification-url": "https://packagist.org/downloads/",
  6516. "license": [
  6517. "BSD-3-Clause"
  6518. ],
  6519. "authors": [
  6520. {
  6521. "name": "Sebastian Bergmann",
  6522. "email": "sebastian@phpunit.de",
  6523. "role": "lead"
  6524. }
  6525. ],
  6526. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6527. "homepage": "https://github.com/sebastianbergmann/version",
  6528. "time": "2016-10-03T07:35:21+00:00"
  6529. },
  6530. {
  6531. "name": "symfony/phpunit-bridge",
  6532. "version": "v4.2.2",
  6533. "source": {
  6534. "type": "git",
  6535. "url": "https://github.com/symfony/phpunit-bridge.git",
  6536. "reference": "4d53b78ee50da242dffa4eb91ea1f0ee084945c5"
  6537. },
  6538. "dist": {
  6539. "type": "zip",
  6540. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/4d53b78ee50da242dffa4eb91ea1f0ee084945c5",
  6541. "reference": "4d53b78ee50da242dffa4eb91ea1f0ee084945c5",
  6542. "shasum": ""
  6543. },
  6544. "require": {
  6545. "php": ">=5.3.3"
  6546. },
  6547. "conflict": {
  6548. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6549. },
  6550. "suggest": {
  6551. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  6552. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6553. },
  6554. "bin": [
  6555. "bin/simple-phpunit"
  6556. ],
  6557. "type": "symfony-bridge",
  6558. "extra": {
  6559. "branch-alias": {
  6560. "dev-master": "4.2-dev"
  6561. },
  6562. "thanks": {
  6563. "name": "phpunit/phpunit",
  6564. "url": "https://github.com/sebastianbergmann/phpunit"
  6565. }
  6566. },
  6567. "autoload": {
  6568. "files": [
  6569. "bootstrap.php"
  6570. ],
  6571. "psr-4": {
  6572. "Symfony\\Bridge\\PhpUnit\\": ""
  6573. },
  6574. "exclude-from-classmap": [
  6575. "/Tests/"
  6576. ]
  6577. },
  6578. "notification-url": "https://packagist.org/downloads/",
  6579. "license": [
  6580. "MIT"
  6581. ],
  6582. "authors": [
  6583. {
  6584. "name": "Nicolas Grekas",
  6585. "email": "p@tchwork.com"
  6586. },
  6587. {
  6588. "name": "Symfony Community",
  6589. "homepage": "https://symfony.com/contributors"
  6590. }
  6591. ],
  6592. "description": "Symfony PHPUnit Bridge",
  6593. "homepage": "https://symfony.com",
  6594. "time": "2019-01-03T09:07:35+00:00"
  6595. },
  6596. {
  6597. "name": "theseer/tokenizer",
  6598. "version": "1.1.0",
  6599. "source": {
  6600. "type": "git",
  6601. "url": "https://github.com/theseer/tokenizer.git",
  6602. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  6603. },
  6604. "dist": {
  6605. "type": "zip",
  6606. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6607. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6608. "shasum": ""
  6609. },
  6610. "require": {
  6611. "ext-dom": "*",
  6612. "ext-tokenizer": "*",
  6613. "ext-xmlwriter": "*",
  6614. "php": "^7.0"
  6615. },
  6616. "type": "library",
  6617. "autoload": {
  6618. "classmap": [
  6619. "src/"
  6620. ]
  6621. },
  6622. "notification-url": "https://packagist.org/downloads/",
  6623. "license": [
  6624. "BSD-3-Clause"
  6625. ],
  6626. "authors": [
  6627. {
  6628. "name": "Arne Blankerts",
  6629. "email": "arne@blankerts.de",
  6630. "role": "Developer"
  6631. }
  6632. ],
  6633. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6634. "time": "2017-04-07T12:08:54+00:00"
  6635. },
  6636. {
  6637. "name": "webmozart/assert",
  6638. "version": "1.4.0",
  6639. "source": {
  6640. "type": "git",
  6641. "url": "https://github.com/webmozart/assert.git",
  6642. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  6643. },
  6644. "dist": {
  6645. "type": "zip",
  6646. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  6647. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  6648. "shasum": ""
  6649. },
  6650. "require": {
  6651. "php": "^5.3.3 || ^7.0",
  6652. "symfony/polyfill-ctype": "^1.8"
  6653. },
  6654. "require-dev": {
  6655. "phpunit/phpunit": "^4.6",
  6656. "sebastian/version": "^1.0.1"
  6657. },
  6658. "type": "library",
  6659. "extra": {
  6660. "branch-alias": {
  6661. "dev-master": "1.3-dev"
  6662. }
  6663. },
  6664. "autoload": {
  6665. "psr-4": {
  6666. "Webmozart\\Assert\\": "src/"
  6667. }
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "MIT"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Bernhard Schussek",
  6676. "email": "bschussek@gmail.com"
  6677. }
  6678. ],
  6679. "description": "Assertions to validate method input/output with nice error messages.",
  6680. "keywords": [
  6681. "assert",
  6682. "check",
  6683. "validate"
  6684. ],
  6685. "time": "2018-12-25T11:19:39+00:00"
  6686. }
  6687. ],
  6688. "aliases": [],
  6689. "minimum-stability": "stable",
  6690. "stability-flags": {
  6691. "composer/composer": 20
  6692. },
  6693. "prefer-stable": false,
  6694. "prefer-lowest": false,
  6695. "platform": {
  6696. "php": ">=7.0"
  6697. },
  6698. "platform-dev": [],
  6699. "platform-overrides": {
  6700. "php": "7.0.27"
  6701. }
  6702. }