composer.lock 310 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612
  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": "3c7d82fe75c83017f0ff392df4238b80",
  8. "packages": [
  9. {
  10. "name": "algolia/algoliasearch-client-php",
  11. "version": "2.6.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/algolia/algoliasearch-client-php.git",
  15. "reference": "cf00bbc55e0701691abbd92101c963e34ec4a496"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/algolia/algoliasearch-client-php/zipball/cf00bbc55e0701691abbd92101c963e34ec4a496",
  20. "reference": "cf00bbc55e0701691abbd92101c963e34ec4a496",
  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. "friendsofphp/php-cs-fixer": "^2.0",
  34. "fzaninotto/faker": "^1.8",
  35. "phpunit/phpunit": "^4.8",
  36. "symfony/yaml": "^2.0 || ^4.0"
  37. },
  38. "suggest": {
  39. "guzzlehttp/guzzle": "If you prefer to use Guzzle HTTP client instead of the Http Client implementation provided by the package"
  40. },
  41. "bin": [
  42. "bin/algolia-doctor"
  43. ],
  44. "type": "library",
  45. "extra": {
  46. "branch-alias": {
  47. "dev-2.0": "2.0.x-dev"
  48. }
  49. },
  50. "autoload": {
  51. "psr-4": {
  52. "Algolia\\AlgoliaSearch\\": "src/"
  53. },
  54. "files": [
  55. "src/Http/Psr7/functions.php",
  56. "src/functions.php"
  57. ]
  58. },
  59. "notification-url": "https://packagist.org/downloads/",
  60. "license": [
  61. "MIT"
  62. ],
  63. "authors": [
  64. {
  65. "name": "Algolia Team",
  66. "email": "contact@algolia.com"
  67. }
  68. ],
  69. "description": "Algolia Search API Client for PHP",
  70. "keywords": [
  71. "algolia",
  72. "api",
  73. "client",
  74. "php",
  75. "search"
  76. ],
  77. "support": {
  78. "issues": "https://github.com/algolia/algoliasearch-client-php/issues",
  79. "source": "https://github.com/algolia/algoliasearch-client-php/tree/master"
  80. },
  81. "time": "2020-03-09T09:11:44+00:00"
  82. },
  83. {
  84. "name": "bacon/bacon-qr-code",
  85. "version": "2.0.0",
  86. "source": {
  87. "type": "git",
  88. "url": "https://github.com/Bacon/BaconQrCode.git",
  89. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  90. },
  91. "dist": {
  92. "type": "zip",
  93. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  94. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  95. "shasum": ""
  96. },
  97. "require": {
  98. "dasprid/enum": "^1.0",
  99. "ext-iconv": "*",
  100. "php": "^7.1"
  101. },
  102. "require-dev": {
  103. "phly/keep-a-changelog": "^1.4",
  104. "phpunit/phpunit": "^6.4",
  105. "squizlabs/php_codesniffer": "^3.1"
  106. },
  107. "suggest": {
  108. "ext-imagick": "to generate QR code images"
  109. },
  110. "type": "library",
  111. "autoload": {
  112. "psr-4": {
  113. "BaconQrCode\\": "src/"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "BSD-2-Clause"
  119. ],
  120. "description": "BaconQrCode is a QR code generator for PHP.",
  121. "homepage": "https://github.com/Bacon/BaconQrCode",
  122. "time": "2018-04-25T17:53:56+00:00"
  123. },
  124. {
  125. "name": "beberlei/assert",
  126. "version": "v3.2.7",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/beberlei/assert.git",
  130. "reference": "d63a6943fc4fd1a2aedb65994e3548715105abcf"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/beberlei/assert/zipball/d63a6943fc4fd1a2aedb65994e3548715105abcf",
  135. "reference": "d63a6943fc4fd1a2aedb65994e3548715105abcf",
  136. "shasum": ""
  137. },
  138. "require": {
  139. "ext-ctype": "*",
  140. "ext-json": "*",
  141. "ext-mbstring": "*",
  142. "ext-simplexml": "*",
  143. "php": "^7"
  144. },
  145. "require-dev": {
  146. "friendsofphp/php-cs-fixer": "*",
  147. "phpstan/phpstan-shim": "*",
  148. "phpunit/phpunit": ">=6.0.0 <8"
  149. },
  150. "suggest": {
  151. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  152. },
  153. "type": "library",
  154. "autoload": {
  155. "psr-4": {
  156. "Assert\\": "lib/Assert"
  157. },
  158. "files": [
  159. "lib/Assert/functions.php"
  160. ]
  161. },
  162. "notification-url": "https://packagist.org/downloads/",
  163. "license": [
  164. "BSD-2-Clause"
  165. ],
  166. "authors": [
  167. {
  168. "name": "Benjamin Eberlei",
  169. "email": "kontakt@beberlei.de",
  170. "role": "Lead Developer"
  171. },
  172. {
  173. "name": "Richard Quadling",
  174. "email": "rquadling@gmail.com",
  175. "role": "Collaborator"
  176. }
  177. ],
  178. "description": "Thin assertion library for input validation in business models.",
  179. "keywords": [
  180. "assert",
  181. "assertion",
  182. "validation"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/beberlei/assert/issues",
  186. "source": "https://github.com/beberlei/assert/tree/v3"
  187. },
  188. "time": "2019-12-19T17:51:41+00:00"
  189. },
  190. {
  191. "name": "cebe/markdown",
  192. "version": "1.2.1",
  193. "source": {
  194. "type": "git",
  195. "url": "https://github.com/cebe/markdown.git",
  196. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  197. },
  198. "dist": {
  199. "type": "zip",
  200. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  201. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  202. "shasum": ""
  203. },
  204. "require": {
  205. "lib-pcre": "*",
  206. "php": ">=5.4.0"
  207. },
  208. "require-dev": {
  209. "cebe/indent": "*",
  210. "facebook/xhprof": "*@dev",
  211. "phpunit/phpunit": "4.1.*"
  212. },
  213. "bin": [
  214. "bin/markdown"
  215. ],
  216. "type": "library",
  217. "extra": {
  218. "branch-alias": {
  219. "dev-master": "1.2.x-dev"
  220. }
  221. },
  222. "autoload": {
  223. "psr-4": {
  224. "cebe\\markdown\\": ""
  225. }
  226. },
  227. "notification-url": "https://packagist.org/downloads/",
  228. "license": [
  229. "MIT"
  230. ],
  231. "authors": [
  232. {
  233. "name": "Carsten Brandt",
  234. "email": "mail@cebe.cc",
  235. "homepage": "http://cebe.cc/",
  236. "role": "Creator"
  237. }
  238. ],
  239. "description": "A super fast, highly extensible markdown parser for PHP",
  240. "homepage": "https://github.com/cebe/markdown#readme",
  241. "keywords": [
  242. "extensible",
  243. "fast",
  244. "gfm",
  245. "markdown",
  246. "markdown-extra"
  247. ],
  248. "time": "2018-03-26T11:24:36+00:00"
  249. },
  250. {
  251. "name": "clue/stream-filter",
  252. "version": "v1.4.1",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/clue/php-stream-filter.git",
  256. "reference": "5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71",
  261. "reference": "5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71",
  262. "shasum": ""
  263. },
  264. "require": {
  265. "php": ">=5.3"
  266. },
  267. "require-dev": {
  268. "phpunit/phpunit": "^5.0 || ^4.8"
  269. },
  270. "type": "library",
  271. "autoload": {
  272. "psr-4": {
  273. "Clue\\StreamFilter\\": "src/"
  274. },
  275. "files": [
  276. "src/functions_include.php"
  277. ]
  278. },
  279. "notification-url": "https://packagist.org/downloads/",
  280. "license": [
  281. "MIT"
  282. ],
  283. "description": "A simple and modern approach to stream filtering in PHP",
  284. "homepage": "https://github.com/clue/php-stream-filter",
  285. "time": "2019-04-09T12:31:48+00:00"
  286. },
  287. {
  288. "name": "composer/ca-bundle",
  289. "version": "1.2.6",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/composer/ca-bundle.git",
  293. "reference": "47fe531de31fca4a1b997f87308e7d7804348f7e"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/47fe531de31fca4a1b997f87308e7d7804348f7e",
  298. "reference": "47fe531de31fca4a1b997f87308e7d7804348f7e",
  299. "shasum": ""
  300. },
  301. "require": {
  302. "ext-openssl": "*",
  303. "ext-pcre": "*",
  304. "php": "^5.3.2 || ^7.0 || ^8.0"
  305. },
  306. "require-dev": {
  307. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  308. "psr/log": "^1.0",
  309. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  310. },
  311. "type": "library",
  312. "extra": {
  313. "branch-alias": {
  314. "dev-master": "1.x-dev"
  315. }
  316. },
  317. "autoload": {
  318. "psr-4": {
  319. "Composer\\CaBundle\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Jordi Boggiano",
  329. "email": "j.boggiano@seld.be",
  330. "homepage": "http://seld.be"
  331. }
  332. ],
  333. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  334. "keywords": [
  335. "cabundle",
  336. "cacert",
  337. "certificate",
  338. "ssl",
  339. "tls"
  340. ],
  341. "support": {
  342. "irc": "irc://irc.freenode.org/composer",
  343. "issues": "https://github.com/composer/ca-bundle/issues",
  344. "source": "https://github.com/composer/ca-bundle/tree/master"
  345. },
  346. "time": "2020-01-13T10:02:55+00:00"
  347. },
  348. {
  349. "name": "composer/composer",
  350. "version": "1.10.x-dev",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/composer/composer.git",
  354. "reference": "270c7c3262b928835b78c2c809cb51aaabfe4fed"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/composer/composer/zipball/270c7c3262b928835b78c2c809cb51aaabfe4fed",
  359. "reference": "270c7c3262b928835b78c2c809cb51aaabfe4fed",
  360. "shasum": ""
  361. },
  362. "require": {
  363. "composer/ca-bundle": "^1.0",
  364. "composer/semver": "^1.0",
  365. "composer/spdx-licenses": "^1.2",
  366. "composer/xdebug-handler": "^1.1",
  367. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  368. "php": "^5.3.2 || ^7.0",
  369. "psr/log": "^1.0",
  370. "seld/jsonlint": "^1.4",
  371. "seld/phar-utils": "^1.0",
  372. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  373. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  374. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  375. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  376. },
  377. "conflict": {
  378. "symfony/console": "2.8.38"
  379. },
  380. "require-dev": {
  381. "phpspec/prophecy": "^1.10",
  382. "symfony/phpunit-bridge": "^3.4"
  383. },
  384. "suggest": {
  385. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  386. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  387. "ext-zlib": "Allow gzip compression of HTTP requests"
  388. },
  389. "bin": [
  390. "bin/composer"
  391. ],
  392. "type": "library",
  393. "extra": {
  394. "branch-alias": {
  395. "dev-master": "1.10-dev"
  396. }
  397. },
  398. "autoload": {
  399. "psr-4": {
  400. "Composer\\": "src/Composer"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Nils Adermann",
  410. "email": "naderman@naderman.de",
  411. "homepage": "http://www.naderman.de"
  412. },
  413. {
  414. "name": "Jordi Boggiano",
  415. "email": "j.boggiano@seld.be",
  416. "homepage": "http://seld.be"
  417. }
  418. ],
  419. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  420. "homepage": "https://getcomposer.org/",
  421. "keywords": [
  422. "autoload",
  423. "dependency",
  424. "package"
  425. ],
  426. "funding": [
  427. {
  428. "url": "https://packagist.com",
  429. "type": "custom"
  430. },
  431. {
  432. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  433. "type": "tidelift"
  434. }
  435. ],
  436. "time": "2020-04-28T14:04:00+00:00"
  437. },
  438. {
  439. "name": "composer/semver",
  440. "version": "1.5.1",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/composer/semver.git",
  444. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  449. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "php": "^5.3.2 || ^7.0"
  454. },
  455. "require-dev": {
  456. "phpunit/phpunit": "^4.5 || ^5.0.5"
  457. },
  458. "type": "library",
  459. "extra": {
  460. "branch-alias": {
  461. "dev-master": "1.x-dev"
  462. }
  463. },
  464. "autoload": {
  465. "psr-4": {
  466. "Composer\\Semver\\": "src"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Nils Adermann",
  476. "email": "naderman@naderman.de",
  477. "homepage": "http://www.naderman.de"
  478. },
  479. {
  480. "name": "Jordi Boggiano",
  481. "email": "j.boggiano@seld.be",
  482. "homepage": "http://seld.be"
  483. },
  484. {
  485. "name": "Rob Bast",
  486. "email": "rob.bast@gmail.com",
  487. "homepage": "http://robbast.nl"
  488. }
  489. ],
  490. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  491. "keywords": [
  492. "semantic",
  493. "semver",
  494. "validation",
  495. "versioning"
  496. ],
  497. "support": {
  498. "irc": "irc://irc.freenode.org/composer",
  499. "issues": "https://github.com/composer/semver/issues",
  500. "source": "https://github.com/composer/semver/tree/1.5.1"
  501. },
  502. "time": "2020-01-13T12:06:48+00:00"
  503. },
  504. {
  505. "name": "composer/spdx-licenses",
  506. "version": "1.5.3",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/composer/spdx-licenses.git",
  510. "reference": "0c3e51e1880ca149682332770e25977c70cf9dae"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/0c3e51e1880ca149682332770e25977c70cf9dae",
  515. "reference": "0c3e51e1880ca149682332770e25977c70cf9dae",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "php": "^5.3.2 || ^7.0 || ^8.0"
  520. },
  521. "require-dev": {
  522. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  523. },
  524. "type": "library",
  525. "extra": {
  526. "branch-alias": {
  527. "dev-master": "1.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "psr-4": {
  532. "Composer\\Spdx\\": "src"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Nils Adermann",
  542. "email": "naderman@naderman.de",
  543. "homepage": "http://www.naderman.de"
  544. },
  545. {
  546. "name": "Jordi Boggiano",
  547. "email": "j.boggiano@seld.be",
  548. "homepage": "http://seld.be"
  549. },
  550. {
  551. "name": "Rob Bast",
  552. "email": "rob.bast@gmail.com",
  553. "homepage": "http://robbast.nl"
  554. }
  555. ],
  556. "description": "SPDX licenses list and validation library.",
  557. "keywords": [
  558. "license",
  559. "spdx",
  560. "validator"
  561. ],
  562. "support": {
  563. "irc": "irc://irc.freenode.org/composer",
  564. "issues": "https://github.com/composer/spdx-licenses/issues",
  565. "source": "https://github.com/composer/spdx-licenses/tree/1.5.3"
  566. },
  567. "time": "2020-02-14T07:44:31+00:00"
  568. },
  569. {
  570. "name": "composer/xdebug-handler",
  571. "version": "1.4.1",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/composer/xdebug-handler.git",
  575. "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7",
  580. "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": "^5.3.2 || ^7.0 || ^8.0",
  585. "psr/log": "^1.0"
  586. },
  587. "require-dev": {
  588. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  589. },
  590. "type": "library",
  591. "autoload": {
  592. "psr-4": {
  593. "Composer\\XdebugHandler\\": "src"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "John Stevenson",
  603. "email": "john-stevenson@blueyonder.co.uk"
  604. }
  605. ],
  606. "description": "Restarts a process without Xdebug.",
  607. "keywords": [
  608. "Xdebug",
  609. "performance"
  610. ],
  611. "support": {
  612. "irc": "irc://irc.freenode.org/composer",
  613. "issues": "https://github.com/composer/xdebug-handler/issues",
  614. "source": "https://github.com/composer/xdebug-handler/tree/master"
  615. },
  616. "funding": [
  617. {
  618. "url": "https://packagist.com",
  619. "type": "custom"
  620. }
  621. ],
  622. "time": "2020-03-01T12:26:26+00:00"
  623. },
  624. {
  625. "name": "container-interop/container-interop",
  626. "version": "1.2.0",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/container-interop/container-interop.git",
  630. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  635. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  636. "shasum": ""
  637. },
  638. "require": {
  639. "psr/container": "^1.0"
  640. },
  641. "type": "library",
  642. "autoload": {
  643. "psr-4": {
  644. "Interop\\Container\\": "src/Interop/Container/"
  645. }
  646. },
  647. "notification-url": "https://packagist.org/downloads/",
  648. "license": [
  649. "MIT"
  650. ],
  651. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  652. "homepage": "https://github.com/container-interop/container-interop",
  653. "abandoned": "psr/container",
  654. "time": "2017-02-14T19:40:03+00:00"
  655. },
  656. {
  657. "name": "dasprid/enum",
  658. "version": "1.0.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/DASPRiD/Enum.git",
  662. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
  667. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
  668. "shasum": ""
  669. },
  670. "require-dev": {
  671. "phpunit/phpunit": "^6.4",
  672. "squizlabs/php_codesniffer": "^3.1"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "DASPRiD\\Enum\\": "src/"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "BSD-2-Clause"
  683. ],
  684. "description": "PHP 7.1 enum implementation",
  685. "time": "2017-10-25T22:45:27+00:00"
  686. },
  687. {
  688. "name": "doctrine/annotations",
  689. "version": "v1.8.0",
  690. "source": {
  691. "type": "git",
  692. "url": "https://github.com/doctrine/annotations.git",
  693. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc"
  694. },
  695. "dist": {
  696. "type": "zip",
  697. "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc",
  698. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc",
  699. "shasum": ""
  700. },
  701. "require": {
  702. "doctrine/lexer": "1.*",
  703. "php": "^7.1"
  704. },
  705. "require-dev": {
  706. "doctrine/cache": "1.*",
  707. "phpunit/phpunit": "^7.5"
  708. },
  709. "type": "library",
  710. "extra": {
  711. "branch-alias": {
  712. "dev-master": "1.7.x-dev"
  713. }
  714. },
  715. "autoload": {
  716. "psr-4": {
  717. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  718. }
  719. },
  720. "notification-url": "https://packagist.org/downloads/",
  721. "license": [
  722. "MIT"
  723. ],
  724. "description": "Docblock Annotations Parser",
  725. "homepage": "http://www.doctrine-project.org",
  726. "time": "2019-10-01T18:55:10+00:00"
  727. },
  728. {
  729. "name": "doctrine/cache",
  730. "version": "1.10.0",
  731. "source": {
  732. "type": "git",
  733. "url": "https://github.com/doctrine/cache.git",
  734. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  735. },
  736. "dist": {
  737. "type": "zip",
  738. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  739. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  740. "shasum": ""
  741. },
  742. "require": {
  743. "php": "~7.1"
  744. },
  745. "conflict": {
  746. "doctrine/common": ">2.2,<2.4"
  747. },
  748. "require-dev": {
  749. "alcaeus/mongo-php-adapter": "^1.1",
  750. "doctrine/coding-standard": "^6.0",
  751. "mongodb/mongodb": "^1.1",
  752. "phpunit/phpunit": "^7.0",
  753. "predis/predis": "~1.0"
  754. },
  755. "suggest": {
  756. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  757. },
  758. "type": "library",
  759. "extra": {
  760. "branch-alias": {
  761. "dev-master": "1.9.x-dev"
  762. }
  763. },
  764. "autoload": {
  765. "psr-4": {
  766. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Guilherme Blanco",
  776. "email": "guilhermeblanco@gmail.com"
  777. },
  778. {
  779. "name": "Roman Borschel",
  780. "email": "roman@code-factory.org"
  781. },
  782. {
  783. "name": "Benjamin Eberlei",
  784. "email": "kontakt@beberlei.de"
  785. },
  786. {
  787. "name": "Jonathan Wage",
  788. "email": "jonwage@gmail.com"
  789. },
  790. {
  791. "name": "Johannes Schmitt",
  792. "email": "schmittjoh@gmail.com"
  793. }
  794. ],
  795. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  796. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  797. "keywords": [
  798. "abstraction",
  799. "apcu",
  800. "cache",
  801. "caching",
  802. "couchdb",
  803. "memcached",
  804. "php",
  805. "redis",
  806. "xcache"
  807. ],
  808. "support": {
  809. "issues": "https://github.com/doctrine/cache/issues",
  810. "source": "https://github.com/doctrine/cache/tree/1.10.0"
  811. },
  812. "time": "2019-11-29T15:36:20+00:00"
  813. },
  814. {
  815. "name": "doctrine/collections",
  816. "version": "1.6.4",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/doctrine/collections.git",
  820. "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
  825. "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "php": "^7.1.3"
  830. },
  831. "require-dev": {
  832. "doctrine/coding-standard": "^6.0",
  833. "phpstan/phpstan-shim": "^0.9.2",
  834. "phpunit/phpunit": "^7.0",
  835. "vimeo/psalm": "^3.2.2"
  836. },
  837. "type": "library",
  838. "extra": {
  839. "branch-alias": {
  840. "dev-master": "1.6.x-dev"
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Guilherme Blanco",
  855. "email": "guilhermeblanco@gmail.com"
  856. },
  857. {
  858. "name": "Roman Borschel",
  859. "email": "roman@code-factory.org"
  860. },
  861. {
  862. "name": "Benjamin Eberlei",
  863. "email": "kontakt@beberlei.de"
  864. },
  865. {
  866. "name": "Jonathan Wage",
  867. "email": "jonwage@gmail.com"
  868. },
  869. {
  870. "name": "Johannes Schmitt",
  871. "email": "schmittjoh@gmail.com"
  872. }
  873. ],
  874. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  875. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  876. "keywords": [
  877. "array",
  878. "collections",
  879. "iterators",
  880. "php"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/doctrine/collections/issues",
  884. "source": "https://github.com/doctrine/collections/tree/1.6.4"
  885. },
  886. "time": "2019-11-13T13:07:11+00:00"
  887. },
  888. {
  889. "name": "doctrine/common",
  890. "version": "2.12.0",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/doctrine/common.git",
  894. "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6",
  899. "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "doctrine/annotations": "^1.0",
  904. "doctrine/cache": "^1.0",
  905. "doctrine/collections": "^1.0",
  906. "doctrine/event-manager": "^1.0",
  907. "doctrine/inflector": "^1.0",
  908. "doctrine/lexer": "^1.0",
  909. "doctrine/persistence": "^1.1",
  910. "doctrine/reflection": "^1.0",
  911. "php": "^7.1"
  912. },
  913. "require-dev": {
  914. "doctrine/coding-standard": "^1.0",
  915. "phpstan/phpstan": "^0.11",
  916. "phpstan/phpstan-phpunit": "^0.11",
  917. "phpunit/phpunit": "^7.0",
  918. "squizlabs/php_codesniffer": "^3.0",
  919. "symfony/phpunit-bridge": "^4.0.5"
  920. },
  921. "type": "library",
  922. "extra": {
  923. "branch-alias": {
  924. "dev-master": "2.11.x-dev"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "Doctrine\\Common\\": "lib/Doctrine/Common"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Guilherme Blanco",
  939. "email": "guilhermeblanco@gmail.com"
  940. },
  941. {
  942. "name": "Roman Borschel",
  943. "email": "roman@code-factory.org"
  944. },
  945. {
  946. "name": "Benjamin Eberlei",
  947. "email": "kontakt@beberlei.de"
  948. },
  949. {
  950. "name": "Jonathan Wage",
  951. "email": "jonwage@gmail.com"
  952. },
  953. {
  954. "name": "Johannes Schmitt",
  955. "email": "schmittjoh@gmail.com"
  956. },
  957. {
  958. "name": "Marco Pivetta",
  959. "email": "ocramius@gmail.com"
  960. }
  961. ],
  962. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  963. "homepage": "https://www.doctrine-project.org/projects/common.html",
  964. "keywords": [
  965. "common",
  966. "doctrine",
  967. "php"
  968. ],
  969. "support": {
  970. "issues": "https://github.com/doctrine/common/issues",
  971. "source": "https://github.com/doctrine/common/tree/2.12.0"
  972. },
  973. "time": "2020-01-10T15:49:25+00:00"
  974. },
  975. {
  976. "name": "doctrine/dbal",
  977. "version": "v2.10.1",
  978. "source": {
  979. "type": "git",
  980. "url": "https://github.com/doctrine/dbal.git",
  981. "reference": "c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8"
  982. },
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8",
  986. "reference": "c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8",
  987. "shasum": ""
  988. },
  989. "require": {
  990. "doctrine/cache": "^1.0",
  991. "doctrine/event-manager": "^1.0",
  992. "ext-pdo": "*",
  993. "php": "^7.2"
  994. },
  995. "require-dev": {
  996. "doctrine/coding-standard": "^6.0",
  997. "jetbrains/phpstorm-stubs": "^2019.1",
  998. "phpstan/phpstan": "^0.11.3",
  999. "phpunit/phpunit": "^8.4.1",
  1000. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0"
  1001. },
  1002. "suggest": {
  1003. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1004. },
  1005. "bin": [
  1006. "bin/doctrine-dbal"
  1007. ],
  1008. "type": "library",
  1009. "extra": {
  1010. "branch-alias": {
  1011. "dev-master": "2.10.x-dev",
  1012. "dev-develop": "3.0.x-dev"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Guilherme Blanco",
  1027. "email": "guilhermeblanco@gmail.com"
  1028. },
  1029. {
  1030. "name": "Roman Borschel",
  1031. "email": "roman@code-factory.org"
  1032. },
  1033. {
  1034. "name": "Benjamin Eberlei",
  1035. "email": "kontakt@beberlei.de"
  1036. },
  1037. {
  1038. "name": "Jonathan Wage",
  1039. "email": "jonwage@gmail.com"
  1040. }
  1041. ],
  1042. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1043. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1044. "keywords": [
  1045. "abstraction",
  1046. "database",
  1047. "db2",
  1048. "dbal",
  1049. "mariadb",
  1050. "mssql",
  1051. "mysql",
  1052. "oci8",
  1053. "oracle",
  1054. "pdo",
  1055. "pgsql",
  1056. "postgresql",
  1057. "queryobject",
  1058. "sasql",
  1059. "sql",
  1060. "sqlanywhere",
  1061. "sqlite",
  1062. "sqlserver",
  1063. "sqlsrv"
  1064. ],
  1065. "support": {
  1066. "issues": "https://github.com/doctrine/dbal/issues",
  1067. "source": "https://github.com/doctrine/dbal/tree/2.10"
  1068. },
  1069. "time": "2020-01-04T12:56:21+00:00"
  1070. },
  1071. {
  1072. "name": "doctrine/doctrine-bundle",
  1073. "version": "1.12.7",
  1074. "source": {
  1075. "type": "git",
  1076. "url": "https://github.com/doctrine/DoctrineBundle.git",
  1077. "reference": "18fb7d271676dcb8e882adb0157ac1445c8fe89c"
  1078. },
  1079. "dist": {
  1080. "type": "zip",
  1081. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/18fb7d271676dcb8e882adb0157ac1445c8fe89c",
  1082. "reference": "18fb7d271676dcb8e882adb0157ac1445c8fe89c",
  1083. "shasum": ""
  1084. },
  1085. "require": {
  1086. "doctrine/dbal": "^2.5.12",
  1087. "doctrine/doctrine-cache-bundle": "~1.2",
  1088. "doctrine/persistence": "^1.3.3",
  1089. "jdorn/sql-formatter": "^1.2.16",
  1090. "php": "^7.1",
  1091. "symfony/cache": "^3.4.30|^4.3.3",
  1092. "symfony/config": "^3.4.30|^4.3.3",
  1093. "symfony/console": "^3.4.30|^4.3.3",
  1094. "symfony/dependency-injection": "^3.4.30|^4.3.3",
  1095. "symfony/doctrine-bridge": "^3.4.30|^4.3.3",
  1096. "symfony/framework-bundle": "^3.4.30|^4.3.3",
  1097. "symfony/service-contracts": "^1.1.1|^2.0"
  1098. },
  1099. "conflict": {
  1100. "doctrine/orm": "<2.6",
  1101. "twig/twig": "<1.34|>=2.0,<2.4"
  1102. },
  1103. "require-dev": {
  1104. "doctrine/coding-standard": "^6.0",
  1105. "doctrine/orm": "^2.6",
  1106. "ocramius/proxy-manager": "^2.1",
  1107. "php-coveralls/php-coveralls": "^2.1",
  1108. "phpunit/phpunit": "^7.5",
  1109. "symfony/phpunit-bridge": "^4.2",
  1110. "symfony/property-info": "^3.4.30|^4.3.3",
  1111. "symfony/proxy-manager-bridge": "^3.4|^4|^5",
  1112. "symfony/twig-bridge": "^3.4|^4.1",
  1113. "symfony/validator": "^3.4.30|^4.3.3",
  1114. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3",
  1115. "symfony/yaml": "^3.4.30|^4.3.3",
  1116. "twig/twig": "^1.34|^2.12"
  1117. },
  1118. "suggest": {
  1119. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  1120. "symfony/web-profiler-bundle": "To use the data collector."
  1121. },
  1122. "type": "symfony-bundle",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.12.x-dev"
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Fabien Potencier",
  1140. "email": "fabien@symfony.com"
  1141. },
  1142. {
  1143. "name": "Benjamin Eberlei",
  1144. "email": "kontakt@beberlei.de"
  1145. },
  1146. {
  1147. "name": "Symfony Community",
  1148. "homepage": "http://symfony.com/contributors"
  1149. },
  1150. {
  1151. "name": "Doctrine Project",
  1152. "homepage": "http://www.doctrine-project.org/"
  1153. }
  1154. ],
  1155. "description": "Symfony DoctrineBundle",
  1156. "homepage": "http://www.doctrine-project.org",
  1157. "keywords": [
  1158. "database",
  1159. "dbal",
  1160. "orm",
  1161. "persistence"
  1162. ],
  1163. "support": {
  1164. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  1165. "source": "https://github.com/doctrine/DoctrineBundle/tree/1.12.7"
  1166. },
  1167. "time": "2020-01-10T12:25:22+00:00"
  1168. },
  1169. {
  1170. "name": "doctrine/doctrine-cache-bundle",
  1171. "version": "1.4.0",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  1175. "reference": "6bee2f9b339847e8a984427353670bad4e7bdccb"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/6bee2f9b339847e8a984427353670bad4e7bdccb",
  1180. "reference": "6bee2f9b339847e8a984427353670bad4e7bdccb",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "doctrine/cache": "^1.4.2",
  1185. "doctrine/inflector": "^1.0",
  1186. "php": "^7.1",
  1187. "symfony/doctrine-bridge": "^3.4|^4.0"
  1188. },
  1189. "require-dev": {
  1190. "instaclick/coding-standard": "~1.1",
  1191. "instaclick/object-calisthenics-sniffs": "dev-master",
  1192. "instaclick/symfony2-coding-standard": "dev-remaster",
  1193. "phpunit/phpunit": "^7.0",
  1194. "predis/predis": "~0.8",
  1195. "satooshi/php-coveralls": "^1.0",
  1196. "squizlabs/php_codesniffer": "~1.5",
  1197. "symfony/console": "^3.4|^4.0",
  1198. "symfony/finder": "^3.4|^4.0",
  1199. "symfony/framework-bundle": "^3.4|^4.0",
  1200. "symfony/phpunit-bridge": "^3.4|^4.0",
  1201. "symfony/security-acl": "^2.8",
  1202. "symfony/validator": "^3.4|^4.0",
  1203. "symfony/yaml": "^3.4|^4.0"
  1204. },
  1205. "suggest": {
  1206. "symfony/security-acl": "For using this bundle to cache ACLs"
  1207. },
  1208. "type": "symfony-bundle",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-master": "1.4.x-dev"
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  1217. },
  1218. "exclude-from-classmap": [
  1219. "/Tests/"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "authors": [
  1227. {
  1228. "name": "Fabien Potencier",
  1229. "email": "fabien@symfony.com"
  1230. },
  1231. {
  1232. "name": "Benjamin Eberlei",
  1233. "email": "kontakt@beberlei.de"
  1234. },
  1235. {
  1236. "name": "Fabio B. Silva",
  1237. "email": "fabio.bat.silva@gmail.com"
  1238. },
  1239. {
  1240. "name": "Guilherme Blanco",
  1241. "email": "guilhermeblanco@hotmail.com"
  1242. },
  1243. {
  1244. "name": "Symfony Community",
  1245. "homepage": "http://symfony.com/contributors"
  1246. },
  1247. {
  1248. "name": "Doctrine Project",
  1249. "homepage": "http://www.doctrine-project.org/"
  1250. }
  1251. ],
  1252. "description": "Symfony Bundle for Doctrine Cache",
  1253. "homepage": "https://www.doctrine-project.org",
  1254. "keywords": [
  1255. "cache",
  1256. "caching"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/DoctrineCacheBundle/issues",
  1260. "source": "https://github.com/doctrine/DoctrineCacheBundle/tree/1.4.0"
  1261. },
  1262. "time": "2019-11-29T11:22:01+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/event-manager",
  1266. "version": "1.1.0",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/event-manager.git",
  1270. "reference": "629572819973f13486371cb611386eb17851e85c"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  1275. "reference": "629572819973f13486371cb611386eb17851e85c",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "^7.1"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": "<2.9@dev"
  1283. },
  1284. "require-dev": {
  1285. "doctrine/coding-standard": "^6.0",
  1286. "phpunit/phpunit": "^7.0"
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "branch-alias": {
  1291. "dev-master": "1.0.x-dev"
  1292. }
  1293. },
  1294. "autoload": {
  1295. "psr-4": {
  1296. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1297. }
  1298. },
  1299. "notification-url": "https://packagist.org/downloads/",
  1300. "license": [
  1301. "MIT"
  1302. ],
  1303. "authors": [
  1304. {
  1305. "name": "Guilherme Blanco",
  1306. "email": "guilhermeblanco@gmail.com"
  1307. },
  1308. {
  1309. "name": "Roman Borschel",
  1310. "email": "roman@code-factory.org"
  1311. },
  1312. {
  1313. "name": "Benjamin Eberlei",
  1314. "email": "kontakt@beberlei.de"
  1315. },
  1316. {
  1317. "name": "Jonathan Wage",
  1318. "email": "jonwage@gmail.com"
  1319. },
  1320. {
  1321. "name": "Johannes Schmitt",
  1322. "email": "schmittjoh@gmail.com"
  1323. },
  1324. {
  1325. "name": "Marco Pivetta",
  1326. "email": "ocramius@gmail.com"
  1327. }
  1328. ],
  1329. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1330. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1331. "keywords": [
  1332. "event",
  1333. "event dispatcher",
  1334. "event manager",
  1335. "event system",
  1336. "events"
  1337. ],
  1338. "support": {
  1339. "issues": "https://github.com/doctrine/event-manager/issues",
  1340. "source": "https://github.com/doctrine/event-manager/tree/1.1.0"
  1341. },
  1342. "time": "2019-11-10T09:48:07+00:00"
  1343. },
  1344. {
  1345. "name": "doctrine/inflector",
  1346. "version": "1.3.1",
  1347. "source": {
  1348. "type": "git",
  1349. "url": "https://github.com/doctrine/inflector.git",
  1350. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
  1351. },
  1352. "dist": {
  1353. "type": "zip",
  1354. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  1355. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  1356. "shasum": ""
  1357. },
  1358. "require": {
  1359. "php": "^7.1"
  1360. },
  1361. "require-dev": {
  1362. "phpunit/phpunit": "^6.2"
  1363. },
  1364. "type": "library",
  1365. "extra": {
  1366. "branch-alias": {
  1367. "dev-master": "1.3.x-dev"
  1368. }
  1369. },
  1370. "autoload": {
  1371. "psr-4": {
  1372. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1373. }
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "MIT"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Guilherme Blanco",
  1382. "email": "guilhermeblanco@gmail.com"
  1383. },
  1384. {
  1385. "name": "Roman Borschel",
  1386. "email": "roman@code-factory.org"
  1387. },
  1388. {
  1389. "name": "Benjamin Eberlei",
  1390. "email": "kontakt@beberlei.de"
  1391. },
  1392. {
  1393. "name": "Jonathan Wage",
  1394. "email": "jonwage@gmail.com"
  1395. },
  1396. {
  1397. "name": "Johannes Schmitt",
  1398. "email": "schmittjoh@gmail.com"
  1399. }
  1400. ],
  1401. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1402. "homepage": "http://www.doctrine-project.org",
  1403. "keywords": [
  1404. "inflection",
  1405. "pluralize",
  1406. "singularize",
  1407. "string"
  1408. ],
  1409. "support": {
  1410. "issues": "https://github.com/doctrine/inflector/issues",
  1411. "source": "https://github.com/doctrine/inflector/tree/1.3.1"
  1412. },
  1413. "time": "2019-10-30T19:59:35+00:00"
  1414. },
  1415. {
  1416. "name": "doctrine/instantiator",
  1417. "version": "1.3.0",
  1418. "source": {
  1419. "type": "git",
  1420. "url": "https://github.com/doctrine/instantiator.git",
  1421. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  1422. },
  1423. "dist": {
  1424. "type": "zip",
  1425. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  1426. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  1427. "shasum": ""
  1428. },
  1429. "require": {
  1430. "php": "^7.1"
  1431. },
  1432. "require-dev": {
  1433. "doctrine/coding-standard": "^6.0",
  1434. "ext-pdo": "*",
  1435. "ext-phar": "*",
  1436. "phpbench/phpbench": "^0.13",
  1437. "phpstan/phpstan-phpunit": "^0.11",
  1438. "phpstan/phpstan-shim": "^0.11",
  1439. "phpunit/phpunit": "^7.0"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "1.2.x-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "psr-4": {
  1449. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Marco Pivetta",
  1459. "email": "ocramius@gmail.com",
  1460. "homepage": "http://ocramius.github.com/"
  1461. }
  1462. ],
  1463. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1464. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1465. "keywords": [
  1466. "constructor",
  1467. "instantiate"
  1468. ],
  1469. "support": {
  1470. "issues": "https://github.com/doctrine/instantiator/issues",
  1471. "source": "https://github.com/doctrine/instantiator/tree/master"
  1472. },
  1473. "time": "2019-10-21T16:45:58+00:00"
  1474. },
  1475. {
  1476. "name": "doctrine/lexer",
  1477. "version": "1.2.0",
  1478. "source": {
  1479. "type": "git",
  1480. "url": "https://github.com/doctrine/lexer.git",
  1481. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  1482. },
  1483. "dist": {
  1484. "type": "zip",
  1485. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  1486. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  1487. "shasum": ""
  1488. },
  1489. "require": {
  1490. "php": "^7.2"
  1491. },
  1492. "require-dev": {
  1493. "doctrine/coding-standard": "^6.0",
  1494. "phpstan/phpstan": "^0.11.8",
  1495. "phpunit/phpunit": "^8.2"
  1496. },
  1497. "type": "library",
  1498. "extra": {
  1499. "branch-alias": {
  1500. "dev-master": "1.2.x-dev"
  1501. }
  1502. },
  1503. "autoload": {
  1504. "psr-4": {
  1505. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1506. }
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Guilherme Blanco",
  1515. "email": "guilhermeblanco@gmail.com"
  1516. },
  1517. {
  1518. "name": "Roman Borschel",
  1519. "email": "roman@code-factory.org"
  1520. },
  1521. {
  1522. "name": "Johannes Schmitt",
  1523. "email": "schmittjoh@gmail.com"
  1524. }
  1525. ],
  1526. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1527. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1528. "keywords": [
  1529. "annotations",
  1530. "docblock",
  1531. "lexer",
  1532. "parser",
  1533. "php"
  1534. ],
  1535. "support": {
  1536. "issues": "https://github.com/doctrine/lexer/issues",
  1537. "source": "https://github.com/doctrine/lexer/tree/1.2.0"
  1538. },
  1539. "time": "2019-10-30T14:39:59+00:00"
  1540. },
  1541. {
  1542. "name": "doctrine/orm",
  1543. "version": "v2.7.1",
  1544. "source": {
  1545. "type": "git",
  1546. "url": "https://github.com/doctrine/orm.git",
  1547. "reference": "445796af0e873d9bd04f2502d322a7d5009b6846"
  1548. },
  1549. "dist": {
  1550. "type": "zip",
  1551. "url": "https://api.github.com/repos/doctrine/orm/zipball/445796af0e873d9bd04f2502d322a7d5009b6846",
  1552. "reference": "445796af0e873d9bd04f2502d322a7d5009b6846",
  1553. "shasum": ""
  1554. },
  1555. "require": {
  1556. "doctrine/annotations": "^1.8",
  1557. "doctrine/cache": "^1.9.1",
  1558. "doctrine/collections": "^1.5",
  1559. "doctrine/common": "^2.11",
  1560. "doctrine/dbal": "^2.9.3",
  1561. "doctrine/event-manager": "^1.1",
  1562. "doctrine/instantiator": "^1.3",
  1563. "doctrine/persistence": "^1.2",
  1564. "ext-pdo": "*",
  1565. "ocramius/package-versions": "^1.2",
  1566. "php": "^7.1",
  1567. "symfony/console": "^3.0|^4.0|^5.0"
  1568. },
  1569. "require-dev": {
  1570. "doctrine/coding-standard": "^5.0",
  1571. "phpunit/phpunit": "^7.5",
  1572. "symfony/yaml": "^3.4|^4.0|^5.0"
  1573. },
  1574. "suggest": {
  1575. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1576. },
  1577. "bin": [
  1578. "bin/doctrine"
  1579. ],
  1580. "type": "library",
  1581. "extra": {
  1582. "branch-alias": {
  1583. "dev-master": "2.7.x-dev"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "psr-4": {
  1588. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1589. }
  1590. },
  1591. "notification-url": "https://packagist.org/downloads/",
  1592. "license": [
  1593. "MIT"
  1594. ],
  1595. "authors": [
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Roman Borschel",
  1602. "email": "roman@code-factory.org"
  1603. },
  1604. {
  1605. "name": "Benjamin Eberlei",
  1606. "email": "kontakt@beberlei.de"
  1607. },
  1608. {
  1609. "name": "Jonathan Wage",
  1610. "email": "jonwage@gmail.com"
  1611. },
  1612. {
  1613. "name": "Marco Pivetta",
  1614. "email": "ocramius@gmail.com"
  1615. }
  1616. ],
  1617. "description": "Object-Relational-Mapper for PHP",
  1618. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1619. "keywords": [
  1620. "database",
  1621. "orm"
  1622. ],
  1623. "time": "2020-02-15T14:35:56+00:00"
  1624. },
  1625. {
  1626. "name": "doctrine/persistence",
  1627. "version": "1.3.6",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/doctrine/persistence.git",
  1631. "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/doctrine/persistence/zipball/5dd3ac5eebef2d0b074daa4440bb18f93132dee4",
  1636. "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4",
  1637. "shasum": ""
  1638. },
  1639. "require": {
  1640. "doctrine/annotations": "^1.0",
  1641. "doctrine/cache": "^1.0",
  1642. "doctrine/collections": "^1.0",
  1643. "doctrine/event-manager": "^1.0",
  1644. "doctrine/reflection": "^1.1",
  1645. "php": "^7.1"
  1646. },
  1647. "conflict": {
  1648. "doctrine/common": "<2.10@dev"
  1649. },
  1650. "require-dev": {
  1651. "doctrine/coding-standard": "^6.0",
  1652. "phpstan/phpstan": "^0.11",
  1653. "phpunit/phpunit": "^7.0"
  1654. },
  1655. "type": "library",
  1656. "extra": {
  1657. "branch-alias": {
  1658. "dev-master": "1.3.x-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1664. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1665. }
  1666. },
  1667. "notification-url": "https://packagist.org/downloads/",
  1668. "license": [
  1669. "MIT"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "Guilherme Blanco",
  1674. "email": "guilhermeblanco@gmail.com"
  1675. },
  1676. {
  1677. "name": "Roman Borschel",
  1678. "email": "roman@code-factory.org"
  1679. },
  1680. {
  1681. "name": "Benjamin Eberlei",
  1682. "email": "kontakt@beberlei.de"
  1683. },
  1684. {
  1685. "name": "Jonathan Wage",
  1686. "email": "jonwage@gmail.com"
  1687. },
  1688. {
  1689. "name": "Johannes Schmitt",
  1690. "email": "schmittjoh@gmail.com"
  1691. },
  1692. {
  1693. "name": "Marco Pivetta",
  1694. "email": "ocramius@gmail.com"
  1695. }
  1696. ],
  1697. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1698. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1699. "keywords": [
  1700. "mapper",
  1701. "object",
  1702. "odm",
  1703. "orm",
  1704. "persistence"
  1705. ],
  1706. "support": {
  1707. "issues": "https://github.com/doctrine/persistence/issues",
  1708. "source": "https://github.com/doctrine/persistence/tree/1.3.6"
  1709. },
  1710. "time": "2020-01-16T22:06:23+00:00"
  1711. },
  1712. {
  1713. "name": "doctrine/reflection",
  1714. "version": "v1.1.0",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/doctrine/reflection.git",
  1718. "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c",
  1723. "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "doctrine/annotations": "^1.0",
  1728. "ext-tokenizer": "*",
  1729. "php": "^7.1"
  1730. },
  1731. "conflict": {
  1732. "doctrine/common": "<2.9"
  1733. },
  1734. "require-dev": {
  1735. "doctrine/coding-standard": "^5.0",
  1736. "doctrine/common": "^2.10",
  1737. "phpstan/phpstan": "^0.11.0",
  1738. "phpstan/phpstan-phpunit": "^0.11.0",
  1739. "phpunit/phpunit": "^7.0"
  1740. },
  1741. "type": "library",
  1742. "extra": {
  1743. "branch-alias": {
  1744. "dev-master": "1.0.x-dev"
  1745. }
  1746. },
  1747. "autoload": {
  1748. "psr-4": {
  1749. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1750. }
  1751. },
  1752. "notification-url": "https://packagist.org/downloads/",
  1753. "license": [
  1754. "MIT"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Guilherme Blanco",
  1759. "email": "guilhermeblanco@gmail.com"
  1760. },
  1761. {
  1762. "name": "Roman Borschel",
  1763. "email": "roman@code-factory.org"
  1764. },
  1765. {
  1766. "name": "Benjamin Eberlei",
  1767. "email": "kontakt@beberlei.de"
  1768. },
  1769. {
  1770. "name": "Jonathan Wage",
  1771. "email": "jonwage@gmail.com"
  1772. },
  1773. {
  1774. "name": "Johannes Schmitt",
  1775. "email": "schmittjoh@gmail.com"
  1776. },
  1777. {
  1778. "name": "Marco Pivetta",
  1779. "email": "ocramius@gmail.com"
  1780. }
  1781. ],
  1782. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1783. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1784. "keywords": [
  1785. "reflection",
  1786. "static"
  1787. ],
  1788. "support": {
  1789. "issues": "https://github.com/doctrine/reflection/issues",
  1790. "source": "https://github.com/doctrine/reflection/tree/master"
  1791. },
  1792. "time": "2020-01-08T19:53:19+00:00"
  1793. },
  1794. {
  1795. "name": "egulias/email-validator",
  1796. "version": "2.1.17",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/egulias/EmailValidator.git",
  1800. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  1805. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  1806. "shasum": ""
  1807. },
  1808. "require": {
  1809. "doctrine/lexer": "^1.0.1",
  1810. "php": ">=5.5",
  1811. "symfony/polyfill-intl-idn": "^1.10"
  1812. },
  1813. "require-dev": {
  1814. "dominicsayers/isemail": "^3.0.7",
  1815. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1816. "satooshi/php-coveralls": "^1.0.1"
  1817. },
  1818. "suggest": {
  1819. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1820. },
  1821. "type": "library",
  1822. "extra": {
  1823. "branch-alias": {
  1824. "dev-master": "2.1.x-dev"
  1825. }
  1826. },
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Egulias\\EmailValidator\\": "EmailValidator"
  1830. }
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "Eduardo Gulias Davis"
  1839. }
  1840. ],
  1841. "description": "A library for validating emails against several RFCs",
  1842. "homepage": "https://github.com/egulias/EmailValidator",
  1843. "keywords": [
  1844. "email",
  1845. "emailvalidation",
  1846. "emailvalidator",
  1847. "validation",
  1848. "validator"
  1849. ],
  1850. "support": {
  1851. "issues": "https://github.com/egulias/EmailValidator/issues",
  1852. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  1853. },
  1854. "time": "2020-02-13T22:36:52+00:00"
  1855. },
  1856. {
  1857. "name": "endroid/installer",
  1858. "version": "1.1.6",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/endroid/installer.git",
  1862. "reference": "2014fd3ee358dda50700e392d0b1ed78631a1264"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/endroid/installer/zipball/2014fd3ee358dda50700e392d0b1ed78631a1264",
  1867. "reference": "2014fd3ee358dda50700e392d0b1ed78631a1264",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "composer-plugin-api": "^1.1",
  1872. "php": ">=7.2"
  1873. },
  1874. "require-dev": {
  1875. "composer/composer": "^1.8",
  1876. "endroid/test": "dev-master"
  1877. },
  1878. "type": "composer-plugin",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "1.x-dev"
  1882. },
  1883. "class": "Endroid\\Installer\\Installer"
  1884. },
  1885. "autoload": {
  1886. "psr-4": {
  1887. "Endroid\\Installer\\": "src"
  1888. }
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Jeroen van den Enden",
  1897. "email": "info@endroid.nl"
  1898. }
  1899. ],
  1900. "time": "2019-11-06T09:09:16+00:00"
  1901. },
  1902. {
  1903. "name": "endroid/qr-code",
  1904. "version": "3.7.7",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/endroid/qr-code.git",
  1908. "reference": "bfb64f163628b59ba250a6a1da95b6252b5718c3"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/endroid/qr-code/zipball/bfb64f163628b59ba250a6a1da95b6252b5718c3",
  1913. "reference": "bfb64f163628b59ba250a6a1da95b6252b5718c3",
  1914. "shasum": ""
  1915. },
  1916. "require": {
  1917. "bacon/bacon-qr-code": "^2.0",
  1918. "ext-gd": "*",
  1919. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  1920. "myclabs/php-enum": "^1.5",
  1921. "php": ">=7.2",
  1922. "symfony/http-foundation": "^3.4||^4.2.12||^5.0",
  1923. "symfony/options-resolver": "^3.4||^4.0||^5.0",
  1924. "symfony/property-access": "^3.4||^4.0||^5.0"
  1925. },
  1926. "require-dev": {
  1927. "endroid/test": "dev-master"
  1928. },
  1929. "type": "library",
  1930. "extra": {
  1931. "branch-alias": {
  1932. "dev-master": "3.x-dev"
  1933. }
  1934. },
  1935. "autoload": {
  1936. "psr-4": {
  1937. "Endroid\\QrCode\\": "src/"
  1938. }
  1939. },
  1940. "notification-url": "https://packagist.org/downloads/",
  1941. "license": [
  1942. "MIT"
  1943. ],
  1944. "authors": [
  1945. {
  1946. "name": "Jeroen van den Enden",
  1947. "email": "info@endroid.nl"
  1948. }
  1949. ],
  1950. "description": "Endroid QR Code",
  1951. "homepage": "https://github.com/endroid/qr-code",
  1952. "keywords": [
  1953. "bundle",
  1954. "code",
  1955. "endroid",
  1956. "php",
  1957. "qr",
  1958. "qrcode"
  1959. ],
  1960. "support": {
  1961. "issues": "https://github.com/endroid/qr-code/issues",
  1962. "source": "https://github.com/endroid/qr-code/tree/master"
  1963. },
  1964. "funding": [
  1965. {
  1966. "url": "https://github.com/endroid",
  1967. "type": "github"
  1968. }
  1969. ],
  1970. "time": "2020-03-10T08:32:43+00:00"
  1971. },
  1972. {
  1973. "name": "endroid/qr-code-bundle",
  1974. "version": "3.4.2",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/endroid/qr-code-bundle.git",
  1978. "reference": "51928eaaa30e7db1fd3f1076744dcbc8f8cec8c8"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/endroid/qr-code-bundle/zipball/51928eaaa30e7db1fd3f1076744dcbc8f8cec8c8",
  1983. "reference": "51928eaaa30e7db1fd3f1076744dcbc8f8cec8c8",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "endroid/installer": "^1.1",
  1988. "endroid/qr-code": "^3.7.5",
  1989. "php": ">=7.2",
  1990. "symfony/framework-bundle": "^3.4||^4.1.12||^5.0",
  1991. "symfony/twig-bundle": "^3.4||^4.0||^5.0",
  1992. "symfony/yaml": "^3.4||^4.0||^5.0"
  1993. },
  1994. "require-dev": {
  1995. "endroid/test": "dev-master"
  1996. },
  1997. "type": "symfony-bundle",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "3.x-dev"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Endroid\\QrCodeBundle\\": "src/"
  2006. }
  2007. },
  2008. "notification-url": "https://packagist.org/downloads/",
  2009. "license": [
  2010. "MIT"
  2011. ],
  2012. "authors": [
  2013. {
  2014. "name": "Jeroen van den Enden",
  2015. "email": "info@endroid.nl"
  2016. }
  2017. ],
  2018. "description": "Endroid QR Code Bundle",
  2019. "homepage": "https://github.com/endroid/qr-code-bundle",
  2020. "keywords": [
  2021. "bundle",
  2022. "code",
  2023. "endroid",
  2024. "php",
  2025. "qr",
  2026. "symfony"
  2027. ],
  2028. "time": "2020-01-01T15:15:59+00:00"
  2029. },
  2030. {
  2031. "name": "ezyang/htmlpurifier",
  2032. "version": "v4.12.0",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/ezyang/htmlpurifier.git",
  2036. "reference": "a617e55bc62a87eec73bd456d146d134ad716f03"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03",
  2041. "reference": "a617e55bc62a87eec73bd456d146d134ad716f03",
  2042. "shasum": ""
  2043. },
  2044. "require": {
  2045. "php": ">=5.2"
  2046. },
  2047. "require-dev": {
  2048. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  2049. },
  2050. "type": "library",
  2051. "autoload": {
  2052. "psr-0": {
  2053. "HTMLPurifier": "library/"
  2054. },
  2055. "files": [
  2056. "library/HTMLPurifier.composer.php"
  2057. ]
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "LGPL-2.1-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Edward Z. Yang",
  2066. "email": "admin@htmlpurifier.org",
  2067. "homepage": "http://ezyang.com"
  2068. }
  2069. ],
  2070. "description": "Standards compliant HTML filter written in PHP",
  2071. "homepage": "http://htmlpurifier.org/",
  2072. "keywords": [
  2073. "html"
  2074. ],
  2075. "support": {
  2076. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  2077. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  2078. },
  2079. "time": "2019-10-28T03:44:26+00:00"
  2080. },
  2081. {
  2082. "name": "fig/link-util",
  2083. "version": "1.1.0",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://github.com/php-fig/link-util.git",
  2087. "reference": "47f55860678a9e202206047bc02767556d298106"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://api.github.com/repos/php-fig/link-util/zipball/47f55860678a9e202206047bc02767556d298106",
  2092. "reference": "47f55860678a9e202206047bc02767556d298106",
  2093. "shasum": ""
  2094. },
  2095. "require": {
  2096. "php": ">=5.5.0",
  2097. "psr/link": "~1.0@dev"
  2098. },
  2099. "provide": {
  2100. "psr/link-implementation": "1.0"
  2101. },
  2102. "require-dev": {
  2103. "phpunit/phpunit": "^5.1",
  2104. "squizlabs/php_codesniffer": "^2.3.1"
  2105. },
  2106. "type": "library",
  2107. "extra": {
  2108. "branch-alias": {
  2109. "dev-master": "1.0.x-dev"
  2110. }
  2111. },
  2112. "autoload": {
  2113. "psr-4": {
  2114. "Fig\\Link\\": "src/"
  2115. }
  2116. },
  2117. "notification-url": "https://packagist.org/downloads/",
  2118. "license": [
  2119. "MIT"
  2120. ],
  2121. "authors": [
  2122. {
  2123. "name": "PHP-FIG",
  2124. "homepage": "http://www.php-fig.org/"
  2125. }
  2126. ],
  2127. "description": "Common utility implementations for HTTP links",
  2128. "keywords": [
  2129. "http",
  2130. "http-link",
  2131. "link",
  2132. "psr",
  2133. "psr-13",
  2134. "rest"
  2135. ],
  2136. "support": {
  2137. "issues": "https://github.com/php-fig/link-util/issues",
  2138. "source": "https://github.com/php-fig/link-util/tree/1.1.0"
  2139. },
  2140. "time": "2019-12-18T15:40:05+00:00"
  2141. },
  2142. {
  2143. "name": "friendsofsymfony/user-bundle",
  2144. "version": "v2.1.2",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  2148. "reference": "1049935edd24ec305cc6cfde1875372fa9600446"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/1049935edd24ec305cc6cfde1875372fa9600446",
  2153. "reference": "1049935edd24ec305cc6cfde1875372fa9600446",
  2154. "shasum": ""
  2155. },
  2156. "require": {
  2157. "paragonie/random_compat": "^1 || ^2",
  2158. "php": "^5.5.9 || ^7.0",
  2159. "symfony/form": "^2.8 || ^3.0 || ^4.0",
  2160. "symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
  2161. "symfony/security-bundle": "^2.8 || ^3.0 || ^4.0",
  2162. "symfony/templating": "^2.8 || ^3.0 || ^4.0",
  2163. "symfony/twig-bundle": "^2.8 || ^3.0 || ^4.0",
  2164. "symfony/validator": "^2.8 || ^3.0 || ^4.0",
  2165. "twig/twig": "^1.28 || ^2.0"
  2166. },
  2167. "conflict": {
  2168. "doctrine/doctrine-bundle": "<1.3",
  2169. "symfony/doctrine-bridge": "<2.7"
  2170. },
  2171. "require-dev": {
  2172. "doctrine/doctrine-bundle": "^1.3",
  2173. "friendsofphp/php-cs-fixer": "^2.2",
  2174. "phpunit/phpunit": "^4.8.35|^5.7.11|^6.5",
  2175. "swiftmailer/swiftmailer": "^4.3 || ^5.0 || ^6.0",
  2176. "symfony/console": "^2.8 || ^3.0 || ^4.0",
  2177. "symfony/phpunit-bridge": "^2.8 || ^3.0 || ^4.0",
  2178. "symfony/yaml": "^2.8 || ^3.0 || ^4.0"
  2179. },
  2180. "type": "symfony-bundle",
  2181. "extra": {
  2182. "branch-alias": {
  2183. "dev-master": "2.1.x-dev"
  2184. }
  2185. },
  2186. "autoload": {
  2187. "psr-4": {
  2188. "FOS\\UserBundle\\": ""
  2189. },
  2190. "exclude-from-classmap": [
  2191. "/Tests/"
  2192. ]
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Christophe Coevoet",
  2201. "email": "stof@notk.org"
  2202. },
  2203. {
  2204. "name": "FriendsOfSymfony Community",
  2205. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  2206. },
  2207. {
  2208. "name": "Thibault Duplessis"
  2209. }
  2210. ],
  2211. "description": "Symfony FOSUserBundle",
  2212. "homepage": "http://friendsofsymfony.github.com",
  2213. "keywords": [
  2214. "User management"
  2215. ],
  2216. "time": "2018-03-08T08:59:27+00:00"
  2217. },
  2218. {
  2219. "name": "graze/dog-statsd",
  2220. "version": "0.4.2",
  2221. "source": {
  2222. "type": "git",
  2223. "url": "https://github.com/graze/dog-statsd.git",
  2224. "reference": "94fe0c0d649384f13527eff556136726f6c9803e"
  2225. },
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://api.github.com/repos/graze/dog-statsd/zipball/94fe0c0d649384f13527eff556136726f6c9803e",
  2229. "reference": "94fe0c0d649384f13527eff556136726f6c9803e",
  2230. "shasum": ""
  2231. },
  2232. "require": {
  2233. "php": "^5.5|^7.0"
  2234. },
  2235. "require-dev": {
  2236. "graze/standards": "^2",
  2237. "johnkary/phpunit-speedtrap": "^1|^2|^3",
  2238. "phpunit/phpunit": "^5.7.21|^6|^7",
  2239. "squizlabs/php_codesniffer": "^3"
  2240. },
  2241. "type": "library",
  2242. "autoload": {
  2243. "psr-4": {
  2244. "Graze\\DogStatsD\\": "src"
  2245. }
  2246. },
  2247. "notification-url": "https://packagist.org/downloads/",
  2248. "license": [
  2249. "MIT"
  2250. ],
  2251. "authors": [
  2252. {
  2253. "name": "Harry Bragg",
  2254. "role": "Developer",
  2255. "email": "harry.bragg@graze.com"
  2256. },
  2257. {
  2258. "name": "Graze Developers",
  2259. "role": "Development Team",
  2260. "email": "developers@graze.com",
  2261. "homepage": "http://www.graze.com"
  2262. }
  2263. ],
  2264. "description": "DataDog StatsD Client",
  2265. "homepage": "https://github.com/graze/dog-statsd",
  2266. "keywords": [
  2267. "DataDog",
  2268. "dog-statsd",
  2269. "dogstatsd",
  2270. "graze",
  2271. "statsd"
  2272. ],
  2273. "time": "2019-07-29T16:45:12+00:00"
  2274. },
  2275. {
  2276. "name": "guzzlehttp/guzzle",
  2277. "version": "6.5.2",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/guzzle/guzzle.git",
  2281. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  2286. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  2287. "shasum": ""
  2288. },
  2289. "require": {
  2290. "ext-json": "*",
  2291. "guzzlehttp/promises": "^1.0",
  2292. "guzzlehttp/psr7": "^1.6.1",
  2293. "php": ">=5.5"
  2294. },
  2295. "require-dev": {
  2296. "ext-curl": "*",
  2297. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2298. "psr/log": "^1.1"
  2299. },
  2300. "suggest": {
  2301. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2302. "psr/log": "Required for using the Log middleware"
  2303. },
  2304. "type": "library",
  2305. "extra": {
  2306. "branch-alias": {
  2307. "dev-master": "6.5-dev"
  2308. }
  2309. },
  2310. "autoload": {
  2311. "psr-4": {
  2312. "GuzzleHttp\\": "src/"
  2313. },
  2314. "files": [
  2315. "src/functions_include.php"
  2316. ]
  2317. },
  2318. "notification-url": "https://packagist.org/downloads/",
  2319. "license": [
  2320. "MIT"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "Michael Dowling",
  2325. "email": "mtdowling@gmail.com",
  2326. "homepage": "https://github.com/mtdowling"
  2327. }
  2328. ],
  2329. "description": "Guzzle is a PHP HTTP client library",
  2330. "homepage": "http://guzzlephp.org/",
  2331. "keywords": [
  2332. "client",
  2333. "curl",
  2334. "framework",
  2335. "http",
  2336. "http client",
  2337. "rest",
  2338. "web service"
  2339. ],
  2340. "support": {
  2341. "issues": "https://github.com/guzzle/guzzle/issues",
  2342. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  2343. },
  2344. "time": "2019-12-23T11:57:10+00:00"
  2345. },
  2346. {
  2347. "name": "guzzlehttp/promises",
  2348. "version": "v1.3.1",
  2349. "source": {
  2350. "type": "git",
  2351. "url": "https://github.com/guzzle/promises.git",
  2352. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  2353. },
  2354. "dist": {
  2355. "type": "zip",
  2356. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2357. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2358. "shasum": ""
  2359. },
  2360. "require": {
  2361. "php": ">=5.5.0"
  2362. },
  2363. "require-dev": {
  2364. "phpunit/phpunit": "^4.0"
  2365. },
  2366. "type": "library",
  2367. "extra": {
  2368. "branch-alias": {
  2369. "dev-master": "1.4-dev"
  2370. }
  2371. },
  2372. "autoload": {
  2373. "psr-4": {
  2374. "GuzzleHttp\\Promise\\": "src/"
  2375. },
  2376. "files": [
  2377. "src/functions_include.php"
  2378. ]
  2379. },
  2380. "notification-url": "https://packagist.org/downloads/",
  2381. "license": [
  2382. "MIT"
  2383. ],
  2384. "authors": [
  2385. {
  2386. "name": "Michael Dowling",
  2387. "email": "mtdowling@gmail.com",
  2388. "homepage": "https://github.com/mtdowling"
  2389. }
  2390. ],
  2391. "description": "Guzzle promises library",
  2392. "keywords": [
  2393. "promise"
  2394. ],
  2395. "time": "2016-12-20T10:07:11+00:00"
  2396. },
  2397. {
  2398. "name": "guzzlehttp/psr7",
  2399. "version": "1.6.1",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://github.com/guzzle/psr7.git",
  2403. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  2408. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  2409. "shasum": ""
  2410. },
  2411. "require": {
  2412. "php": ">=5.4.0",
  2413. "psr/http-message": "~1.0",
  2414. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2415. },
  2416. "provide": {
  2417. "psr/http-message-implementation": "1.0"
  2418. },
  2419. "require-dev": {
  2420. "ext-zlib": "*",
  2421. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  2422. },
  2423. "suggest": {
  2424. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  2425. },
  2426. "type": "library",
  2427. "extra": {
  2428. "branch-alias": {
  2429. "dev-master": "1.6-dev"
  2430. }
  2431. },
  2432. "autoload": {
  2433. "psr-4": {
  2434. "GuzzleHttp\\Psr7\\": "src/"
  2435. },
  2436. "files": [
  2437. "src/functions_include.php"
  2438. ]
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "description": "PSR-7 message implementation that also provides common utility methods",
  2445. "time": "2019-07-01T23:21:34+00:00"
  2446. },
  2447. {
  2448. "name": "hwi/oauth-bundle",
  2449. "version": "0.6.3",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  2453. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  2458. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  2459. "shasum": ""
  2460. },
  2461. "require": {
  2462. "php": "^5.6|^7.0",
  2463. "php-http/client-common": "^1.3",
  2464. "php-http/client-implementation": "^1.0",
  2465. "php-http/discovery": "^1.0",
  2466. "php-http/httplug": "^1.0",
  2467. "php-http/message-factory": "^1.0",
  2468. "psr/http-message": "^1.0",
  2469. "symfony/form": "^2.8|^3.0|^4.0",
  2470. "symfony/framework-bundle": "^2.8|^3.0|^4.0",
  2471. "symfony/options-resolver": "^2.8|^3.0|^4.0",
  2472. "symfony/security-bundle": "^2.8|^3.0|^4.0",
  2473. "symfony/templating": "^2.8|^3.0|^4.0",
  2474. "symfony/yaml": "^2.8|^3.0|^4.0"
  2475. },
  2476. "conflict": {
  2477. "twig/twig": "<1.12"
  2478. },
  2479. "require-dev": {
  2480. "doctrine/orm": "^2.3",
  2481. "friendsofphp/php-cs-fixer": "^2.0",
  2482. "friendsofsymfony/user-bundle": "^1.3|^2.0",
  2483. "php-http/guzzle6-adapter": "^1.1",
  2484. "php-http/httplug-bundle": "^1.7",
  2485. "phpunit/phpunit": "^5.7",
  2486. "symfony/phpunit-bridge": "^2.8|^3.0|^4.0",
  2487. "symfony/property-access": "^2.8|^3.0|^4.0",
  2488. "symfony/stopwatch": "^2.8|^3.0|^4.0",
  2489. "symfony/twig-bundle": "^2.8|^3.0|^4.0",
  2490. "symfony/validator": "^2.8|^3.0|^4.0"
  2491. },
  2492. "suggest": {
  2493. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  2494. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  2495. "php-http/httplug-bundle": "to provide required HTTP client with ease.",
  2496. "symfony/property-access": "to use FOSUB integration with this bundle",
  2497. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  2498. },
  2499. "type": "symfony-bundle",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "0.6-dev"
  2503. }
  2504. },
  2505. "autoload": {
  2506. "psr-4": {
  2507. "HWI\\Bundle\\OAuthBundle\\": ""
  2508. },
  2509. "exclude-from-classmap": [
  2510. "/Tests/"
  2511. ]
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Contributors",
  2520. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  2521. },
  2522. {
  2523. "name": "Joseph Bielawski",
  2524. "email": "stloyd@gmail.com"
  2525. },
  2526. {
  2527. "name": "Alexander",
  2528. "email": "iam.asm89@gmail.com"
  2529. },
  2530. {
  2531. "name": "Geoffrey Bachelet",
  2532. "email": "geoffrey.bachelet@gmail.com"
  2533. }
  2534. ],
  2535. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  2536. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  2537. "keywords": [
  2538. "37signals",
  2539. "Authentication",
  2540. "Deezer",
  2541. "EVE Online",
  2542. "amazon",
  2543. "asana",
  2544. "auth0",
  2545. "azure",
  2546. "bitbucket",
  2547. "bitly",
  2548. "box",
  2549. "bufferapp",
  2550. "clever",
  2551. "dailymotion",
  2552. "deviantart",
  2553. "discogs",
  2554. "disqus",
  2555. "dropbox",
  2556. "eventbrite",
  2557. "facebook",
  2558. "firewall",
  2559. "fiware",
  2560. "flickr",
  2561. "foursquare",
  2562. "github",
  2563. "gitlab",
  2564. "google",
  2565. "hubic",
  2566. "instagram",
  2567. "jawbone",
  2568. "jira",
  2569. "linkedin",
  2570. "mail.ru",
  2571. "oauth",
  2572. "oauth1",
  2573. "oauth2",
  2574. "odnoklassniki",
  2575. "paypal",
  2576. "qq",
  2577. "reddit",
  2578. "runkeeper",
  2579. "salesforce",
  2580. "security",
  2581. "sensio connect",
  2582. "sina weibo",
  2583. "slack",
  2584. "sound cloud",
  2585. "spotify",
  2586. "stack exchange",
  2587. "stereomood",
  2588. "strava",
  2589. "toshl",
  2590. "trakt",
  2591. "trello",
  2592. "twitch",
  2593. "twitter",
  2594. "vkontakte",
  2595. "windows live",
  2596. "wordpress",
  2597. "wunderlist",
  2598. "xing",
  2599. "yahoo",
  2600. "yandex",
  2601. "youtube"
  2602. ],
  2603. "time": "2018-07-31T10:19:28+00:00"
  2604. },
  2605. {
  2606. "name": "incenteev/composer-parameter-handler",
  2607. "version": "v2.1.3",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/Incenteev/ParameterHandler.git",
  2611. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/933c45a34814f27f2345c11c37d46b3ca7303550",
  2616. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "php": ">=5.3.3",
  2621. "symfony/yaml": "^2.3 || ^3.0 || ^4.0"
  2622. },
  2623. "require-dev": {
  2624. "composer/composer": "^1.0@dev",
  2625. "symfony/filesystem": "^2.3 || ^3 || ^4",
  2626. "symfony/phpunit-bridge": "^4.0"
  2627. },
  2628. "type": "library",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-master": "2.1.x-dev"
  2632. }
  2633. },
  2634. "autoload": {
  2635. "psr-4": {
  2636. "Incenteev\\ParameterHandler\\": ""
  2637. }
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "description": "Composer script handling your ignored parameter file",
  2644. "homepage": "https://github.com/Incenteev/ParameterHandler",
  2645. "time": "2018-02-13T18:05:56+00:00"
  2646. },
  2647. {
  2648. "name": "jdorn/sql-formatter",
  2649. "version": "v1.2.17",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/jdorn/sql-formatter.git",
  2653. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  2658. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "php": ">=5.2.4"
  2663. },
  2664. "require-dev": {
  2665. "phpunit/phpunit": "3.7.*"
  2666. },
  2667. "type": "library",
  2668. "extra": {
  2669. "branch-alias": {
  2670. "dev-master": "1.3.x-dev"
  2671. }
  2672. },
  2673. "autoload": {
  2674. "classmap": [
  2675. "lib"
  2676. ]
  2677. },
  2678. "notification-url": "https://packagist.org/downloads/",
  2679. "license": [
  2680. "MIT"
  2681. ],
  2682. "authors": [
  2683. {
  2684. "name": "Jeremy Dorn",
  2685. "email": "jeremy@jeremydorn.com",
  2686. "homepage": "http://jeremydorn.com/"
  2687. }
  2688. ],
  2689. "description": "a PHP SQL highlighting library",
  2690. "homepage": "https://github.com/jdorn/sql-formatter/",
  2691. "keywords": [
  2692. "highlight",
  2693. "sql"
  2694. ],
  2695. "time": "2014-01-12T16:20:24+00:00"
  2696. },
  2697. {
  2698. "name": "justinrainbow/json-schema",
  2699. "version": "5.2.9",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/justinrainbow/json-schema.git",
  2703. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  2708. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  2709. "shasum": ""
  2710. },
  2711. "require": {
  2712. "php": ">=5.3.3"
  2713. },
  2714. "require-dev": {
  2715. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  2716. "json-schema/json-schema-test-suite": "1.2.0",
  2717. "phpunit/phpunit": "^4.8.35"
  2718. },
  2719. "bin": [
  2720. "bin/validate-json"
  2721. ],
  2722. "type": "library",
  2723. "extra": {
  2724. "branch-alias": {
  2725. "dev-master": "5.0.x-dev"
  2726. }
  2727. },
  2728. "autoload": {
  2729. "psr-4": {
  2730. "JsonSchema\\": "src/JsonSchema/"
  2731. }
  2732. },
  2733. "notification-url": "https://packagist.org/downloads/",
  2734. "license": [
  2735. "MIT"
  2736. ],
  2737. "authors": [
  2738. {
  2739. "name": "Bruno Prieto Reis",
  2740. "email": "bruno.p.reis@gmail.com"
  2741. },
  2742. {
  2743. "name": "Justin Rainbow",
  2744. "email": "justin.rainbow@gmail.com"
  2745. },
  2746. {
  2747. "name": "Igor Wiedler",
  2748. "email": "igor@wiedler.ch"
  2749. },
  2750. {
  2751. "name": "Robert Schönthal",
  2752. "email": "seroscho@googlemail.com"
  2753. }
  2754. ],
  2755. "description": "A library to validate a json schema.",
  2756. "homepage": "https://github.com/justinrainbow/json-schema",
  2757. "keywords": [
  2758. "json",
  2759. "schema"
  2760. ],
  2761. "support": {
  2762. "issues": "https://github.com/justinrainbow/json-schema/issues",
  2763. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.9"
  2764. },
  2765. "time": "2019-09-25T14:49:45+00:00"
  2766. },
  2767. {
  2768. "name": "khanamiryan/qrcode-detector-decoder",
  2769. "version": "1.0.3",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  2773. "reference": "89b57f2d9939dd57394b83f6ccbd3e1a74659e34"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/89b57f2d9939dd57394b83f6ccbd3e1a74659e34",
  2778. "reference": "89b57f2d9939dd57394b83f6ccbd3e1a74659e34",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": "^5.6|^7.0"
  2783. },
  2784. "require-dev": {
  2785. "phpunit/phpunit": "^5.7"
  2786. },
  2787. "type": "library",
  2788. "autoload": {
  2789. "psr-4": {
  2790. "Zxing\\": "lib/"
  2791. },
  2792. "files": [
  2793. "lib/Common/customFunctions.php"
  2794. ]
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Ashot Khanamiryan",
  2803. "email": "a.khanamiryan@gmail.com",
  2804. "homepage": "https://github.com/khanamiryan",
  2805. "role": "Developer"
  2806. }
  2807. ],
  2808. "description": "QR code decoder / reader",
  2809. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  2810. "keywords": [
  2811. "barcode",
  2812. "qr",
  2813. "zxing"
  2814. ],
  2815. "time": "2020-04-19T16:18:51+00:00"
  2816. },
  2817. {
  2818. "name": "knplabs/knp-menu",
  2819. "version": "2.6.0",
  2820. "source": {
  2821. "type": "git",
  2822. "url": "https://github.com/KnpLabs/KnpMenu.git",
  2823. "reference": "b6aade272c345b6fbd07fce5929a761cba0909b8"
  2824. },
  2825. "dist": {
  2826. "type": "zip",
  2827. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/b6aade272c345b6fbd07fce5929a761cba0909b8",
  2828. "reference": "b6aade272c345b6fbd07fce5929a761cba0909b8",
  2829. "shasum": ""
  2830. },
  2831. "require": {
  2832. "php": ">=5.6.0"
  2833. },
  2834. "conflict": {
  2835. "twig/twig": "<1.40|>=2,<2.9"
  2836. },
  2837. "require-dev": {
  2838. "psr/container": "^1.0",
  2839. "symfony/http-foundation": "~2.4|~3.0|^4.0",
  2840. "symfony/phpunit-bridge": "~3.3|^4.0",
  2841. "symfony/routing": "~2.3|~3.0|^4.0",
  2842. "twig/twig": "^1.40|^2.9"
  2843. },
  2844. "suggest": {
  2845. "twig/twig": "for the TwigRenderer and the integration with your templates"
  2846. },
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "3.0-dev"
  2851. }
  2852. },
  2853. "autoload": {
  2854. "psr-4": {
  2855. "Knp\\Menu\\": "src/Knp/Menu"
  2856. }
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "MIT"
  2861. ],
  2862. "authors": [
  2863. {
  2864. "name": "KnpLabs",
  2865. "homepage": "https://knplabs.com"
  2866. },
  2867. {
  2868. "name": "Christophe Coevoet",
  2869. "email": "stof@notk.org"
  2870. },
  2871. {
  2872. "name": "Symfony Community",
  2873. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  2874. }
  2875. ],
  2876. "description": "An object oriented menu library",
  2877. "homepage": "https://knplabs.com",
  2878. "keywords": [
  2879. "menu",
  2880. "tree"
  2881. ],
  2882. "support": {
  2883. "issues": "https://github.com/KnpLabs/KnpMenu/issues",
  2884. "source": "https://github.com/KnpLabs/KnpMenu/tree/v2"
  2885. },
  2886. "time": "2019-09-02T10:16:14+00:00"
  2887. },
  2888. {
  2889. "name": "knplabs/knp-menu-bundle",
  2890. "version": "v2.3.0",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  2894. "reference": "78b0cebf8e1490f12ba6555511282954de83f627"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/78b0cebf8e1490f12ba6555511282954de83f627",
  2899. "reference": "78b0cebf8e1490f12ba6555511282954de83f627",
  2900. "shasum": ""
  2901. },
  2902. "require": {
  2903. "knplabs/knp-menu": "~2.3",
  2904. "php": "^7.1",
  2905. "symfony/framework-bundle": "^3.4 | ^4.0"
  2906. },
  2907. "require-dev": {
  2908. "symfony/expression-language": "^3.4 | ^4.0",
  2909. "symfony/phpunit-bridge": "^3.4 | ^4.0",
  2910. "symfony/templating": "^3.4 | ^4.0"
  2911. },
  2912. "type": "symfony-bundle",
  2913. "extra": {
  2914. "branch-alias": {
  2915. "dev-master": "3.0.x-dev"
  2916. }
  2917. },
  2918. "autoload": {
  2919. "psr-4": {
  2920. "Knp\\Bundle\\MenuBundle\\": "src"
  2921. }
  2922. },
  2923. "notification-url": "https://packagist.org/downloads/",
  2924. "license": [
  2925. "MIT"
  2926. ],
  2927. "description": "This bundle provides an integration of the KnpMenu library",
  2928. "time": "2019-09-19T08:51:48+00:00"
  2929. },
  2930. {
  2931. "name": "lcobucci/jwt",
  2932. "version": "3.3.1",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/lcobucci/jwt.git",
  2936. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2941. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "ext-mbstring": "*",
  2946. "ext-openssl": "*",
  2947. "php": "^5.6 || ^7.0"
  2948. },
  2949. "require-dev": {
  2950. "mikey179/vfsstream": "~1.5",
  2951. "phpmd/phpmd": "~2.2",
  2952. "phpunit/php-invoker": "~1.1",
  2953. "phpunit/phpunit": "^5.7 || ^7.3",
  2954. "squizlabs/php_codesniffer": "~2.3"
  2955. },
  2956. "type": "library",
  2957. "extra": {
  2958. "branch-alias": {
  2959. "dev-master": "3.1-dev"
  2960. }
  2961. },
  2962. "autoload": {
  2963. "psr-4": {
  2964. "Lcobucci\\JWT\\": "src"
  2965. }
  2966. },
  2967. "notification-url": "https://packagist.org/downloads/",
  2968. "license": [
  2969. "BSD-3-Clause"
  2970. ],
  2971. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2972. "time": "2019-05-24T18:30:49+00:00"
  2973. },
  2974. {
  2975. "name": "monolog/monolog",
  2976. "version": "1.25.3",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/Seldaek/monolog.git",
  2980. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1",
  2985. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": ">=5.3.0",
  2990. "psr/log": "~1.0"
  2991. },
  2992. "provide": {
  2993. "psr/log-implementation": "1.0.0"
  2994. },
  2995. "require-dev": {
  2996. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2997. "doctrine/couchdb": "~1.0@dev",
  2998. "graylog2/gelf-php": "~1.0",
  2999. "jakub-onderka/php-parallel-lint": "0.9",
  3000. "php-amqplib/php-amqplib": "~2.4",
  3001. "php-console/php-console": "^3.1.3",
  3002. "phpunit/phpunit": "~4.5",
  3003. "phpunit/phpunit-mock-objects": "2.3.0",
  3004. "ruflin/elastica": ">=0.90 <3.0",
  3005. "sentry/sentry": "^0.13",
  3006. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3007. },
  3008. "suggest": {
  3009. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3010. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3011. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3012. "ext-mongo": "Allow sending log messages to a MongoDB server",
  3013. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3014. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  3015. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3016. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3017. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3018. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  3019. "sentry/sentry": "Allow sending log messages to a Sentry server"
  3020. },
  3021. "type": "library",
  3022. "extra": {
  3023. "branch-alias": {
  3024. "dev-master": "2.0.x-dev"
  3025. }
  3026. },
  3027. "autoload": {
  3028. "psr-4": {
  3029. "Monolog\\": "src/Monolog"
  3030. }
  3031. },
  3032. "notification-url": "https://packagist.org/downloads/",
  3033. "license": [
  3034. "MIT"
  3035. ],
  3036. "authors": [
  3037. {
  3038. "name": "Jordi Boggiano",
  3039. "email": "j.boggiano@seld.be",
  3040. "homepage": "http://seld.be"
  3041. }
  3042. ],
  3043. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3044. "homepage": "http://github.com/Seldaek/monolog",
  3045. "keywords": [
  3046. "log",
  3047. "logging",
  3048. "psr-3"
  3049. ],
  3050. "support": {
  3051. "issues": "https://github.com/Seldaek/monolog/issues",
  3052. "source": "https://github.com/Seldaek/monolog/tree/1.25.3"
  3053. },
  3054. "time": "2019-12-20T14:15:16+00:00"
  3055. },
  3056. {
  3057. "name": "myclabs/php-enum",
  3058. "version": "1.7.6",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/myclabs/php-enum.git",
  3062. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  3067. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  3068. "shasum": ""
  3069. },
  3070. "require": {
  3071. "ext-json": "*",
  3072. "php": ">=7.1"
  3073. },
  3074. "require-dev": {
  3075. "phpunit/phpunit": "^7",
  3076. "squizlabs/php_codesniffer": "1.*",
  3077. "vimeo/psalm": "^3.8"
  3078. },
  3079. "type": "library",
  3080. "autoload": {
  3081. "psr-4": {
  3082. "MyCLabs\\Enum\\": "src/"
  3083. }
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "PHP Enum contributors",
  3092. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3093. }
  3094. ],
  3095. "description": "PHP Enum implementation",
  3096. "homepage": "http://github.com/myclabs/php-enum",
  3097. "keywords": [
  3098. "enum"
  3099. ],
  3100. "support": {
  3101. "issues": "https://github.com/myclabs/php-enum/issues",
  3102. "source": "https://github.com/myclabs/php-enum/tree/master"
  3103. },
  3104. "time": "2020-02-14T08:15:52+00:00"
  3105. },
  3106. {
  3107. "name": "nelmio/cors-bundle",
  3108. "version": "1.5.6",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  3112. "reference": "10a24c10f242440211ed31075e74f81661c690d9"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/10a24c10f242440211ed31075e74f81661c690d9",
  3117. "reference": "10a24c10f242440211ed31075e74f81661c690d9",
  3118. "shasum": ""
  3119. },
  3120. "require": {
  3121. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0"
  3122. },
  3123. "require-dev": {
  3124. "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0",
  3125. "mockery/mockery": "^0.9 || ^1.0",
  3126. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  3127. },
  3128. "type": "symfony-bundle",
  3129. "extra": {
  3130. "branch-alias": {
  3131. "dev-master": "1.5.x-dev"
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Nelmio\\CorsBundle\\": ""
  3137. },
  3138. "exclude-from-classmap": [
  3139. "/Tests/"
  3140. ]
  3141. },
  3142. "notification-url": "https://packagist.org/downloads/",
  3143. "license": [
  3144. "MIT"
  3145. ],
  3146. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  3147. "time": "2019-06-17T08:53:14+00:00"
  3148. },
  3149. {
  3150. "name": "nelmio/security-bundle",
  3151. "version": "v2.9.0",
  3152. "source": {
  3153. "type": "git",
  3154. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  3155. "reference": "d8542de5a4bce96e3ee307cfe9bdf14c954a95cd"
  3156. },
  3157. "dist": {
  3158. "type": "zip",
  3159. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/d8542de5a4bce96e3ee307cfe9bdf14c954a95cd",
  3160. "reference": "d8542de5a4bce96e3ee307cfe9bdf14c954a95cd",
  3161. "shasum": ""
  3162. },
  3163. "require": {
  3164. "paragonie/random_compat": "~1.0|~2.0|9.99.99",
  3165. "php": ">5.4",
  3166. "symfony/framework-bundle": "~2.3|~v3.0|~4.0|~5.0",
  3167. "symfony/security-core": "~2.3|~3.0|~4.0|~5.0",
  3168. "symfony/security-csrf": "~2.3|~3.0|~4.0|~5.0",
  3169. "symfony/security-http": "~2.3|~3.0|~4.0|~5.0",
  3170. "ua-parser/uap-php": "^3.4.4"
  3171. },
  3172. "require-dev": {
  3173. "doctrine/cache": "^1.0",
  3174. "psr/cache": "^1.0",
  3175. "symfony/phpunit-bridge": "^5.0.5",
  3176. "symfony/yaml": "~2.3|~3.0|~4.0|~5.0",
  3177. "twig/twig": "^1.38|^2.10|^3.0"
  3178. },
  3179. "suggest": {
  3180. "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
  3181. },
  3182. "type": "symfony-bundle",
  3183. "extra": {
  3184. "branch-alias": {
  3185. "dev-master": "2.9.x-dev"
  3186. }
  3187. },
  3188. "autoload": {
  3189. "psr-4": {
  3190. "Nelmio\\SecurityBundle\\": ""
  3191. },
  3192. "exclude-from-classmap": [
  3193. "/Tests/"
  3194. ]
  3195. },
  3196. "notification-url": "https://packagist.org/downloads/",
  3197. "license": [
  3198. "MIT"
  3199. ],
  3200. "authors": [
  3201. {
  3202. "name": "Nelmio",
  3203. "homepage": "http://nelm.io"
  3204. },
  3205. {
  3206. "name": "Symfony Community",
  3207. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  3208. }
  3209. ],
  3210. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  3211. "keywords": [
  3212. "security"
  3213. ],
  3214. "support": {
  3215. "issues": "https://github.com/nelmio/NelmioSecurityBundle/issues",
  3216. "source": "https://github.com/nelmio/NelmioSecurityBundle/tree/master"
  3217. },
  3218. "time": "2020-03-02T14:30:46+00:00"
  3219. },
  3220. {
  3221. "name": "ocramius/package-versions",
  3222. "version": "1.5.1",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/Ocramius/PackageVersions.git",
  3226. "reference": "1d32342b8c1eb27353c8887c366147b4c2da673c"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/1d32342b8c1eb27353c8887c366147b4c2da673c",
  3231. "reference": "1d32342b8c1eb27353c8887c366147b4c2da673c",
  3232. "shasum": ""
  3233. },
  3234. "require": {
  3235. "composer-plugin-api": "^1.0.0",
  3236. "php": "^7.3.0"
  3237. },
  3238. "require-dev": {
  3239. "composer/composer": "^1.8.6",
  3240. "doctrine/coding-standard": "^6.0.0",
  3241. "ext-zip": "*",
  3242. "infection/infection": "^0.13.4",
  3243. "phpunit/phpunit": "^8.2.5",
  3244. "vimeo/psalm": "^3.4.9"
  3245. },
  3246. "type": "composer-plugin",
  3247. "extra": {
  3248. "class": "PackageVersions\\Installer",
  3249. "branch-alias": {
  3250. "dev-master": "1.6.x-dev"
  3251. }
  3252. },
  3253. "autoload": {
  3254. "psr-4": {
  3255. "PackageVersions\\": "src/PackageVersions"
  3256. }
  3257. },
  3258. "notification-url": "https://packagist.org/downloads/",
  3259. "license": [
  3260. "MIT"
  3261. ],
  3262. "authors": [
  3263. {
  3264. "name": "Marco Pivetta",
  3265. "email": "ocramius@gmail.com"
  3266. }
  3267. ],
  3268. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  3269. "time": "2019-07-17T15:49:50+00:00"
  3270. },
  3271. {
  3272. "name": "pagerfanta/pagerfanta",
  3273. "version": "v2.1.3",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  3277. "reference": "a53ff01d521648d9dbca19b93ac6bc75a59b0972"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a53ff01d521648d9dbca19b93ac6bc75a59b0972",
  3282. "reference": "a53ff01d521648d9dbca19b93ac6bc75a59b0972",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "php": "^7.0"
  3287. },
  3288. "require-dev": {
  3289. "doctrine/orm": "~2.3",
  3290. "doctrine/phpcr-odm": "1.*",
  3291. "jackalope/jackalope-doctrine-dbal": "1.*",
  3292. "jmikola/geojson": "~1.0",
  3293. "mandango/mandango": "~1.0@dev",
  3294. "mandango/mondator": "~1.0@dev",
  3295. "phpunit/phpunit": "^6.5",
  3296. "propel/propel": "~2.0@dev",
  3297. "propel/propel1": "~1.6",
  3298. "ruflin/elastica": "~1.3",
  3299. "solarium/solarium": "~3.1"
  3300. },
  3301. "suggest": {
  3302. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  3303. "doctrine/orm": "To use the DoctrineORMAdapter.",
  3304. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  3305. "mandango/mandango": "To use the MandangoAdapter.",
  3306. "propel/propel": "To use the Propel2Adapter",
  3307. "propel/propel1": "To use the PropelAdapter",
  3308. "solarium/solarium": "To use the SolariumAdapter."
  3309. },
  3310. "type": "library",
  3311. "extra": {
  3312. "branch-alias": {
  3313. "dev-master": "1.0.x-dev"
  3314. }
  3315. },
  3316. "autoload": {
  3317. "psr-4": {
  3318. "Pagerfanta\\": "src/Pagerfanta/"
  3319. }
  3320. },
  3321. "notification-url": "https://packagist.org/downloads/",
  3322. "license": [
  3323. "MIT"
  3324. ],
  3325. "description": "Pagination for PHP",
  3326. "time": "2019-07-17T20:56:16+00:00"
  3327. },
  3328. {
  3329. "name": "paragonie/constant_time_encoding",
  3330. "version": "v2.3.0",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3334. "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2",
  3339. "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2",
  3340. "shasum": ""
  3341. },
  3342. "require": {
  3343. "php": "^7|^8"
  3344. },
  3345. "require-dev": {
  3346. "phpunit/phpunit": "^6|^7",
  3347. "vimeo/psalm": "^1|^2|^3"
  3348. },
  3349. "type": "library",
  3350. "autoload": {
  3351. "psr-4": {
  3352. "ParagonIE\\ConstantTime\\": "src/"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Paragon Initiative Enterprises",
  3362. "email": "security@paragonie.com",
  3363. "homepage": "https://paragonie.com",
  3364. "role": "Maintainer"
  3365. },
  3366. {
  3367. "name": "Steve 'Sc00bz' Thomas",
  3368. "email": "steve@tobtu.com",
  3369. "homepage": "https://www.tobtu.com",
  3370. "role": "Original Developer"
  3371. }
  3372. ],
  3373. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3374. "keywords": [
  3375. "base16",
  3376. "base32",
  3377. "base32_decode",
  3378. "base32_encode",
  3379. "base64",
  3380. "base64_decode",
  3381. "base64_encode",
  3382. "bin2hex",
  3383. "encoding",
  3384. "hex",
  3385. "hex2bin",
  3386. "rfc4648"
  3387. ],
  3388. "support": {
  3389. "email": "info@paragonie.com",
  3390. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3391. "source": "https://github.com/paragonie/constant_time_encoding"
  3392. },
  3393. "time": "2019-11-06T19:20:29+00:00"
  3394. },
  3395. {
  3396. "name": "paragonie/random_compat",
  3397. "version": "v2.0.18",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/paragonie/random_compat.git",
  3401. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  3406. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  3407. "shasum": ""
  3408. },
  3409. "require": {
  3410. "php": ">=5.2.0"
  3411. },
  3412. "require-dev": {
  3413. "phpunit/phpunit": "4.*|5.*"
  3414. },
  3415. "suggest": {
  3416. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3417. },
  3418. "type": "library",
  3419. "autoload": {
  3420. "files": [
  3421. "lib/random.php"
  3422. ]
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Paragon Initiative Enterprises",
  3431. "email": "security@paragonie.com",
  3432. "homepage": "https://paragonie.com"
  3433. }
  3434. ],
  3435. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3436. "keywords": [
  3437. "csprng",
  3438. "polyfill",
  3439. "pseudorandom",
  3440. "random"
  3441. ],
  3442. "time": "2019-01-03T20:59:08+00:00"
  3443. },
  3444. {
  3445. "name": "php-http/client-common",
  3446. "version": "1.10.0",
  3447. "source": {
  3448. "type": "git",
  3449. "url": "https://github.com/php-http/client-common.git",
  3450. "reference": "c0390ae3c8f2ae9d50901feef0127fb9e396f6b4"
  3451. },
  3452. "dist": {
  3453. "type": "zip",
  3454. "url": "https://api.github.com/repos/php-http/client-common/zipball/c0390ae3c8f2ae9d50901feef0127fb9e396f6b4",
  3455. "reference": "c0390ae3c8f2ae9d50901feef0127fb9e396f6b4",
  3456. "shasum": ""
  3457. },
  3458. "require": {
  3459. "php": "^5.4 || ^7.0",
  3460. "php-http/httplug": "^1.1",
  3461. "php-http/message": "^1.6",
  3462. "php-http/message-factory": "^1.0",
  3463. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  3464. },
  3465. "require-dev": {
  3466. "guzzlehttp/psr7": "^1.4",
  3467. "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2"
  3468. },
  3469. "suggest": {
  3470. "php-http/cache-plugin": "PSR-6 Cache plugin",
  3471. "php-http/logger-plugin": "PSR-3 Logger plugin",
  3472. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  3473. },
  3474. "type": "library",
  3475. "extra": {
  3476. "branch-alias": {
  3477. "dev-master": "1.10.x-dev"
  3478. }
  3479. },
  3480. "autoload": {
  3481. "psr-4": {
  3482. "Http\\Client\\Common\\": "src/"
  3483. }
  3484. },
  3485. "notification-url": "https://packagist.org/downloads/",
  3486. "license": [
  3487. "MIT"
  3488. ],
  3489. "authors": [
  3490. {
  3491. "name": "Márk Sági-Kazár",
  3492. "email": "mark.sagikazar@gmail.com"
  3493. }
  3494. ],
  3495. "description": "Common HTTP Client implementations and tools for HTTPlug",
  3496. "homepage": "http://httplug.io",
  3497. "keywords": [
  3498. "client",
  3499. "common",
  3500. "http",
  3501. "httplug"
  3502. ],
  3503. "support": {
  3504. "issues": "https://github.com/php-http/client-common/issues",
  3505. "source": "https://github.com/php-http/client-common/tree/1.x"
  3506. },
  3507. "time": "2019-11-18T08:54:36+00:00"
  3508. },
  3509. {
  3510. "name": "php-http/discovery",
  3511. "version": "1.7.4",
  3512. "source": {
  3513. "type": "git",
  3514. "url": "https://github.com/php-http/discovery.git",
  3515. "reference": "82dbef649ccffd8e4f22e1953c3a5265992b83c0"
  3516. },
  3517. "dist": {
  3518. "type": "zip",
  3519. "url": "https://api.github.com/repos/php-http/discovery/zipball/82dbef649ccffd8e4f22e1953c3a5265992b83c0",
  3520. "reference": "82dbef649ccffd8e4f22e1953c3a5265992b83c0",
  3521. "shasum": ""
  3522. },
  3523. "require": {
  3524. "php": "^7.1"
  3525. },
  3526. "conflict": {
  3527. "nyholm/psr7": "<1.0"
  3528. },
  3529. "require-dev": {
  3530. "akeneo/phpspec-skip-example-extension": "^4.0",
  3531. "php-http/httplug": "^1.0 || ^2.0",
  3532. "php-http/message-factory": "^1.0",
  3533. "phpspec/phpspec": "^5.1",
  3534. "puli/composer-plugin": "1.0.0-beta10"
  3535. },
  3536. "suggest": {
  3537. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  3538. "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."
  3539. },
  3540. "type": "library",
  3541. "extra": {
  3542. "branch-alias": {
  3543. "dev-master": "1.7-dev"
  3544. }
  3545. },
  3546. "autoload": {
  3547. "psr-4": {
  3548. "Http\\Discovery\\": "src/"
  3549. }
  3550. },
  3551. "notification-url": "https://packagist.org/downloads/",
  3552. "license": [
  3553. "MIT"
  3554. ],
  3555. "authors": [
  3556. {
  3557. "name": "Márk Sági-Kazár",
  3558. "email": "mark.sagikazar@gmail.com"
  3559. }
  3560. ],
  3561. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  3562. "homepage": "http://php-http.org",
  3563. "keywords": [
  3564. "adapter",
  3565. "client",
  3566. "discovery",
  3567. "factory",
  3568. "http",
  3569. "message",
  3570. "psr7"
  3571. ],
  3572. "support": {
  3573. "issues": "https://github.com/php-http/discovery/issues",
  3574. "source": "https://github.com/php-http/discovery/tree/master"
  3575. },
  3576. "time": "2020-01-03T11:25:47+00:00"
  3577. },
  3578. {
  3579. "name": "php-http/guzzle6-adapter",
  3580. "version": "v1.1.1",
  3581. "source": {
  3582. "type": "git",
  3583. "url": "https://github.com/php-http/guzzle6-adapter.git",
  3584. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  3585. },
  3586. "dist": {
  3587. "type": "zip",
  3588. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  3589. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  3590. "shasum": ""
  3591. },
  3592. "require": {
  3593. "guzzlehttp/guzzle": "^6.0",
  3594. "php": ">=5.5.0",
  3595. "php-http/httplug": "^1.0"
  3596. },
  3597. "provide": {
  3598. "php-http/async-client-implementation": "1.0",
  3599. "php-http/client-implementation": "1.0"
  3600. },
  3601. "require-dev": {
  3602. "ext-curl": "*",
  3603. "php-http/adapter-integration-tests": "^0.4"
  3604. },
  3605. "type": "library",
  3606. "extra": {
  3607. "branch-alias": {
  3608. "dev-master": "1.2-dev"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "Http\\Adapter\\Guzzle6\\": "src/"
  3614. }
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "MIT"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Márk Sági-Kazár",
  3623. "email": "mark.sagikazar@gmail.com"
  3624. },
  3625. {
  3626. "name": "David de Boer",
  3627. "email": "david@ddeboer.nl"
  3628. }
  3629. ],
  3630. "description": "Guzzle 6 HTTP Adapter",
  3631. "homepage": "http://httplug.io",
  3632. "keywords": [
  3633. "Guzzle",
  3634. "http"
  3635. ],
  3636. "time": "2016-05-10T06:13:32+00:00"
  3637. },
  3638. {
  3639. "name": "php-http/httplug",
  3640. "version": "v1.1.0",
  3641. "source": {
  3642. "type": "git",
  3643. "url": "https://github.com/php-http/httplug.git",
  3644. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  3645. },
  3646. "dist": {
  3647. "type": "zip",
  3648. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  3649. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  3650. "shasum": ""
  3651. },
  3652. "require": {
  3653. "php": ">=5.4",
  3654. "php-http/promise": "^1.0",
  3655. "psr/http-message": "^1.0"
  3656. },
  3657. "require-dev": {
  3658. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3659. "phpspec/phpspec": "^2.4"
  3660. },
  3661. "type": "library",
  3662. "extra": {
  3663. "branch-alias": {
  3664. "dev-master": "1.1-dev"
  3665. }
  3666. },
  3667. "autoload": {
  3668. "psr-4": {
  3669. "Http\\Client\\": "src/"
  3670. }
  3671. },
  3672. "notification-url": "https://packagist.org/downloads/",
  3673. "license": [
  3674. "MIT"
  3675. ],
  3676. "authors": [
  3677. {
  3678. "name": "Eric GELOEN",
  3679. "email": "geloen.eric@gmail.com"
  3680. },
  3681. {
  3682. "name": "Márk Sági-Kazár",
  3683. "email": "mark.sagikazar@gmail.com"
  3684. }
  3685. ],
  3686. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3687. "homepage": "http://httplug.io",
  3688. "keywords": [
  3689. "client",
  3690. "http"
  3691. ],
  3692. "time": "2016-08-31T08:30:17+00:00"
  3693. },
  3694. {
  3695. "name": "php-http/httplug-bundle",
  3696. "version": "1.17.0",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/php-http/HttplugBundle.git",
  3700. "reference": "9a739ad8ae8ea7c3ab034d79e144746329c4a322"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://api.github.com/repos/php-http/HttplugBundle/zipball/9a739ad8ae8ea7c3ab034d79e144746329c4a322",
  3705. "reference": "9a739ad8ae8ea7c3ab034d79e144746329c4a322",
  3706. "shasum": ""
  3707. },
  3708. "require": {
  3709. "php": "^7.2",
  3710. "php-http/client-common": "^1.9 || ^2.0",
  3711. "php-http/client-implementation": "^1.0",
  3712. "php-http/discovery": "^1.0",
  3713. "php-http/httplug": "^1.0 || ^2.0",
  3714. "php-http/logger-plugin": "^1.1",
  3715. "php-http/message": "^1.4",
  3716. "php-http/message-factory": "^1.0.2",
  3717. "php-http/stopwatch-plugin": "^1.2",
  3718. "psr/http-message": "^1.0",
  3719. "symfony/config": "^3.4.34 || ^4.2.12 || ^5.0",
  3720. "symfony/dependency-injection": "^3.4.34 || ^4.2.12 || ^5.0",
  3721. "symfony/event-dispatcher": "^3.4.34 || ^4.2.12 || ^5.0",
  3722. "symfony/http-kernel": "^3.4.34 || ^4.2.12 || ^5.0",
  3723. "symfony/options-resolver": "^3.4.34 || ^4.2.12 || ^5.0"
  3724. },
  3725. "conflict": {
  3726. "php-http/curl-client": "<2.0",
  3727. "php-http/guzzle6-adapter": "<1.1"
  3728. },
  3729. "require-dev": {
  3730. "guzzlehttp/psr7": "^1.0",
  3731. "matthiasnoback/symfony-dependency-injection-test": "^4.0",
  3732. "nyholm/nsa": "^1.1",
  3733. "php-http/cache-plugin": "^1.7",
  3734. "php-http/guzzle6-adapter": "^1.1.1 || ^2.0.1",
  3735. "php-http/mock-client": "^1.2",
  3736. "php-http/promise": "^1.0",
  3737. "polishsymfonycommunity/symfony-mocker-container": "^1.0",
  3738. "symfony/browser-kit": "^3.4.34 || ^4.2.12 || ^5.0",
  3739. "symfony/cache": "^3.4.35 || ~4.2.12 || ^4.3.8 || ^5.0",
  3740. "symfony/dom-crawler": "^3.4.34 || ^4.2.12 || ^5.0",
  3741. "symfony/framework-bundle": "^3.4.34 || ^4.2.12 || ^5.0",
  3742. "symfony/http-foundation": "^3.4.35 || ~4.2.12 || ^4.3.8 || ^5.0",
  3743. "symfony/phpunit-bridge": "^3.4.34 || ^4.2.12 || ^5.0",
  3744. "symfony/stopwatch": "^3.4.34 || ^4.2.12 || ^5.0",
  3745. "symfony/twig-bundle": "^3.4.34 || ^4.2.12 || ^5.0",
  3746. "symfony/web-profiler-bundle": "^3.4.34 || ^4.2.12 || ^5.0",
  3747. "twig/twig": "^1.41 || ^2.10 || ^3.0"
  3748. },
  3749. "suggest": {
  3750. "php-http/cache-plugin": "To configure clients that cache responses",
  3751. "php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily",
  3752. "twig/twig": "Add this to your require-dev section when using the WebProfilerBundle"
  3753. },
  3754. "type": "symfony-bundle",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "1.x-dev"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Http\\HttplugBundle\\": "src/"
  3763. },
  3764. "exclude-from-classmap": [
  3765. "/Tests/Resources/MyPsr18TestClient.php"
  3766. ]
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "David Buchmann",
  3775. "email": "mail@davidbu.ch"
  3776. },
  3777. {
  3778. "name": "Tobias Nyholm",
  3779. "email": "tobias.nyholm@gmail.com"
  3780. }
  3781. ],
  3782. "description": "Symfony integration for HTTPlug",
  3783. "homepage": "http://httplug.io",
  3784. "keywords": [
  3785. "adapter",
  3786. "bundle",
  3787. "discovery",
  3788. "factory",
  3789. "http",
  3790. "httplug",
  3791. "message",
  3792. "php-http"
  3793. ],
  3794. "support": {
  3795. "issues": "https://github.com/php-http/HttplugBundle/issues",
  3796. "source": "https://github.com/php-http/HttplugBundle/tree/1.17.0"
  3797. },
  3798. "time": "2019-12-27T10:34:17+00:00"
  3799. },
  3800. {
  3801. "name": "php-http/logger-plugin",
  3802. "version": "1.1.0",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/php-http/logger-plugin.git",
  3806. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/php-http/logger-plugin/zipball/c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  3811. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "php": "^5.4 || ^7.0",
  3816. "php-http/client-common": "^1.9 || ^2.0",
  3817. "php-http/message": "^1.0",
  3818. "psr/log": "^1.0"
  3819. },
  3820. "require-dev": {
  3821. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3822. "phpspec/phpspec": "^2.5"
  3823. },
  3824. "type": "library",
  3825. "extra": {
  3826. "branch-alias": {
  3827. "dev-master": "1.1-dev"
  3828. }
  3829. },
  3830. "autoload": {
  3831. "psr-4": {
  3832. "Http\\Client\\Common\\Plugin\\": "src/"
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "Márk Sági-Kazár",
  3842. "email": "mark.sagikazar@gmail.com"
  3843. }
  3844. ],
  3845. "description": "PSR-3 Logger plugin for HTTPlug",
  3846. "homepage": "http://httplug.io",
  3847. "keywords": [
  3848. "http",
  3849. "httplug",
  3850. "logger",
  3851. "plugin"
  3852. ],
  3853. "time": "2019-01-30T11:48:21+00:00"
  3854. },
  3855. {
  3856. "name": "php-http/message",
  3857. "version": "1.8.0",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://github.com/php-http/message.git",
  3861. "reference": "ce8f43ac1e294b54aabf5808515c3554a19c1e1c"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://api.github.com/repos/php-http/message/zipball/ce8f43ac1e294b54aabf5808515c3554a19c1e1c",
  3866. "reference": "ce8f43ac1e294b54aabf5808515c3554a19c1e1c",
  3867. "shasum": ""
  3868. },
  3869. "require": {
  3870. "clue/stream-filter": "^1.4",
  3871. "php": "^7.1",
  3872. "php-http/message-factory": "^1.0.2",
  3873. "psr/http-message": "^1.0"
  3874. },
  3875. "provide": {
  3876. "php-http/message-factory-implementation": "1.0"
  3877. },
  3878. "require-dev": {
  3879. "akeneo/phpspec-skip-example-extension": "^1.0",
  3880. "coduo/phpspec-data-provider-extension": "^1.0",
  3881. "ext-zlib": "*",
  3882. "guzzlehttp/psr7": "^1.0",
  3883. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3884. "phpspec/phpspec": "^2.4",
  3885. "slim/slim": "^3.0",
  3886. "zendframework/zend-diactoros": "^1.0"
  3887. },
  3888. "suggest": {
  3889. "ext-zlib": "Used with compressor/decompressor streams",
  3890. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3891. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  3892. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  3893. },
  3894. "type": "library",
  3895. "extra": {
  3896. "branch-alias": {
  3897. "dev-master": "1.8-dev"
  3898. }
  3899. },
  3900. "autoload": {
  3901. "psr-4": {
  3902. "Http\\Message\\": "src/"
  3903. },
  3904. "files": [
  3905. "src/filters.php"
  3906. ]
  3907. },
  3908. "notification-url": "https://packagist.org/downloads/",
  3909. "license": [
  3910. "MIT"
  3911. ],
  3912. "description": "HTTP Message related tools",
  3913. "homepage": "http://php-http.org",
  3914. "time": "2019-08-05T06:55:08+00:00"
  3915. },
  3916. {
  3917. "name": "php-http/message-factory",
  3918. "version": "v1.0.2",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://github.com/php-http/message-factory.git",
  3922. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  3923. },
  3924. "dist": {
  3925. "type": "zip",
  3926. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  3927. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  3928. "shasum": ""
  3929. },
  3930. "require": {
  3931. "php": ">=5.4",
  3932. "psr/http-message": "^1.0"
  3933. },
  3934. "type": "library",
  3935. "extra": {
  3936. "branch-alias": {
  3937. "dev-master": "1.0-dev"
  3938. }
  3939. },
  3940. "autoload": {
  3941. "psr-4": {
  3942. "Http\\Message\\": "src/"
  3943. }
  3944. },
  3945. "notification-url": "https://packagist.org/downloads/",
  3946. "license": [
  3947. "MIT"
  3948. ],
  3949. "authors": [
  3950. {
  3951. "name": "Márk Sági-Kazár",
  3952. "email": "mark.sagikazar@gmail.com"
  3953. }
  3954. ],
  3955. "description": "Factory interfaces for PSR-7 HTTP Message",
  3956. "homepage": "http://php-http.org",
  3957. "keywords": [
  3958. "factory",
  3959. "http",
  3960. "message",
  3961. "stream",
  3962. "uri"
  3963. ],
  3964. "time": "2015-12-19T14:08:53+00:00"
  3965. },
  3966. {
  3967. "name": "php-http/promise",
  3968. "version": "v1.0.0",
  3969. "source": {
  3970. "type": "git",
  3971. "url": "https://github.com/php-http/promise.git",
  3972. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  3973. },
  3974. "dist": {
  3975. "type": "zip",
  3976. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  3977. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  3978. "shasum": ""
  3979. },
  3980. "require-dev": {
  3981. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3982. "phpspec/phpspec": "^2.4"
  3983. },
  3984. "type": "library",
  3985. "extra": {
  3986. "branch-alias": {
  3987. "dev-master": "1.1-dev"
  3988. }
  3989. },
  3990. "autoload": {
  3991. "psr-4": {
  3992. "Http\\Promise\\": "src/"
  3993. }
  3994. },
  3995. "notification-url": "https://packagist.org/downloads/",
  3996. "license": [
  3997. "MIT"
  3998. ],
  3999. "authors": [
  4000. {
  4001. "name": "Márk Sági-Kazár",
  4002. "email": "mark.sagikazar@gmail.com"
  4003. },
  4004. {
  4005. "name": "Joel Wurtz",
  4006. "email": "joel.wurtz@gmail.com"
  4007. }
  4008. ],
  4009. "description": "Promise used for asynchronous HTTP requests",
  4010. "homepage": "http://httplug.io",
  4011. "keywords": [
  4012. "promise"
  4013. ],
  4014. "time": "2016-01-26T13:27:02+00:00"
  4015. },
  4016. {
  4017. "name": "php-http/stopwatch-plugin",
  4018. "version": "1.3.0",
  4019. "source": {
  4020. "type": "git",
  4021. "url": "https://github.com/php-http/stopwatch-plugin.git",
  4022. "reference": "de6f39c96f57c60a43d535e27122de505e683f98"
  4023. },
  4024. "dist": {
  4025. "type": "zip",
  4026. "url": "https://api.github.com/repos/php-http/stopwatch-plugin/zipball/de6f39c96f57c60a43d535e27122de505e683f98",
  4027. "reference": "de6f39c96f57c60a43d535e27122de505e683f98",
  4028. "shasum": ""
  4029. },
  4030. "require": {
  4031. "php": "^7.1",
  4032. "php-http/client-common": "^1.9 || ^2.0",
  4033. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0"
  4034. },
  4035. "require-dev": {
  4036. "phpspec/phpspec": "^2.5 || ^3.0 || ^4.0"
  4037. },
  4038. "type": "library",
  4039. "extra": {
  4040. "branch-alias": {
  4041. "dev-master": "1.3-dev"
  4042. }
  4043. },
  4044. "autoload": {
  4045. "psr-4": {
  4046. "Http\\Client\\Common\\Plugin\\": "src/"
  4047. }
  4048. },
  4049. "notification-url": "https://packagist.org/downloads/",
  4050. "license": [
  4051. "MIT"
  4052. ],
  4053. "authors": [
  4054. {
  4055. "name": "Márk Sági-Kazár",
  4056. "email": "mark.sagikazar@gmail.com"
  4057. }
  4058. ],
  4059. "description": "Symfony Stopwatch plugin for HTTPlug",
  4060. "homepage": "http://httplug.io",
  4061. "keywords": [
  4062. "http",
  4063. "httplug",
  4064. "plugin",
  4065. "stopwatch"
  4066. ],
  4067. "support": {
  4068. "issues": "https://github.com/php-http/stopwatch-plugin/issues",
  4069. "source": "https://github.com/php-http/stopwatch-plugin/tree/1.3.0"
  4070. },
  4071. "time": "2019-11-18T08:10:48+00:00"
  4072. },
  4073. {
  4074. "name": "predis/predis",
  4075. "version": "v1.1.1",
  4076. "source": {
  4077. "type": "git",
  4078. "url": "https://github.com/nrk/predis.git",
  4079. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  4080. },
  4081. "dist": {
  4082. "type": "zip",
  4083. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  4084. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  4085. "shasum": ""
  4086. },
  4087. "require": {
  4088. "php": ">=5.3.9"
  4089. },
  4090. "require-dev": {
  4091. "phpunit/phpunit": "~4.8"
  4092. },
  4093. "suggest": {
  4094. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4095. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4096. },
  4097. "type": "library",
  4098. "autoload": {
  4099. "psr-4": {
  4100. "Predis\\": "src/"
  4101. }
  4102. },
  4103. "notification-url": "https://packagist.org/downloads/",
  4104. "license": [
  4105. "MIT"
  4106. ],
  4107. "authors": [
  4108. {
  4109. "name": "Daniele Alessandri",
  4110. "email": "suppakilla@gmail.com",
  4111. "homepage": "http://clorophilla.net"
  4112. }
  4113. ],
  4114. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4115. "homepage": "http://github.com/nrk/predis",
  4116. "keywords": [
  4117. "nosql",
  4118. "predis",
  4119. "redis"
  4120. ],
  4121. "time": "2016-06-16T16:22:20+00:00"
  4122. },
  4123. {
  4124. "name": "psr/cache",
  4125. "version": "1.0.1",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/php-fig/cache.git",
  4129. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4134. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4135. "shasum": ""
  4136. },
  4137. "require": {
  4138. "php": ">=5.3.0"
  4139. },
  4140. "type": "library",
  4141. "extra": {
  4142. "branch-alias": {
  4143. "dev-master": "1.0.x-dev"
  4144. }
  4145. },
  4146. "autoload": {
  4147. "psr-4": {
  4148. "Psr\\Cache\\": "src/"
  4149. }
  4150. },
  4151. "notification-url": "https://packagist.org/downloads/",
  4152. "license": [
  4153. "MIT"
  4154. ],
  4155. "authors": [
  4156. {
  4157. "name": "PHP-FIG",
  4158. "homepage": "http://www.php-fig.org/"
  4159. }
  4160. ],
  4161. "description": "Common interface for caching libraries",
  4162. "keywords": [
  4163. "cache",
  4164. "psr",
  4165. "psr-6"
  4166. ],
  4167. "time": "2016-08-06T20:24:11+00:00"
  4168. },
  4169. {
  4170. "name": "psr/container",
  4171. "version": "1.0.0",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://github.com/php-fig/container.git",
  4175. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4180. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4181. "shasum": ""
  4182. },
  4183. "require": {
  4184. "php": ">=5.3.0"
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-master": "1.0.x-dev"
  4190. }
  4191. },
  4192. "autoload": {
  4193. "psr-4": {
  4194. "Psr\\Container\\": "src/"
  4195. }
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "PHP-FIG",
  4204. "homepage": "http://www.php-fig.org/"
  4205. }
  4206. ],
  4207. "description": "Common Container Interface (PHP FIG PSR-11)",
  4208. "homepage": "https://github.com/php-fig/container",
  4209. "keywords": [
  4210. "PSR-11",
  4211. "container",
  4212. "container-interface",
  4213. "container-interop",
  4214. "psr"
  4215. ],
  4216. "time": "2017-02-14T16:28:37+00:00"
  4217. },
  4218. {
  4219. "name": "psr/http-message",
  4220. "version": "1.0.1",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/php-fig/http-message.git",
  4224. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4229. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4230. "shasum": ""
  4231. },
  4232. "require": {
  4233. "php": ">=5.3.0"
  4234. },
  4235. "type": "library",
  4236. "extra": {
  4237. "branch-alias": {
  4238. "dev-master": "1.0.x-dev"
  4239. }
  4240. },
  4241. "autoload": {
  4242. "psr-4": {
  4243. "Psr\\Http\\Message\\": "src/"
  4244. }
  4245. },
  4246. "notification-url": "https://packagist.org/downloads/",
  4247. "license": [
  4248. "MIT"
  4249. ],
  4250. "authors": [
  4251. {
  4252. "name": "PHP-FIG",
  4253. "homepage": "http://www.php-fig.org/"
  4254. }
  4255. ],
  4256. "description": "Common interface for HTTP messages",
  4257. "homepage": "https://github.com/php-fig/http-message",
  4258. "keywords": [
  4259. "http",
  4260. "http-message",
  4261. "psr",
  4262. "psr-7",
  4263. "request",
  4264. "response"
  4265. ],
  4266. "time": "2016-08-06T14:39:51+00:00"
  4267. },
  4268. {
  4269. "name": "psr/link",
  4270. "version": "1.0.0",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/php-fig/link.git",
  4274. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  4279. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "php": ">=5.3.0"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "1.0.x-dev"
  4289. }
  4290. },
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Psr\\Link\\": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "PHP-FIG",
  4303. "homepage": "http://www.php-fig.org/"
  4304. }
  4305. ],
  4306. "description": "Common interfaces for HTTP links",
  4307. "keywords": [
  4308. "http",
  4309. "http-link",
  4310. "link",
  4311. "psr",
  4312. "psr-13",
  4313. "rest"
  4314. ],
  4315. "time": "2016-10-28T16:06:13+00:00"
  4316. },
  4317. {
  4318. "name": "psr/log",
  4319. "version": "1.1.2",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/php-fig/log.git",
  4323. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  4328. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  4329. "shasum": ""
  4330. },
  4331. "require": {
  4332. "php": ">=5.3.0"
  4333. },
  4334. "type": "library",
  4335. "extra": {
  4336. "branch-alias": {
  4337. "dev-master": "1.1.x-dev"
  4338. }
  4339. },
  4340. "autoload": {
  4341. "psr-4": {
  4342. "Psr\\Log\\": "Psr/Log/"
  4343. }
  4344. },
  4345. "notification-url": "https://packagist.org/downloads/",
  4346. "license": [
  4347. "MIT"
  4348. ],
  4349. "authors": [
  4350. {
  4351. "name": "PHP-FIG",
  4352. "homepage": "http://www.php-fig.org/"
  4353. }
  4354. ],
  4355. "description": "Common interface for logging libraries",
  4356. "homepage": "https://github.com/php-fig/log",
  4357. "keywords": [
  4358. "log",
  4359. "psr",
  4360. "psr-3"
  4361. ],
  4362. "support": {
  4363. "source": "https://github.com/php-fig/log/tree/1.1.2"
  4364. },
  4365. "time": "2019-11-01T11:05:21+00:00"
  4366. },
  4367. {
  4368. "name": "psr/simple-cache",
  4369. "version": "1.0.1",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/php-fig/simple-cache.git",
  4373. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4378. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "php": ">=5.3.0"
  4383. },
  4384. "type": "library",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-master": "1.0.x-dev"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "psr-4": {
  4392. "Psr\\SimpleCache\\": "src/"
  4393. }
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "PHP-FIG",
  4402. "homepage": "http://www.php-fig.org/"
  4403. }
  4404. ],
  4405. "description": "Common interfaces for simple caching",
  4406. "keywords": [
  4407. "cache",
  4408. "caching",
  4409. "psr",
  4410. "psr-16",
  4411. "simple-cache"
  4412. ],
  4413. "time": "2017-10-23T01:57:42+00:00"
  4414. },
  4415. {
  4416. "name": "ralouphie/getallheaders",
  4417. "version": "3.0.3",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/ralouphie/getallheaders.git",
  4421. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4426. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4427. "shasum": ""
  4428. },
  4429. "require": {
  4430. "php": ">=5.6"
  4431. },
  4432. "require-dev": {
  4433. "php-coveralls/php-coveralls": "^2.1",
  4434. "phpunit/phpunit": "^5 || ^6.5"
  4435. },
  4436. "type": "library",
  4437. "autoload": {
  4438. "files": [
  4439. "src/getallheaders.php"
  4440. ]
  4441. },
  4442. "notification-url": "https://packagist.org/downloads/",
  4443. "license": [
  4444. "MIT"
  4445. ],
  4446. "description": "A polyfill for getallheaders.",
  4447. "time": "2019-03-08T08:55:37+00:00"
  4448. },
  4449. {
  4450. "name": "scheb/two-factor-bundle",
  4451. "version": "v4.14.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/scheb/two-factor-bundle.git",
  4455. "reference": "6393d304ee51a703711e5f5cc3e76f04ce4e238c"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/scheb/two-factor-bundle/zipball/6393d304ee51a703711e5f5cc3e76f04ce4e238c",
  4460. "reference": "6393d304ee51a703711e5f5cc3e76f04ce4e238c",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "lcobucci/jwt": "^3.2",
  4465. "paragonie/constant_time_encoding": "^2.2",
  4466. "php": "^7.1.3",
  4467. "spomky-labs/otphp": "^9.1|^10.0",
  4468. "symfony/config": "^3.4|^4.0|^5.0",
  4469. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4470. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  4471. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  4472. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4473. "symfony/http-kernel": "^3.4|^4.0|^5.0",
  4474. "symfony/property-access": "^3.4|^4.0|^5.0",
  4475. "symfony/security-bundle": "^3.4|^4.0|^5.0",
  4476. "symfony/twig-bundle": "^3.4|^4.0|^5.0"
  4477. },
  4478. "require-dev": {
  4479. "doctrine/lexer": "^1.0.1",
  4480. "doctrine/orm": "^2.6",
  4481. "escapestudios/symfony2-coding-standard": "^3.9",
  4482. "phpunit/phpunit": "^7.0|^8.0",
  4483. "squizlabs/php_codesniffer": "^3.5",
  4484. "swiftmailer/swiftmailer": "^6.0",
  4485. "symfony/yaml": "^3.4|^4.0|^5.0"
  4486. },
  4487. "type": "symfony-bundle",
  4488. "autoload": {
  4489. "psr-4": {
  4490. "Scheb\\TwoFactorBundle\\": ""
  4491. },
  4492. "exclude-from-classmap": [
  4493. "/Tests/"
  4494. ]
  4495. },
  4496. "notification-url": "https://packagist.org/downloads/",
  4497. "license": [
  4498. "MIT"
  4499. ],
  4500. "authors": [
  4501. {
  4502. "name": "Christian Scheb",
  4503. "email": "me@christianscheb.de"
  4504. }
  4505. ],
  4506. "description": "Provides two-factor authentication for Symfony applications",
  4507. "homepage": "https://github.com/scheb/two-factor-bundle",
  4508. "keywords": [
  4509. "Authentication",
  4510. "security",
  4511. "symfony",
  4512. "two-factor",
  4513. "two-step"
  4514. ],
  4515. "support": {
  4516. "issues": "https://github.com/scheb/two-factor-bundle/issues",
  4517. "source": "https://github.com/scheb/two-factor-bundle/tree/master"
  4518. },
  4519. "time": "2020-02-15T13:01:16+00:00"
  4520. },
  4521. {
  4522. "name": "seld/jsonlint",
  4523. "version": "1.7.2",
  4524. "source": {
  4525. "type": "git",
  4526. "url": "https://github.com/Seldaek/jsonlint.git",
  4527. "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19"
  4528. },
  4529. "dist": {
  4530. "type": "zip",
  4531. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/e2e5d290e4d2a4f0eb449f510071392e00e10d19",
  4532. "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19",
  4533. "shasum": ""
  4534. },
  4535. "require": {
  4536. "php": "^5.3 || ^7.0"
  4537. },
  4538. "require-dev": {
  4539. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4540. },
  4541. "bin": [
  4542. "bin/jsonlint"
  4543. ],
  4544. "type": "library",
  4545. "autoload": {
  4546. "psr-4": {
  4547. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  4548. }
  4549. },
  4550. "notification-url": "https://packagist.org/downloads/",
  4551. "license": [
  4552. "MIT"
  4553. ],
  4554. "authors": [
  4555. {
  4556. "name": "Jordi Boggiano",
  4557. "email": "j.boggiano@seld.be",
  4558. "homepage": "http://seld.be"
  4559. }
  4560. ],
  4561. "description": "JSON Linter",
  4562. "keywords": [
  4563. "json",
  4564. "linter",
  4565. "parser",
  4566. "validator"
  4567. ],
  4568. "support": {
  4569. "issues": "https://github.com/Seldaek/jsonlint/issues",
  4570. "source": "https://github.com/Seldaek/jsonlint/tree/1.7.2"
  4571. },
  4572. "time": "2019-10-24T14:27:39+00:00"
  4573. },
  4574. {
  4575. "name": "seld/phar-utils",
  4576. "version": "1.1.0",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/Seldaek/phar-utils.git",
  4580. "reference": "8800503d56b9867d43d9c303b9cbcc26016e82f0"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8800503d56b9867d43d9c303b9cbcc26016e82f0",
  4585. "reference": "8800503d56b9867d43d9c303b9cbcc26016e82f0",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "php": ">=5.3"
  4590. },
  4591. "type": "library",
  4592. "extra": {
  4593. "branch-alias": {
  4594. "dev-master": "1.x-dev"
  4595. }
  4596. },
  4597. "autoload": {
  4598. "psr-4": {
  4599. "Seld\\PharUtils\\": "src/"
  4600. }
  4601. },
  4602. "notification-url": "https://packagist.org/downloads/",
  4603. "license": [
  4604. "MIT"
  4605. ],
  4606. "authors": [
  4607. {
  4608. "name": "Jordi Boggiano",
  4609. "email": "j.boggiano@seld.be"
  4610. }
  4611. ],
  4612. "description": "PHAR file format utilities, for when PHP phars you up",
  4613. "keywords": [
  4614. "phar"
  4615. ],
  4616. "support": {
  4617. "issues": "https://github.com/Seldaek/phar-utils/issues",
  4618. "source": "https://github.com/Seldaek/phar-utils/tree/1.1.0"
  4619. },
  4620. "time": "2020-02-14T15:25:33+00:00"
  4621. },
  4622. {
  4623. "name": "seld/signal-handler",
  4624. "version": "1.2.0",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://github.com/Seldaek/signal-handler.git",
  4628. "reference": "0852a32d804c6a80f428f6e815eb383ff1c4c2fd"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/0852a32d804c6a80f428f6e815eb383ff1c4c2fd",
  4633. "reference": "0852a32d804c6a80f428f6e815eb383ff1c4c2fd",
  4634. "shasum": ""
  4635. },
  4636. "require": {
  4637. "php": ">=5.4.0"
  4638. },
  4639. "require-dev": {
  4640. "phpunit/phpunit": "^4.8",
  4641. "psr/log": "^1.0"
  4642. },
  4643. "type": "library",
  4644. "autoload": {
  4645. "psr-4": {
  4646. "Seld\\Signal\\": "src/"
  4647. }
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "MIT"
  4652. ],
  4653. "description": "Simple unix signal handler that silently fails on windows for easy cross-platform development",
  4654. "time": "2019-07-29T10:26:24+00:00"
  4655. },
  4656. {
  4657. "name": "sensio/distribution-bundle",
  4658. "version": "v5.0.25",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  4662. "reference": "80a38234bde8321fb92aa0b8c27978a272bb4baf"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/80a38234bde8321fb92aa0b8c27978a272bb4baf",
  4667. "reference": "80a38234bde8321fb92aa0b8c27978a272bb4baf",
  4668. "shasum": ""
  4669. },
  4670. "require": {
  4671. "php": ">=5.3.9",
  4672. "sensiolabs/security-checker": "~5.0|~6.0",
  4673. "symfony/class-loader": "~2.3|~3.0",
  4674. "symfony/config": "~2.3|~3.0",
  4675. "symfony/dependency-injection": "~2.3|~3.0",
  4676. "symfony/filesystem": "~2.3|~3.0",
  4677. "symfony/http-kernel": "~2.3|~3.0",
  4678. "symfony/process": "~2.3|~3.0"
  4679. },
  4680. "type": "symfony-bundle",
  4681. "extra": {
  4682. "branch-alias": {
  4683. "dev-master": "5.0.x-dev"
  4684. }
  4685. },
  4686. "autoload": {
  4687. "psr-4": {
  4688. "Sensio\\Bundle\\DistributionBundle\\": ""
  4689. }
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "description": "Base bundle for Symfony Distributions",
  4696. "time": "2019-06-18T15:43:58+00:00"
  4697. },
  4698. {
  4699. "name": "sensio/framework-extra-bundle",
  4700. "version": "v5.4.1",
  4701. "source": {
  4702. "type": "git",
  4703. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  4704. "reference": "585f4b3a1c54f24d1a8431c729fc8f5acca20c8a"
  4705. },
  4706. "dist": {
  4707. "type": "zip",
  4708. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/585f4b3a1c54f24d1a8431c729fc8f5acca20c8a",
  4709. "reference": "585f4b3a1c54f24d1a8431c729fc8f5acca20c8a",
  4710. "shasum": ""
  4711. },
  4712. "require": {
  4713. "doctrine/annotations": "^1.0",
  4714. "doctrine/persistence": "^1.0",
  4715. "php": ">=7.1.3",
  4716. "symfony/config": "^3.4|^4.3",
  4717. "symfony/dependency-injection": "^3.4|^4.3",
  4718. "symfony/framework-bundle": "^3.4|^4.3",
  4719. "symfony/http-kernel": "^3.4|^4.3"
  4720. },
  4721. "require-dev": {
  4722. "doctrine/doctrine-bundle": "^1.6",
  4723. "doctrine/orm": "^2.5",
  4724. "nyholm/psr7": "^1.1",
  4725. "symfony/browser-kit": "^3.4|^4.3",
  4726. "symfony/dom-crawler": "^3.4|^4.3",
  4727. "symfony/expression-language": "^3.4|^4.3",
  4728. "symfony/finder": "^3.4|^4.3",
  4729. "symfony/monolog-bridge": "^3.0|^4.0",
  4730. "symfony/monolog-bundle": "^3.2",
  4731. "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
  4732. "symfony/psr-http-message-bridge": "^1.1",
  4733. "symfony/security-bundle": "^3.4|^4.3",
  4734. "symfony/twig-bundle": "^3.4|^4.3",
  4735. "symfony/yaml": "^3.4|^4.3",
  4736. "twig/twig": "~1.12|~2.0"
  4737. },
  4738. "suggest": {
  4739. "symfony/expression-language": "",
  4740. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  4741. "symfony/security-bundle": ""
  4742. },
  4743. "type": "symfony-bundle",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-master": "5.4.x-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "psr-4": {
  4751. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  4752. }
  4753. },
  4754. "notification-url": "https://packagist.org/downloads/",
  4755. "license": [
  4756. "MIT"
  4757. ],
  4758. "authors": [
  4759. {
  4760. "name": "Fabien Potencier",
  4761. "email": "fabien@symfony.com"
  4762. }
  4763. ],
  4764. "description": "This bundle provides a way to configure your controllers with annotations",
  4765. "keywords": [
  4766. "annotations",
  4767. "controllers"
  4768. ],
  4769. "support": {
  4770. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  4771. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v5.4.1"
  4772. },
  4773. "time": "2019-07-08T08:31:25+00:00"
  4774. },
  4775. {
  4776. "name": "sensio/generator-bundle",
  4777. "version": "v3.1.7",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  4781. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  4786. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "symfony/console": "~2.7|~3.0",
  4791. "symfony/framework-bundle": "~2.7|~3.0",
  4792. "symfony/process": "~2.7|~3.0",
  4793. "symfony/yaml": "~2.7|~3.0",
  4794. "twig/twig": "^1.28.2|^2.0"
  4795. },
  4796. "require-dev": {
  4797. "doctrine/orm": "~2.4",
  4798. "symfony/doctrine-bridge": "~2.7|~3.0",
  4799. "symfony/filesystem": "~2.7|~3.0",
  4800. "symfony/phpunit-bridge": "^3.3"
  4801. },
  4802. "type": "symfony-bundle",
  4803. "extra": {
  4804. "branch-alias": {
  4805. "dev-master": "3.1.x-dev"
  4806. }
  4807. },
  4808. "autoload": {
  4809. "psr-4": {
  4810. "Sensio\\Bundle\\GeneratorBundle\\": ""
  4811. },
  4812. "exclude-from-classmap": [
  4813. "/Tests/"
  4814. ]
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "MIT"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Fabien Potencier",
  4823. "email": "fabien@symfony.com"
  4824. }
  4825. ],
  4826. "description": "This bundle generates code for you",
  4827. "abandoned": "symfony/maker-bundle",
  4828. "time": "2017-12-07T15:36:41+00:00"
  4829. },
  4830. {
  4831. "name": "sensiolabs/security-checker",
  4832. "version": "v6.0.3",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/sensiolabs/security-checker.git",
  4836. "reference": "a576c01520d9761901f269c4934ba55448be4a54"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/a576c01520d9761901f269c4934ba55448be4a54",
  4841. "reference": "a576c01520d9761901f269c4934ba55448be4a54",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "php": ">=7.1.3",
  4846. "symfony/console": "^2.8|^3.4|^4.2|^5.0",
  4847. "symfony/http-client": "^4.3|^5.0",
  4848. "symfony/mime": "^4.3|^5.0",
  4849. "symfony/polyfill-ctype": "^1.11"
  4850. },
  4851. "bin": [
  4852. "security-checker"
  4853. ],
  4854. "type": "library",
  4855. "extra": {
  4856. "branch-alias": {
  4857. "dev-master": "6.0-dev"
  4858. }
  4859. },
  4860. "autoload": {
  4861. "psr-4": {
  4862. "SensioLabs\\Security\\": "SensioLabs/Security"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "Fabien Potencier",
  4872. "email": "fabien.potencier@gmail.com"
  4873. }
  4874. ],
  4875. "description": "A security checker for your composer.lock",
  4876. "support": {
  4877. "issues": "https://github.com/sensiolabs/security-checker/issues",
  4878. "source": "https://github.com/sensiolabs/security-checker/tree/master"
  4879. },
  4880. "time": "2019-11-01T13:20:14+00:00"
  4881. },
  4882. {
  4883. "name": "snc/redis-bundle",
  4884. "version": "2.1.13",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/snc/SncRedisBundle.git",
  4888. "reference": "7c8652c1811c573ae567c1bcaa5e1c65723c5907"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/7c8652c1811c573ae567c1bcaa5e1c65723c5907",
  4893. "reference": "7c8652c1811c573ae567c1bcaa5e1c65723c5907",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "php": "^5.3.3 || ^7.0",
  4898. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
  4899. "symfony/yaml": "^2.7 || ^3.0 || ^4.0"
  4900. },
  4901. "require-dev": {
  4902. "doctrine/cache": "1.*",
  4903. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  4904. "predis/predis": "^1.0",
  4905. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  4906. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  4907. },
  4908. "suggest": {
  4909. "monolog/monolog": "If you want to use the monolog redis handler.",
  4910. "predis/predis": "If you want to use predis.",
  4911. "symfony/console": "If you want to use commands to interact with the redis database",
  4912. "symfony/proxy-manager-bridge": "If you want to lazy-load some services"
  4913. },
  4914. "type": "symfony-bundle",
  4915. "extra": {
  4916. "branch-alias": {
  4917. "dev-master": "2.x-dev"
  4918. }
  4919. },
  4920. "autoload": {
  4921. "psr-4": {
  4922. "Snc\\RedisBundle\\": ""
  4923. }
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "MIT"
  4928. ],
  4929. "authors": [
  4930. {
  4931. "name": "Henrik Westphal",
  4932. "email": "henrik.westphal@gmail.com"
  4933. },
  4934. {
  4935. "name": "Community contributors",
  4936. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  4937. }
  4938. ],
  4939. "description": "A Redis bundle for Symfony",
  4940. "homepage": "https://github.com/snc/SncRedisBundle",
  4941. "keywords": [
  4942. "nosql",
  4943. "redis",
  4944. "symfony"
  4945. ],
  4946. "support": {
  4947. "issues": "https://github.com/snc/SncRedisBundle/issues",
  4948. "source": "https://github.com/snc/SncRedisBundle/tree/2.1"
  4949. },
  4950. "time": "2019-12-09T12:56:15+00:00"
  4951. },
  4952. {
  4953. "name": "spomky-labs/otphp",
  4954. "version": "v10.0.1",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/Spomky-Labs/otphp.git",
  4958. "reference": "f44cce5a9db4b8da410215d992110482c931232f"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/Spomky-Labs/otphp/zipball/f44cce5a9db4b8da410215d992110482c931232f",
  4963. "reference": "f44cce5a9db4b8da410215d992110482c931232f",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "beberlei/assert": "^3.0",
  4968. "ext-mbstring": "*",
  4969. "paragonie/constant_time_encoding": "^2.0",
  4970. "php": "^7.2|^8.0",
  4971. "thecodingmachine/safe": "^0.1.14|^1.0"
  4972. },
  4973. "require-dev": {
  4974. "php-coveralls/php-coveralls": "^2.0",
  4975. "phpstan/phpstan": "^0.12",
  4976. "phpstan/phpstan-beberlei-assert": "^0.12",
  4977. "phpstan/phpstan-deprecation-rules": "^0.12",
  4978. "phpstan/phpstan-phpunit": "^0.12",
  4979. "phpstan/phpstan-strict-rules": "^0.12",
  4980. "phpunit/phpunit": "^8.0",
  4981. "thecodingmachine/phpstan-safe-rule": "^1.0"
  4982. },
  4983. "type": "library",
  4984. "extra": {
  4985. "branch-alias": {
  4986. "v10.0": "10.0.x-dev",
  4987. "v9.0": "9.0.x-dev",
  4988. "v8.3": "8.3.x-dev"
  4989. }
  4990. },
  4991. "autoload": {
  4992. "psr-4": {
  4993. "OTPHP\\": "src/"
  4994. }
  4995. },
  4996. "notification-url": "https://packagist.org/downloads/",
  4997. "license": [
  4998. "MIT"
  4999. ],
  5000. "authors": [
  5001. {
  5002. "name": "Florent Morselli",
  5003. "homepage": "https://github.com/Spomky"
  5004. },
  5005. {
  5006. "name": "All contributors",
  5007. "homepage": "https://github.com/Spomky-Labs/otphp/contributors"
  5008. }
  5009. ],
  5010. "description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator",
  5011. "homepage": "https://github.com/Spomky-Labs/otphp",
  5012. "keywords": [
  5013. "FreeOTP",
  5014. "RFC 4226",
  5015. "RFC 6238",
  5016. "google authenticator",
  5017. "hotp",
  5018. "otp",
  5019. "totp"
  5020. ],
  5021. "support": {
  5022. "issues": "https://github.com/Spomky-Labs/otphp/issues",
  5023. "source": "https://github.com/Spomky-Labs/otphp/tree/v10.0.1"
  5024. },
  5025. "time": "2020-01-28T09:24:19+00:00"
  5026. },
  5027. {
  5028. "name": "swiftmailer/swiftmailer",
  5029. "version": "v6.2.3",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5033. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  5038. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "egulias/email-validator": "~2.0",
  5043. "php": ">=7.0.0",
  5044. "symfony/polyfill-iconv": "^1.0",
  5045. "symfony/polyfill-intl-idn": "^1.10",
  5046. "symfony/polyfill-mbstring": "^1.0"
  5047. },
  5048. "require-dev": {
  5049. "mockery/mockery": "~0.9.1",
  5050. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  5051. },
  5052. "suggest": {
  5053. "ext-intl": "Needed to support internationalized email addresses",
  5054. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  5055. },
  5056. "type": "library",
  5057. "extra": {
  5058. "branch-alias": {
  5059. "dev-master": "6.2-dev"
  5060. }
  5061. },
  5062. "autoload": {
  5063. "files": [
  5064. "lib/swift_required.php"
  5065. ]
  5066. },
  5067. "notification-url": "https://packagist.org/downloads/",
  5068. "license": [
  5069. "MIT"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "Chris Corbyn"
  5074. },
  5075. {
  5076. "name": "Fabien Potencier",
  5077. "email": "fabien@symfony.com"
  5078. }
  5079. ],
  5080. "description": "Swiftmailer, free feature-rich PHP mailer",
  5081. "homepage": "https://swiftmailer.symfony.com",
  5082. "keywords": [
  5083. "email",
  5084. "mail",
  5085. "mailer"
  5086. ],
  5087. "support": {
  5088. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5089. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.3"
  5090. },
  5091. "time": "2019-11-12T09:31:26+00:00"
  5092. },
  5093. {
  5094. "name": "symfony/http-client",
  5095. "version": "v5.0.5",
  5096. "source": {
  5097. "type": "git",
  5098. "url": "https://github.com/symfony/http-client.git",
  5099. "reference": "2edd40250649944775aad5d6b4cc8e164c1e9d72"
  5100. },
  5101. "dist": {
  5102. "type": "zip",
  5103. "url": "https://api.github.com/repos/symfony/http-client/zipball/2edd40250649944775aad5d6b4cc8e164c1e9d72",
  5104. "reference": "2edd40250649944775aad5d6b4cc8e164c1e9d72",
  5105. "shasum": ""
  5106. },
  5107. "require": {
  5108. "php": "^7.2.5",
  5109. "psr/log": "^1.0",
  5110. "symfony/http-client-contracts": "^1.1.8|^2",
  5111. "symfony/polyfill-php73": "^1.11",
  5112. "symfony/service-contracts": "^1.0|^2"
  5113. },
  5114. "provide": {
  5115. "php-http/async-client-implementation": "*",
  5116. "php-http/client-implementation": "*",
  5117. "psr/http-client-implementation": "1.0",
  5118. "symfony/http-client-implementation": "1.1"
  5119. },
  5120. "require-dev": {
  5121. "guzzlehttp/promises": "^1.3.1",
  5122. "nyholm/psr7": "^1.0",
  5123. "php-http/httplug": "^1.0|^2.0",
  5124. "psr/http-client": "^1.0",
  5125. "symfony/dependency-injection": "^4.4|^5.0",
  5126. "symfony/http-kernel": "^4.4|^5.0",
  5127. "symfony/process": "^4.4|^5.0"
  5128. },
  5129. "type": "library",
  5130. "extra": {
  5131. "branch-alias": {
  5132. "dev-master": "5.0-dev"
  5133. }
  5134. },
  5135. "autoload": {
  5136. "psr-4": {
  5137. "Symfony\\Component\\HttpClient\\": ""
  5138. },
  5139. "exclude-from-classmap": [
  5140. "/Tests/"
  5141. ]
  5142. },
  5143. "notification-url": "https://packagist.org/downloads/",
  5144. "license": [
  5145. "MIT"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Nicolas Grekas",
  5150. "email": "p@tchwork.com"
  5151. },
  5152. {
  5153. "name": "Symfony Community",
  5154. "homepage": "https://symfony.com/contributors"
  5155. }
  5156. ],
  5157. "description": "Symfony HttpClient component",
  5158. "homepage": "https://symfony.com",
  5159. "support": {
  5160. "source": "https://github.com/symfony/http-client/tree/v5.0.5"
  5161. },
  5162. "funding": [
  5163. {
  5164. "url": "https://symfony.com/sponsor",
  5165. "type": "custom"
  5166. },
  5167. {
  5168. "url": "https://github.com/fabpot",
  5169. "type": "github"
  5170. },
  5171. {
  5172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5173. "type": "tidelift"
  5174. }
  5175. ],
  5176. "time": "2020-02-26T22:30:10+00:00"
  5177. },
  5178. {
  5179. "name": "symfony/http-client-contracts",
  5180. "version": "v2.0.1",
  5181. "source": {
  5182. "type": "git",
  5183. "url": "https://github.com/symfony/http-client-contracts.git",
  5184. "reference": "378868b61b85c5cac6822d4f84e26999c9f2e881"
  5185. },
  5186. "dist": {
  5187. "type": "zip",
  5188. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/378868b61b85c5cac6822d4f84e26999c9f2e881",
  5189. "reference": "378868b61b85c5cac6822d4f84e26999c9f2e881",
  5190. "shasum": ""
  5191. },
  5192. "require": {
  5193. "php": "^7.2.5"
  5194. },
  5195. "suggest": {
  5196. "symfony/http-client-implementation": ""
  5197. },
  5198. "type": "library",
  5199. "extra": {
  5200. "branch-alias": {
  5201. "dev-master": "2.0-dev"
  5202. }
  5203. },
  5204. "autoload": {
  5205. "psr-4": {
  5206. "Symfony\\Contracts\\HttpClient\\": ""
  5207. }
  5208. },
  5209. "notification-url": "https://packagist.org/downloads/",
  5210. "license": [
  5211. "MIT"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "Nicolas Grekas",
  5216. "email": "p@tchwork.com"
  5217. },
  5218. {
  5219. "name": "Symfony Community",
  5220. "homepage": "https://symfony.com/contributors"
  5221. }
  5222. ],
  5223. "description": "Generic abstractions related to HTTP clients",
  5224. "homepage": "https://symfony.com",
  5225. "keywords": [
  5226. "abstractions",
  5227. "contracts",
  5228. "decoupling",
  5229. "interfaces",
  5230. "interoperability",
  5231. "standards"
  5232. ],
  5233. "support": {
  5234. "source": "https://github.com/symfony/http-client-contracts/tree/v2.0.1"
  5235. },
  5236. "time": "2019-11-26T23:25:11+00:00"
  5237. },
  5238. {
  5239. "name": "symfony/mime",
  5240. "version": "v5.0.5",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/symfony/mime.git",
  5244. "reference": "9b3e5b5e58c56bbd76628c952d2b78556d305f3c"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/symfony/mime/zipball/9b3e5b5e58c56bbd76628c952d2b78556d305f3c",
  5249. "reference": "9b3e5b5e58c56bbd76628c952d2b78556d305f3c",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "php": "^7.2.5",
  5254. "symfony/polyfill-intl-idn": "^1.10",
  5255. "symfony/polyfill-mbstring": "^1.0"
  5256. },
  5257. "conflict": {
  5258. "symfony/mailer": "<4.4"
  5259. },
  5260. "require-dev": {
  5261. "egulias/email-validator": "^2.1.10",
  5262. "symfony/dependency-injection": "^4.4|^5.0"
  5263. },
  5264. "type": "library",
  5265. "extra": {
  5266. "branch-alias": {
  5267. "dev-master": "5.0-dev"
  5268. }
  5269. },
  5270. "autoload": {
  5271. "psr-4": {
  5272. "Symfony\\Component\\Mime\\": ""
  5273. },
  5274. "exclude-from-classmap": [
  5275. "/Tests/"
  5276. ]
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "MIT"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Fabien Potencier",
  5285. "email": "fabien@symfony.com"
  5286. },
  5287. {
  5288. "name": "Symfony Community",
  5289. "homepage": "https://symfony.com/contributors"
  5290. }
  5291. ],
  5292. "description": "A library to manipulate MIME messages",
  5293. "homepage": "https://symfony.com",
  5294. "keywords": [
  5295. "mime",
  5296. "mime-type"
  5297. ],
  5298. "support": {
  5299. "source": "https://github.com/symfony/mime/tree/v5.0.5"
  5300. },
  5301. "funding": [
  5302. {
  5303. "url": "https://symfony.com/sponsor",
  5304. "type": "custom"
  5305. },
  5306. {
  5307. "url": "https://github.com/fabpot",
  5308. "type": "github"
  5309. },
  5310. {
  5311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5312. "type": "tidelift"
  5313. }
  5314. ],
  5315. "time": "2020-02-04T09:41:09+00:00"
  5316. },
  5317. {
  5318. "name": "symfony/monolog-bundle",
  5319. "version": "v3.5.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/symfony/monolog-bundle.git",
  5323. "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/dd80460fcfe1fa2050a7103ad818e9d0686ce6fd",
  5328. "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "monolog/monolog": "~1.22 || ~2.0",
  5333. "php": ">=5.6",
  5334. "symfony/config": "~3.4 || ~4.0 || ^5.0",
  5335. "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0",
  5336. "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0",
  5337. "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0"
  5338. },
  5339. "require-dev": {
  5340. "symfony/console": "~3.4 || ~4.0 || ^5.0",
  5341. "symfony/phpunit-bridge": "^3.4.19 || ^4.0 || ^5.0",
  5342. "symfony/yaml": "~3.4 || ~4.0 || ^5.0"
  5343. },
  5344. "type": "symfony-bundle",
  5345. "extra": {
  5346. "branch-alias": {
  5347. "dev-master": "3.x-dev"
  5348. }
  5349. },
  5350. "autoload": {
  5351. "psr-4": {
  5352. "Symfony\\Bundle\\MonologBundle\\": ""
  5353. },
  5354. "exclude-from-classmap": [
  5355. "/Tests/"
  5356. ]
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "MIT"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Fabien Potencier",
  5365. "email": "fabien@symfony.com"
  5366. },
  5367. {
  5368. "name": "Symfony Community",
  5369. "homepage": "http://symfony.com/contributors"
  5370. }
  5371. ],
  5372. "description": "Symfony MonologBundle",
  5373. "homepage": "http://symfony.com",
  5374. "keywords": [
  5375. "log",
  5376. "logging"
  5377. ],
  5378. "support": {
  5379. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5380. "source": "https://github.com/symfony/monolog-bundle/tree/v3.5.0"
  5381. },
  5382. "time": "2019-11-13T13:11:14+00:00"
  5383. },
  5384. {
  5385. "name": "symfony/polyfill-apcu",
  5386. "version": "v1.14.0",
  5387. "source": {
  5388. "type": "git",
  5389. "url": "https://github.com/symfony/polyfill-apcu.git",
  5390. "reference": "f5a6efd9d9f68790120734f80f8fda972981edab"
  5391. },
  5392. "dist": {
  5393. "type": "zip",
  5394. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/f5a6efd9d9f68790120734f80f8fda972981edab",
  5395. "reference": "f5a6efd9d9f68790120734f80f8fda972981edab",
  5396. "shasum": ""
  5397. },
  5398. "require": {
  5399. "php": ">=5.3.3"
  5400. },
  5401. "type": "library",
  5402. "extra": {
  5403. "branch-alias": {
  5404. "dev-master": "1.14-dev"
  5405. }
  5406. },
  5407. "autoload": {
  5408. "psr-4": {
  5409. "Symfony\\Polyfill\\Apcu\\": ""
  5410. },
  5411. "files": [
  5412. "bootstrap.php"
  5413. ]
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "MIT"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Nicolas Grekas",
  5422. "email": "p@tchwork.com"
  5423. },
  5424. {
  5425. "name": "Symfony Community",
  5426. "homepage": "https://symfony.com/contributors"
  5427. }
  5428. ],
  5429. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  5430. "homepage": "https://symfony.com",
  5431. "keywords": [
  5432. "apcu",
  5433. "compatibility",
  5434. "polyfill",
  5435. "portable",
  5436. "shim"
  5437. ],
  5438. "support": {
  5439. "source": "https://github.com/symfony/polyfill-apcu/tree/master"
  5440. },
  5441. "time": "2020-01-13T11:15:53+00:00"
  5442. },
  5443. {
  5444. "name": "symfony/polyfill-ctype",
  5445. "version": "v1.14.0",
  5446. "source": {
  5447. "type": "git",
  5448. "url": "https://github.com/symfony/polyfill-ctype.git",
  5449. "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38"
  5450. },
  5451. "dist": {
  5452. "type": "zip",
  5453. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
  5454. "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
  5455. "shasum": ""
  5456. },
  5457. "require": {
  5458. "php": ">=5.3.3"
  5459. },
  5460. "suggest": {
  5461. "ext-ctype": "For best performance"
  5462. },
  5463. "type": "library",
  5464. "extra": {
  5465. "branch-alias": {
  5466. "dev-master": "1.14-dev"
  5467. }
  5468. },
  5469. "autoload": {
  5470. "psr-4": {
  5471. "Symfony\\Polyfill\\Ctype\\": ""
  5472. },
  5473. "files": [
  5474. "bootstrap.php"
  5475. ]
  5476. },
  5477. "notification-url": "https://packagist.org/downloads/",
  5478. "license": [
  5479. "MIT"
  5480. ],
  5481. "authors": [
  5482. {
  5483. "name": "Gert de Pagter",
  5484. "email": "BackEndTea@gmail.com"
  5485. },
  5486. {
  5487. "name": "Symfony Community",
  5488. "homepage": "https://symfony.com/contributors"
  5489. }
  5490. ],
  5491. "description": "Symfony polyfill for ctype functions",
  5492. "homepage": "https://symfony.com",
  5493. "keywords": [
  5494. "compatibility",
  5495. "ctype",
  5496. "polyfill",
  5497. "portable"
  5498. ],
  5499. "support": {
  5500. "source": "https://github.com/symfony/polyfill-ctype/tree/master"
  5501. },
  5502. "time": "2020-01-13T11:15:53+00:00"
  5503. },
  5504. {
  5505. "name": "symfony/polyfill-iconv",
  5506. "version": "v1.14.0",
  5507. "source": {
  5508. "type": "git",
  5509. "url": "https://github.com/symfony/polyfill-iconv.git",
  5510. "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e"
  5511. },
  5512. "dist": {
  5513. "type": "zip",
  5514. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/926832ce51059bb58211b7b2080a88e0c3b5328e",
  5515. "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e",
  5516. "shasum": ""
  5517. },
  5518. "require": {
  5519. "php": ">=5.3.3"
  5520. },
  5521. "suggest": {
  5522. "ext-iconv": "For best performance"
  5523. },
  5524. "type": "library",
  5525. "extra": {
  5526. "branch-alias": {
  5527. "dev-master": "1.14-dev"
  5528. }
  5529. },
  5530. "autoload": {
  5531. "psr-4": {
  5532. "Symfony\\Polyfill\\Iconv\\": ""
  5533. },
  5534. "files": [
  5535. "bootstrap.php"
  5536. ]
  5537. },
  5538. "notification-url": "https://packagist.org/downloads/",
  5539. "license": [
  5540. "MIT"
  5541. ],
  5542. "authors": [
  5543. {
  5544. "name": "Nicolas Grekas",
  5545. "email": "p@tchwork.com"
  5546. },
  5547. {
  5548. "name": "Symfony Community",
  5549. "homepage": "https://symfony.com/contributors"
  5550. }
  5551. ],
  5552. "description": "Symfony polyfill for the Iconv extension",
  5553. "homepage": "https://symfony.com",
  5554. "keywords": [
  5555. "compatibility",
  5556. "iconv",
  5557. "polyfill",
  5558. "portable",
  5559. "shim"
  5560. ],
  5561. "support": {
  5562. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.14.0"
  5563. },
  5564. "time": "2020-01-13T11:15:53+00:00"
  5565. },
  5566. {
  5567. "name": "symfony/polyfill-intl-icu",
  5568. "version": "v1.14.0",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5572. "reference": "727b3bb5bfa7ca9eeb86416784cf1c08a6289b86"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/727b3bb5bfa7ca9eeb86416784cf1c08a6289b86",
  5577. "reference": "727b3bb5bfa7ca9eeb86416784cf1c08a6289b86",
  5578. "shasum": ""
  5579. },
  5580. "require": {
  5581. "php": ">=5.3.3",
  5582. "symfony/intl": "~2.3|~3.0|~4.0|~5.0"
  5583. },
  5584. "suggest": {
  5585. "ext-intl": "For best performance"
  5586. },
  5587. "type": "library",
  5588. "extra": {
  5589. "branch-alias": {
  5590. "dev-master": "1.14-dev"
  5591. }
  5592. },
  5593. "autoload": {
  5594. "files": [
  5595. "bootstrap.php"
  5596. ]
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "MIT"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "Nicolas Grekas",
  5605. "email": "p@tchwork.com"
  5606. },
  5607. {
  5608. "name": "Symfony Community",
  5609. "homepage": "https://symfony.com/contributors"
  5610. }
  5611. ],
  5612. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5613. "homepage": "https://symfony.com",
  5614. "keywords": [
  5615. "compatibility",
  5616. "icu",
  5617. "intl",
  5618. "polyfill",
  5619. "portable",
  5620. "shim"
  5621. ],
  5622. "support": {
  5623. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.14.0"
  5624. },
  5625. "time": "2020-01-13T11:15:53+00:00"
  5626. },
  5627. {
  5628. "name": "symfony/polyfill-intl-idn",
  5629. "version": "v1.14.0",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5633. "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6842f1a39cf7d580655688069a03dd7cd83d244a",
  5638. "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a",
  5639. "shasum": ""
  5640. },
  5641. "require": {
  5642. "php": ">=5.3.3",
  5643. "symfony/polyfill-mbstring": "^1.3",
  5644. "symfony/polyfill-php72": "^1.10"
  5645. },
  5646. "suggest": {
  5647. "ext-intl": "For best performance"
  5648. },
  5649. "type": "library",
  5650. "extra": {
  5651. "branch-alias": {
  5652. "dev-master": "1.14-dev"
  5653. }
  5654. },
  5655. "autoload": {
  5656. "psr-4": {
  5657. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5658. },
  5659. "files": [
  5660. "bootstrap.php"
  5661. ]
  5662. },
  5663. "notification-url": "https://packagist.org/downloads/",
  5664. "license": [
  5665. "MIT"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "Laurent Bassin",
  5670. "email": "laurent@bassin.info"
  5671. },
  5672. {
  5673. "name": "Symfony Community",
  5674. "homepage": "https://symfony.com/contributors"
  5675. }
  5676. ],
  5677. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5678. "homepage": "https://symfony.com",
  5679. "keywords": [
  5680. "compatibility",
  5681. "idn",
  5682. "intl",
  5683. "polyfill",
  5684. "portable",
  5685. "shim"
  5686. ],
  5687. "support": {
  5688. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  5689. },
  5690. "time": "2020-01-17T12:01:36+00:00"
  5691. },
  5692. {
  5693. "name": "symfony/polyfill-mbstring",
  5694. "version": "v1.14.0",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5698. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  5703. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  5704. "shasum": ""
  5705. },
  5706. "require": {
  5707. "php": ">=5.3.3"
  5708. },
  5709. "suggest": {
  5710. "ext-mbstring": "For best performance"
  5711. },
  5712. "type": "library",
  5713. "extra": {
  5714. "branch-alias": {
  5715. "dev-master": "1.14-dev"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "psr-4": {
  5720. "Symfony\\Polyfill\\Mbstring\\": ""
  5721. },
  5722. "files": [
  5723. "bootstrap.php"
  5724. ]
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Nicolas Grekas",
  5733. "email": "p@tchwork.com"
  5734. },
  5735. {
  5736. "name": "Symfony Community",
  5737. "homepage": "https://symfony.com/contributors"
  5738. }
  5739. ],
  5740. "description": "Symfony polyfill for the Mbstring extension",
  5741. "homepage": "https://symfony.com",
  5742. "keywords": [
  5743. "compatibility",
  5744. "mbstring",
  5745. "polyfill",
  5746. "portable",
  5747. "shim"
  5748. ],
  5749. "support": {
  5750. "source": "https://github.com/symfony/polyfill-mbstring/tree/master"
  5751. },
  5752. "time": "2020-01-13T11:15:53+00:00"
  5753. },
  5754. {
  5755. "name": "symfony/polyfill-php56",
  5756. "version": "v1.14.0",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/symfony/polyfill-php56.git",
  5760. "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/16ec91cb06998b609501b55b7177b7d7c02badb3",
  5765. "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3",
  5766. "shasum": ""
  5767. },
  5768. "require": {
  5769. "php": ">=5.3.3",
  5770. "symfony/polyfill-util": "~1.0"
  5771. },
  5772. "type": "library",
  5773. "extra": {
  5774. "branch-alias": {
  5775. "dev-master": "1.14-dev"
  5776. }
  5777. },
  5778. "autoload": {
  5779. "psr-4": {
  5780. "Symfony\\Polyfill\\Php56\\": ""
  5781. },
  5782. "files": [
  5783. "bootstrap.php"
  5784. ]
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Nicolas Grekas",
  5793. "email": "p@tchwork.com"
  5794. },
  5795. {
  5796. "name": "Symfony Community",
  5797. "homepage": "https://symfony.com/contributors"
  5798. }
  5799. ],
  5800. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5801. "homepage": "https://symfony.com",
  5802. "keywords": [
  5803. "compatibility",
  5804. "polyfill",
  5805. "portable",
  5806. "shim"
  5807. ],
  5808. "support": {
  5809. "source": "https://github.com/symfony/polyfill-php56/tree/master"
  5810. },
  5811. "time": "2020-01-13T11:15:53+00:00"
  5812. },
  5813. {
  5814. "name": "symfony/polyfill-php70",
  5815. "version": "v1.14.0",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/symfony/polyfill-php70.git",
  5819. "reference": "419c4940024c30ccc033650373a1fe13890d3255"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/419c4940024c30ccc033650373a1fe13890d3255",
  5824. "reference": "419c4940024c30ccc033650373a1fe13890d3255",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5829. "php": ">=5.3.3"
  5830. },
  5831. "type": "library",
  5832. "extra": {
  5833. "branch-alias": {
  5834. "dev-master": "1.14-dev"
  5835. }
  5836. },
  5837. "autoload": {
  5838. "psr-4": {
  5839. "Symfony\\Polyfill\\Php70\\": ""
  5840. },
  5841. "files": [
  5842. "bootstrap.php"
  5843. ],
  5844. "classmap": [
  5845. "Resources/stubs"
  5846. ]
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "authors": [
  5853. {
  5854. "name": "Nicolas Grekas",
  5855. "email": "p@tchwork.com"
  5856. },
  5857. {
  5858. "name": "Symfony Community",
  5859. "homepage": "https://symfony.com/contributors"
  5860. }
  5861. ],
  5862. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5863. "homepage": "https://symfony.com",
  5864. "keywords": [
  5865. "compatibility",
  5866. "polyfill",
  5867. "portable",
  5868. "shim"
  5869. ],
  5870. "support": {
  5871. "source": "https://github.com/symfony/polyfill-php70/tree/v1.14.0"
  5872. },
  5873. "time": "2020-01-13T11:15:53+00:00"
  5874. },
  5875. {
  5876. "name": "symfony/polyfill-php72",
  5877. "version": "v1.14.0",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://github.com/symfony/polyfill-php72.git",
  5881. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  5886. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  5887. "shasum": ""
  5888. },
  5889. "require": {
  5890. "php": ">=5.3.3"
  5891. },
  5892. "type": "library",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-master": "1.14-dev"
  5896. }
  5897. },
  5898. "autoload": {
  5899. "psr-4": {
  5900. "Symfony\\Polyfill\\Php72\\": ""
  5901. },
  5902. "files": [
  5903. "bootstrap.php"
  5904. ]
  5905. },
  5906. "notification-url": "https://packagist.org/downloads/",
  5907. "license": [
  5908. "MIT"
  5909. ],
  5910. "authors": [
  5911. {
  5912. "name": "Nicolas Grekas",
  5913. "email": "p@tchwork.com"
  5914. },
  5915. {
  5916. "name": "Symfony Community",
  5917. "homepage": "https://symfony.com/contributors"
  5918. }
  5919. ],
  5920. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5921. "homepage": "https://symfony.com",
  5922. "keywords": [
  5923. "compatibility",
  5924. "polyfill",
  5925. "portable",
  5926. "shim"
  5927. ],
  5928. "support": {
  5929. "source": "https://github.com/symfony/polyfill-php72/tree/v1.14.0"
  5930. },
  5931. "time": "2020-01-13T11:15:53+00:00"
  5932. },
  5933. {
  5934. "name": "symfony/polyfill-php73",
  5935. "version": "v1.14.0",
  5936. "source": {
  5937. "type": "git",
  5938. "url": "https://github.com/symfony/polyfill-php73.git",
  5939. "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675"
  5940. },
  5941. "dist": {
  5942. "type": "zip",
  5943. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/5e66a0fa1070bf46bec4bea7962d285108edd675",
  5944. "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675",
  5945. "shasum": ""
  5946. },
  5947. "require": {
  5948. "php": ">=5.3.3"
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "branch-alias": {
  5953. "dev-master": "1.14-dev"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "psr-4": {
  5958. "Symfony\\Polyfill\\Php73\\": ""
  5959. },
  5960. "files": [
  5961. "bootstrap.php"
  5962. ],
  5963. "classmap": [
  5964. "Resources/stubs"
  5965. ]
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Nicolas Grekas",
  5974. "email": "p@tchwork.com"
  5975. },
  5976. {
  5977. "name": "Symfony Community",
  5978. "homepage": "https://symfony.com/contributors"
  5979. }
  5980. ],
  5981. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5982. "homepage": "https://symfony.com",
  5983. "keywords": [
  5984. "compatibility",
  5985. "polyfill",
  5986. "portable",
  5987. "shim"
  5988. ],
  5989. "support": {
  5990. "source": "https://github.com/symfony/polyfill-php73/tree/v1.14.0"
  5991. },
  5992. "time": "2020-01-13T11:15:53+00:00"
  5993. },
  5994. {
  5995. "name": "symfony/polyfill-util",
  5996. "version": "v1.14.0",
  5997. "source": {
  5998. "type": "git",
  5999. "url": "https://github.com/symfony/polyfill-util.git",
  6000. "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3"
  6001. },
  6002. "dist": {
  6003. "type": "zip",
  6004. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ba3cfcea6d0192cae46c62041f61cbb704b526d3",
  6005. "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3",
  6006. "shasum": ""
  6007. },
  6008. "require": {
  6009. "php": ">=5.3.3"
  6010. },
  6011. "type": "library",
  6012. "extra": {
  6013. "branch-alias": {
  6014. "dev-master": "1.14-dev"
  6015. }
  6016. },
  6017. "autoload": {
  6018. "psr-4": {
  6019. "Symfony\\Polyfill\\Util\\": ""
  6020. }
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Nicolas Grekas",
  6029. "email": "p@tchwork.com"
  6030. },
  6031. {
  6032. "name": "Symfony Community",
  6033. "homepage": "https://symfony.com/contributors"
  6034. }
  6035. ],
  6036. "description": "Symfony utilities for portability of PHP codes",
  6037. "homepage": "https://symfony.com",
  6038. "keywords": [
  6039. "compat",
  6040. "compatibility",
  6041. "polyfill",
  6042. "shim"
  6043. ],
  6044. "support": {
  6045. "source": "https://github.com/symfony/polyfill-util/tree/master"
  6046. },
  6047. "time": "2020-01-13T11:15:53+00:00"
  6048. },
  6049. {
  6050. "name": "symfony/service-contracts",
  6051. "version": "v2.0.1",
  6052. "source": {
  6053. "type": "git",
  6054. "url": "https://github.com/symfony/service-contracts.git",
  6055. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  6056. },
  6057. "dist": {
  6058. "type": "zip",
  6059. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  6060. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  6061. "shasum": ""
  6062. },
  6063. "require": {
  6064. "php": "^7.2.5",
  6065. "psr/container": "^1.0"
  6066. },
  6067. "suggest": {
  6068. "symfony/service-implementation": ""
  6069. },
  6070. "type": "library",
  6071. "extra": {
  6072. "branch-alias": {
  6073. "dev-master": "2.0-dev"
  6074. }
  6075. },
  6076. "autoload": {
  6077. "psr-4": {
  6078. "Symfony\\Contracts\\Service\\": ""
  6079. }
  6080. },
  6081. "notification-url": "https://packagist.org/downloads/",
  6082. "license": [
  6083. "MIT"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Nicolas Grekas",
  6088. "email": "p@tchwork.com"
  6089. },
  6090. {
  6091. "name": "Symfony Community",
  6092. "homepage": "https://symfony.com/contributors"
  6093. }
  6094. ],
  6095. "description": "Generic abstractions related to writing services",
  6096. "homepage": "https://symfony.com",
  6097. "keywords": [
  6098. "abstractions",
  6099. "contracts",
  6100. "decoupling",
  6101. "interfaces",
  6102. "interoperability",
  6103. "standards"
  6104. ],
  6105. "support": {
  6106. "source": "https://github.com/symfony/service-contracts/tree/v2.0.1"
  6107. },
  6108. "time": "2019-11-18T17:27:11+00:00"
  6109. },
  6110. {
  6111. "name": "symfony/swiftmailer-bundle",
  6112. "version": "v3.3.1",
  6113. "source": {
  6114. "type": "git",
  6115. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  6116. "reference": "defa9bdfc0191ed70b389cb93c550c6c82cf1745"
  6117. },
  6118. "dist": {
  6119. "type": "zip",
  6120. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/defa9bdfc0191ed70b389cb93c550c6c82cf1745",
  6121. "reference": "defa9bdfc0191ed70b389cb93c550c6c82cf1745",
  6122. "shasum": ""
  6123. },
  6124. "require": {
  6125. "php": ">=7.0.0",
  6126. "swiftmailer/swiftmailer": "^6.1.3",
  6127. "symfony/config": "^3.4|^4.0|^5.0",
  6128. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6129. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  6130. },
  6131. "conflict": {
  6132. "twig/twig": "<1.41|<2.10"
  6133. },
  6134. "require-dev": {
  6135. "symfony/console": "^3.4|^4.0|^5.0",
  6136. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  6137. "symfony/phpunit-bridge": "^3.4.32|^4.3.5|^5.0",
  6138. "symfony/yaml": "^3.4|^4.0|^5.0"
  6139. },
  6140. "suggest": {
  6141. "psr/log": "Allows logging"
  6142. },
  6143. "type": "symfony-bundle",
  6144. "extra": {
  6145. "branch-alias": {
  6146. "dev-master": "3.3-dev"
  6147. }
  6148. },
  6149. "autoload": {
  6150. "psr-4": {
  6151. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  6152. },
  6153. "exclude-from-classmap": [
  6154. "/Tests/"
  6155. ]
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "MIT"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "Fabien Potencier",
  6164. "email": "fabien@symfony.com"
  6165. },
  6166. {
  6167. "name": "Symfony Community",
  6168. "homepage": "http://symfony.com/contributors"
  6169. }
  6170. ],
  6171. "description": "Symfony SwiftmailerBundle",
  6172. "homepage": "http://symfony.com",
  6173. "support": {
  6174. "issues": "https://github.com/symfony/swiftmailer-bundle/issues",
  6175. "source": "https://github.com/symfony/swiftmailer-bundle/tree/master"
  6176. },
  6177. "time": "2019-11-07T21:01:35+00:00"
  6178. },
  6179. {
  6180. "name": "symfony/symfony",
  6181. "version": "v3.4.38",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/symfony/symfony.git",
  6185. "reference": "c5a882db43e7163114edffdf3ee2f988328fa6c4"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/symfony/symfony/zipball/c5a882db43e7163114edffdf3ee2f988328fa6c4",
  6190. "reference": "c5a882db43e7163114edffdf3ee2f988328fa6c4",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "doctrine/common": "~2.4",
  6195. "ext-xml": "*",
  6196. "fig/link-util": "^1.0",
  6197. "php": "^5.5.9|>=7.0.8",
  6198. "psr/cache": "~1.0",
  6199. "psr/container": "^1.0",
  6200. "psr/link": "^1.0",
  6201. "psr/log": "~1.0",
  6202. "psr/simple-cache": "^1.0",
  6203. "symfony/polyfill-apcu": "~1.1",
  6204. "symfony/polyfill-ctype": "~1.8",
  6205. "symfony/polyfill-intl-icu": "~1.0",
  6206. "symfony/polyfill-mbstring": "~1.0",
  6207. "symfony/polyfill-php56": "~1.0",
  6208. "symfony/polyfill-php70": "~1.6",
  6209. "twig/twig": "^1.41|^2.10"
  6210. },
  6211. "conflict": {
  6212. "monolog/monolog": ">=2",
  6213. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  6214. "phpdocumentor/type-resolver": "<0.3.0",
  6215. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6216. },
  6217. "provide": {
  6218. "psr/cache-implementation": "1.0",
  6219. "psr/container-implementation": "1.0",
  6220. "psr/log-implementation": "1.0",
  6221. "psr/simple-cache-implementation": "1.0"
  6222. },
  6223. "replace": {
  6224. "symfony/asset": "self.version",
  6225. "symfony/browser-kit": "self.version",
  6226. "symfony/cache": "self.version",
  6227. "symfony/class-loader": "self.version",
  6228. "symfony/config": "self.version",
  6229. "symfony/console": "self.version",
  6230. "symfony/css-selector": "self.version",
  6231. "symfony/debug": "self.version",
  6232. "symfony/debug-bundle": "self.version",
  6233. "symfony/dependency-injection": "self.version",
  6234. "symfony/doctrine-bridge": "self.version",
  6235. "symfony/dom-crawler": "self.version",
  6236. "symfony/dotenv": "self.version",
  6237. "symfony/event-dispatcher": "self.version",
  6238. "symfony/expression-language": "self.version",
  6239. "symfony/filesystem": "self.version",
  6240. "symfony/finder": "self.version",
  6241. "symfony/form": "self.version",
  6242. "symfony/framework-bundle": "self.version",
  6243. "symfony/http-foundation": "self.version",
  6244. "symfony/http-kernel": "self.version",
  6245. "symfony/inflector": "self.version",
  6246. "symfony/intl": "self.version",
  6247. "symfony/ldap": "self.version",
  6248. "symfony/lock": "self.version",
  6249. "symfony/monolog-bridge": "self.version",
  6250. "symfony/options-resolver": "self.version",
  6251. "symfony/process": "self.version",
  6252. "symfony/property-access": "self.version",
  6253. "symfony/property-info": "self.version",
  6254. "symfony/proxy-manager-bridge": "self.version",
  6255. "symfony/routing": "self.version",
  6256. "symfony/security": "self.version",
  6257. "symfony/security-bundle": "self.version",
  6258. "symfony/security-core": "self.version",
  6259. "symfony/security-csrf": "self.version",
  6260. "symfony/security-guard": "self.version",
  6261. "symfony/security-http": "self.version",
  6262. "symfony/serializer": "self.version",
  6263. "symfony/stopwatch": "self.version",
  6264. "symfony/templating": "self.version",
  6265. "symfony/translation": "self.version",
  6266. "symfony/twig-bridge": "self.version",
  6267. "symfony/twig-bundle": "self.version",
  6268. "symfony/validator": "self.version",
  6269. "symfony/var-dumper": "self.version",
  6270. "symfony/web-link": "self.version",
  6271. "symfony/web-profiler-bundle": "self.version",
  6272. "symfony/web-server-bundle": "self.version",
  6273. "symfony/workflow": "self.version",
  6274. "symfony/yaml": "self.version"
  6275. },
  6276. "require-dev": {
  6277. "cache/integration-tests": "dev-master",
  6278. "doctrine/annotations": "~1.0",
  6279. "doctrine/cache": "~1.6",
  6280. "doctrine/data-fixtures": "1.0.*",
  6281. "doctrine/dbal": "~2.4",
  6282. "doctrine/doctrine-bundle": "~1.4",
  6283. "doctrine/orm": "~2.4,>=2.4.5",
  6284. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  6285. "monolog/monolog": "~1.11",
  6286. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  6287. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  6288. "predis/predis": "~1.0",
  6289. "symfony/phpunit-bridge": "^3.4.31|^4.3.4|~5.0",
  6290. "symfony/security-acl": "~2.8|~3.0"
  6291. },
  6292. "type": "library",
  6293. "extra": {
  6294. "branch-alias": {
  6295. "dev-master": "3.4-dev"
  6296. }
  6297. },
  6298. "autoload": {
  6299. "psr-4": {
  6300. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  6301. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  6302. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  6303. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  6304. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  6305. "Symfony\\Component\\": "src/Symfony/Component/"
  6306. },
  6307. "classmap": [
  6308. "src/Symfony/Component/Intl/Resources/stubs"
  6309. ],
  6310. "exclude-from-classmap": [
  6311. "**/Tests/"
  6312. ]
  6313. },
  6314. "notification-url": "https://packagist.org/downloads/",
  6315. "license": [
  6316. "MIT"
  6317. ],
  6318. "authors": [
  6319. {
  6320. "name": "Fabien Potencier",
  6321. "email": "fabien@symfony.com"
  6322. },
  6323. {
  6324. "name": "Symfony Community",
  6325. "homepage": "https://symfony.com/contributors"
  6326. }
  6327. ],
  6328. "description": "The Symfony PHP framework",
  6329. "homepage": "https://symfony.com",
  6330. "keywords": [
  6331. "framework"
  6332. ],
  6333. "support": {
  6334. "issues": "https://github.com/symfony/symfony/issues",
  6335. "source": "https://github.com/symfony/symfony/tree/v3.4.38"
  6336. },
  6337. "funding": [
  6338. {
  6339. "url": "https://symfony.com/sponsor",
  6340. "type": "custom"
  6341. },
  6342. {
  6343. "url": "https://github.com/fabpot",
  6344. "type": "github"
  6345. },
  6346. {
  6347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6348. "type": "tidelift"
  6349. }
  6350. ],
  6351. "time": "2020-02-29T10:21:57+00:00"
  6352. },
  6353. {
  6354. "name": "thecodingmachine/safe",
  6355. "version": "v1.0.3",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/thecodingmachine/safe.git",
  6359. "reference": "6662d0bef91fe5d44178cb2c38d51c5d16b65d23"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/6662d0bef91fe5d44178cb2c38d51c5d16b65d23",
  6364. "reference": "6662d0bef91fe5d44178cb2c38d51c5d16b65d23",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "php": ">=7.2"
  6369. },
  6370. "require-dev": {
  6371. "phpstan/phpstan": "^0.12",
  6372. "squizlabs/php_codesniffer": "^3.2",
  6373. "thecodingmachine/phpstan-strict-rules": "^0.12"
  6374. },
  6375. "type": "library",
  6376. "extra": {
  6377. "branch-alias": {
  6378. "dev-master": "0.1-dev"
  6379. }
  6380. },
  6381. "autoload": {
  6382. "psr-4": {
  6383. "Safe\\": [
  6384. "lib/",
  6385. "generated/"
  6386. ]
  6387. },
  6388. "files": [
  6389. "generated/apache.php",
  6390. "generated/apc.php",
  6391. "generated/apcu.php",
  6392. "generated/array.php",
  6393. "generated/bzip2.php",
  6394. "generated/classobj.php",
  6395. "generated/com.php",
  6396. "generated/cubrid.php",
  6397. "generated/curl.php",
  6398. "generated/datetime.php",
  6399. "generated/dir.php",
  6400. "generated/eio.php",
  6401. "generated/errorfunc.php",
  6402. "generated/exec.php",
  6403. "generated/fileinfo.php",
  6404. "generated/filesystem.php",
  6405. "generated/filter.php",
  6406. "generated/fpm.php",
  6407. "generated/ftp.php",
  6408. "generated/funchand.php",
  6409. "generated/gmp.php",
  6410. "generated/gnupg.php",
  6411. "generated/hash.php",
  6412. "generated/ibase.php",
  6413. "generated/ibmDb2.php",
  6414. "generated/iconv.php",
  6415. "generated/image.php",
  6416. "generated/imap.php",
  6417. "generated/info.php",
  6418. "generated/ingres-ii.php",
  6419. "generated/inotify.php",
  6420. "generated/json.php",
  6421. "generated/ldap.php",
  6422. "generated/libevent.php",
  6423. "generated/libxml.php",
  6424. "generated/lzf.php",
  6425. "generated/mailparse.php",
  6426. "generated/mbstring.php",
  6427. "generated/misc.php",
  6428. "generated/msql.php",
  6429. "generated/mssql.php",
  6430. "generated/mysql.php",
  6431. "generated/mysqli.php",
  6432. "generated/mysqlndMs.php",
  6433. "generated/mysqlndQc.php",
  6434. "generated/network.php",
  6435. "generated/oci8.php",
  6436. "generated/opcache.php",
  6437. "generated/openssl.php",
  6438. "generated/outcontrol.php",
  6439. "generated/password.php",
  6440. "generated/pcntl.php",
  6441. "generated/pcre.php",
  6442. "generated/pdf.php",
  6443. "generated/pgsql.php",
  6444. "generated/posix.php",
  6445. "generated/ps.php",
  6446. "generated/pspell.php",
  6447. "generated/readline.php",
  6448. "generated/rrd.php",
  6449. "generated/sem.php",
  6450. "generated/session.php",
  6451. "generated/shmop.php",
  6452. "generated/simplexml.php",
  6453. "generated/sockets.php",
  6454. "generated/sodium.php",
  6455. "generated/solr.php",
  6456. "generated/spl.php",
  6457. "generated/sqlsrv.php",
  6458. "generated/ssdeep.php",
  6459. "generated/ssh2.php",
  6460. "generated/stats.php",
  6461. "generated/stream.php",
  6462. "generated/strings.php",
  6463. "generated/swoole.php",
  6464. "generated/uodbc.php",
  6465. "generated/uopz.php",
  6466. "generated/url.php",
  6467. "generated/var.php",
  6468. "generated/xdiff.php",
  6469. "generated/xml.php",
  6470. "generated/xmlrpc.php",
  6471. "generated/yaml.php",
  6472. "generated/yaz.php",
  6473. "generated/zip.php",
  6474. "generated/zlib.php",
  6475. "lib/special_cases.php"
  6476. ]
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "description": "PHP core functions that throw exceptions instead of returning FALSE on error",
  6483. "support": {
  6484. "issues": "https://github.com/thecodingmachine/safe/issues",
  6485. "source": "https://github.com/thecodingmachine/safe/tree/v1.0.3"
  6486. },
  6487. "time": "2020-01-20T08:44:36+00:00"
  6488. },
  6489. {
  6490. "name": "twig/extensions",
  6491. "version": "v1.5.4",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/twigphp/Twig-extensions.git",
  6495. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  6500. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  6501. "shasum": ""
  6502. },
  6503. "require": {
  6504. "twig/twig": "^1.27|^2.0"
  6505. },
  6506. "require-dev": {
  6507. "symfony/phpunit-bridge": "^3.4",
  6508. "symfony/translation": "^2.7|^3.4"
  6509. },
  6510. "suggest": {
  6511. "symfony/translation": "Allow the time_diff output to be translated"
  6512. },
  6513. "type": "library",
  6514. "extra": {
  6515. "branch-alias": {
  6516. "dev-master": "1.5-dev"
  6517. }
  6518. },
  6519. "autoload": {
  6520. "psr-0": {
  6521. "Twig_Extensions_": "lib/"
  6522. },
  6523. "psr-4": {
  6524. "Twig\\Extensions\\": "src/"
  6525. }
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Fabien Potencier",
  6534. "email": "fabien@symfony.com"
  6535. }
  6536. ],
  6537. "description": "Common additional features for Twig that do not directly belong in core",
  6538. "keywords": [
  6539. "i18n",
  6540. "text"
  6541. ],
  6542. "time": "2018-12-05T18:34:18+00:00"
  6543. },
  6544. {
  6545. "name": "twig/twig",
  6546. "version": "v2.12.5",
  6547. "source": {
  6548. "type": "git",
  6549. "url": "https://github.com/twigphp/Twig.git",
  6550. "reference": "18772e0190734944277ee97a02a9a6c6555fcd94"
  6551. },
  6552. "dist": {
  6553. "type": "zip",
  6554. "url": "https://api.github.com/repos/twigphp/Twig/zipball/18772e0190734944277ee97a02a9a6c6555fcd94",
  6555. "reference": "18772e0190734944277ee97a02a9a6c6555fcd94",
  6556. "shasum": ""
  6557. },
  6558. "require": {
  6559. "php": "^7.0",
  6560. "symfony/polyfill-ctype": "^1.8",
  6561. "symfony/polyfill-mbstring": "^1.3"
  6562. },
  6563. "require-dev": {
  6564. "psr/container": "^1.0",
  6565. "symfony/phpunit-bridge": "^4.4|^5.0"
  6566. },
  6567. "type": "library",
  6568. "extra": {
  6569. "branch-alias": {
  6570. "dev-master": "2.12-dev"
  6571. }
  6572. },
  6573. "autoload": {
  6574. "psr-0": {
  6575. "Twig_": "lib/"
  6576. },
  6577. "psr-4": {
  6578. "Twig\\": "src/"
  6579. }
  6580. },
  6581. "notification-url": "https://packagist.org/downloads/",
  6582. "license": [
  6583. "BSD-3-Clause"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Fabien Potencier",
  6588. "email": "fabien@symfony.com",
  6589. "homepage": "http://fabien.potencier.org",
  6590. "role": "Lead Developer"
  6591. },
  6592. {
  6593. "name": "Twig Team",
  6594. "role": "Contributors"
  6595. },
  6596. {
  6597. "name": "Armin Ronacher",
  6598. "email": "armin.ronacher@active-4.com",
  6599. "role": "Project Founder"
  6600. }
  6601. ],
  6602. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6603. "homepage": "https://twig.symfony.com",
  6604. "keywords": [
  6605. "templating"
  6606. ],
  6607. "support": {
  6608. "issues": "https://github.com/twigphp/Twig/issues",
  6609. "source": "https://github.com/twigphp/Twig/tree/2.x"
  6610. },
  6611. "time": "2020-02-11T15:31:23+00:00"
  6612. },
  6613. {
  6614. "name": "ua-parser/uap-php",
  6615. "version": "v3.9.7",
  6616. "source": {
  6617. "type": "git",
  6618. "url": "https://github.com/ua-parser/uap-php.git",
  6619. "reference": "7efc2f05b7d9817a59132e5d2e5ca91a1c071f6a"
  6620. },
  6621. "dist": {
  6622. "type": "zip",
  6623. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/7efc2f05b7d9817a59132e5d2e5ca91a1c071f6a",
  6624. "reference": "7efc2f05b7d9817a59132e5d2e5ca91a1c071f6a",
  6625. "shasum": ""
  6626. },
  6627. "require": {
  6628. "composer/ca-bundle": "^1.1",
  6629. "php": ">=5.3.0"
  6630. },
  6631. "require-dev": {
  6632. "phpunit/phpunit": "<8",
  6633. "symfony/console": "^2.0 || ^3.0 || ^4.0",
  6634. "symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
  6635. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  6636. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  6637. },
  6638. "suggest": {
  6639. "symfony/console": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  6640. "symfony/filesystem": "Required for CLI usage - 2.0 || ^3.0 || ^4.0",
  6641. "symfony/finder": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  6642. "symfony/yaml": "Required for CLI usage - ^4.0 || ^5.0"
  6643. },
  6644. "bin": [
  6645. "bin/uaparser"
  6646. ],
  6647. "type": "library",
  6648. "autoload": {
  6649. "psr-4": {
  6650. "UAParser\\": "src"
  6651. }
  6652. },
  6653. "notification-url": "https://packagist.org/downloads/",
  6654. "license": [
  6655. "MIT"
  6656. ],
  6657. "authors": [
  6658. {
  6659. "name": "Dave Olsen",
  6660. "email": "dmolsen@gmail.com"
  6661. },
  6662. {
  6663. "name": "Lars Strojny",
  6664. "email": "lars@strojny.net"
  6665. }
  6666. ],
  6667. "description": "A multi-language port of Browserscope's user agent parser.",
  6668. "support": {
  6669. "issues": "https://github.com/ua-parser/uap-php/issues",
  6670. "source": "https://github.com/ua-parser/uap-php/tree/master"
  6671. },
  6672. "time": "2020-02-21T09:54:14+00:00"
  6673. },
  6674. {
  6675. "name": "white-october/pagerfanta-bundle",
  6676. "version": "v1.3.2",
  6677. "source": {
  6678. "type": "git",
  6679. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  6680. "reference": "6df560869b5e09a3acf920890ab40598998b30ae"
  6681. },
  6682. "dist": {
  6683. "type": "zip",
  6684. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/6df560869b5e09a3acf920890ab40598998b30ae",
  6685. "reference": "6df560869b5e09a3acf920890ab40598998b30ae",
  6686. "shasum": ""
  6687. },
  6688. "require": {
  6689. "pagerfanta/pagerfanta": "^1.1.0|^2.0.0",
  6690. "php": ">=5.3.3",
  6691. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  6692. "symfony/property-access": "~2.3|~3.0|~4.0",
  6693. "symfony/translation": "~2.3|~3.0|~4.0",
  6694. "symfony/twig-bundle": "~2.3|~3.0|~4.0"
  6695. },
  6696. "conflict": {
  6697. "twig/twig": "<1.34|>=2.0,<2.4"
  6698. },
  6699. "require-dev": {
  6700. "phpunit/phpunit": "~3.7|~4.0|^5.0",
  6701. "symfony/symfony": "~2.3|~3.0|~4.0"
  6702. },
  6703. "type": "symfony-bundle",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-master": "1.0.x-dev"
  6707. }
  6708. },
  6709. "autoload": {
  6710. "psr-4": {
  6711. "WhiteOctober\\PagerfantaBundle\\": ""
  6712. },
  6713. "exclude-from-classmap": [
  6714. "Tests/",
  6715. "TestsProject/"
  6716. ]
  6717. },
  6718. "notification-url": "https://packagist.org/downloads/",
  6719. "license": [
  6720. "MIT"
  6721. ],
  6722. "authors": [
  6723. {
  6724. "name": "Pablo Díez",
  6725. "email": "pablodip@gmail.com"
  6726. }
  6727. ],
  6728. "description": "Bundle to use Pagerfanta with Symfony2",
  6729. "keywords": [
  6730. "page",
  6731. "paging"
  6732. ],
  6733. "support": {
  6734. "issues": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle/issues",
  6735. "source": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle/tree/v1.3.2"
  6736. },
  6737. "time": "2019-12-02T14:19:37+00:00"
  6738. },
  6739. {
  6740. "name": "zendframework/zend-escaper",
  6741. "version": "2.6.1",
  6742. "source": {
  6743. "type": "git",
  6744. "url": "https://github.com/zendframework/zend-escaper.git",
  6745. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  6746. },
  6747. "dist": {
  6748. "type": "zip",
  6749. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  6750. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  6751. "shasum": ""
  6752. },
  6753. "require": {
  6754. "php": "^5.6 || ^7.0"
  6755. },
  6756. "require-dev": {
  6757. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  6758. "zendframework/zend-coding-standard": "~1.0.0"
  6759. },
  6760. "type": "library",
  6761. "extra": {
  6762. "branch-alias": {
  6763. "dev-master": "2.6.x-dev",
  6764. "dev-develop": "2.7.x-dev"
  6765. }
  6766. },
  6767. "autoload": {
  6768. "psr-4": {
  6769. "Zend\\Escaper\\": "src/"
  6770. }
  6771. },
  6772. "notification-url": "https://packagist.org/downloads/",
  6773. "license": [
  6774. "BSD-3-Clause"
  6775. ],
  6776. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6777. "abandoned": "laminas/laminas-escaper",
  6778. "time": "2019-09-05T20:03:20+00:00"
  6779. },
  6780. {
  6781. "name": "zendframework/zend-feed",
  6782. "version": "2.12.0",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/zendframework/zend-feed.git",
  6786. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  6791. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  6792. "shasum": ""
  6793. },
  6794. "require": {
  6795. "ext-dom": "*",
  6796. "ext-libxml": "*",
  6797. "php": "^5.6 || ^7.0",
  6798. "zendframework/zend-escaper": "^2.5.2",
  6799. "zendframework/zend-stdlib": "^3.2.1"
  6800. },
  6801. "require-dev": {
  6802. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  6803. "psr/http-message": "^1.0.1",
  6804. "zendframework/zend-cache": "^2.7.2",
  6805. "zendframework/zend-coding-standard": "~1.0.0",
  6806. "zendframework/zend-db": "^2.8.2",
  6807. "zendframework/zend-http": "^2.7",
  6808. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  6809. "zendframework/zend-validator": "^2.10.1"
  6810. },
  6811. "suggest": {
  6812. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  6813. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  6814. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  6815. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  6816. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  6817. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  6818. },
  6819. "type": "library",
  6820. "extra": {
  6821. "branch-alias": {
  6822. "dev-master": "2.12.x-dev",
  6823. "dev-develop": "2.13.x-dev"
  6824. }
  6825. },
  6826. "autoload": {
  6827. "psr-4": {
  6828. "Zend\\Feed\\": "src/"
  6829. }
  6830. },
  6831. "notification-url": "https://packagist.org/downloads/",
  6832. "license": [
  6833. "BSD-3-Clause"
  6834. ],
  6835. "description": "provides functionality for consuming RSS and Atom feeds",
  6836. "keywords": [
  6837. "ZendFramework",
  6838. "feed",
  6839. "zf"
  6840. ],
  6841. "abandoned": "laminas/laminas-feed",
  6842. "time": "2019-03-05T20:08:49+00:00"
  6843. },
  6844. {
  6845. "name": "zendframework/zend-servicemanager",
  6846. "version": "2.7.11",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/zendframework/zend-servicemanager.git",
  6850. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  6855. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "container-interop/container-interop": "~1.0",
  6860. "php": "^5.5 || ^7.0"
  6861. },
  6862. "require-dev": {
  6863. "athletic/athletic": "dev-master",
  6864. "fabpot/php-cs-fixer": "1.7.*",
  6865. "phpunit/phpunit": "~4.0",
  6866. "zendframework/zend-di": "~2.5",
  6867. "zendframework/zend-mvc": "~2.5"
  6868. },
  6869. "suggest": {
  6870. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  6871. "zendframework/zend-di": "Zend\\Di component"
  6872. },
  6873. "type": "library",
  6874. "extra": {
  6875. "branch-alias": {
  6876. "dev-master": "2.7-dev",
  6877. "dev-develop": "3.0-dev"
  6878. }
  6879. },
  6880. "autoload": {
  6881. "psr-4": {
  6882. "Zend\\ServiceManager\\": "src/"
  6883. }
  6884. },
  6885. "notification-url": "https://packagist.org/downloads/",
  6886. "license": [
  6887. "BSD-3-Clause"
  6888. ],
  6889. "homepage": "https://github.com/zendframework/zend-servicemanager",
  6890. "keywords": [
  6891. "servicemanager",
  6892. "zf2"
  6893. ],
  6894. "abandoned": "laminas/laminas-servicemanager",
  6895. "time": "2018-06-22T14:49:54+00:00"
  6896. },
  6897. {
  6898. "name": "zendframework/zend-stdlib",
  6899. "version": "3.2.1",
  6900. "source": {
  6901. "type": "git",
  6902. "url": "https://github.com/zendframework/zend-stdlib.git",
  6903. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  6904. },
  6905. "dist": {
  6906. "type": "zip",
  6907. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  6908. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  6909. "shasum": ""
  6910. },
  6911. "require": {
  6912. "php": "^5.6 || ^7.0"
  6913. },
  6914. "require-dev": {
  6915. "phpbench/phpbench": "^0.13",
  6916. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  6917. "zendframework/zend-coding-standard": "~1.0.0"
  6918. },
  6919. "type": "library",
  6920. "extra": {
  6921. "branch-alias": {
  6922. "dev-master": "3.2.x-dev",
  6923. "dev-develop": "3.3.x-dev"
  6924. }
  6925. },
  6926. "autoload": {
  6927. "psr-4": {
  6928. "Zend\\Stdlib\\": "src/"
  6929. }
  6930. },
  6931. "notification-url": "https://packagist.org/downloads/",
  6932. "license": [
  6933. "BSD-3-Clause"
  6934. ],
  6935. "description": "SPL extensions, array utilities, error handlers, and more",
  6936. "keywords": [
  6937. "ZendFramework",
  6938. "stdlib",
  6939. "zf"
  6940. ],
  6941. "abandoned": "laminas/laminas-stdlib",
  6942. "time": "2018-08-28T21:34:05+00:00"
  6943. },
  6944. {
  6945. "name": "zendframework/zend-uri",
  6946. "version": "2.7.1",
  6947. "source": {
  6948. "type": "git",
  6949. "url": "https://github.com/zendframework/zend-uri.git",
  6950. "reference": "bfc4a5b9a309711e968d7c72afae4ac50c650083"
  6951. },
  6952. "dist": {
  6953. "type": "zip",
  6954. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/bfc4a5b9a309711e968d7c72afae4ac50c650083",
  6955. "reference": "bfc4a5b9a309711e968d7c72afae4ac50c650083",
  6956. "shasum": ""
  6957. },
  6958. "require": {
  6959. "php": "^5.6 || ^7.0",
  6960. "zendframework/zend-escaper": "^2.5",
  6961. "zendframework/zend-validator": "^2.10"
  6962. },
  6963. "require-dev": {
  6964. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  6965. "zendframework/zend-coding-standard": "~1.0.0"
  6966. },
  6967. "type": "library",
  6968. "extra": {
  6969. "branch-alias": {
  6970. "dev-master": "2.7.x-dev",
  6971. "dev-develop": "2.8.x-dev"
  6972. }
  6973. },
  6974. "autoload": {
  6975. "psr-4": {
  6976. "Zend\\Uri\\": "src/"
  6977. }
  6978. },
  6979. "notification-url": "https://packagist.org/downloads/",
  6980. "license": [
  6981. "BSD-3-Clause"
  6982. ],
  6983. "description": "A component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  6984. "abandoned": "laminas/laminas-uri",
  6985. "time": "2019-10-07T13:35:33+00:00"
  6986. },
  6987. {
  6988. "name": "zendframework/zend-validator",
  6989. "version": "2.13.0",
  6990. "source": {
  6991. "type": "git",
  6992. "url": "https://github.com/zendframework/zend-validator.git",
  6993. "reference": "b54acef1f407741c5347f2a97f899ab21f2229ef"
  6994. },
  6995. "dist": {
  6996. "type": "zip",
  6997. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/b54acef1f407741c5347f2a97f899ab21f2229ef",
  6998. "reference": "b54acef1f407741c5347f2a97f899ab21f2229ef",
  6999. "shasum": ""
  7000. },
  7001. "require": {
  7002. "container-interop/container-interop": "^1.1",
  7003. "php": "^7.1",
  7004. "zendframework/zend-stdlib": "^3.2.1"
  7005. },
  7006. "require-dev": {
  7007. "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  7008. "psr/http-client": "^1.0",
  7009. "psr/http-factory": "^1.0",
  7010. "psr/http-message": "^1.0",
  7011. "zendframework/zend-cache": "^2.6.1",
  7012. "zendframework/zend-coding-standard": "~1.0.0",
  7013. "zendframework/zend-config": "^2.6",
  7014. "zendframework/zend-db": "^2.7",
  7015. "zendframework/zend-filter": "^2.6",
  7016. "zendframework/zend-http": "^2.5.4",
  7017. "zendframework/zend-i18n": "^2.6",
  7018. "zendframework/zend-math": "^2.6",
  7019. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  7020. "zendframework/zend-session": "^2.8",
  7021. "zendframework/zend-uri": "^2.5"
  7022. },
  7023. "suggest": {
  7024. "psr/http-message": "psr/http-message, required when validating PSR-7 UploadedFileInterface instances via the Upload and UploadFile validators",
  7025. "zendframework/zend-db": "Zend\\Db component, required by the (No)RecordExists validator",
  7026. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  7027. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages",
  7028. "zendframework/zend-i18n-resources": "Translations of validator messages",
  7029. "zendframework/zend-math": "Zend\\Math component, required by the Csrf validator",
  7030. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  7031. "zendframework/zend-session": "Zend\\Session component, ^2.8; required by the Csrf validator",
  7032. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  7033. },
  7034. "type": "library",
  7035. "extra": {
  7036. "branch-alias": {
  7037. "dev-master": "2.13.x-dev",
  7038. "dev-develop": "2.14.x-dev"
  7039. },
  7040. "zf": {
  7041. "component": "Zend\\Validator",
  7042. "config-provider": "Zend\\Validator\\ConfigProvider"
  7043. }
  7044. },
  7045. "autoload": {
  7046. "psr-4": {
  7047. "Zend\\Validator\\": "src/"
  7048. }
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "BSD-3-Clause"
  7053. ],
  7054. "description": "Validation classes for a wide range of domains, and the ability to chain validators to create complex validation criteria",
  7055. "keywords": [
  7056. "ZendFramework",
  7057. "validator",
  7058. "zf"
  7059. ],
  7060. "support": {
  7061. "chat": "https://zendframework-slack.herokuapp.com",
  7062. "docs": "https://docs.zendframework.com/zend-validator/",
  7063. "forum": "https://discourse.zendframework.com/c/questions/components",
  7064. "issues": "https://github.com/zendframework/zend-validator/issues",
  7065. "rss": "https://github.com/zendframework/zend-validator/releases.atom",
  7066. "source": "https://github.com/zendframework/zend-validator"
  7067. },
  7068. "abandoned": "laminas/laminas-validator",
  7069. "time": "2019-12-28T04:07:18+00:00"
  7070. },
  7071. {
  7072. "name": "zendframework/zenddiagnostics",
  7073. "version": "v1.6.0",
  7074. "source": {
  7075. "type": "git",
  7076. "url": "https://github.com/zendframework/zend-diagnostics.git",
  7077. "reference": "9ad04e7a911c3895071cfb7ec22c5f354a0099fe"
  7078. },
  7079. "dist": {
  7080. "type": "zip",
  7081. "url": "https://api.github.com/repos/zendframework/zend-diagnostics/zipball/9ad04e7a911c3895071cfb7ec22c5f354a0099fe",
  7082. "reference": "9ad04e7a911c3895071cfb7ec22c5f354a0099fe",
  7083. "shasum": ""
  7084. },
  7085. "require": {
  7086. "php": "^5.6 || ^7.0"
  7087. },
  7088. "conflict": {
  7089. "guzzlehttp/ringphp": "<1.1.1"
  7090. },
  7091. "require-dev": {
  7092. "doctrine/migrations": "^1.0 || ^2.0",
  7093. "guzzlehttp/guzzle": "^5.3.3 || ^6.3.3",
  7094. "mikey179/vfsstream": "^1.6",
  7095. "php-amqplib/php-amqplib": "^2.0",
  7096. "phpunit/phpunit": "^5.7.27 || 6.5.8 || ^7.1.2",
  7097. "predis/predis": "^1.0",
  7098. "sensiolabs/security-checker": "^5.0 || ^6.0.3",
  7099. "symfony/yaml": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7100. "zendframework/zend-coding-standard": "~1.0.0",
  7101. "zendframework/zend-loader": "^2.0"
  7102. },
  7103. "suggest": {
  7104. "doctrine/migrations": "Required by Check\\DoctrineMigration",
  7105. "ext-bcmath": "Required by Check\\CpuPerformance",
  7106. "guzzlehttp/guzzle": "Required by Check\\GuzzleHttpService",
  7107. "predis/predis": "Required by Check\\Redis",
  7108. "sensiolabs/security-checker": "Required by Check\\SecurityAdvisory",
  7109. "symfony/yaml": "Required by Check\\YamlFile",
  7110. "videlalvaro/php-amqplib": "Required by Check\\RabbitMQ"
  7111. },
  7112. "type": "library",
  7113. "extra": {
  7114. "branch-alias": {
  7115. "dev-master": "1.6.x-dev",
  7116. "dev-develop": "1.7.x-dev"
  7117. }
  7118. },
  7119. "autoload": {
  7120. "files": [
  7121. "src/autoload.php"
  7122. ],
  7123. "psr-4": {
  7124. "ZendDiagnostics\\": "src/"
  7125. }
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "BSD-3-Clause"
  7130. ],
  7131. "description": "A set of components for performing diagnostic tests in PHP applications",
  7132. "homepage": "https://github.com/zendframework/zend-diagnostics",
  7133. "keywords": [
  7134. "ZendFramework",
  7135. "diagnostics",
  7136. "php",
  7137. "test",
  7138. "zf"
  7139. ],
  7140. "support": {
  7141. "chat": "https://zendframework-slack.herokuapp.com",
  7142. "forum": "https://discourse.zendframework.com/c/questions/components",
  7143. "issues": "https://github.com/zendframework/zend-diagnostics/issues",
  7144. "rss": "https://github.com/zendframework/zend-diagnostics/releases.atom",
  7145. "source": "https://github.com/zendframework/zend-diagnostics"
  7146. },
  7147. "abandoned": "laminas/laminas-diagnostics",
  7148. "time": "2019-11-22T19:06:24+00:00"
  7149. }
  7150. ],
  7151. "packages-dev": [
  7152. {
  7153. "name": "myclabs/deep-copy",
  7154. "version": "1.9.5",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/myclabs/DeepCopy.git",
  7158. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  7163. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "php": "^7.1"
  7168. },
  7169. "replace": {
  7170. "myclabs/deep-copy": "self.version"
  7171. },
  7172. "require-dev": {
  7173. "doctrine/collections": "^1.0",
  7174. "doctrine/common": "^2.6",
  7175. "phpunit/phpunit": "^7.1"
  7176. },
  7177. "type": "library",
  7178. "autoload": {
  7179. "psr-4": {
  7180. "DeepCopy\\": "src/DeepCopy/"
  7181. },
  7182. "files": [
  7183. "src/DeepCopy/deep_copy.php"
  7184. ]
  7185. },
  7186. "notification-url": "https://packagist.org/downloads/",
  7187. "license": [
  7188. "MIT"
  7189. ],
  7190. "description": "Create deep copies (clones) of your objects",
  7191. "keywords": [
  7192. "clone",
  7193. "copy",
  7194. "duplicate",
  7195. "object",
  7196. "object graph"
  7197. ],
  7198. "support": {
  7199. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7200. "source": "https://github.com/myclabs/DeepCopy/tree/1.9.5"
  7201. },
  7202. "time": "2020-01-17T21:11:47+00:00"
  7203. },
  7204. {
  7205. "name": "phar-io/manifest",
  7206. "version": "1.0.3",
  7207. "source": {
  7208. "type": "git",
  7209. "url": "https://github.com/phar-io/manifest.git",
  7210. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  7211. },
  7212. "dist": {
  7213. "type": "zip",
  7214. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7215. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7216. "shasum": ""
  7217. },
  7218. "require": {
  7219. "ext-dom": "*",
  7220. "ext-phar": "*",
  7221. "phar-io/version": "^2.0",
  7222. "php": "^5.6 || ^7.0"
  7223. },
  7224. "type": "library",
  7225. "extra": {
  7226. "branch-alias": {
  7227. "dev-master": "1.0.x-dev"
  7228. }
  7229. },
  7230. "autoload": {
  7231. "classmap": [
  7232. "src/"
  7233. ]
  7234. },
  7235. "notification-url": "https://packagist.org/downloads/",
  7236. "license": [
  7237. "BSD-3-Clause"
  7238. ],
  7239. "authors": [
  7240. {
  7241. "name": "Arne Blankerts",
  7242. "email": "arne@blankerts.de",
  7243. "role": "Developer"
  7244. },
  7245. {
  7246. "name": "Sebastian Heuer",
  7247. "email": "sebastian@phpeople.de",
  7248. "role": "Developer"
  7249. },
  7250. {
  7251. "name": "Sebastian Bergmann",
  7252. "email": "sebastian@phpunit.de",
  7253. "role": "Developer"
  7254. }
  7255. ],
  7256. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7257. "time": "2018-07-08T19:23:20+00:00"
  7258. },
  7259. {
  7260. "name": "phar-io/version",
  7261. "version": "2.0.1",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/phar-io/version.git",
  7265. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7270. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": "^5.6 || ^7.0"
  7275. },
  7276. "type": "library",
  7277. "autoload": {
  7278. "classmap": [
  7279. "src/"
  7280. ]
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "BSD-3-Clause"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Arne Blankerts",
  7289. "email": "arne@blankerts.de",
  7290. "role": "Developer"
  7291. },
  7292. {
  7293. "name": "Sebastian Heuer",
  7294. "email": "sebastian@phpeople.de",
  7295. "role": "Developer"
  7296. },
  7297. {
  7298. "name": "Sebastian Bergmann",
  7299. "email": "sebastian@phpunit.de",
  7300. "role": "Developer"
  7301. }
  7302. ],
  7303. "description": "Library for handling version information and constraints",
  7304. "time": "2018-07-08T19:19:57+00:00"
  7305. },
  7306. {
  7307. "name": "phpdocumentor/reflection-common",
  7308. "version": "2.0.0",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7312. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  7317. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  7318. "shasum": ""
  7319. },
  7320. "require": {
  7321. "php": ">=7.1"
  7322. },
  7323. "require-dev": {
  7324. "phpunit/phpunit": "~6"
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "2.x-dev"
  7330. }
  7331. },
  7332. "autoload": {
  7333. "psr-4": {
  7334. "phpDocumentor\\Reflection\\": "src/"
  7335. }
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "MIT"
  7340. ],
  7341. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7342. "homepage": "http://www.phpdoc.org",
  7343. "time": "2018-08-07T13:53:10+00:00"
  7344. },
  7345. {
  7346. "name": "phpdocumentor/reflection-docblock",
  7347. "version": "5.1.0",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7351. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  7356. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  7357. "shasum": ""
  7358. },
  7359. "require": {
  7360. "ext-filter": "^7.1",
  7361. "php": "^7.2",
  7362. "phpdocumentor/reflection-common": "^2.0",
  7363. "phpdocumentor/type-resolver": "^1.0",
  7364. "webmozart/assert": "^1"
  7365. },
  7366. "require-dev": {
  7367. "doctrine/instantiator": "^1",
  7368. "mockery/mockery": "^1"
  7369. },
  7370. "type": "library",
  7371. "extra": {
  7372. "branch-alias": {
  7373. "dev-master": "5.x-dev"
  7374. }
  7375. },
  7376. "autoload": {
  7377. "psr-4": {
  7378. "phpDocumentor\\Reflection\\": "src"
  7379. }
  7380. },
  7381. "notification-url": "https://packagist.org/downloads/",
  7382. "license": [
  7383. "MIT"
  7384. ],
  7385. "authors": [
  7386. {
  7387. "name": "Mike van Riel",
  7388. "email": "me@mikevanriel.com"
  7389. },
  7390. {
  7391. "name": "Jaap van Otterdijk",
  7392. "email": "account@ijaap.nl"
  7393. }
  7394. ],
  7395. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7396. "support": {
  7397. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  7398. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.1.0"
  7399. },
  7400. "time": "2020-02-22T12:28:44+00:00"
  7401. },
  7402. {
  7403. "name": "phpdocumentor/type-resolver",
  7404. "version": "1.1.0",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7408. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
  7413. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
  7414. "shasum": ""
  7415. },
  7416. "require": {
  7417. "php": "^7.2",
  7418. "phpdocumentor/reflection-common": "^2.0"
  7419. },
  7420. "require-dev": {
  7421. "ext-tokenizer": "^7.2",
  7422. "mockery/mockery": "~1"
  7423. },
  7424. "type": "library",
  7425. "extra": {
  7426. "branch-alias": {
  7427. "dev-master": "1.x-dev"
  7428. }
  7429. },
  7430. "autoload": {
  7431. "psr-4": {
  7432. "phpDocumentor\\Reflection\\": "src"
  7433. }
  7434. },
  7435. "notification-url": "https://packagist.org/downloads/",
  7436. "license": [
  7437. "MIT"
  7438. ],
  7439. "authors": [
  7440. {
  7441. "name": "Mike van Riel",
  7442. "email": "me@mikevanriel.com"
  7443. }
  7444. ],
  7445. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  7446. "support": {
  7447. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  7448. "source": "https://github.com/phpDocumentor/TypeResolver/tree/master"
  7449. },
  7450. "time": "2020-02-18T18:59:58+00:00"
  7451. },
  7452. {
  7453. "name": "phpspec/prophecy",
  7454. "version": "v1.10.3",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/phpspec/prophecy.git",
  7458. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  7463. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "doctrine/instantiator": "^1.0.2",
  7468. "php": "^5.3|^7.0",
  7469. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7470. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  7471. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  7472. },
  7473. "require-dev": {
  7474. "phpspec/phpspec": "^2.5 || ^3.2",
  7475. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7476. },
  7477. "type": "library",
  7478. "extra": {
  7479. "branch-alias": {
  7480. "dev-master": "1.10.x-dev"
  7481. }
  7482. },
  7483. "autoload": {
  7484. "psr-4": {
  7485. "Prophecy\\": "src/Prophecy"
  7486. }
  7487. },
  7488. "notification-url": "https://packagist.org/downloads/",
  7489. "license": [
  7490. "MIT"
  7491. ],
  7492. "authors": [
  7493. {
  7494. "name": "Konstantin Kudryashov",
  7495. "email": "ever.zet@gmail.com",
  7496. "homepage": "http://everzet.com"
  7497. },
  7498. {
  7499. "name": "Marcello Duarte",
  7500. "email": "marcello.duarte@gmail.com"
  7501. }
  7502. ],
  7503. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7504. "homepage": "https://github.com/phpspec/prophecy",
  7505. "keywords": [
  7506. "Double",
  7507. "Dummy",
  7508. "fake",
  7509. "mock",
  7510. "spy",
  7511. "stub"
  7512. ],
  7513. "support": {
  7514. "issues": "https://github.com/phpspec/prophecy/issues",
  7515. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  7516. },
  7517. "time": "2020-03-05T15:02:03+00:00"
  7518. },
  7519. {
  7520. "name": "phpunit/php-code-coverage",
  7521. "version": "7.0.10",
  7522. "source": {
  7523. "type": "git",
  7524. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7525. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  7526. },
  7527. "dist": {
  7528. "type": "zip",
  7529. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  7530. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  7531. "shasum": ""
  7532. },
  7533. "require": {
  7534. "ext-dom": "*",
  7535. "ext-xmlwriter": "*",
  7536. "php": "^7.2",
  7537. "phpunit/php-file-iterator": "^2.0.2",
  7538. "phpunit/php-text-template": "^1.2.1",
  7539. "phpunit/php-token-stream": "^3.1.1",
  7540. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7541. "sebastian/environment": "^4.2.2",
  7542. "sebastian/version": "^2.0.1",
  7543. "theseer/tokenizer": "^1.1.3"
  7544. },
  7545. "require-dev": {
  7546. "phpunit/phpunit": "^8.2.2"
  7547. },
  7548. "suggest": {
  7549. "ext-xdebug": "^2.7.2"
  7550. },
  7551. "type": "library",
  7552. "extra": {
  7553. "branch-alias": {
  7554. "dev-master": "7.0-dev"
  7555. }
  7556. },
  7557. "autoload": {
  7558. "classmap": [
  7559. "src/"
  7560. ]
  7561. },
  7562. "notification-url": "https://packagist.org/downloads/",
  7563. "license": [
  7564. "BSD-3-Clause"
  7565. ],
  7566. "authors": [
  7567. {
  7568. "name": "Sebastian Bergmann",
  7569. "email": "sebastian@phpunit.de",
  7570. "role": "lead"
  7571. }
  7572. ],
  7573. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7574. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7575. "keywords": [
  7576. "coverage",
  7577. "testing",
  7578. "xunit"
  7579. ],
  7580. "support": {
  7581. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7582. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.10"
  7583. },
  7584. "time": "2019-11-20T13:55:58+00:00"
  7585. },
  7586. {
  7587. "name": "phpunit/php-file-iterator",
  7588. "version": "2.0.2",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7592. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  7597. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  7598. "shasum": ""
  7599. },
  7600. "require": {
  7601. "php": "^7.1"
  7602. },
  7603. "require-dev": {
  7604. "phpunit/phpunit": "^7.1"
  7605. },
  7606. "type": "library",
  7607. "extra": {
  7608. "branch-alias": {
  7609. "dev-master": "2.0.x-dev"
  7610. }
  7611. },
  7612. "autoload": {
  7613. "classmap": [
  7614. "src/"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "BSD-3-Clause"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Sebastian Bergmann",
  7624. "email": "sebastian@phpunit.de",
  7625. "role": "lead"
  7626. }
  7627. ],
  7628. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7629. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7630. "keywords": [
  7631. "filesystem",
  7632. "iterator"
  7633. ],
  7634. "time": "2018-09-13T20:33:42+00:00"
  7635. },
  7636. {
  7637. "name": "phpunit/php-text-template",
  7638. "version": "1.2.1",
  7639. "source": {
  7640. "type": "git",
  7641. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7642. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7643. },
  7644. "dist": {
  7645. "type": "zip",
  7646. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7647. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7648. "shasum": ""
  7649. },
  7650. "require": {
  7651. "php": ">=5.3.3"
  7652. },
  7653. "type": "library",
  7654. "autoload": {
  7655. "classmap": [
  7656. "src/"
  7657. ]
  7658. },
  7659. "notification-url": "https://packagist.org/downloads/",
  7660. "license": [
  7661. "BSD-3-Clause"
  7662. ],
  7663. "authors": [
  7664. {
  7665. "name": "Sebastian Bergmann",
  7666. "email": "sebastian@phpunit.de",
  7667. "role": "lead"
  7668. }
  7669. ],
  7670. "description": "Simple template engine.",
  7671. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7672. "keywords": [
  7673. "template"
  7674. ],
  7675. "time": "2015-06-21T13:50:34+00:00"
  7676. },
  7677. {
  7678. "name": "phpunit/php-timer",
  7679. "version": "2.1.2",
  7680. "source": {
  7681. "type": "git",
  7682. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7683. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7684. },
  7685. "dist": {
  7686. "type": "zip",
  7687. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7688. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7689. "shasum": ""
  7690. },
  7691. "require": {
  7692. "php": "^7.1"
  7693. },
  7694. "require-dev": {
  7695. "phpunit/phpunit": "^7.0"
  7696. },
  7697. "type": "library",
  7698. "extra": {
  7699. "branch-alias": {
  7700. "dev-master": "2.1-dev"
  7701. }
  7702. },
  7703. "autoload": {
  7704. "classmap": [
  7705. "src/"
  7706. ]
  7707. },
  7708. "notification-url": "https://packagist.org/downloads/",
  7709. "license": [
  7710. "BSD-3-Clause"
  7711. ],
  7712. "description": "Utility class for timing",
  7713. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7714. "time": "2019-06-07T04:22:29+00:00"
  7715. },
  7716. {
  7717. "name": "phpunit/php-token-stream",
  7718. "version": "3.1.1",
  7719. "source": {
  7720. "type": "git",
  7721. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7722. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7723. },
  7724. "dist": {
  7725. "type": "zip",
  7726. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7727. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7728. "shasum": ""
  7729. },
  7730. "require": {
  7731. "ext-tokenizer": "*",
  7732. "php": "^7.1"
  7733. },
  7734. "require-dev": {
  7735. "phpunit/phpunit": "^7.0"
  7736. },
  7737. "type": "library",
  7738. "extra": {
  7739. "branch-alias": {
  7740. "dev-master": "3.1-dev"
  7741. }
  7742. },
  7743. "autoload": {
  7744. "classmap": [
  7745. "src/"
  7746. ]
  7747. },
  7748. "notification-url": "https://packagist.org/downloads/",
  7749. "license": [
  7750. "BSD-3-Clause"
  7751. ],
  7752. "description": "Wrapper around PHP's tokenizer extension.",
  7753. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7754. "time": "2019-09-17T06:23:10+00:00"
  7755. },
  7756. {
  7757. "name": "phpunit/phpunit",
  7758. "version": "8.5.2",
  7759. "source": {
  7760. "type": "git",
  7761. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7762. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0"
  7763. },
  7764. "dist": {
  7765. "type": "zip",
  7766. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  7767. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  7768. "shasum": ""
  7769. },
  7770. "require": {
  7771. "doctrine/instantiator": "^1.2.0",
  7772. "ext-dom": "*",
  7773. "ext-json": "*",
  7774. "ext-libxml": "*",
  7775. "ext-mbstring": "*",
  7776. "ext-xml": "*",
  7777. "ext-xmlwriter": "*",
  7778. "myclabs/deep-copy": "^1.9.1",
  7779. "phar-io/manifest": "^1.0.3",
  7780. "phar-io/version": "^2.0.1",
  7781. "php": "^7.2",
  7782. "phpspec/prophecy": "^1.8.1",
  7783. "phpunit/php-code-coverage": "^7.0.7",
  7784. "phpunit/php-file-iterator": "^2.0.2",
  7785. "phpunit/php-text-template": "^1.2.1",
  7786. "phpunit/php-timer": "^2.1.2",
  7787. "sebastian/comparator": "^3.0.2",
  7788. "sebastian/diff": "^3.0.2",
  7789. "sebastian/environment": "^4.2.2",
  7790. "sebastian/exporter": "^3.1.1",
  7791. "sebastian/global-state": "^3.0.0",
  7792. "sebastian/object-enumerator": "^3.0.3",
  7793. "sebastian/resource-operations": "^2.0.1",
  7794. "sebastian/type": "^1.1.3",
  7795. "sebastian/version": "^2.0.1"
  7796. },
  7797. "require-dev": {
  7798. "ext-pdo": "*"
  7799. },
  7800. "suggest": {
  7801. "ext-soap": "*",
  7802. "ext-xdebug": "*",
  7803. "phpunit/php-invoker": "^2.0.0"
  7804. },
  7805. "bin": [
  7806. "phpunit"
  7807. ],
  7808. "type": "library",
  7809. "extra": {
  7810. "branch-alias": {
  7811. "dev-master": "8.5-dev"
  7812. }
  7813. },
  7814. "autoload": {
  7815. "classmap": [
  7816. "src/"
  7817. ]
  7818. },
  7819. "notification-url": "https://packagist.org/downloads/",
  7820. "license": [
  7821. "BSD-3-Clause"
  7822. ],
  7823. "authors": [
  7824. {
  7825. "name": "Sebastian Bergmann",
  7826. "email": "sebastian@phpunit.de",
  7827. "role": "lead"
  7828. }
  7829. ],
  7830. "description": "The PHP Unit Testing framework.",
  7831. "homepage": "https://phpunit.de/",
  7832. "keywords": [
  7833. "phpunit",
  7834. "testing",
  7835. "xunit"
  7836. ],
  7837. "support": {
  7838. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7839. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.2"
  7840. },
  7841. "time": "2020-01-08T08:49:49+00:00"
  7842. },
  7843. {
  7844. "name": "sebastian/code-unit-reverse-lookup",
  7845. "version": "1.0.1",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7849. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7854. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7855. "shasum": ""
  7856. },
  7857. "require": {
  7858. "php": "^5.6 || ^7.0"
  7859. },
  7860. "require-dev": {
  7861. "phpunit/phpunit": "^5.7 || ^6.0"
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "branch-alias": {
  7866. "dev-master": "1.0.x-dev"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "classmap": [
  7871. "src/"
  7872. ]
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "BSD-3-Clause"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Sebastian Bergmann",
  7881. "email": "sebastian@phpunit.de"
  7882. }
  7883. ],
  7884. "description": "Looks up which function or method a line of code belongs to",
  7885. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7886. "time": "2017-03-04T06:30:41+00:00"
  7887. },
  7888. {
  7889. "name": "sebastian/comparator",
  7890. "version": "3.0.2",
  7891. "source": {
  7892. "type": "git",
  7893. "url": "https://github.com/sebastianbergmann/comparator.git",
  7894. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7895. },
  7896. "dist": {
  7897. "type": "zip",
  7898. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7899. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7900. "shasum": ""
  7901. },
  7902. "require": {
  7903. "php": "^7.1",
  7904. "sebastian/diff": "^3.0",
  7905. "sebastian/exporter": "^3.1"
  7906. },
  7907. "require-dev": {
  7908. "phpunit/phpunit": "^7.1"
  7909. },
  7910. "type": "library",
  7911. "extra": {
  7912. "branch-alias": {
  7913. "dev-master": "3.0-dev"
  7914. }
  7915. },
  7916. "autoload": {
  7917. "classmap": [
  7918. "src/"
  7919. ]
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "BSD-3-Clause"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "Jeff Welch",
  7928. "email": "whatthejeff@gmail.com"
  7929. },
  7930. {
  7931. "name": "Volker Dusch",
  7932. "email": "github@wallbash.com"
  7933. },
  7934. {
  7935. "name": "Bernhard Schussek",
  7936. "email": "bschussek@2bepublished.at"
  7937. },
  7938. {
  7939. "name": "Sebastian Bergmann",
  7940. "email": "sebastian@phpunit.de"
  7941. }
  7942. ],
  7943. "description": "Provides the functionality to compare PHP values for equality",
  7944. "homepage": "https://github.com/sebastianbergmann/comparator",
  7945. "keywords": [
  7946. "comparator",
  7947. "compare",
  7948. "equality"
  7949. ],
  7950. "time": "2018-07-12T15:12:46+00:00"
  7951. },
  7952. {
  7953. "name": "sebastian/diff",
  7954. "version": "3.0.2",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/sebastianbergmann/diff.git",
  7958. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7963. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": "^7.1"
  7968. },
  7969. "require-dev": {
  7970. "phpunit/phpunit": "^7.5 || ^8.0",
  7971. "symfony/process": "^2 || ^3.3 || ^4"
  7972. },
  7973. "type": "library",
  7974. "extra": {
  7975. "branch-alias": {
  7976. "dev-master": "3.0-dev"
  7977. }
  7978. },
  7979. "autoload": {
  7980. "classmap": [
  7981. "src/"
  7982. ]
  7983. },
  7984. "notification-url": "https://packagist.org/downloads/",
  7985. "license": [
  7986. "BSD-3-Clause"
  7987. ],
  7988. "authors": [
  7989. {
  7990. "name": "Kore Nordmann",
  7991. "email": "mail@kore-nordmann.de"
  7992. },
  7993. {
  7994. "name": "Sebastian Bergmann",
  7995. "email": "sebastian@phpunit.de"
  7996. }
  7997. ],
  7998. "description": "Diff implementation",
  7999. "homepage": "https://github.com/sebastianbergmann/diff",
  8000. "keywords": [
  8001. "diff",
  8002. "udiff",
  8003. "unidiff",
  8004. "unified diff"
  8005. ],
  8006. "time": "2019-02-04T06:01:07+00:00"
  8007. },
  8008. {
  8009. "name": "sebastian/environment",
  8010. "version": "4.2.3",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/sebastianbergmann/environment.git",
  8014. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8019. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": "^7.1"
  8024. },
  8025. "require-dev": {
  8026. "phpunit/phpunit": "^7.5"
  8027. },
  8028. "suggest": {
  8029. "ext-posix": "*"
  8030. },
  8031. "type": "library",
  8032. "extra": {
  8033. "branch-alias": {
  8034. "dev-master": "4.2-dev"
  8035. }
  8036. },
  8037. "autoload": {
  8038. "classmap": [
  8039. "src/"
  8040. ]
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "BSD-3-Clause"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Sebastian Bergmann",
  8049. "email": "sebastian@phpunit.de"
  8050. }
  8051. ],
  8052. "description": "Provides functionality to handle HHVM/PHP environments",
  8053. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8054. "keywords": [
  8055. "Xdebug",
  8056. "environment",
  8057. "hhvm"
  8058. ],
  8059. "support": {
  8060. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8061. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.3"
  8062. },
  8063. "time": "2019-11-20T08:46:58+00:00"
  8064. },
  8065. {
  8066. "name": "sebastian/exporter",
  8067. "version": "3.1.2",
  8068. "source": {
  8069. "type": "git",
  8070. "url": "https://github.com/sebastianbergmann/exporter.git",
  8071. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8072. },
  8073. "dist": {
  8074. "type": "zip",
  8075. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8076. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8077. "shasum": ""
  8078. },
  8079. "require": {
  8080. "php": "^7.0",
  8081. "sebastian/recursion-context": "^3.0"
  8082. },
  8083. "require-dev": {
  8084. "ext-mbstring": "*",
  8085. "phpunit/phpunit": "^6.0"
  8086. },
  8087. "type": "library",
  8088. "extra": {
  8089. "branch-alias": {
  8090. "dev-master": "3.1.x-dev"
  8091. }
  8092. },
  8093. "autoload": {
  8094. "classmap": [
  8095. "src/"
  8096. ]
  8097. },
  8098. "notification-url": "https://packagist.org/downloads/",
  8099. "license": [
  8100. "BSD-3-Clause"
  8101. ],
  8102. "description": "Provides the functionality to export PHP variables for visualization",
  8103. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8104. "time": "2019-09-14T09:02:43+00:00"
  8105. },
  8106. {
  8107. "name": "sebastian/global-state",
  8108. "version": "3.0.0",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/sebastianbergmann/global-state.git",
  8112. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  8117. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": "^7.2",
  8122. "sebastian/object-reflector": "^1.1.1",
  8123. "sebastian/recursion-context": "^3.0"
  8124. },
  8125. "require-dev": {
  8126. "ext-dom": "*",
  8127. "phpunit/phpunit": "^8.0"
  8128. },
  8129. "suggest": {
  8130. "ext-uopz": "*"
  8131. },
  8132. "type": "library",
  8133. "extra": {
  8134. "branch-alias": {
  8135. "dev-master": "3.0-dev"
  8136. }
  8137. },
  8138. "autoload": {
  8139. "classmap": [
  8140. "src/"
  8141. ]
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "BSD-3-Clause"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "Sebastian Bergmann",
  8150. "email": "sebastian@phpunit.de"
  8151. }
  8152. ],
  8153. "description": "Snapshotting of global state",
  8154. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8155. "keywords": [
  8156. "global state"
  8157. ],
  8158. "time": "2019-02-01T05:30:01+00:00"
  8159. },
  8160. {
  8161. "name": "sebastian/object-enumerator",
  8162. "version": "3.0.3",
  8163. "source": {
  8164. "type": "git",
  8165. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8166. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8167. },
  8168. "dist": {
  8169. "type": "zip",
  8170. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8171. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8172. "shasum": ""
  8173. },
  8174. "require": {
  8175. "php": "^7.0",
  8176. "sebastian/object-reflector": "^1.1.1",
  8177. "sebastian/recursion-context": "^3.0"
  8178. },
  8179. "require-dev": {
  8180. "phpunit/phpunit": "^6.0"
  8181. },
  8182. "type": "library",
  8183. "extra": {
  8184. "branch-alias": {
  8185. "dev-master": "3.0.x-dev"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "classmap": [
  8190. "src/"
  8191. ]
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "BSD-3-Clause"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Sebastian Bergmann",
  8200. "email": "sebastian@phpunit.de"
  8201. }
  8202. ],
  8203. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8204. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8205. "time": "2017-08-03T12:35:26+00:00"
  8206. },
  8207. {
  8208. "name": "sebastian/object-reflector",
  8209. "version": "1.1.1",
  8210. "source": {
  8211. "type": "git",
  8212. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8213. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8214. },
  8215. "dist": {
  8216. "type": "zip",
  8217. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8218. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8219. "shasum": ""
  8220. },
  8221. "require": {
  8222. "php": "^7.0"
  8223. },
  8224. "require-dev": {
  8225. "phpunit/phpunit": "^6.0"
  8226. },
  8227. "type": "library",
  8228. "extra": {
  8229. "branch-alias": {
  8230. "dev-master": "1.1-dev"
  8231. }
  8232. },
  8233. "autoload": {
  8234. "classmap": [
  8235. "src/"
  8236. ]
  8237. },
  8238. "notification-url": "https://packagist.org/downloads/",
  8239. "license": [
  8240. "BSD-3-Clause"
  8241. ],
  8242. "authors": [
  8243. {
  8244. "name": "Sebastian Bergmann",
  8245. "email": "sebastian@phpunit.de"
  8246. }
  8247. ],
  8248. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8249. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8250. "time": "2017-03-29T09:07:27+00:00"
  8251. },
  8252. {
  8253. "name": "sebastian/recursion-context",
  8254. "version": "3.0.0",
  8255. "source": {
  8256. "type": "git",
  8257. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8258. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8259. },
  8260. "dist": {
  8261. "type": "zip",
  8262. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8263. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8264. "shasum": ""
  8265. },
  8266. "require": {
  8267. "php": "^7.0"
  8268. },
  8269. "require-dev": {
  8270. "phpunit/phpunit": "^6.0"
  8271. },
  8272. "type": "library",
  8273. "extra": {
  8274. "branch-alias": {
  8275. "dev-master": "3.0.x-dev"
  8276. }
  8277. },
  8278. "autoload": {
  8279. "classmap": [
  8280. "src/"
  8281. ]
  8282. },
  8283. "notification-url": "https://packagist.org/downloads/",
  8284. "license": [
  8285. "BSD-3-Clause"
  8286. ],
  8287. "authors": [
  8288. {
  8289. "name": "Jeff Welch",
  8290. "email": "whatthejeff@gmail.com"
  8291. },
  8292. {
  8293. "name": "Sebastian Bergmann",
  8294. "email": "sebastian@phpunit.de"
  8295. },
  8296. {
  8297. "name": "Adam Harvey",
  8298. "email": "aharvey@php.net"
  8299. }
  8300. ],
  8301. "description": "Provides functionality to recursively process PHP variables",
  8302. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8303. "time": "2017-03-03T06:23:57+00:00"
  8304. },
  8305. {
  8306. "name": "sebastian/resource-operations",
  8307. "version": "2.0.1",
  8308. "source": {
  8309. "type": "git",
  8310. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8311. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  8312. },
  8313. "dist": {
  8314. "type": "zip",
  8315. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8316. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8317. "shasum": ""
  8318. },
  8319. "require": {
  8320. "php": "^7.1"
  8321. },
  8322. "type": "library",
  8323. "extra": {
  8324. "branch-alias": {
  8325. "dev-master": "2.0-dev"
  8326. }
  8327. },
  8328. "autoload": {
  8329. "classmap": [
  8330. "src/"
  8331. ]
  8332. },
  8333. "notification-url": "https://packagist.org/downloads/",
  8334. "license": [
  8335. "BSD-3-Clause"
  8336. ],
  8337. "authors": [
  8338. {
  8339. "name": "Sebastian Bergmann",
  8340. "email": "sebastian@phpunit.de"
  8341. }
  8342. ],
  8343. "description": "Provides a list of PHP built-in functions that operate on resources",
  8344. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8345. "time": "2018-10-04T04:07:39+00:00"
  8346. },
  8347. {
  8348. "name": "sebastian/type",
  8349. "version": "1.1.3",
  8350. "source": {
  8351. "type": "git",
  8352. "url": "https://github.com/sebastianbergmann/type.git",
  8353. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  8354. },
  8355. "dist": {
  8356. "type": "zip",
  8357. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  8358. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  8359. "shasum": ""
  8360. },
  8361. "require": {
  8362. "php": "^7.2"
  8363. },
  8364. "require-dev": {
  8365. "phpunit/phpunit": "^8.2"
  8366. },
  8367. "type": "library",
  8368. "extra": {
  8369. "branch-alias": {
  8370. "dev-master": "1.1-dev"
  8371. }
  8372. },
  8373. "autoload": {
  8374. "classmap": [
  8375. "src/"
  8376. ]
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "BSD-3-Clause"
  8381. ],
  8382. "description": "Collection of value objects that represent the types of the PHP type system",
  8383. "homepage": "https://github.com/sebastianbergmann/type",
  8384. "time": "2019-07-02T08:10:15+00:00"
  8385. },
  8386. {
  8387. "name": "sebastian/version",
  8388. "version": "2.0.1",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/sebastianbergmann/version.git",
  8392. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8397. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8398. "shasum": ""
  8399. },
  8400. "require": {
  8401. "php": ">=5.6"
  8402. },
  8403. "type": "library",
  8404. "extra": {
  8405. "branch-alias": {
  8406. "dev-master": "2.0.x-dev"
  8407. }
  8408. },
  8409. "autoload": {
  8410. "classmap": [
  8411. "src/"
  8412. ]
  8413. },
  8414. "notification-url": "https://packagist.org/downloads/",
  8415. "license": [
  8416. "BSD-3-Clause"
  8417. ],
  8418. "authors": [
  8419. {
  8420. "name": "Sebastian Bergmann",
  8421. "email": "sebastian@phpunit.de",
  8422. "role": "lead"
  8423. }
  8424. ],
  8425. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8426. "homepage": "https://github.com/sebastianbergmann/version",
  8427. "time": "2016-10-03T07:35:21+00:00"
  8428. },
  8429. {
  8430. "name": "symfony/phpunit-bridge",
  8431. "version": "v4.4.5",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/symfony/phpunit-bridge.git",
  8435. "reference": "a270dbfe54994138a8037937fd5934827b8605bf"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/a270dbfe54994138a8037937fd5934827b8605bf",
  8440. "reference": "a270dbfe54994138a8037937fd5934827b8605bf",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": ">=5.5.9"
  8445. },
  8446. "conflict": {
  8447. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0"
  8448. },
  8449. "suggest": {
  8450. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  8451. },
  8452. "bin": [
  8453. "bin/simple-phpunit"
  8454. ],
  8455. "type": "symfony-bridge",
  8456. "extra": {
  8457. "branch-alias": {
  8458. "dev-master": "4.4-dev"
  8459. },
  8460. "thanks": {
  8461. "name": "phpunit/phpunit",
  8462. "url": "https://github.com/sebastianbergmann/phpunit"
  8463. }
  8464. },
  8465. "autoload": {
  8466. "files": [
  8467. "bootstrap.php"
  8468. ],
  8469. "psr-4": {
  8470. "Symfony\\Bridge\\PhpUnit\\": ""
  8471. },
  8472. "exclude-from-classmap": [
  8473. "/Tests/"
  8474. ]
  8475. },
  8476. "notification-url": "https://packagist.org/downloads/",
  8477. "license": [
  8478. "MIT"
  8479. ],
  8480. "authors": [
  8481. {
  8482. "name": "Nicolas Grekas",
  8483. "email": "p@tchwork.com"
  8484. },
  8485. {
  8486. "name": "Symfony Community",
  8487. "homepage": "https://symfony.com/contributors"
  8488. }
  8489. ],
  8490. "description": "Symfony PHPUnit Bridge",
  8491. "homepage": "https://symfony.com",
  8492. "support": {
  8493. "source": "https://github.com/symfony/phpunit-bridge/tree/v4.4.5"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://symfony.com/sponsor",
  8498. "type": "custom"
  8499. },
  8500. {
  8501. "url": "https://github.com/fabpot",
  8502. "type": "github"
  8503. },
  8504. {
  8505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8506. "type": "tidelift"
  8507. }
  8508. ],
  8509. "time": "2020-02-24T14:58:55+00:00"
  8510. },
  8511. {
  8512. "name": "theseer/tokenizer",
  8513. "version": "1.1.3",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/theseer/tokenizer.git",
  8517. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8522. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "ext-dom": "*",
  8527. "ext-tokenizer": "*",
  8528. "ext-xmlwriter": "*",
  8529. "php": "^7.0"
  8530. },
  8531. "type": "library",
  8532. "autoload": {
  8533. "classmap": [
  8534. "src/"
  8535. ]
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "BSD-3-Clause"
  8540. ],
  8541. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8542. "time": "2019-06-13T22:48:21+00:00"
  8543. },
  8544. {
  8545. "name": "webmozart/assert",
  8546. "version": "1.7.0",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/webmozart/assert.git",
  8550. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598",
  8555. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598",
  8556. "shasum": ""
  8557. },
  8558. "require": {
  8559. "php": "^5.3.3 || ^7.0",
  8560. "symfony/polyfill-ctype": "^1.8"
  8561. },
  8562. "conflict": {
  8563. "vimeo/psalm": "<3.6.0"
  8564. },
  8565. "require-dev": {
  8566. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8567. },
  8568. "type": "library",
  8569. "autoload": {
  8570. "psr-4": {
  8571. "Webmozart\\Assert\\": "src/"
  8572. }
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "MIT"
  8577. ],
  8578. "authors": [
  8579. {
  8580. "name": "Bernhard Schussek",
  8581. "email": "bschussek@gmail.com"
  8582. }
  8583. ],
  8584. "description": "Assertions to validate method input/output with nice error messages.",
  8585. "keywords": [
  8586. "assert",
  8587. "check",
  8588. "validate"
  8589. ],
  8590. "support": {
  8591. "issues": "https://github.com/webmozart/assert/issues",
  8592. "source": "https://github.com/webmozart/assert/tree/master"
  8593. },
  8594. "time": "2020-02-14T12:15:55+00:00"
  8595. }
  8596. ],
  8597. "aliases": [],
  8598. "minimum-stability": "stable",
  8599. "stability-flags": {
  8600. "composer/composer": 20
  8601. },
  8602. "prefer-stable": false,
  8603. "prefer-lowest": false,
  8604. "platform": {
  8605. "php": ">=7.3"
  8606. },
  8607. "platform-dev": [],
  8608. "platform-overrides": {
  8609. "php": "7.3.16"
  8610. },
  8611. "plugin-api-version": "1.1.0"
  8612. }