composer.lock 441 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130
  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": "7753c9d4d1e5fbea722b593ea6b2ffcf",
  8. "packages": [
  9. {
  10. "name": "alchemy/resource-component",
  11. "version": "0.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/resource-component.git",
  15. "reference": "5c7680f111c359136051b2155b64851f7da1063a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/resource-component/zipball/5c7680f111c359136051b2155b64851f7da1063a",
  20. "reference": "5c7680f111c359136051b2155b64851f7da1063a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "beberlei/assert": "^2.5",
  25. "php": ">=5.5",
  26. "symfony/polyfill-mbstring": "^1.1"
  27. },
  28. "require-dev": {
  29. "mikey179/vfsstream": "^1.6",
  30. "phpunit/phpunit": "^4.0|^5.0"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "0.1.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Alchemy\\Resource\\": "src/"
  41. },
  42. "files": [
  43. "src/functions.php"
  44. ]
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Alchemy",
  53. "email": "dev.team@alchemy.fr",
  54. "homepage": "http://www.alchemy.fr/"
  55. }
  56. ],
  57. "description": "Resource component",
  58. "keywords": [
  59. "alchemy",
  60. "resource",
  61. "uri"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/alchemy-fr/resource-component/issues",
  65. "source": "https://github.com/alchemy-fr/resource-component/tree/master"
  66. },
  67. "time": "2016-05-22T08:56:59+00:00"
  68. },
  69. {
  70. "name": "alchemy/zippy",
  71. "version": "v0.5.x-dev",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/alchemy-fr/Zippy.git",
  75. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  80. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "alchemy/resource-component": "^0.1",
  85. "ext-mbstring": "*",
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "ext-rar": "*",
  90. "ext-zip": "*",
  91. "guzzle/guzzle": "~3.0",
  92. "guzzlehttp/guzzle": "^6.0",
  93. "pear-pear.php.net/archive_tar": "*",
  94. "phpunit/phpunit": "^4.0|^5.0"
  95. },
  96. "suggest": {
  97. "ext-rar": "To read/write Rar files",
  98. "ext-tar": "To read/write Tar files",
  99. "ext-zip": "To read/write Zip files",
  100. "guzzle/guzzle": "To read archives and files from remote sources (Guzzle 3)",
  101. "guzzlehttp/guzzle": "To read archives and files from remote sources (Guzzle 6)"
  102. },
  103. "type": "library",
  104. "extra": {
  105. "branch-alias": {
  106. "dev-master": "0.4.x-dev"
  107. }
  108. },
  109. "autoload": {
  110. "psr-4": {
  111. "Alchemy\\Zippy\\": "src/"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "MIT"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Alchemy",
  121. "email": "dev.team@alchemy.fr",
  122. "homepage": "http://www.alchemy.fr/"
  123. }
  124. ],
  125. "description": "Zippy, the archive manager companion",
  126. "keywords": [
  127. "bzip",
  128. "compression",
  129. "tar",
  130. "zip"
  131. ],
  132. "support": {
  133. "issues": "https://github.com/alchemy-fr/Zippy/issues",
  134. "source": "https://github.com/alchemy-fr/Zippy/tree/v0.5.x"
  135. },
  136. "time": "2016-06-29T15:53:10+00:00"
  137. },
  138. {
  139. "name": "beberlei/assert",
  140. "version": "v2.9.9",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/beberlei/assert.git",
  144. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/beberlei/assert/zipball/124317de301b7c91d5fce34c98bba2c6925bec95",
  149. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "ext-mbstring": "*",
  154. "php": ">=5.3"
  155. },
  156. "require-dev": {
  157. "friendsofphp/php-cs-fixer": "^2.1.1",
  158. "phpunit/phpunit": "^4.8.35|^5.7"
  159. },
  160. "type": "library",
  161. "autoload": {
  162. "psr-4": {
  163. "Assert\\": "lib/Assert"
  164. },
  165. "files": [
  166. "lib/Assert/functions.php"
  167. ]
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "BSD-2-Clause"
  172. ],
  173. "authors": [
  174. {
  175. "name": "Benjamin Eberlei",
  176. "email": "kontakt@beberlei.de",
  177. "role": "Lead Developer"
  178. },
  179. {
  180. "name": "Richard Quadling",
  181. "email": "rquadling@gmail.com",
  182. "role": "Collaborator"
  183. }
  184. ],
  185. "description": "Thin assertion library for input validation in business models.",
  186. "keywords": [
  187. "assert",
  188. "assertion",
  189. "validation"
  190. ],
  191. "support": {
  192. "issues": "https://github.com/beberlei/assert/issues",
  193. "source": "https://github.com/beberlei/assert/tree/v2.9.9"
  194. },
  195. "time": "2019-05-28T15:27:37+00:00"
  196. },
  197. {
  198. "name": "composer/package-versions-deprecated",
  199. "version": "1.11.99.1",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/composer/package-versions-deprecated.git",
  203. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  208. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "composer-plugin-api": "^1.1.0 || ^2.0",
  213. "php": "^7 || ^8"
  214. },
  215. "replace": {
  216. "ocramius/package-versions": "1.11.99"
  217. },
  218. "require-dev": {
  219. "composer/composer": "^1.9.3 || ^2.0@dev",
  220. "ext-zip": "^1.13",
  221. "phpunit/phpunit": "^6.5 || ^7"
  222. },
  223. "type": "composer-plugin",
  224. "extra": {
  225. "class": "PackageVersions\\Installer",
  226. "branch-alias": {
  227. "dev-master": "1.x-dev"
  228. }
  229. },
  230. "autoload": {
  231. "psr-4": {
  232. "PackageVersions\\": "src/PackageVersions"
  233. }
  234. },
  235. "notification-url": "https://packagist.org/downloads/",
  236. "license": [
  237. "MIT"
  238. ],
  239. "authors": [
  240. {
  241. "name": "Marco Pivetta",
  242. "email": "ocramius@gmail.com"
  243. },
  244. {
  245. "name": "Jordi Boggiano",
  246. "email": "j.boggiano@seld.be"
  247. }
  248. ],
  249. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  250. "support": {
  251. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  252. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1"
  253. },
  254. "funding": [
  255. {
  256. "url": "https://packagist.com",
  257. "type": "custom"
  258. },
  259. {
  260. "url": "https://github.com/composer",
  261. "type": "github"
  262. },
  263. {
  264. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  265. "type": "tidelift"
  266. }
  267. ],
  268. "time": "2020-11-11T10:22:58+00:00"
  269. },
  270. {
  271. "name": "doctrine/annotations",
  272. "version": "1.12.1",
  273. "source": {
  274. "type": "git",
  275. "url": "https://github.com/doctrine/annotations.git",
  276. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b",
  281. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "doctrine/lexer": "1.*",
  286. "ext-tokenizer": "*",
  287. "php": "^7.1 || ^8.0"
  288. },
  289. "require-dev": {
  290. "doctrine/cache": "1.*",
  291. "doctrine/coding-standard": "^6.0 || ^8.1",
  292. "phpstan/phpstan": "^0.12.20",
  293. "phpunit/phpunit": "^7.5 || ^9.1.5"
  294. },
  295. "type": "library",
  296. "autoload": {
  297. "psr-4": {
  298. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  299. }
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "authors": [
  306. {
  307. "name": "Guilherme Blanco",
  308. "email": "guilhermeblanco@gmail.com"
  309. },
  310. {
  311. "name": "Roman Borschel",
  312. "email": "roman@code-factory.org"
  313. },
  314. {
  315. "name": "Benjamin Eberlei",
  316. "email": "kontakt@beberlei.de"
  317. },
  318. {
  319. "name": "Jonathan Wage",
  320. "email": "jonwage@gmail.com"
  321. },
  322. {
  323. "name": "Johannes Schmitt",
  324. "email": "schmittjoh@gmail.com"
  325. }
  326. ],
  327. "description": "Docblock Annotations Parser",
  328. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  329. "keywords": [
  330. "annotations",
  331. "docblock",
  332. "parser"
  333. ],
  334. "support": {
  335. "issues": "https://github.com/doctrine/annotations/issues",
  336. "source": "https://github.com/doctrine/annotations/tree/1.12.1"
  337. },
  338. "time": "2021-02-21T21:00:45+00:00"
  339. },
  340. {
  341. "name": "doctrine/cache",
  342. "version": "1.10.2",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/doctrine/cache.git",
  346. "reference": "13e3381b25847283a91948d04640543941309727"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  351. "reference": "13e3381b25847283a91948d04640543941309727",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "~7.1 || ^8.0"
  356. },
  357. "conflict": {
  358. "doctrine/common": ">2.2,<2.4"
  359. },
  360. "require-dev": {
  361. "alcaeus/mongo-php-adapter": "^1.1",
  362. "doctrine/coding-standard": "^6.0",
  363. "mongodb/mongodb": "^1.1",
  364. "phpunit/phpunit": "^7.0",
  365. "predis/predis": "~1.0"
  366. },
  367. "suggest": {
  368. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  369. },
  370. "type": "library",
  371. "extra": {
  372. "branch-alias": {
  373. "dev-master": "1.9.x-dev"
  374. }
  375. },
  376. "autoload": {
  377. "psr-4": {
  378. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  379. }
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Guilherme Blanco",
  388. "email": "guilhermeblanco@gmail.com"
  389. },
  390. {
  391. "name": "Roman Borschel",
  392. "email": "roman@code-factory.org"
  393. },
  394. {
  395. "name": "Benjamin Eberlei",
  396. "email": "kontakt@beberlei.de"
  397. },
  398. {
  399. "name": "Jonathan Wage",
  400. "email": "jonwage@gmail.com"
  401. },
  402. {
  403. "name": "Johannes Schmitt",
  404. "email": "schmittjoh@gmail.com"
  405. }
  406. ],
  407. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  408. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  409. "keywords": [
  410. "abstraction",
  411. "apcu",
  412. "cache",
  413. "caching",
  414. "couchdb",
  415. "memcached",
  416. "php",
  417. "redis",
  418. "xcache"
  419. ],
  420. "support": {
  421. "issues": "https://github.com/doctrine/cache/issues",
  422. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  423. },
  424. "funding": [
  425. {
  426. "url": "https://www.doctrine-project.org/sponsorship.html",
  427. "type": "custom"
  428. },
  429. {
  430. "url": "https://www.patreon.com/phpdoctrine",
  431. "type": "patreon"
  432. },
  433. {
  434. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  435. "type": "tidelift"
  436. }
  437. ],
  438. "time": "2020-07-07T18:54:01+00:00"
  439. },
  440. {
  441. "name": "doctrine/collections",
  442. "version": "1.6.7",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/doctrine/collections.git",
  446. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  451. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  452. "shasum": ""
  453. },
  454. "require": {
  455. "php": "^7.1.3 || ^8.0"
  456. },
  457. "require-dev": {
  458. "doctrine/coding-standard": "^6.0",
  459. "phpstan/phpstan-shim": "^0.9.2",
  460. "phpunit/phpunit": "^7.0",
  461. "vimeo/psalm": "^3.8.1"
  462. },
  463. "type": "library",
  464. "autoload": {
  465. "psr-4": {
  466. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Guilherme Blanco",
  476. "email": "guilhermeblanco@gmail.com"
  477. },
  478. {
  479. "name": "Roman Borschel",
  480. "email": "roman@code-factory.org"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Jonathan Wage",
  488. "email": "jonwage@gmail.com"
  489. },
  490. {
  491. "name": "Johannes Schmitt",
  492. "email": "schmittjoh@gmail.com"
  493. }
  494. ],
  495. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  496. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  497. "keywords": [
  498. "array",
  499. "collections",
  500. "iterators",
  501. "php"
  502. ],
  503. "support": {
  504. "issues": "https://github.com/doctrine/collections/issues",
  505. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  506. },
  507. "time": "2020-07-27T17:53:49+00:00"
  508. },
  509. {
  510. "name": "doctrine/common",
  511. "version": "3.1.2",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/doctrine/common.git",
  515. "reference": "a036d90c303f3163b5be8b8fde9b6755b2be4a3a"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/doctrine/common/zipball/a036d90c303f3163b5be8b8fde9b6755b2be4a3a",
  520. "reference": "a036d90c303f3163b5be8b8fde9b6755b2be4a3a",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "doctrine/persistence": "^2.0",
  525. "php": "^7.1 || ^8.0"
  526. },
  527. "require-dev": {
  528. "doctrine/coding-standard": "^6.0 || ^8.0",
  529. "phpstan/phpstan": "^0.12",
  530. "phpstan/phpstan-phpunit": "^0.12",
  531. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  532. "squizlabs/php_codesniffer": "^3.0",
  533. "symfony/phpunit-bridge": "^4.0.5",
  534. "vimeo/psalm": "^4.4"
  535. },
  536. "type": "library",
  537. "autoload": {
  538. "psr-4": {
  539. "Doctrine\\Common\\": "lib/Doctrine/Common"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "MIT"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Guilherme Blanco",
  549. "email": "guilhermeblanco@gmail.com"
  550. },
  551. {
  552. "name": "Roman Borschel",
  553. "email": "roman@code-factory.org"
  554. },
  555. {
  556. "name": "Benjamin Eberlei",
  557. "email": "kontakt@beberlei.de"
  558. },
  559. {
  560. "name": "Jonathan Wage",
  561. "email": "jonwage@gmail.com"
  562. },
  563. {
  564. "name": "Johannes Schmitt",
  565. "email": "schmittjoh@gmail.com"
  566. },
  567. {
  568. "name": "Marco Pivetta",
  569. "email": "ocramius@gmail.com"
  570. }
  571. ],
  572. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  573. "homepage": "https://www.doctrine-project.org/projects/common.html",
  574. "keywords": [
  575. "common",
  576. "doctrine",
  577. "php"
  578. ],
  579. "support": {
  580. "issues": "https://github.com/doctrine/common/issues",
  581. "source": "https://github.com/doctrine/common/tree/3.1.2"
  582. },
  583. "funding": [
  584. {
  585. "url": "https://www.doctrine-project.org/sponsorship.html",
  586. "type": "custom"
  587. },
  588. {
  589. "url": "https://www.patreon.com/phpdoctrine",
  590. "type": "patreon"
  591. },
  592. {
  593. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  594. "type": "tidelift"
  595. }
  596. ],
  597. "time": "2021-02-10T20:18:51+00:00"
  598. },
  599. {
  600. "name": "doctrine/dbal",
  601. "version": "2.13.0",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/doctrine/dbal.git",
  605. "reference": "67d56d3203b33db29834e6b2fcdbfdc50535d796"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/doctrine/dbal/zipball/67d56d3203b33db29834e6b2fcdbfdc50535d796",
  610. "reference": "67d56d3203b33db29834e6b2fcdbfdc50535d796",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/cache": "^1.0",
  615. "doctrine/deprecations": "^0.5.3",
  616. "doctrine/event-manager": "^1.0",
  617. "ext-pdo": "*",
  618. "php": "^7.1 || ^8"
  619. },
  620. "require-dev": {
  621. "doctrine/coding-standard": "8.2.0",
  622. "jetbrains/phpstorm-stubs": "2020.2",
  623. "phpstan/phpstan": "0.12.81",
  624. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  625. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  626. "vimeo/psalm": "4.6.4"
  627. },
  628. "suggest": {
  629. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  630. },
  631. "bin": [
  632. "bin/doctrine-dbal"
  633. ],
  634. "type": "library",
  635. "autoload": {
  636. "psr-4": {
  637. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Guilherme Blanco",
  647. "email": "guilhermeblanco@gmail.com"
  648. },
  649. {
  650. "name": "Roman Borschel",
  651. "email": "roman@code-factory.org"
  652. },
  653. {
  654. "name": "Benjamin Eberlei",
  655. "email": "kontakt@beberlei.de"
  656. },
  657. {
  658. "name": "Jonathan Wage",
  659. "email": "jonwage@gmail.com"
  660. }
  661. ],
  662. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  663. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  664. "keywords": [
  665. "abstraction",
  666. "database",
  667. "db2",
  668. "dbal",
  669. "mariadb",
  670. "mssql",
  671. "mysql",
  672. "oci8",
  673. "oracle",
  674. "pdo",
  675. "pgsql",
  676. "postgresql",
  677. "queryobject",
  678. "sasql",
  679. "sql",
  680. "sqlanywhere",
  681. "sqlite",
  682. "sqlserver",
  683. "sqlsrv"
  684. ],
  685. "support": {
  686. "issues": "https://github.com/doctrine/dbal/issues",
  687. "source": "https://github.com/doctrine/dbal/tree/2.13.0"
  688. },
  689. "funding": [
  690. {
  691. "url": "https://www.doctrine-project.org/sponsorship.html",
  692. "type": "custom"
  693. },
  694. {
  695. "url": "https://www.patreon.com/phpdoctrine",
  696. "type": "patreon"
  697. },
  698. {
  699. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  700. "type": "tidelift"
  701. }
  702. ],
  703. "time": "2021-03-28T18:10:53+00:00"
  704. },
  705. {
  706. "name": "doctrine/deprecations",
  707. "version": "v0.5.3",
  708. "source": {
  709. "type": "git",
  710. "url": "https://github.com/doctrine/deprecations.git",
  711. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  712. },
  713. "dist": {
  714. "type": "zip",
  715. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  716. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  717. "shasum": ""
  718. },
  719. "require": {
  720. "php": "^7.1|^8.0"
  721. },
  722. "require-dev": {
  723. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  724. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  725. "psr/log": "^1.0"
  726. },
  727. "suggest": {
  728. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  729. },
  730. "type": "library",
  731. "autoload": {
  732. "psr-4": {
  733. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  741. "homepage": "https://www.doctrine-project.org/",
  742. "support": {
  743. "issues": "https://github.com/doctrine/deprecations/issues",
  744. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  745. },
  746. "time": "2021-03-21T12:59:47+00:00"
  747. },
  748. {
  749. "name": "doctrine/doctrine-bundle",
  750. "version": "2.3.1",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/doctrine/DoctrineBundle.git",
  754. "reference": "a08bc3b4d8567cdff05e89b272ba1e06e9d71c21"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/a08bc3b4d8567cdff05e89b272ba1e06e9d71c21",
  759. "reference": "a08bc3b4d8567cdff05e89b272ba1e06e9d71c21",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "doctrine/dbal": "^2.9.0|^3.0",
  764. "doctrine/persistence": "^1.3.3|^2.0",
  765. "doctrine/sql-formatter": "^1.0.1",
  766. "php": "^7.1 || ^8.0",
  767. "symfony/cache": "^4.3.3|^5.0",
  768. "symfony/config": "^4.3.3|^5.0",
  769. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  770. "symfony/dependency-injection": "^4.3.3|^5.0",
  771. "symfony/doctrine-bridge": "^4.4.7|^5.0",
  772. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  773. "symfony/service-contracts": "^1.1.1|^2.0"
  774. },
  775. "conflict": {
  776. "doctrine/orm": "<2.6",
  777. "twig/twig": "<1.34|>=2.0,<2.4"
  778. },
  779. "require-dev": {
  780. "doctrine/coding-standard": "^8.0",
  781. "doctrine/orm": "^2.6",
  782. "friendsofphp/proxy-manager-lts": "^1.0",
  783. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3",
  784. "psalm/plugin-phpunit": "^0.15.1",
  785. "psalm/plugin-symfony": "^2.2.4",
  786. "symfony/phpunit-bridge": "^5.2",
  787. "symfony/property-info": "^4.3.3|^5.0",
  788. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  789. "symfony/security-bundle": "^4.4|5.0",
  790. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  791. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  792. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  793. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  794. "twig/twig": "^1.34|^2.12|^3.0",
  795. "vimeo/psalm": "^4.7"
  796. },
  797. "suggest": {
  798. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  799. "ext-pdo": "*",
  800. "symfony/web-profiler-bundle": "To use the data collector."
  801. },
  802. "type": "symfony-bundle",
  803. "autoload": {
  804. "psr-4": {
  805. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  806. }
  807. },
  808. "notification-url": "https://packagist.org/downloads/",
  809. "license": [
  810. "MIT"
  811. ],
  812. "authors": [
  813. {
  814. "name": "Fabien Potencier",
  815. "email": "fabien@symfony.com"
  816. },
  817. {
  818. "name": "Benjamin Eberlei",
  819. "email": "kontakt@beberlei.de"
  820. },
  821. {
  822. "name": "Symfony Community",
  823. "homepage": "http://symfony.com/contributors"
  824. },
  825. {
  826. "name": "Doctrine Project",
  827. "homepage": "http://www.doctrine-project.org/"
  828. }
  829. ],
  830. "description": "Symfony DoctrineBundle",
  831. "homepage": "http://www.doctrine-project.org",
  832. "keywords": [
  833. "database",
  834. "dbal",
  835. "orm",
  836. "persistence"
  837. ],
  838. "support": {
  839. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  840. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.3.1"
  841. },
  842. "funding": [
  843. {
  844. "url": "https://www.doctrine-project.org/sponsorship.html",
  845. "type": "custom"
  846. },
  847. {
  848. "url": "https://www.patreon.com/phpdoctrine",
  849. "type": "patreon"
  850. },
  851. {
  852. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2021-04-05T14:21:02+00:00"
  857. },
  858. {
  859. "name": "doctrine/doctrine-migrations-bundle",
  860. "version": "3.1.1",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  864. "reference": "91f0a5e2356029575f3038432cc188b12f9d5da5"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/91f0a5e2356029575f3038432cc188b12f9d5da5",
  869. "reference": "91f0a5e2356029575f3038432cc188b12f9d5da5",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "doctrine/doctrine-bundle": "~1.0|~2.0",
  874. "doctrine/migrations": "^3.1",
  875. "php": "^7.2|^8.0",
  876. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  877. },
  878. "require-dev": {
  879. "doctrine/coding-standard": "^8.0",
  880. "doctrine/orm": "^2.6",
  881. "doctrine/persistence": "^1.3||^2.0",
  882. "phpstan/phpstan": "^0.12",
  883. "phpstan/phpstan-deprecation-rules": "^0.12",
  884. "phpstan/phpstan-phpunit": "^0.12",
  885. "phpstan/phpstan-strict-rules": "^0.12",
  886. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  887. },
  888. "type": "symfony-bundle",
  889. "autoload": {
  890. "psr-4": {
  891. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  892. },
  893. "exclude-from-classmap": [
  894. "/Tests/"
  895. ]
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Fabien Potencier",
  904. "email": "fabien@symfony.com"
  905. },
  906. {
  907. "name": "Doctrine Project",
  908. "homepage": "http://www.doctrine-project.org"
  909. },
  910. {
  911. "name": "Symfony Community",
  912. "homepage": "http://symfony.com/contributors"
  913. }
  914. ],
  915. "description": "Symfony DoctrineMigrationsBundle",
  916. "homepage": "https://www.doctrine-project.org",
  917. "keywords": [
  918. "dbal",
  919. "migrations",
  920. "schema"
  921. ],
  922. "support": {
  923. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  924. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.1.1"
  925. },
  926. "funding": [
  927. {
  928. "url": "https://www.doctrine-project.org/sponsorship.html",
  929. "type": "custom"
  930. },
  931. {
  932. "url": "https://www.patreon.com/phpdoctrine",
  933. "type": "patreon"
  934. },
  935. {
  936. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  937. "type": "tidelift"
  938. }
  939. ],
  940. "time": "2021-04-10T16:48:53+00:00"
  941. },
  942. {
  943. "name": "doctrine/event-manager",
  944. "version": "1.1.1",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/doctrine/event-manager.git",
  948. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  953. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": "^7.1 || ^8.0"
  958. },
  959. "conflict": {
  960. "doctrine/common": "<2.9@dev"
  961. },
  962. "require-dev": {
  963. "doctrine/coding-standard": "^6.0",
  964. "phpunit/phpunit": "^7.0"
  965. },
  966. "type": "library",
  967. "extra": {
  968. "branch-alias": {
  969. "dev-master": "1.0.x-dev"
  970. }
  971. },
  972. "autoload": {
  973. "psr-4": {
  974. "Doctrine\\Common\\": "lib/Doctrine/Common"
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Guilherme Blanco",
  984. "email": "guilhermeblanco@gmail.com"
  985. },
  986. {
  987. "name": "Roman Borschel",
  988. "email": "roman@code-factory.org"
  989. },
  990. {
  991. "name": "Benjamin Eberlei",
  992. "email": "kontakt@beberlei.de"
  993. },
  994. {
  995. "name": "Jonathan Wage",
  996. "email": "jonwage@gmail.com"
  997. },
  998. {
  999. "name": "Johannes Schmitt",
  1000. "email": "schmittjoh@gmail.com"
  1001. },
  1002. {
  1003. "name": "Marco Pivetta",
  1004. "email": "ocramius@gmail.com"
  1005. }
  1006. ],
  1007. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1008. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1009. "keywords": [
  1010. "event",
  1011. "event dispatcher",
  1012. "event manager",
  1013. "event system",
  1014. "events"
  1015. ],
  1016. "support": {
  1017. "issues": "https://github.com/doctrine/event-manager/issues",
  1018. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1019. },
  1020. "funding": [
  1021. {
  1022. "url": "https://www.doctrine-project.org/sponsorship.html",
  1023. "type": "custom"
  1024. },
  1025. {
  1026. "url": "https://www.patreon.com/phpdoctrine",
  1027. "type": "patreon"
  1028. },
  1029. {
  1030. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1031. "type": "tidelift"
  1032. }
  1033. ],
  1034. "time": "2020-05-29T18:28:51+00:00"
  1035. },
  1036. {
  1037. "name": "doctrine/inflector",
  1038. "version": "2.0.3",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/doctrine/inflector.git",
  1042. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1047. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1048. "shasum": ""
  1049. },
  1050. "require": {
  1051. "php": "^7.2 || ^8.0"
  1052. },
  1053. "require-dev": {
  1054. "doctrine/coding-standard": "^7.0",
  1055. "phpstan/phpstan": "^0.11",
  1056. "phpstan/phpstan-phpunit": "^0.11",
  1057. "phpstan/phpstan-strict-rules": "^0.11",
  1058. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1059. },
  1060. "type": "library",
  1061. "extra": {
  1062. "branch-alias": {
  1063. "dev-master": "2.0.x-dev"
  1064. }
  1065. },
  1066. "autoload": {
  1067. "psr-4": {
  1068. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1069. }
  1070. },
  1071. "notification-url": "https://packagist.org/downloads/",
  1072. "license": [
  1073. "MIT"
  1074. ],
  1075. "authors": [
  1076. {
  1077. "name": "Guilherme Blanco",
  1078. "email": "guilhermeblanco@gmail.com"
  1079. },
  1080. {
  1081. "name": "Roman Borschel",
  1082. "email": "roman@code-factory.org"
  1083. },
  1084. {
  1085. "name": "Benjamin Eberlei",
  1086. "email": "kontakt@beberlei.de"
  1087. },
  1088. {
  1089. "name": "Jonathan Wage",
  1090. "email": "jonwage@gmail.com"
  1091. },
  1092. {
  1093. "name": "Johannes Schmitt",
  1094. "email": "schmittjoh@gmail.com"
  1095. }
  1096. ],
  1097. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1098. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1099. "keywords": [
  1100. "inflection",
  1101. "inflector",
  1102. "lowercase",
  1103. "manipulation",
  1104. "php",
  1105. "plural",
  1106. "singular",
  1107. "strings",
  1108. "uppercase",
  1109. "words"
  1110. ],
  1111. "support": {
  1112. "issues": "https://github.com/doctrine/inflector/issues",
  1113. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  1114. },
  1115. "funding": [
  1116. {
  1117. "url": "https://www.doctrine-project.org/sponsorship.html",
  1118. "type": "custom"
  1119. },
  1120. {
  1121. "url": "https://www.patreon.com/phpdoctrine",
  1122. "type": "patreon"
  1123. },
  1124. {
  1125. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1126. "type": "tidelift"
  1127. }
  1128. ],
  1129. "time": "2020-05-29T15:13:26+00:00"
  1130. },
  1131. {
  1132. "name": "doctrine/instantiator",
  1133. "version": "1.4.0",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/doctrine/instantiator.git",
  1137. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  1142. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  1143. "shasum": ""
  1144. },
  1145. "require": {
  1146. "php": "^7.1 || ^8.0"
  1147. },
  1148. "require-dev": {
  1149. "doctrine/coding-standard": "^8.0",
  1150. "ext-pdo": "*",
  1151. "ext-phar": "*",
  1152. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  1153. "phpstan/phpstan": "^0.12",
  1154. "phpstan/phpstan-phpunit": "^0.12",
  1155. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1156. },
  1157. "type": "library",
  1158. "autoload": {
  1159. "psr-4": {
  1160. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1161. }
  1162. },
  1163. "notification-url": "https://packagist.org/downloads/",
  1164. "license": [
  1165. "MIT"
  1166. ],
  1167. "authors": [
  1168. {
  1169. "name": "Marco Pivetta",
  1170. "email": "ocramius@gmail.com",
  1171. "homepage": "https://ocramius.github.io/"
  1172. }
  1173. ],
  1174. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1175. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1176. "keywords": [
  1177. "constructor",
  1178. "instantiate"
  1179. ],
  1180. "support": {
  1181. "issues": "https://github.com/doctrine/instantiator/issues",
  1182. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  1183. },
  1184. "funding": [
  1185. {
  1186. "url": "https://www.doctrine-project.org/sponsorship.html",
  1187. "type": "custom"
  1188. },
  1189. {
  1190. "url": "https://www.patreon.com/phpdoctrine",
  1191. "type": "patreon"
  1192. },
  1193. {
  1194. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1195. "type": "tidelift"
  1196. }
  1197. ],
  1198. "time": "2020-11-10T18:47:58+00:00"
  1199. },
  1200. {
  1201. "name": "doctrine/lexer",
  1202. "version": "1.2.1",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/doctrine/lexer.git",
  1206. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1211. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "php": "^7.2 || ^8.0"
  1216. },
  1217. "require-dev": {
  1218. "doctrine/coding-standard": "^6.0",
  1219. "phpstan/phpstan": "^0.11.8",
  1220. "phpunit/phpunit": "^8.2"
  1221. },
  1222. "type": "library",
  1223. "extra": {
  1224. "branch-alias": {
  1225. "dev-master": "1.2.x-dev"
  1226. }
  1227. },
  1228. "autoload": {
  1229. "psr-4": {
  1230. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Roman Borschel",
  1244. "email": "roman@code-factory.org"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1252. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "lexer",
  1257. "parser",
  1258. "php"
  1259. ],
  1260. "support": {
  1261. "issues": "https://github.com/doctrine/lexer/issues",
  1262. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1263. },
  1264. "funding": [
  1265. {
  1266. "url": "https://www.doctrine-project.org/sponsorship.html",
  1267. "type": "custom"
  1268. },
  1269. {
  1270. "url": "https://www.patreon.com/phpdoctrine",
  1271. "type": "patreon"
  1272. },
  1273. {
  1274. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1275. "type": "tidelift"
  1276. }
  1277. ],
  1278. "time": "2020-05-25T17:44:05+00:00"
  1279. },
  1280. {
  1281. "name": "doctrine/migrations",
  1282. "version": "3.1.1",
  1283. "source": {
  1284. "type": "git",
  1285. "url": "https://github.com/doctrine/migrations.git",
  1286. "reference": "e543224170a61ffe49fcadb8e7339c345df1baa2"
  1287. },
  1288. "dist": {
  1289. "type": "zip",
  1290. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e543224170a61ffe49fcadb8e7339c345df1baa2",
  1291. "reference": "e543224170a61ffe49fcadb8e7339c345df1baa2",
  1292. "shasum": ""
  1293. },
  1294. "require": {
  1295. "composer/package-versions-deprecated": "^1.8",
  1296. "doctrine/dbal": "^2.10",
  1297. "doctrine/event-manager": "^1.0",
  1298. "friendsofphp/proxy-manager-lts": "^1.0",
  1299. "php": "^7.2 || ^8.0",
  1300. "psr/log": "^1.1.3",
  1301. "symfony/console": "^3.4 || ^4.4.16 || ^5.0",
  1302. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0"
  1303. },
  1304. "require-dev": {
  1305. "doctrine/coding-standard": "^8.0",
  1306. "doctrine/orm": "^2.6",
  1307. "doctrine/persistence": "^1.3 || ^2.0",
  1308. "doctrine/sql-formatter": "^1.0",
  1309. "ergebnis/composer-normalize": "^2.9",
  1310. "ext-pdo_sqlite": "*",
  1311. "phpstan/phpstan": "^0.12",
  1312. "phpstan/phpstan-deprecation-rules": "^0.12",
  1313. "phpstan/phpstan-phpunit": "^0.12",
  1314. "phpstan/phpstan-strict-rules": "^0.12",
  1315. "phpstan/phpstan-symfony": "^0.12",
  1316. "phpunit/phpunit": "^8.5 || ^9.4",
  1317. "symfony/process": "^3.4 || ^4.0 || ^5.0",
  1318. "symfony/yaml": "^3.4 || ^4.0 || ^5.0"
  1319. },
  1320. "suggest": {
  1321. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1322. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1323. },
  1324. "bin": [
  1325. "bin/doctrine-migrations"
  1326. ],
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.0.x-dev"
  1331. },
  1332. "composer-normalize": {
  1333. "indent-size": 4,
  1334. "indent-style": "space"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Benjamin Eberlei",
  1349. "email": "kontakt@beberlei.de"
  1350. },
  1351. {
  1352. "name": "Jonathan Wage",
  1353. "email": "jonwage@gmail.com"
  1354. },
  1355. {
  1356. "name": "Michael Simonson",
  1357. "email": "contact@mikesimonson.com"
  1358. }
  1359. ],
  1360. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  1361. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1362. "keywords": [
  1363. "database",
  1364. "dbal",
  1365. "migrations"
  1366. ],
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/migrations/issues",
  1369. "source": "https://github.com/doctrine/migrations/tree/3.1.1"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://www.doctrine-project.org/sponsorship.html",
  1374. "type": "custom"
  1375. },
  1376. {
  1377. "url": "https://www.patreon.com/phpdoctrine",
  1378. "type": "patreon"
  1379. },
  1380. {
  1381. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1382. "type": "tidelift"
  1383. }
  1384. ],
  1385. "time": "2021-03-14T11:10:58+00:00"
  1386. },
  1387. {
  1388. "name": "doctrine/orm",
  1389. "version": "2.8.4",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/doctrine/orm.git",
  1393. "reference": "a588555ecd837b8d7e89355d9a13902e54d529c7"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/doctrine/orm/zipball/a588555ecd837b8d7e89355d9a13902e54d529c7",
  1398. "reference": "a588555ecd837b8d7e89355d9a13902e54d529c7",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "composer/package-versions-deprecated": "^1.8",
  1403. "doctrine/annotations": "^1.11.1",
  1404. "doctrine/cache": "^1.9.1",
  1405. "doctrine/collections": "^1.5",
  1406. "doctrine/common": "^3.0.3",
  1407. "doctrine/dbal": "^2.10.0",
  1408. "doctrine/event-manager": "^1.1",
  1409. "doctrine/inflector": "^1.4|^2.0",
  1410. "doctrine/instantiator": "^1.3",
  1411. "doctrine/lexer": "^1.0",
  1412. "doctrine/persistence": "^2.0",
  1413. "ext-pdo": "*",
  1414. "php": "^7.2|^8.0",
  1415. "symfony/console": "^3.0|^4.0|^5.0"
  1416. },
  1417. "require-dev": {
  1418. "doctrine/coding-standard": "^8.0",
  1419. "phpstan/phpstan": "^0.12.18",
  1420. "phpunit/phpunit": "^8.5|^9.4",
  1421. "symfony/yaml": "^3.4|^4.0|^5.0",
  1422. "vimeo/psalm": "4.1.1"
  1423. },
  1424. "suggest": {
  1425. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1426. },
  1427. "bin": [
  1428. "bin/doctrine"
  1429. ],
  1430. "type": "library",
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "authors": [
  1441. {
  1442. "name": "Guilherme Blanco",
  1443. "email": "guilhermeblanco@gmail.com"
  1444. },
  1445. {
  1446. "name": "Roman Borschel",
  1447. "email": "roman@code-factory.org"
  1448. },
  1449. {
  1450. "name": "Benjamin Eberlei",
  1451. "email": "kontakt@beberlei.de"
  1452. },
  1453. {
  1454. "name": "Jonathan Wage",
  1455. "email": "jonwage@gmail.com"
  1456. },
  1457. {
  1458. "name": "Marco Pivetta",
  1459. "email": "ocramius@gmail.com"
  1460. }
  1461. ],
  1462. "description": "Object-Relational-Mapper for PHP",
  1463. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1464. "keywords": [
  1465. "database",
  1466. "orm"
  1467. ],
  1468. "support": {
  1469. "issues": "https://github.com/doctrine/orm/issues",
  1470. "source": "https://github.com/doctrine/orm/tree/2.8.4"
  1471. },
  1472. "time": "2021-04-05T18:38:36+00:00"
  1473. },
  1474. {
  1475. "name": "doctrine/persistence",
  1476. "version": "2.1.0",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/doctrine/persistence.git",
  1480. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/doctrine/persistence/zipball/9899c16934053880876b920a3b8b02ed2337ac1d",
  1485. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "doctrine/annotations": "^1.0",
  1490. "doctrine/cache": "^1.0",
  1491. "doctrine/collections": "^1.0",
  1492. "doctrine/event-manager": "^1.0",
  1493. "php": "^7.1 || ^8.0"
  1494. },
  1495. "conflict": {
  1496. "doctrine/common": "<2.10@dev"
  1497. },
  1498. "require-dev": {
  1499. "composer/package-versions-deprecated": "^1.11",
  1500. "doctrine/coding-standard": "^6.0 || ^8.0",
  1501. "doctrine/common": "^3.0",
  1502. "phpstan/phpstan": "^0.12",
  1503. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  1504. "vimeo/psalm": "^3.11"
  1505. },
  1506. "type": "library",
  1507. "autoload": {
  1508. "psr-4": {
  1509. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1510. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Guilherme Blanco",
  1520. "email": "guilhermeblanco@gmail.com"
  1521. },
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Jonathan Wage",
  1532. "email": "jonwage@gmail.com"
  1533. },
  1534. {
  1535. "name": "Johannes Schmitt",
  1536. "email": "schmittjoh@gmail.com"
  1537. },
  1538. {
  1539. "name": "Marco Pivetta",
  1540. "email": "ocramius@gmail.com"
  1541. }
  1542. ],
  1543. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1544. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1545. "keywords": [
  1546. "mapper",
  1547. "object",
  1548. "odm",
  1549. "orm",
  1550. "persistence"
  1551. ],
  1552. "support": {
  1553. "issues": "https://github.com/doctrine/persistence/issues",
  1554. "source": "https://github.com/doctrine/persistence/tree/2.1.0"
  1555. },
  1556. "time": "2020-10-24T22:13:54+00:00"
  1557. },
  1558. {
  1559. "name": "doctrine/sql-formatter",
  1560. "version": "1.1.1",
  1561. "source": {
  1562. "type": "git",
  1563. "url": "https://github.com/doctrine/sql-formatter.git",
  1564. "reference": "56070bebac6e77230ed7d306ad13528e60732871"
  1565. },
  1566. "dist": {
  1567. "type": "zip",
  1568. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/56070bebac6e77230ed7d306ad13528e60732871",
  1569. "reference": "56070bebac6e77230ed7d306ad13528e60732871",
  1570. "shasum": ""
  1571. },
  1572. "require": {
  1573. "php": "^7.1 || ^8.0"
  1574. },
  1575. "require-dev": {
  1576. "bamarni/composer-bin-plugin": "^1.4"
  1577. },
  1578. "bin": [
  1579. "bin/sql-formatter"
  1580. ],
  1581. "type": "library",
  1582. "extra": {
  1583. "branch-alias": {
  1584. "dev-master": "1.x-dev"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Doctrine\\SqlFormatter\\": "src"
  1590. }
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "MIT"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "Jeremy Dorn",
  1599. "email": "jeremy@jeremydorn.com",
  1600. "homepage": "http://jeremydorn.com/"
  1601. }
  1602. ],
  1603. "description": "a PHP SQL highlighting library",
  1604. "homepage": "https://github.com/doctrine/sql-formatter/",
  1605. "keywords": [
  1606. "highlight",
  1607. "sql"
  1608. ],
  1609. "support": {
  1610. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1611. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.x"
  1612. },
  1613. "time": "2020-07-30T16:57:33+00:00"
  1614. },
  1615. {
  1616. "name": "egulias/email-validator",
  1617. "version": "3.1.1",
  1618. "source": {
  1619. "type": "git",
  1620. "url": "https://github.com/egulias/EmailValidator.git",
  1621. "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307"
  1622. },
  1623. "dist": {
  1624. "type": "zip",
  1625. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c81f18a3efb941d8c4d2e025f6183b5c6d697307",
  1626. "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307",
  1627. "shasum": ""
  1628. },
  1629. "require": {
  1630. "doctrine/lexer": "^1.2",
  1631. "php": ">=7.2",
  1632. "symfony/polyfill-intl-idn": "^1.15"
  1633. },
  1634. "require-dev": {
  1635. "php-coveralls/php-coveralls": "^2.2",
  1636. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1637. "vimeo/psalm": "^4"
  1638. },
  1639. "suggest": {
  1640. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1641. },
  1642. "type": "library",
  1643. "extra": {
  1644. "branch-alias": {
  1645. "dev-master": "3.0.x-dev"
  1646. }
  1647. },
  1648. "autoload": {
  1649. "psr-4": {
  1650. "Egulias\\EmailValidator\\": "src"
  1651. }
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Eduardo Gulias Davis"
  1660. }
  1661. ],
  1662. "description": "A library for validating emails against several RFCs",
  1663. "homepage": "https://github.com/egulias/EmailValidator",
  1664. "keywords": [
  1665. "email",
  1666. "emailvalidation",
  1667. "emailvalidator",
  1668. "validation",
  1669. "validator"
  1670. ],
  1671. "support": {
  1672. "issues": "https://github.com/egulias/EmailValidator/issues",
  1673. "source": "https://github.com/egulias/EmailValidator/tree/3.1.1"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://github.com/egulias",
  1678. "type": "github"
  1679. }
  1680. ],
  1681. "time": "2021-04-01T18:37:14+00:00"
  1682. },
  1683. {
  1684. "name": "erusev/parsedown",
  1685. "version": "1.7.4",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/erusev/parsedown.git",
  1689. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1694. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1695. "shasum": ""
  1696. },
  1697. "require": {
  1698. "ext-mbstring": "*",
  1699. "php": ">=5.3.0"
  1700. },
  1701. "require-dev": {
  1702. "phpunit/phpunit": "^4.8.35"
  1703. },
  1704. "type": "library",
  1705. "autoload": {
  1706. "psr-0": {
  1707. "Parsedown": ""
  1708. }
  1709. },
  1710. "notification-url": "https://packagist.org/downloads/",
  1711. "license": [
  1712. "MIT"
  1713. ],
  1714. "authors": [
  1715. {
  1716. "name": "Emanuil Rusev",
  1717. "email": "hello@erusev.com",
  1718. "homepage": "http://erusev.com"
  1719. }
  1720. ],
  1721. "description": "Parser for Markdown.",
  1722. "homepage": "http://parsedown.org",
  1723. "keywords": [
  1724. "markdown",
  1725. "parser"
  1726. ],
  1727. "support": {
  1728. "issues": "https://github.com/erusev/parsedown/issues",
  1729. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  1730. },
  1731. "time": "2019-12-30T22:54:17+00:00"
  1732. },
  1733. {
  1734. "name": "friendsofphp/proxy-manager-lts",
  1735. "version": "v1.0.3",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1739. "reference": "121af47c9aee9c03031bdeca3fac0540f59aa5c3"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/121af47c9aee9c03031bdeca3fac0540f59aa5c3",
  1744. "reference": "121af47c9aee9c03031bdeca3fac0540f59aa5c3",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "laminas/laminas-code": "~3.4.1|^4.0",
  1749. "php": ">=7.1",
  1750. "symfony/filesystem": "^4.4.17|^5.0"
  1751. },
  1752. "conflict": {
  1753. "laminas/laminas-stdlib": "<3.2.1",
  1754. "zendframework/zend-stdlib": "<3.2.1"
  1755. },
  1756. "replace": {
  1757. "ocramius/proxy-manager": "^2.1"
  1758. },
  1759. "require-dev": {
  1760. "ext-phar": "*",
  1761. "symfony/phpunit-bridge": "^5.2"
  1762. },
  1763. "type": "library",
  1764. "extra": {
  1765. "thanks": {
  1766. "name": "ocramius/proxy-manager",
  1767. "url": "https://github.com/Ocramius/ProxyManager"
  1768. }
  1769. },
  1770. "autoload": {
  1771. "psr-4": {
  1772. "ProxyManager\\": "src/ProxyManager"
  1773. }
  1774. },
  1775. "notification-url": "https://packagist.org/downloads/",
  1776. "license": [
  1777. "MIT"
  1778. ],
  1779. "authors": [
  1780. {
  1781. "name": "Marco Pivetta",
  1782. "email": "ocramius@gmail.com",
  1783. "homepage": "http://ocramius.github.io/"
  1784. },
  1785. {
  1786. "name": "Nicolas Grekas",
  1787. "email": "p@tchwork.com"
  1788. }
  1789. ],
  1790. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1791. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1792. "keywords": [
  1793. "aop",
  1794. "lazy loading",
  1795. "proxy",
  1796. "proxy pattern",
  1797. "service proxies"
  1798. ],
  1799. "support": {
  1800. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1801. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.3"
  1802. },
  1803. "funding": [
  1804. {
  1805. "url": "https://github.com/Ocramius",
  1806. "type": "github"
  1807. },
  1808. {
  1809. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1810. "type": "tidelift"
  1811. }
  1812. ],
  1813. "time": "2021-01-14T21:52:44+00:00"
  1814. },
  1815. {
  1816. "name": "giggsey/libphonenumber-for-php",
  1817. "version": "8.12.21",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1821. "reference": "272b8123ba7f1b7975620c6389e7206281b4a3ce"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/272b8123ba7f1b7975620c6389e7206281b4a3ce",
  1826. "reference": "272b8123ba7f1b7975620c6389e7206281b4a3ce",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "giggsey/locale": "^1.7",
  1831. "php": ">=5.3.2",
  1832. "symfony/polyfill-mbstring": "^1.17"
  1833. },
  1834. "require-dev": {
  1835. "pear/pear-core-minimal": "^1.9",
  1836. "pear/pear_exception": "^1.0",
  1837. "pear/versioncontrol_git": "^0.5",
  1838. "phing/phing": "^2.7",
  1839. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1840. "symfony/console": "^2.8|^3.0",
  1841. "symfony/phpunit-bridge": "^4.2 || ^5"
  1842. },
  1843. "type": "library",
  1844. "extra": {
  1845. "branch-alias": {
  1846. "dev-master": "8.x-dev"
  1847. }
  1848. },
  1849. "autoload": {
  1850. "psr-4": {
  1851. "libphonenumber\\": "src/"
  1852. },
  1853. "exclude-from-classmap": [
  1854. "/src/data/",
  1855. "/src/carrier/data/",
  1856. "/src/geocoding/data/",
  1857. "/src/timezone/data/"
  1858. ]
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "Apache-2.0"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "Joshua Gigg",
  1867. "email": "giggsey@gmail.com",
  1868. "homepage": "https://giggsey.com/"
  1869. }
  1870. ],
  1871. "description": "PHP Port of Google's libphonenumber",
  1872. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1873. "keywords": [
  1874. "geocoding",
  1875. "geolocation",
  1876. "libphonenumber",
  1877. "mobile",
  1878. "phonenumber",
  1879. "validation"
  1880. ],
  1881. "support": {
  1882. "irc": "irc://irc.appliedirc.com/lobby",
  1883. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1884. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1885. },
  1886. "time": "2021-04-06T08:37:32+00:00"
  1887. },
  1888. {
  1889. "name": "giggsey/locale",
  1890. "version": "1.9",
  1891. "source": {
  1892. "type": "git",
  1893. "url": "https://github.com/giggsey/Locale.git",
  1894. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043"
  1895. },
  1896. "dist": {
  1897. "type": "zip",
  1898. "url": "https://api.github.com/repos/giggsey/Locale/zipball/b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1899. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1900. "shasum": ""
  1901. },
  1902. "require": {
  1903. "php": ">=5.3.2"
  1904. },
  1905. "require-dev": {
  1906. "pear/pear-core-minimal": "^1.9",
  1907. "pear/pear_exception": "^1.0",
  1908. "pear/versioncontrol_git": "^0.5",
  1909. "phing/phing": "~2.7",
  1910. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1911. "phpunit/phpunit": "^4.8|^5.0",
  1912. "symfony/console": "^2.8|^3.0|^4.0",
  1913. "symfony/filesystem": "^2.8|^3.0|^4.0",
  1914. "symfony/finder": "^2.8|^3.0|^4.0",
  1915. "symfony/process": "^2.8|^3.0|^4.0"
  1916. },
  1917. "type": "library",
  1918. "autoload": {
  1919. "psr-4": {
  1920. "Giggsey\\Locale\\": "src/"
  1921. }
  1922. },
  1923. "notification-url": "https://packagist.org/downloads/",
  1924. "license": [
  1925. "MIT"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "Joshua Gigg",
  1930. "email": "giggsey@gmail.com",
  1931. "homepage": "http://giggsey.com/"
  1932. }
  1933. ],
  1934. "description": "Locale functions required by libphonenumber-for-php",
  1935. "support": {
  1936. "issues": "https://github.com/giggsey/Locale/issues",
  1937. "source": "https://github.com/giggsey/Locale/tree/master"
  1938. },
  1939. "time": "2020-07-07T11:16:24+00:00"
  1940. },
  1941. {
  1942. "name": "jcupitt/vips",
  1943. "version": "v1.0.8",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/libvips/php-vips.git",
  1947. "reference": "d3cf61bd087bd9c00cfc5ae32f6ded7165963058"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/libvips/php-vips/zipball/d3cf61bd087bd9c00cfc5ae32f6ded7165963058",
  1952. "reference": "d3cf61bd087bd9c00cfc5ae32f6ded7165963058",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "ext-vips": ">=0.1.2",
  1957. "php": ">=7.1",
  1958. "psr/log": "^1.1.3"
  1959. },
  1960. "require-dev": {
  1961. "php-parallel-lint/php-parallel-lint": "^1.2",
  1962. "phpdocumentor/phpdocumentor": "3.0.0-rc",
  1963. "phpunit/phpunit": "^9.3",
  1964. "squizlabs/php_codesniffer": "^3.5"
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "1.0.x-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Jcupitt\\Vips\\": "src"
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "MIT"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "John Cupitt",
  1984. "email": "jcupitt@gmail.com",
  1985. "homepage": "https://github.com/jcupitt",
  1986. "role": "Developer"
  1987. }
  1988. ],
  1989. "description": "A high-level interface to the libvips image processing library.",
  1990. "homepage": "https://github.com/libvips/php-vips",
  1991. "keywords": [
  1992. "image",
  1993. "libvips",
  1994. "processing"
  1995. ],
  1996. "support": {
  1997. "issues": "https://github.com/libvips/php-vips/issues",
  1998. "source": "https://github.com/libvips/php-vips/tree/v1.0.8"
  1999. },
  2000. "time": "2020-08-29T13:10:03+00:00"
  2001. },
  2002. {
  2003. "name": "laminas/laminas-code",
  2004. "version": "4.2.0",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/laminas/laminas-code.git",
  2008. "reference": "e7e8f8a9c267520051d8026ff1da74823a3d8b97"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/e7e8f8a9c267520051d8026ff1da74823a3d8b97",
  2013. "reference": "e7e8f8a9c267520051d8026ff1da74823a3d8b97",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "laminas/laminas-eventmanager": "^3.3",
  2018. "php": "^7.4 || ~8.0.0"
  2019. },
  2020. "conflict": {
  2021. "phpspec/prophecy": "<1.9.0"
  2022. },
  2023. "replace": {
  2024. "zendframework/zend-code": "self.version"
  2025. },
  2026. "require-dev": {
  2027. "doctrine/annotations": "^1.10.4",
  2028. "ext-phar": "*",
  2029. "laminas/laminas-coding-standard": "^2.1.4",
  2030. "laminas/laminas-stdlib": "^3.3.0",
  2031. "phpunit/phpunit": "^9.4.2",
  2032. "psalm/plugin-phpunit": "^0.14.0",
  2033. "vimeo/psalm": "^4.3.1"
  2034. },
  2035. "suggest": {
  2036. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  2037. "laminas/laminas-stdlib": "Laminas\\Stdlib component",
  2038. "laminas/laminas-zendframework-bridge": "A bridge with Zend Framework"
  2039. },
  2040. "type": "library",
  2041. "autoload": {
  2042. "psr-4": {
  2043. "Laminas\\Code\\": "src/"
  2044. }
  2045. },
  2046. "notification-url": "https://packagist.org/downloads/",
  2047. "license": [
  2048. "BSD-3-Clause"
  2049. ],
  2050. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  2051. "homepage": "https://laminas.dev",
  2052. "keywords": [
  2053. "code",
  2054. "laminas",
  2055. "laminasframework"
  2056. ],
  2057. "support": {
  2058. "chat": "https://laminas.dev/chat",
  2059. "docs": "https://docs.laminas.dev/laminas-code/",
  2060. "forum": "https://discourse.laminas.dev",
  2061. "issues": "https://github.com/laminas/laminas-code/issues",
  2062. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  2063. "source": "https://github.com/laminas/laminas-code"
  2064. },
  2065. "funding": [
  2066. {
  2067. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2068. "type": "community_bridge"
  2069. }
  2070. ],
  2071. "time": "2021-04-14T22:05:06+00:00"
  2072. },
  2073. {
  2074. "name": "laminas/laminas-eventmanager",
  2075. "version": "3.3.1",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/laminas/laminas-eventmanager.git",
  2079. "reference": "966c859b67867b179fde1eff0cd38df51472ce4a"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/966c859b67867b179fde1eff0cd38df51472ce4a",
  2084. "reference": "966c859b67867b179fde1eff0cd38df51472ce4a",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "laminas/laminas-zendframework-bridge": "^1.0",
  2089. "php": "^7.3 || ^8.0"
  2090. },
  2091. "replace": {
  2092. "zendframework/zend-eventmanager": "^3.2.1"
  2093. },
  2094. "require-dev": {
  2095. "container-interop/container-interop": "^1.1",
  2096. "laminas/laminas-coding-standard": "~1.0.0",
  2097. "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
  2098. "phpbench/phpbench": "^0.17.1",
  2099. "phpunit/phpunit": "^8.5.8"
  2100. },
  2101. "suggest": {
  2102. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  2103. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2104. },
  2105. "type": "library",
  2106. "autoload": {
  2107. "psr-4": {
  2108. "Laminas\\EventManager\\": "src/"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "BSD-3-Clause"
  2114. ],
  2115. "description": "Trigger and listen to events within a PHP application",
  2116. "homepage": "https://laminas.dev",
  2117. "keywords": [
  2118. "event",
  2119. "eventmanager",
  2120. "events",
  2121. "laminas"
  2122. ],
  2123. "support": {
  2124. "chat": "https://laminas.dev/chat",
  2125. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  2126. "forum": "https://discourse.laminas.dev",
  2127. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  2128. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  2129. "source": "https://github.com/laminas/laminas-eventmanager"
  2130. },
  2131. "funding": [
  2132. {
  2133. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2134. "type": "community_bridge"
  2135. }
  2136. ],
  2137. "time": "2021-03-08T15:24:29+00:00"
  2138. },
  2139. {
  2140. "name": "laminas/laminas-zendframework-bridge",
  2141. "version": "1.2.0",
  2142. "source": {
  2143. "type": "git",
  2144. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  2145. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32"
  2146. },
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32",
  2150. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32",
  2151. "shasum": ""
  2152. },
  2153. "require": {
  2154. "php": "^7.3 || ^8.0"
  2155. },
  2156. "require-dev": {
  2157. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  2158. "psalm/plugin-phpunit": "^0.15.1",
  2159. "squizlabs/php_codesniffer": "^3.5",
  2160. "vimeo/psalm": "^4.6"
  2161. },
  2162. "type": "library",
  2163. "extra": {
  2164. "laminas": {
  2165. "module": "Laminas\\ZendFrameworkBridge"
  2166. }
  2167. },
  2168. "autoload": {
  2169. "files": [
  2170. "src/autoload.php"
  2171. ],
  2172. "psr-4": {
  2173. "Laminas\\ZendFrameworkBridge\\": "src//"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "BSD-3-Clause"
  2179. ],
  2180. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  2181. "keywords": [
  2182. "ZendFramework",
  2183. "autoloading",
  2184. "laminas",
  2185. "zf"
  2186. ],
  2187. "support": {
  2188. "forum": "https://discourse.laminas.dev/",
  2189. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  2190. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  2191. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  2192. },
  2193. "funding": [
  2194. {
  2195. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2196. "type": "community_bridge"
  2197. }
  2198. ],
  2199. "time": "2021-02-25T21:54:58+00:00"
  2200. },
  2201. {
  2202. "name": "league/uri-parser",
  2203. "version": "1.4.1",
  2204. "source": {
  2205. "type": "git",
  2206. "url": "https://github.com/thephpleague/uri-parser.git",
  2207. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2208. },
  2209. "dist": {
  2210. "type": "zip",
  2211. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2212. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2213. "shasum": ""
  2214. },
  2215. "require": {
  2216. "php": ">=7.0.0"
  2217. },
  2218. "require-dev": {
  2219. "friendsofphp/php-cs-fixer": "^2.0",
  2220. "phpstan/phpstan": "^0.9.2",
  2221. "phpstan/phpstan-phpunit": "^0.9.4",
  2222. "phpstan/phpstan-strict-rules": "^0.9.0",
  2223. "phpunit/phpunit": "^6.0"
  2224. },
  2225. "suggest": {
  2226. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2227. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2228. },
  2229. "type": "library",
  2230. "extra": {
  2231. "branch-alias": {
  2232. "dev-master": "1.x-dev"
  2233. }
  2234. },
  2235. "autoload": {
  2236. "psr-4": {
  2237. "League\\Uri\\": "src"
  2238. },
  2239. "files": [
  2240. "src/functions_include.php"
  2241. ]
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "Ignace Nyamagana Butera",
  2250. "email": "nyamsprod@gmail.com",
  2251. "homepage": "https://nyamsprod.com"
  2252. }
  2253. ],
  2254. "description": "userland URI parser RFC 3986 compliant",
  2255. "homepage": "https://github.com/thephpleague/uri-parser",
  2256. "keywords": [
  2257. "parse_url",
  2258. "parser",
  2259. "rfc3986",
  2260. "rfc3987",
  2261. "uri",
  2262. "url"
  2263. ],
  2264. "support": {
  2265. "issues": "https://github.com/thephpleague/uri-parser/issues",
  2266. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  2267. },
  2268. "time": "2018-11-22T07:55:51+00:00"
  2269. },
  2270. {
  2271. "name": "lstrojny/functional-php",
  2272. "version": "1.17.0",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://github.com/lstrojny/functional-php.git",
  2276. "reference": "e459d5cb307bc6e10e9e992c4e96bb71a0262506"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/e459d5cb307bc6e10e9e992c4e96bb71a0262506",
  2281. "reference": "e459d5cb307bc6e10e9e992c4e96bb71a0262506",
  2282. "shasum": ""
  2283. },
  2284. "require": {
  2285. "php": "^7.1|~8"
  2286. },
  2287. "require-dev": {
  2288. "friendsofphp/php-cs-fixer": "^2.17",
  2289. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.5",
  2290. "squizlabs/php_codesniffer": "~3.0"
  2291. },
  2292. "type": "library",
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Functional\\": "src/Functional"
  2296. },
  2297. "files": [
  2298. "src/Functional/Ary.php",
  2299. "src/Functional/Average.php",
  2300. "src/Functional/ButLast.php",
  2301. "src/Functional/Capture.php",
  2302. "src/Functional/ConstFunction.php",
  2303. "src/Functional/CompareOn.php",
  2304. "src/Functional/CompareObjectHashOn.php",
  2305. "src/Functional/Compose.php",
  2306. "src/Functional/Concat.php",
  2307. "src/Functional/Contains.php",
  2308. "src/Functional/Converge.php",
  2309. "src/Functional/Curry.php",
  2310. "src/Functional/CurryN.php",
  2311. "src/Functional/Difference.php",
  2312. "src/Functional/DropFirst.php",
  2313. "src/Functional/DropLast.php",
  2314. "src/Functional/Each.php",
  2315. "src/Functional/Equal.php",
  2316. "src/Functional/ErrorToException.php",
  2317. "src/Functional/Every.php",
  2318. "src/Functional/False.php",
  2319. "src/Functional/Falsy.php",
  2320. "src/Functional/Filter.php",
  2321. "src/Functional/First.php",
  2322. "src/Functional/FirstIndexOf.php",
  2323. "src/Functional/FlatMap.php",
  2324. "src/Functional/Flatten.php",
  2325. "src/Functional/Flip.php",
  2326. "src/Functional/GreaterThan.php",
  2327. "src/Functional/GreaterThanOrEqual.php",
  2328. "src/Functional/Group.php",
  2329. "src/Functional/Head.php",
  2330. "src/Functional/Id.php",
  2331. "src/Functional/IfElse.php",
  2332. "src/Functional/Identical.php",
  2333. "src/Functional/IndexesOf.php",
  2334. "src/Functional/Intersperse.php",
  2335. "src/Functional/Invoke.php",
  2336. "src/Functional/InvokeFirst.php",
  2337. "src/Functional/InvokeIf.php",
  2338. "src/Functional/InvokeLast.php",
  2339. "src/Functional/Invoker.php",
  2340. "src/Functional/Last.php",
  2341. "src/Functional/LastIndexOf.php",
  2342. "src/Functional/LessThan.php",
  2343. "src/Functional/LessThanOrEqual.php",
  2344. "src/Functional/LexicographicCompare.php",
  2345. "src/Functional/Map.php",
  2346. "src/Functional/Matching.php",
  2347. "src/Functional/Maximum.php",
  2348. "src/Functional/Memoize.php",
  2349. "src/Functional/Minimum.php",
  2350. "src/Functional/None.php",
  2351. "src/Functional/Noop.php",
  2352. "src/Functional/Not.php",
  2353. "src/Functional/OmitKeys.php",
  2354. "src/Functional/PartialAny.php",
  2355. "src/Functional/PartialLeft.php",
  2356. "src/Functional/PartialMethod.php",
  2357. "src/Functional/PartialRight.php",
  2358. "src/Functional/Partition.php",
  2359. "src/Functional/Pick.php",
  2360. "src/Functional/Pluck.php",
  2361. "src/Functional/Poll.php",
  2362. "src/Functional/Product.php",
  2363. "src/Functional/Ratio.php",
  2364. "src/Functional/ReduceLeft.php",
  2365. "src/Functional/ReduceRight.php",
  2366. "src/Functional/Reindex.php",
  2367. "src/Functional/Reject.php",
  2368. "src/Functional/Repeat.php",
  2369. "src/Functional/Retry.php",
  2370. "src/Functional/Select.php",
  2371. "src/Functional/SelectKeys.php",
  2372. "src/Functional/SequenceConstant.php",
  2373. "src/Functional/SequenceExponential.php",
  2374. "src/Functional/SequenceLinear.php",
  2375. "src/Functional/Some.php",
  2376. "src/Functional/Sort.php",
  2377. "src/Functional/Sum.php",
  2378. "src/Functional/SuppressError.php",
  2379. "src/Functional/Tap.php",
  2380. "src/Functional/Tail.php",
  2381. "src/Functional/TailRecursion.php",
  2382. "src/Functional/TakeLeft.php",
  2383. "src/Functional/TakeRight.php",
  2384. "src/Functional/True.php",
  2385. "src/Functional/Truthy.php",
  2386. "src/Functional/Unique.php",
  2387. "src/Functional/ValueToKey.php",
  2388. "src/Functional/With.php",
  2389. "src/Functional/Zip.php",
  2390. "src/Functional/ZipAll.php"
  2391. ]
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Lars Strojny",
  2400. "email": "lstrojny@php.net",
  2401. "homepage": "https://usrportage.de"
  2402. },
  2403. {
  2404. "name": "Max Beutel",
  2405. "email": "nash12@gmail.com"
  2406. }
  2407. ],
  2408. "description": "Functional primitives for PHP",
  2409. "keywords": [
  2410. "functional"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/lstrojny/functional-php/issues",
  2414. "source": "https://github.com/lstrojny/functional-php/tree/1.17.0"
  2415. },
  2416. "funding": [
  2417. {
  2418. "url": "https://github.com/lstrojny",
  2419. "type": "github"
  2420. }
  2421. ],
  2422. "time": "2021-03-07T00:25:34+00:00"
  2423. },
  2424. {
  2425. "name": "masterminds/html5",
  2426. "version": "2.7.4",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/Masterminds/html5-php.git",
  2430. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  2435. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "ext-ctype": "*",
  2440. "ext-dom": "*",
  2441. "ext-libxml": "*",
  2442. "php": ">=5.3.0"
  2443. },
  2444. "require-dev": {
  2445. "phpunit/phpunit": "^4.8.35"
  2446. },
  2447. "type": "library",
  2448. "extra": {
  2449. "branch-alias": {
  2450. "dev-master": "2.7-dev"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "psr-4": {
  2455. "Masterminds\\": "src"
  2456. }
  2457. },
  2458. "notification-url": "https://packagist.org/downloads/",
  2459. "license": [
  2460. "MIT"
  2461. ],
  2462. "authors": [
  2463. {
  2464. "name": "Matt Butcher",
  2465. "email": "technosophos@gmail.com"
  2466. },
  2467. {
  2468. "name": "Matt Farina",
  2469. "email": "matt@mattfarina.com"
  2470. },
  2471. {
  2472. "name": "Asmir Mustafic",
  2473. "email": "goetas@gmail.com"
  2474. }
  2475. ],
  2476. "description": "An HTML5 parser and serializer.",
  2477. "homepage": "http://masterminds.github.io/html5-php",
  2478. "keywords": [
  2479. "HTML5",
  2480. "dom",
  2481. "html",
  2482. "parser",
  2483. "querypath",
  2484. "serializer",
  2485. "xml"
  2486. ],
  2487. "support": {
  2488. "issues": "https://github.com/Masterminds/html5-php/issues",
  2489. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  2490. },
  2491. "time": "2020-10-01T13:52:52+00:00"
  2492. },
  2493. {
  2494. "name": "monolog/monolog",
  2495. "version": "2.2.0",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://github.com/Seldaek/monolog.git",
  2499. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2504. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2505. "shasum": ""
  2506. },
  2507. "require": {
  2508. "php": ">=7.2",
  2509. "psr/log": "^1.0.1"
  2510. },
  2511. "provide": {
  2512. "psr/log-implementation": "1.0.0"
  2513. },
  2514. "require-dev": {
  2515. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2516. "doctrine/couchdb": "~1.0@dev",
  2517. "elasticsearch/elasticsearch": "^7",
  2518. "graylog2/gelf-php": "^1.4.2",
  2519. "mongodb/mongodb": "^1.8",
  2520. "php-amqplib/php-amqplib": "~2.4",
  2521. "php-console/php-console": "^3.1.3",
  2522. "phpspec/prophecy": "^1.6.1",
  2523. "phpstan/phpstan": "^0.12.59",
  2524. "phpunit/phpunit": "^8.5",
  2525. "predis/predis": "^1.1",
  2526. "rollbar/rollbar": "^1.3",
  2527. "ruflin/elastica": ">=0.90 <7.0.1",
  2528. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2529. },
  2530. "suggest": {
  2531. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2532. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2533. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2534. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2535. "ext-mbstring": "Allow to work properly with unicode symbols",
  2536. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2537. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2538. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2539. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2540. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2541. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2542. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2543. },
  2544. "type": "library",
  2545. "extra": {
  2546. "branch-alias": {
  2547. "dev-main": "2.x-dev"
  2548. }
  2549. },
  2550. "autoload": {
  2551. "psr-4": {
  2552. "Monolog\\": "src/Monolog"
  2553. }
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "authors": [
  2560. {
  2561. "name": "Jordi Boggiano",
  2562. "email": "j.boggiano@seld.be",
  2563. "homepage": "https://seld.be"
  2564. }
  2565. ],
  2566. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2567. "homepage": "https://github.com/Seldaek/monolog",
  2568. "keywords": [
  2569. "log",
  2570. "logging",
  2571. "psr-3"
  2572. ],
  2573. "support": {
  2574. "issues": "https://github.com/Seldaek/monolog/issues",
  2575. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2576. },
  2577. "funding": [
  2578. {
  2579. "url": "https://github.com/Seldaek",
  2580. "type": "github"
  2581. },
  2582. {
  2583. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2584. "type": "tidelift"
  2585. }
  2586. ],
  2587. "time": "2020-12-14T13:15:25+00:00"
  2588. },
  2589. {
  2590. "name": "odolbeau/phone-number-bundle",
  2591. "version": "v3.4.1",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  2595. "reference": "8db439fa58d12a569ef0c97bf8bd8a08ab691e78"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/8db439fa58d12a569ef0c97bf8bd8a08ab691e78",
  2600. "reference": "8db439fa58d12a569ef0c97bf8bd8a08ab691e78",
  2601. "shasum": ""
  2602. },
  2603. "require": {
  2604. "giggsey/libphonenumber-for-php": "^8.0",
  2605. "php": ">7.2.5",
  2606. "symfony/framework-bundle": "^3.4|^4.3|^5.0"
  2607. },
  2608. "replace": {
  2609. "misd/phone-number-bundle": "self.version"
  2610. },
  2611. "require-dev": {
  2612. "doctrine/doctrine-bundle": "^1.12|^2.0",
  2613. "phpunit/phpunit": "^8.4",
  2614. "symfony/form": "^3.4|^4.3|^5.0",
  2615. "symfony/property-access": "^3.4|^4.3|^5.0",
  2616. "symfony/serializer": "^3.4|^4.3|^5.0",
  2617. "symfony/twig-bundle": "^3.4|^4.3|^5.0",
  2618. "symfony/validator": "^3.4|^4.3|^5.0"
  2619. },
  2620. "suggest": {
  2621. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  2622. "symfony/form": "Add a data transformer",
  2623. "symfony/property-access": "Choose a path in the validation constraint",
  2624. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  2625. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  2626. "symfony/validator": "Add a validation constraint"
  2627. },
  2628. "type": "symfony-bundle",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-master": "3.4.x-dev"
  2632. }
  2633. },
  2634. "autoload": {
  2635. "psr-4": {
  2636. "Misd\\PhoneNumberBundle\\": "src/"
  2637. }
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "description": "Integrates libphonenumber into your Symfony application",
  2644. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  2645. "keywords": [
  2646. "bundle",
  2647. "libphonenumber",
  2648. "phone-number",
  2649. "phonenumber",
  2650. "telephone number"
  2651. ],
  2652. "support": {
  2653. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  2654. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v3.4.1"
  2655. },
  2656. "time": "2021-04-12T08:30:59+00:00"
  2657. },
  2658. {
  2659. "name": "php-ds/php-ds",
  2660. "version": "v1.3.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/php-ds/polyfill.git",
  2664. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/php-ds/polyfill/zipball/b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2669. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2670. "shasum": ""
  2671. },
  2672. "require": {
  2673. "ext-json": "*",
  2674. "php": ">=7.0.0"
  2675. },
  2676. "provide": {
  2677. "ext-ds": "1.3.0"
  2678. },
  2679. "require-dev": {
  2680. "php-ds/tests": "^1.3"
  2681. },
  2682. "suggest": {
  2683. "ext-ds": "to improve performance and reduce memory usage"
  2684. },
  2685. "type": "library",
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Ds\\": "src"
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "MIT"
  2694. ],
  2695. "authors": [
  2696. {
  2697. "name": "Rudi Theunissen",
  2698. "email": "rudolf.theunissen@gmail.com"
  2699. }
  2700. ],
  2701. "keywords": [
  2702. "data structures",
  2703. "ds",
  2704. "php",
  2705. "polyfill"
  2706. ],
  2707. "support": {
  2708. "issues": "https://github.com/php-ds/polyfill/issues",
  2709. "source": "https://github.com/php-ds/polyfill/tree/v1.3.0"
  2710. },
  2711. "time": "2020-10-14T04:23:31+00:00"
  2712. },
  2713. {
  2714. "name": "phpdocumentor/reflection-common",
  2715. "version": "2.2.0",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2719. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2724. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "php": "^7.2 || ^8.0"
  2729. },
  2730. "type": "library",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-2.x": "2.x-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "psr-4": {
  2738. "phpDocumentor\\Reflection\\": "src/"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Jaap van Otterdijk",
  2748. "email": "opensource@ijaap.nl"
  2749. }
  2750. ],
  2751. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2752. "homepage": "http://www.phpdoc.org",
  2753. "keywords": [
  2754. "FQSEN",
  2755. "phpDocumentor",
  2756. "phpdoc",
  2757. "reflection",
  2758. "static analysis"
  2759. ],
  2760. "support": {
  2761. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2762. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2763. },
  2764. "time": "2020-06-27T09:03:43+00:00"
  2765. },
  2766. {
  2767. "name": "phpdocumentor/reflection-docblock",
  2768. "version": "5.2.2",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2772. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  2777. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  2778. "shasum": ""
  2779. },
  2780. "require": {
  2781. "ext-filter": "*",
  2782. "php": "^7.2 || ^8.0",
  2783. "phpdocumentor/reflection-common": "^2.2",
  2784. "phpdocumentor/type-resolver": "^1.3",
  2785. "webmozart/assert": "^1.9.1"
  2786. },
  2787. "require-dev": {
  2788. "mockery/mockery": "~1.3.2"
  2789. },
  2790. "type": "library",
  2791. "extra": {
  2792. "branch-alias": {
  2793. "dev-master": "5.x-dev"
  2794. }
  2795. },
  2796. "autoload": {
  2797. "psr-4": {
  2798. "phpDocumentor\\Reflection\\": "src"
  2799. }
  2800. },
  2801. "notification-url": "https://packagist.org/downloads/",
  2802. "license": [
  2803. "MIT"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "Mike van Riel",
  2808. "email": "me@mikevanriel.com"
  2809. },
  2810. {
  2811. "name": "Jaap van Otterdijk",
  2812. "email": "account@ijaap.nl"
  2813. }
  2814. ],
  2815. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2816. "support": {
  2817. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2818. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  2819. },
  2820. "time": "2020-09-03T19:13:55+00:00"
  2821. },
  2822. {
  2823. "name": "phpdocumentor/type-resolver",
  2824. "version": "1.4.0",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2828. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2833. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "php": "^7.2 || ^8.0",
  2838. "phpdocumentor/reflection-common": "^2.0"
  2839. },
  2840. "require-dev": {
  2841. "ext-tokenizer": "*"
  2842. },
  2843. "type": "library",
  2844. "extra": {
  2845. "branch-alias": {
  2846. "dev-1.x": "1.x-dev"
  2847. }
  2848. },
  2849. "autoload": {
  2850. "psr-4": {
  2851. "phpDocumentor\\Reflection\\": "src"
  2852. }
  2853. },
  2854. "notification-url": "https://packagist.org/downloads/",
  2855. "license": [
  2856. "MIT"
  2857. ],
  2858. "authors": [
  2859. {
  2860. "name": "Mike van Riel",
  2861. "email": "me@mikevanriel.com"
  2862. }
  2863. ],
  2864. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2865. "support": {
  2866. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2867. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  2868. },
  2869. "time": "2020-09-17T18:55:26+00:00"
  2870. },
  2871. {
  2872. "name": "psr/cache",
  2873. "version": "1.0.1",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/php-fig/cache.git",
  2877. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2882. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2883. "shasum": ""
  2884. },
  2885. "require": {
  2886. "php": ">=5.3.0"
  2887. },
  2888. "type": "library",
  2889. "extra": {
  2890. "branch-alias": {
  2891. "dev-master": "1.0.x-dev"
  2892. }
  2893. },
  2894. "autoload": {
  2895. "psr-4": {
  2896. "Psr\\Cache\\": "src/"
  2897. }
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "MIT"
  2902. ],
  2903. "authors": [
  2904. {
  2905. "name": "PHP-FIG",
  2906. "homepage": "http://www.php-fig.org/"
  2907. }
  2908. ],
  2909. "description": "Common interface for caching libraries",
  2910. "keywords": [
  2911. "cache",
  2912. "psr",
  2913. "psr-6"
  2914. ],
  2915. "support": {
  2916. "source": "https://github.com/php-fig/cache/tree/master"
  2917. },
  2918. "time": "2016-08-06T20:24:11+00:00"
  2919. },
  2920. {
  2921. "name": "psr/container",
  2922. "version": "1.1.1",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/php-fig/container.git",
  2926. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2931. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2932. "shasum": ""
  2933. },
  2934. "require": {
  2935. "php": ">=7.2.0"
  2936. },
  2937. "type": "library",
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Psr\\Container\\": "src/"
  2941. }
  2942. },
  2943. "notification-url": "https://packagist.org/downloads/",
  2944. "license": [
  2945. "MIT"
  2946. ],
  2947. "authors": [
  2948. {
  2949. "name": "PHP-FIG",
  2950. "homepage": "https://www.php-fig.org/"
  2951. }
  2952. ],
  2953. "description": "Common Container Interface (PHP FIG PSR-11)",
  2954. "homepage": "https://github.com/php-fig/container",
  2955. "keywords": [
  2956. "PSR-11",
  2957. "container",
  2958. "container-interface",
  2959. "container-interop",
  2960. "psr"
  2961. ],
  2962. "support": {
  2963. "issues": "https://github.com/php-fig/container/issues",
  2964. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2965. },
  2966. "time": "2021-03-05T17:36:06+00:00"
  2967. },
  2968. {
  2969. "name": "psr/event-dispatcher",
  2970. "version": "1.0.0",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/php-fig/event-dispatcher.git",
  2974. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2979. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "php": ">=7.2.0"
  2984. },
  2985. "type": "library",
  2986. "extra": {
  2987. "branch-alias": {
  2988. "dev-master": "1.0.x-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Psr\\EventDispatcher\\": "src/"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "PHP-FIG",
  3003. "homepage": "http://www.php-fig.org/"
  3004. }
  3005. ],
  3006. "description": "Standard interfaces for event handling.",
  3007. "keywords": [
  3008. "events",
  3009. "psr",
  3010. "psr-14"
  3011. ],
  3012. "support": {
  3013. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3014. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3015. },
  3016. "time": "2019-01-08T18:20:26+00:00"
  3017. },
  3018. {
  3019. "name": "psr/link",
  3020. "version": "1.1.1",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/php-fig/link.git",
  3024. "reference": "846c25f58a1f02b93a00f2404e3626b6bf9b7807"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/php-fig/link/zipball/846c25f58a1f02b93a00f2404e3626b6bf9b7807",
  3029. "reference": "846c25f58a1f02b93a00f2404e3626b6bf9b7807",
  3030. "shasum": ""
  3031. },
  3032. "require": {
  3033. "php": ">=8.0.0"
  3034. },
  3035. "type": "library",
  3036. "extra": {
  3037. "branch-alias": {
  3038. "dev-master": "1.0.x-dev"
  3039. }
  3040. },
  3041. "autoload": {
  3042. "psr-4": {
  3043. "Psr\\Link\\": "src/"
  3044. }
  3045. },
  3046. "notification-url": "https://packagist.org/downloads/",
  3047. "license": [
  3048. "MIT"
  3049. ],
  3050. "authors": [
  3051. {
  3052. "name": "PHP-FIG",
  3053. "homepage": "http://www.php-fig.org/"
  3054. }
  3055. ],
  3056. "description": "Common interfaces for HTTP links",
  3057. "homepage": "https://github.com/php-fig/link",
  3058. "keywords": [
  3059. "http",
  3060. "http-link",
  3061. "link",
  3062. "psr",
  3063. "psr-13",
  3064. "rest"
  3065. ],
  3066. "support": {
  3067. "source": "https://github.com/php-fig/link/tree/1.1.1"
  3068. },
  3069. "time": "2021-03-11T22:59:13+00:00"
  3070. },
  3071. {
  3072. "name": "psr/log",
  3073. "version": "1.1.3",
  3074. "source": {
  3075. "type": "git",
  3076. "url": "https://github.com/php-fig/log.git",
  3077. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3078. },
  3079. "dist": {
  3080. "type": "zip",
  3081. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3082. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3083. "shasum": ""
  3084. },
  3085. "require": {
  3086. "php": ">=5.3.0"
  3087. },
  3088. "type": "library",
  3089. "extra": {
  3090. "branch-alias": {
  3091. "dev-master": "1.1.x-dev"
  3092. }
  3093. },
  3094. "autoload": {
  3095. "psr-4": {
  3096. "Psr\\Log\\": "Psr/Log/"
  3097. }
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "MIT"
  3102. ],
  3103. "authors": [
  3104. {
  3105. "name": "PHP-FIG",
  3106. "homepage": "http://www.php-fig.org/"
  3107. }
  3108. ],
  3109. "description": "Common interface for logging libraries",
  3110. "homepage": "https://github.com/php-fig/log",
  3111. "keywords": [
  3112. "log",
  3113. "psr",
  3114. "psr-3"
  3115. ],
  3116. "support": {
  3117. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3118. },
  3119. "time": "2020-03-23T09:12:05+00:00"
  3120. },
  3121. {
  3122. "name": "sensio/framework-extra-bundle",
  3123. "version": "v5.6.1",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3127. "reference": "430d14c01836b77c28092883d195a43ce413ee32"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/430d14c01836b77c28092883d195a43ce413ee32",
  3132. "reference": "430d14c01836b77c28092883d195a43ce413ee32",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "doctrine/annotations": "^1.0",
  3137. "php": ">=7.2.5",
  3138. "symfony/config": "^4.4|^5.0",
  3139. "symfony/dependency-injection": "^4.4|^5.0",
  3140. "symfony/framework-bundle": "^4.4|^5.0",
  3141. "symfony/http-kernel": "^4.4|^5.0"
  3142. },
  3143. "conflict": {
  3144. "doctrine/doctrine-cache-bundle": "<1.3.1",
  3145. "doctrine/persistence": "<1.3"
  3146. },
  3147. "require-dev": {
  3148. "doctrine/dbal": "^2.10|^3.0",
  3149. "doctrine/doctrine-bundle": "^1.11|^2.0",
  3150. "doctrine/orm": "^2.5",
  3151. "nyholm/psr7": "^1.1",
  3152. "symfony/browser-kit": "^4.4|^5.0",
  3153. "symfony/doctrine-bridge": "^4.4|^5.0",
  3154. "symfony/dom-crawler": "^4.4|^5.0",
  3155. "symfony/expression-language": "^4.4|^5.0",
  3156. "symfony/finder": "^4.4|^5.0",
  3157. "symfony/monolog-bridge": "^4.0|^5.0",
  3158. "symfony/monolog-bundle": "^3.2",
  3159. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  3160. "symfony/psr-http-message-bridge": "^1.1",
  3161. "symfony/security-bundle": "^4.4|^5.0",
  3162. "symfony/twig-bundle": "^4.4|^5.0",
  3163. "symfony/yaml": "^4.4|^5.0",
  3164. "twig/twig": "^1.34|^2.4|^3.0"
  3165. },
  3166. "type": "symfony-bundle",
  3167. "extra": {
  3168. "branch-alias": {
  3169. "dev-master": "5.6.x-dev"
  3170. }
  3171. },
  3172. "autoload": {
  3173. "psr-4": {
  3174. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3175. },
  3176. "exclude-from-classmap": [
  3177. "/tests/"
  3178. ]
  3179. },
  3180. "notification-url": "https://packagist.org/downloads/",
  3181. "license": [
  3182. "MIT"
  3183. ],
  3184. "authors": [
  3185. {
  3186. "name": "Fabien Potencier",
  3187. "email": "fabien@symfony.com"
  3188. }
  3189. ],
  3190. "description": "This bundle provides a way to configure your controllers with annotations",
  3191. "keywords": [
  3192. "annotations",
  3193. "controllers"
  3194. ],
  3195. "support": {
  3196. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  3197. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v5.6.1"
  3198. },
  3199. "time": "2020-08-25T19:10:18+00:00"
  3200. },
  3201. {
  3202. "name": "someonewithpc/memcached-polyfill",
  3203. "version": "1.0.1",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/someonewithpc/memcached-polyfill.git",
  3207. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/someonewithpc/memcached-polyfill/zipball/326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3212. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3213. "shasum": ""
  3214. },
  3215. "type": "library",
  3216. "autoload": {
  3217. "psr-4": {
  3218. "": "src"
  3219. }
  3220. },
  3221. "notification-url": "https://packagist.org/downloads/",
  3222. "license": [
  3223. "GPL-3.0-or-later"
  3224. ],
  3225. "authors": [
  3226. {
  3227. "name": "Hugo Sales",
  3228. "email": "hugo@fc.up.pt"
  3229. }
  3230. ],
  3231. "description": "No-implementation memcached extension polyfill",
  3232. "keywords": [
  3233. "memcached",
  3234. "polyfill",
  3235. "symfony"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/someonewithpc/memcached-polyfill/issues",
  3239. "source": "https://github.com/someonewithpc/memcached-polyfill/tree/1.0.1"
  3240. },
  3241. "time": "2020-07-17T22:30:37+00:00"
  3242. },
  3243. {
  3244. "name": "someonewithpc/redis-polyfill",
  3245. "version": "dev-master",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/someonewithpc/php-redis-polyfill.git",
  3249. "reference": "6f10fea3b62718ad3c500dcbcd8f5254894376c0"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/someonewithpc/php-redis-polyfill/zipball/6f10fea3b62718ad3c500dcbcd8f5254894376c0",
  3254. "reference": "6f10fea3b62718ad3c500dcbcd8f5254894376c0",
  3255. "shasum": ""
  3256. },
  3257. "default-branch": true,
  3258. "type": "library",
  3259. "autoload": {
  3260. "psr-4": {
  3261. "": "src"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "GPL-3.0-or-later"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Hugo Sales",
  3271. "email": "hugo@fc.up.pt"
  3272. }
  3273. ],
  3274. "description": "No-implementation redis extension polyfill",
  3275. "keywords": [
  3276. "polyfill",
  3277. "redis"
  3278. ],
  3279. "support": {
  3280. "issues": "https://github.com/someonewithpc/php-redis-polyfill/issues",
  3281. "source": "https://github.com/someonewithpc/php-redis-polyfill/tree/1.1"
  3282. },
  3283. "time": "2021-04-01T19:09:10+00:00"
  3284. },
  3285. {
  3286. "name": "symfony/amqp-messenger",
  3287. "version": "v5.2.4",
  3288. "source": {
  3289. "type": "git",
  3290. "url": "https://github.com/symfony/amqp-messenger.git",
  3291. "reference": "cf309a35ed08caa77886ee6a352b8491c7681424"
  3292. },
  3293. "dist": {
  3294. "type": "zip",
  3295. "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/cf309a35ed08caa77886ee6a352b8491c7681424",
  3296. "reference": "cf309a35ed08caa77886ee6a352b8491c7681424",
  3297. "shasum": ""
  3298. },
  3299. "require": {
  3300. "php": ">=7.2.5",
  3301. "symfony/deprecation-contracts": "^2.1",
  3302. "symfony/messenger": "^5.1"
  3303. },
  3304. "require-dev": {
  3305. "symfony/event-dispatcher": "^4.4|^5.0",
  3306. "symfony/process": "^4.4|^5.0",
  3307. "symfony/property-access": "^4.4|^5.0",
  3308. "symfony/serializer": "^4.4|^5.0"
  3309. },
  3310. "type": "symfony-bridge",
  3311. "autoload": {
  3312. "psr-4": {
  3313. "Symfony\\Component\\Messenger\\Bridge\\Amqp\\": ""
  3314. },
  3315. "exclude-from-classmap": [
  3316. "/Tests/"
  3317. ]
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "Fabien Potencier",
  3326. "email": "fabien@symfony.com"
  3327. },
  3328. {
  3329. "name": "Symfony Community",
  3330. "homepage": "https://symfony.com/contributors"
  3331. }
  3332. ],
  3333. "description": "Symfony AMQP extension Messenger Bridge",
  3334. "homepage": "https://symfony.com",
  3335. "support": {
  3336. "source": "https://github.com/symfony/amqp-messenger/tree/v5.2.4"
  3337. },
  3338. "funding": [
  3339. {
  3340. "url": "https://symfony.com/sponsor",
  3341. "type": "custom"
  3342. },
  3343. {
  3344. "url": "https://github.com/fabpot",
  3345. "type": "github"
  3346. },
  3347. {
  3348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3349. "type": "tidelift"
  3350. }
  3351. ],
  3352. "time": "2021-01-27T11:19:04+00:00"
  3353. },
  3354. {
  3355. "name": "symfony/asset",
  3356. "version": "v5.2.4",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://github.com/symfony/asset.git",
  3360. "reference": "54a42aa50f9359d1184bf7e954521b45ca3d5828"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://api.github.com/repos/symfony/asset/zipball/54a42aa50f9359d1184bf7e954521b45ca3d5828",
  3365. "reference": "54a42aa50f9359d1184bf7e954521b45ca3d5828",
  3366. "shasum": ""
  3367. },
  3368. "require": {
  3369. "php": ">=7.2.5"
  3370. },
  3371. "require-dev": {
  3372. "symfony/http-client": "^4.4|^5.0",
  3373. "symfony/http-foundation": "^4.4|^5.0",
  3374. "symfony/http-kernel": "^4.4|^5.0"
  3375. },
  3376. "suggest": {
  3377. "symfony/http-foundation": ""
  3378. },
  3379. "type": "library",
  3380. "autoload": {
  3381. "psr-4": {
  3382. "Symfony\\Component\\Asset\\": ""
  3383. },
  3384. "exclude-from-classmap": [
  3385. "/Tests/"
  3386. ]
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "MIT"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Fabien Potencier",
  3395. "email": "fabien@symfony.com"
  3396. },
  3397. {
  3398. "name": "Symfony Community",
  3399. "homepage": "https://symfony.com/contributors"
  3400. }
  3401. ],
  3402. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3403. "homepage": "https://symfony.com",
  3404. "support": {
  3405. "source": "https://github.com/symfony/asset/tree/v5.2.4"
  3406. },
  3407. "funding": [
  3408. {
  3409. "url": "https://symfony.com/sponsor",
  3410. "type": "custom"
  3411. },
  3412. {
  3413. "url": "https://github.com/fabpot",
  3414. "type": "github"
  3415. },
  3416. {
  3417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3418. "type": "tidelift"
  3419. }
  3420. ],
  3421. "time": "2021-01-27T10:01:46+00:00"
  3422. },
  3423. {
  3424. "name": "symfony/cache",
  3425. "version": "v5.2.6",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/symfony/cache.git",
  3429. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/symfony/cache/zipball/093d69bb10c959553c8beb828b8d4ea250a247dd",
  3434. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": ">=7.2.5",
  3439. "psr/cache": "^1.0|^2.0",
  3440. "psr/log": "^1.1",
  3441. "symfony/cache-contracts": "^1.1.7|^2",
  3442. "symfony/polyfill-php80": "^1.15",
  3443. "symfony/service-contracts": "^1.1|^2",
  3444. "symfony/var-exporter": "^4.4|^5.0"
  3445. },
  3446. "conflict": {
  3447. "doctrine/dbal": "<2.10",
  3448. "symfony/dependency-injection": "<4.4",
  3449. "symfony/http-kernel": "<4.4",
  3450. "symfony/var-dumper": "<4.4"
  3451. },
  3452. "provide": {
  3453. "psr/cache-implementation": "1.0|2.0",
  3454. "psr/simple-cache-implementation": "1.0",
  3455. "symfony/cache-implementation": "1.0|2.0"
  3456. },
  3457. "require-dev": {
  3458. "cache/integration-tests": "dev-master",
  3459. "doctrine/cache": "^1.6",
  3460. "doctrine/dbal": "^2.10|^3.0",
  3461. "predis/predis": "^1.1",
  3462. "psr/simple-cache": "^1.0",
  3463. "symfony/config": "^4.4|^5.0",
  3464. "symfony/dependency-injection": "^4.4|^5.0",
  3465. "symfony/filesystem": "^4.4|^5.0",
  3466. "symfony/http-kernel": "^4.4|^5.0",
  3467. "symfony/messenger": "^4.4|^5.0",
  3468. "symfony/var-dumper": "^4.4|^5.0"
  3469. },
  3470. "type": "library",
  3471. "autoload": {
  3472. "psr-4": {
  3473. "Symfony\\Component\\Cache\\": ""
  3474. },
  3475. "exclude-from-classmap": [
  3476. "/Tests/"
  3477. ]
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "authors": [
  3484. {
  3485. "name": "Nicolas Grekas",
  3486. "email": "p@tchwork.com"
  3487. },
  3488. {
  3489. "name": "Symfony Community",
  3490. "homepage": "https://symfony.com/contributors"
  3491. }
  3492. ],
  3493. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3494. "homepage": "https://symfony.com",
  3495. "keywords": [
  3496. "caching",
  3497. "psr6"
  3498. ],
  3499. "support": {
  3500. "source": "https://github.com/symfony/cache/tree/v5.2.6"
  3501. },
  3502. "funding": [
  3503. {
  3504. "url": "https://symfony.com/sponsor",
  3505. "type": "custom"
  3506. },
  3507. {
  3508. "url": "https://github.com/fabpot",
  3509. "type": "github"
  3510. },
  3511. {
  3512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3513. "type": "tidelift"
  3514. }
  3515. ],
  3516. "time": "2021-03-16T09:10:13+00:00"
  3517. },
  3518. {
  3519. "name": "symfony/cache-contracts",
  3520. "version": "v2.2.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/symfony/cache-contracts.git",
  3524. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3529. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "php": ">=7.2.5",
  3534. "psr/cache": "^1.0"
  3535. },
  3536. "suggest": {
  3537. "symfony/cache-implementation": ""
  3538. },
  3539. "type": "library",
  3540. "extra": {
  3541. "branch-alias": {
  3542. "dev-master": "2.2-dev"
  3543. },
  3544. "thanks": {
  3545. "name": "symfony/contracts",
  3546. "url": "https://github.com/symfony/contracts"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "psr-4": {
  3551. "Symfony\\Contracts\\Cache\\": ""
  3552. }
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Nicolas Grekas",
  3561. "email": "p@tchwork.com"
  3562. },
  3563. {
  3564. "name": "Symfony Community",
  3565. "homepage": "https://symfony.com/contributors"
  3566. }
  3567. ],
  3568. "description": "Generic abstractions related to caching",
  3569. "homepage": "https://symfony.com",
  3570. "keywords": [
  3571. "abstractions",
  3572. "contracts",
  3573. "decoupling",
  3574. "interfaces",
  3575. "interoperability",
  3576. "standards"
  3577. ],
  3578. "support": {
  3579. "source": "https://github.com/symfony/cache-contracts/tree/v2.2.0"
  3580. },
  3581. "funding": [
  3582. {
  3583. "url": "https://symfony.com/sponsor",
  3584. "type": "custom"
  3585. },
  3586. {
  3587. "url": "https://github.com/fabpot",
  3588. "type": "github"
  3589. },
  3590. {
  3591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3592. "type": "tidelift"
  3593. }
  3594. ],
  3595. "time": "2020-09-07T11:33:47+00:00"
  3596. },
  3597. {
  3598. "name": "symfony/config",
  3599. "version": "v5.2.4",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://github.com/symfony/config.git",
  3603. "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://api.github.com/repos/symfony/config/zipball/212d54675bf203ff8aef7d8cee8eecfb72f4a263",
  3608. "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263",
  3609. "shasum": ""
  3610. },
  3611. "require": {
  3612. "php": ">=7.2.5",
  3613. "symfony/deprecation-contracts": "^2.1",
  3614. "symfony/filesystem": "^4.4|^5.0",
  3615. "symfony/polyfill-ctype": "~1.8",
  3616. "symfony/polyfill-php80": "^1.15"
  3617. },
  3618. "conflict": {
  3619. "symfony/finder": "<4.4"
  3620. },
  3621. "require-dev": {
  3622. "symfony/event-dispatcher": "^4.4|^5.0",
  3623. "symfony/finder": "^4.4|^5.0",
  3624. "symfony/messenger": "^4.4|^5.0",
  3625. "symfony/service-contracts": "^1.1|^2",
  3626. "symfony/yaml": "^4.4|^5.0"
  3627. },
  3628. "suggest": {
  3629. "symfony/yaml": "To use the yaml reference dumper"
  3630. },
  3631. "type": "library",
  3632. "autoload": {
  3633. "psr-4": {
  3634. "Symfony\\Component\\Config\\": ""
  3635. },
  3636. "exclude-from-classmap": [
  3637. "/Tests/"
  3638. ]
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "MIT"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "Fabien Potencier",
  3647. "email": "fabien@symfony.com"
  3648. },
  3649. {
  3650. "name": "Symfony Community",
  3651. "homepage": "https://symfony.com/contributors"
  3652. }
  3653. ],
  3654. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3655. "homepage": "https://symfony.com",
  3656. "support": {
  3657. "source": "https://github.com/symfony/config/tree/v5.2.4"
  3658. },
  3659. "funding": [
  3660. {
  3661. "url": "https://symfony.com/sponsor",
  3662. "type": "custom"
  3663. },
  3664. {
  3665. "url": "https://github.com/fabpot",
  3666. "type": "github"
  3667. },
  3668. {
  3669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3670. "type": "tidelift"
  3671. }
  3672. ],
  3673. "time": "2021-02-23T23:58:19+00:00"
  3674. },
  3675. {
  3676. "name": "symfony/console",
  3677. "version": "v5.2.6",
  3678. "source": {
  3679. "type": "git",
  3680. "url": "https://github.com/symfony/console.git",
  3681. "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d"
  3682. },
  3683. "dist": {
  3684. "type": "zip",
  3685. "url": "https://api.github.com/repos/symfony/console/zipball/35f039df40a3b335ebf310f244cb242b3a83ac8d",
  3686. "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d",
  3687. "shasum": ""
  3688. },
  3689. "require": {
  3690. "php": ">=7.2.5",
  3691. "symfony/polyfill-mbstring": "~1.0",
  3692. "symfony/polyfill-php73": "^1.8",
  3693. "symfony/polyfill-php80": "^1.15",
  3694. "symfony/service-contracts": "^1.1|^2",
  3695. "symfony/string": "^5.1"
  3696. },
  3697. "conflict": {
  3698. "symfony/dependency-injection": "<4.4",
  3699. "symfony/dotenv": "<5.1",
  3700. "symfony/event-dispatcher": "<4.4",
  3701. "symfony/lock": "<4.4",
  3702. "symfony/process": "<4.4"
  3703. },
  3704. "provide": {
  3705. "psr/log-implementation": "1.0"
  3706. },
  3707. "require-dev": {
  3708. "psr/log": "~1.0",
  3709. "symfony/config": "^4.4|^5.0",
  3710. "symfony/dependency-injection": "^4.4|^5.0",
  3711. "symfony/event-dispatcher": "^4.4|^5.0",
  3712. "symfony/lock": "^4.4|^5.0",
  3713. "symfony/process": "^4.4|^5.0",
  3714. "symfony/var-dumper": "^4.4|^5.0"
  3715. },
  3716. "suggest": {
  3717. "psr/log": "For using the console logger",
  3718. "symfony/event-dispatcher": "",
  3719. "symfony/lock": "",
  3720. "symfony/process": ""
  3721. },
  3722. "type": "library",
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Symfony\\Component\\Console\\": ""
  3726. },
  3727. "exclude-from-classmap": [
  3728. "/Tests/"
  3729. ]
  3730. },
  3731. "notification-url": "https://packagist.org/downloads/",
  3732. "license": [
  3733. "MIT"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "Fabien Potencier",
  3738. "email": "fabien@symfony.com"
  3739. },
  3740. {
  3741. "name": "Symfony Community",
  3742. "homepage": "https://symfony.com/contributors"
  3743. }
  3744. ],
  3745. "description": "Eases the creation of beautiful and testable command line interfaces",
  3746. "homepage": "https://symfony.com",
  3747. "keywords": [
  3748. "cli",
  3749. "command line",
  3750. "console",
  3751. "terminal"
  3752. ],
  3753. "support": {
  3754. "source": "https://github.com/symfony/console/tree/v5.2.6"
  3755. },
  3756. "funding": [
  3757. {
  3758. "url": "https://symfony.com/sponsor",
  3759. "type": "custom"
  3760. },
  3761. {
  3762. "url": "https://github.com/fabpot",
  3763. "type": "github"
  3764. },
  3765. {
  3766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3767. "type": "tidelift"
  3768. }
  3769. ],
  3770. "time": "2021-03-28T09:42:18+00:00"
  3771. },
  3772. {
  3773. "name": "symfony/dependency-injection",
  3774. "version": "v5.2.6",
  3775. "source": {
  3776. "type": "git",
  3777. "url": "https://github.com/symfony/dependency-injection.git",
  3778. "reference": "1e66194bed2a69fa395d26bf1067e5e34483afac"
  3779. },
  3780. "dist": {
  3781. "type": "zip",
  3782. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1e66194bed2a69fa395d26bf1067e5e34483afac",
  3783. "reference": "1e66194bed2a69fa395d26bf1067e5e34483afac",
  3784. "shasum": ""
  3785. },
  3786. "require": {
  3787. "php": ">=7.2.5",
  3788. "psr/container": "^1.0",
  3789. "symfony/deprecation-contracts": "^2.1",
  3790. "symfony/polyfill-php80": "^1.15",
  3791. "symfony/service-contracts": "^1.1.6|^2"
  3792. },
  3793. "conflict": {
  3794. "symfony/config": "<5.1",
  3795. "symfony/finder": "<4.4",
  3796. "symfony/proxy-manager-bridge": "<4.4",
  3797. "symfony/yaml": "<4.4"
  3798. },
  3799. "provide": {
  3800. "psr/container-implementation": "1.0",
  3801. "symfony/service-implementation": "1.0|2.0"
  3802. },
  3803. "require-dev": {
  3804. "symfony/config": "^5.1",
  3805. "symfony/expression-language": "^4.4|^5.0",
  3806. "symfony/yaml": "^4.4|^5.0"
  3807. },
  3808. "suggest": {
  3809. "symfony/config": "",
  3810. "symfony/expression-language": "For using expressions in service container configuration",
  3811. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3812. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3813. "symfony/yaml": ""
  3814. },
  3815. "type": "library",
  3816. "autoload": {
  3817. "psr-4": {
  3818. "Symfony\\Component\\DependencyInjection\\": ""
  3819. },
  3820. "exclude-from-classmap": [
  3821. "/Tests/"
  3822. ]
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "MIT"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Fabien Potencier",
  3831. "email": "fabien@symfony.com"
  3832. },
  3833. {
  3834. "name": "Symfony Community",
  3835. "homepage": "https://symfony.com/contributors"
  3836. }
  3837. ],
  3838. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3839. "homepage": "https://symfony.com",
  3840. "support": {
  3841. "source": "https://github.com/symfony/dependency-injection/tree/v5.2.6"
  3842. },
  3843. "funding": [
  3844. {
  3845. "url": "https://symfony.com/sponsor",
  3846. "type": "custom"
  3847. },
  3848. {
  3849. "url": "https://github.com/fabpot",
  3850. "type": "github"
  3851. },
  3852. {
  3853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3854. "type": "tidelift"
  3855. }
  3856. ],
  3857. "time": "2021-03-22T11:10:24+00:00"
  3858. },
  3859. {
  3860. "name": "symfony/deprecation-contracts",
  3861. "version": "v2.2.0",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://github.com/symfony/deprecation-contracts.git",
  3865. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3870. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3871. "shasum": ""
  3872. },
  3873. "require": {
  3874. "php": ">=7.1"
  3875. },
  3876. "type": "library",
  3877. "extra": {
  3878. "branch-alias": {
  3879. "dev-master": "2.2-dev"
  3880. },
  3881. "thanks": {
  3882. "name": "symfony/contracts",
  3883. "url": "https://github.com/symfony/contracts"
  3884. }
  3885. },
  3886. "autoload": {
  3887. "files": [
  3888. "function.php"
  3889. ]
  3890. },
  3891. "notification-url": "https://packagist.org/downloads/",
  3892. "license": [
  3893. "MIT"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "Nicolas Grekas",
  3898. "email": "p@tchwork.com"
  3899. },
  3900. {
  3901. "name": "Symfony Community",
  3902. "homepage": "https://symfony.com/contributors"
  3903. }
  3904. ],
  3905. "description": "A generic function and convention to trigger deprecation notices",
  3906. "homepage": "https://symfony.com",
  3907. "support": {
  3908. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  3909. },
  3910. "funding": [
  3911. {
  3912. "url": "https://symfony.com/sponsor",
  3913. "type": "custom"
  3914. },
  3915. {
  3916. "url": "https://github.com/fabpot",
  3917. "type": "github"
  3918. },
  3919. {
  3920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3921. "type": "tidelift"
  3922. }
  3923. ],
  3924. "time": "2020-09-07T11:33:47+00:00"
  3925. },
  3926. {
  3927. "name": "symfony/doctrine-bridge",
  3928. "version": "v5.2.6",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/symfony/doctrine-bridge.git",
  3932. "reference": "72b6d743c6108e2b8d15ab94e1a8a224c4d0d144"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/72b6d743c6108e2b8d15ab94e1a8a224c4d0d144",
  3937. "reference": "72b6d743c6108e2b8d15ab94e1a8a224c4d0d144",
  3938. "shasum": ""
  3939. },
  3940. "require": {
  3941. "doctrine/event-manager": "~1.0",
  3942. "doctrine/persistence": "^2",
  3943. "php": ">=7.2.5",
  3944. "symfony/deprecation-contracts": "^2.1",
  3945. "symfony/polyfill-ctype": "~1.8",
  3946. "symfony/polyfill-mbstring": "~1.0",
  3947. "symfony/polyfill-php80": "^1.15",
  3948. "symfony/service-contracts": "^1.1|^2"
  3949. },
  3950. "conflict": {
  3951. "doctrine/dbal": "<2.10",
  3952. "phpunit/phpunit": "<5.4.3",
  3953. "symfony/dependency-injection": "<4.4",
  3954. "symfony/form": "<5.1",
  3955. "symfony/http-kernel": "<5",
  3956. "symfony/messenger": "<4.4",
  3957. "symfony/property-info": "<5",
  3958. "symfony/security-bundle": "<5",
  3959. "symfony/security-core": "<5",
  3960. "symfony/validator": "<5.2"
  3961. },
  3962. "require-dev": {
  3963. "composer/package-versions-deprecated": "^1.8",
  3964. "doctrine/annotations": "^1.10.4",
  3965. "doctrine/cache": "~1.6",
  3966. "doctrine/collections": "~1.0",
  3967. "doctrine/data-fixtures": "^1.1",
  3968. "doctrine/dbal": "^2.10|^3.0",
  3969. "doctrine/orm": "^2.7.3",
  3970. "symfony/cache": "^5.1",
  3971. "symfony/config": "^4.4|^5.0",
  3972. "symfony/dependency-injection": "^4.4|^5.0",
  3973. "symfony/doctrine-messenger": "^5.1",
  3974. "symfony/expression-language": "^4.4|^5.0",
  3975. "symfony/form": "^5.1.3",
  3976. "symfony/http-kernel": "^5.0",
  3977. "symfony/messenger": "^4.4|^5.0",
  3978. "symfony/property-access": "^4.4|^5.0",
  3979. "symfony/property-info": "^5.0",
  3980. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  3981. "symfony/security-core": "^5.0",
  3982. "symfony/stopwatch": "^4.4|^5.0",
  3983. "symfony/translation": "^4.4|^5.0",
  3984. "symfony/uid": "^5.1",
  3985. "symfony/validator": "^5.2",
  3986. "symfony/var-dumper": "^4.4|^5.0"
  3987. },
  3988. "suggest": {
  3989. "doctrine/data-fixtures": "",
  3990. "doctrine/dbal": "",
  3991. "doctrine/orm": "",
  3992. "symfony/form": "",
  3993. "symfony/property-info": "",
  3994. "symfony/validator": ""
  3995. },
  3996. "type": "symfony-bridge",
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Symfony\\Bridge\\Doctrine\\": ""
  4000. },
  4001. "exclude-from-classmap": [
  4002. "/Tests/"
  4003. ]
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Fabien Potencier",
  4012. "email": "fabien@symfony.com"
  4013. },
  4014. {
  4015. "name": "Symfony Community",
  4016. "homepage": "https://symfony.com/contributors"
  4017. }
  4018. ],
  4019. "description": "Provides integration for Doctrine with various Symfony components",
  4020. "homepage": "https://symfony.com",
  4021. "support": {
  4022. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.2.6"
  4023. },
  4024. "funding": [
  4025. {
  4026. "url": "https://symfony.com/sponsor",
  4027. "type": "custom"
  4028. },
  4029. {
  4030. "url": "https://github.com/fabpot",
  4031. "type": "github"
  4032. },
  4033. {
  4034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4035. "type": "tidelift"
  4036. }
  4037. ],
  4038. "time": "2021-03-10T22:10:15+00:00"
  4039. },
  4040. {
  4041. "name": "symfony/doctrine-messenger",
  4042. "version": "v5.2.5",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/symfony/doctrine-messenger.git",
  4046. "reference": "10136ef0e31ca9839254bd909ef42421b61bc118"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/10136ef0e31ca9839254bd909ef42421b61bc118",
  4051. "reference": "10136ef0e31ca9839254bd909ef42421b61bc118",
  4052. "shasum": ""
  4053. },
  4054. "require": {
  4055. "php": ">=7.2.5",
  4056. "symfony/messenger": "^5.1",
  4057. "symfony/service-contracts": "^1.1|^2"
  4058. },
  4059. "conflict": {
  4060. "doctrine/dbal": "<2.10",
  4061. "doctrine/persistence": "<1.3"
  4062. },
  4063. "require-dev": {
  4064. "doctrine/dbal": "^2.10|^3.0",
  4065. "doctrine/persistence": "^1.3|^2",
  4066. "symfony/property-access": "^4.4|^5.0",
  4067. "symfony/serializer": "^4.4|^5.0"
  4068. },
  4069. "type": "symfony-bridge",
  4070. "autoload": {
  4071. "psr-4": {
  4072. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4073. },
  4074. "exclude-from-classmap": [
  4075. "/Tests/"
  4076. ]
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Fabien Potencier",
  4085. "email": "fabien@symfony.com"
  4086. },
  4087. {
  4088. "name": "Symfony Community",
  4089. "homepage": "https://symfony.com/contributors"
  4090. }
  4091. ],
  4092. "description": "Symfony Doctrine Messenger Bridge",
  4093. "homepage": "https://symfony.com",
  4094. "support": {
  4095. "source": "https://github.com/symfony/doctrine-messenger/tree/v5.2.5"
  4096. },
  4097. "funding": [
  4098. {
  4099. "url": "https://symfony.com/sponsor",
  4100. "type": "custom"
  4101. },
  4102. {
  4103. "url": "https://github.com/fabpot",
  4104. "type": "github"
  4105. },
  4106. {
  4107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4108. "type": "tidelift"
  4109. }
  4110. ],
  4111. "time": "2021-03-05T12:14:19+00:00"
  4112. },
  4113. {
  4114. "name": "symfony/dotenv",
  4115. "version": "v5.2.4",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/symfony/dotenv.git",
  4119. "reference": "783f12027c6b40ab0e93d6136d9f642d1d67cd6b"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/symfony/dotenv/zipball/783f12027c6b40ab0e93d6136d9f642d1d67cd6b",
  4124. "reference": "783f12027c6b40ab0e93d6136d9f642d1d67cd6b",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "php": ">=7.2.5",
  4129. "symfony/deprecation-contracts": "^2.1"
  4130. },
  4131. "require-dev": {
  4132. "symfony/process": "^4.4|^5.0"
  4133. },
  4134. "type": "library",
  4135. "autoload": {
  4136. "psr-4": {
  4137. "Symfony\\Component\\Dotenv\\": ""
  4138. },
  4139. "exclude-from-classmap": [
  4140. "/Tests/"
  4141. ]
  4142. },
  4143. "notification-url": "https://packagist.org/downloads/",
  4144. "license": [
  4145. "MIT"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Fabien Potencier",
  4150. "email": "fabien@symfony.com"
  4151. },
  4152. {
  4153. "name": "Symfony Community",
  4154. "homepage": "https://symfony.com/contributors"
  4155. }
  4156. ],
  4157. "description": "Registers environment variables from a .env file",
  4158. "homepage": "https://symfony.com",
  4159. "keywords": [
  4160. "dotenv",
  4161. "env",
  4162. "environment"
  4163. ],
  4164. "support": {
  4165. "source": "https://github.com/symfony/dotenv/tree/v5.2.4"
  4166. },
  4167. "funding": [
  4168. {
  4169. "url": "https://symfony.com/sponsor",
  4170. "type": "custom"
  4171. },
  4172. {
  4173. "url": "https://github.com/fabpot",
  4174. "type": "github"
  4175. },
  4176. {
  4177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4178. "type": "tidelift"
  4179. }
  4180. ],
  4181. "time": "2021-01-27T10:01:46+00:00"
  4182. },
  4183. {
  4184. "name": "symfony/error-handler",
  4185. "version": "v5.2.6",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/symfony/error-handler.git",
  4189. "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/symfony/error-handler/zipball/bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
  4194. "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "php": ">=7.2.5",
  4199. "psr/log": "^1.0",
  4200. "symfony/polyfill-php80": "^1.15",
  4201. "symfony/var-dumper": "^4.4|^5.0"
  4202. },
  4203. "require-dev": {
  4204. "symfony/deprecation-contracts": "^2.1",
  4205. "symfony/http-kernel": "^4.4|^5.0",
  4206. "symfony/serializer": "^4.4|^5.0"
  4207. },
  4208. "type": "library",
  4209. "autoload": {
  4210. "psr-4": {
  4211. "Symfony\\Component\\ErrorHandler\\": ""
  4212. },
  4213. "exclude-from-classmap": [
  4214. "/Tests/"
  4215. ]
  4216. },
  4217. "notification-url": "https://packagist.org/downloads/",
  4218. "license": [
  4219. "MIT"
  4220. ],
  4221. "authors": [
  4222. {
  4223. "name": "Fabien Potencier",
  4224. "email": "fabien@symfony.com"
  4225. },
  4226. {
  4227. "name": "Symfony Community",
  4228. "homepage": "https://symfony.com/contributors"
  4229. }
  4230. ],
  4231. "description": "Provides tools to manage errors and ease debugging PHP code",
  4232. "homepage": "https://symfony.com",
  4233. "support": {
  4234. "source": "https://github.com/symfony/error-handler/tree/v5.2.6"
  4235. },
  4236. "funding": [
  4237. {
  4238. "url": "https://symfony.com/sponsor",
  4239. "type": "custom"
  4240. },
  4241. {
  4242. "url": "https://github.com/fabpot",
  4243. "type": "github"
  4244. },
  4245. {
  4246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4247. "type": "tidelift"
  4248. }
  4249. ],
  4250. "time": "2021-03-16T09:07:47+00:00"
  4251. },
  4252. {
  4253. "name": "symfony/event-dispatcher",
  4254. "version": "v5.2.4",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/symfony/event-dispatcher.git",
  4258. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  4263. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  4264. "shasum": ""
  4265. },
  4266. "require": {
  4267. "php": ">=7.2.5",
  4268. "symfony/deprecation-contracts": "^2.1",
  4269. "symfony/event-dispatcher-contracts": "^2",
  4270. "symfony/polyfill-php80": "^1.15"
  4271. },
  4272. "conflict": {
  4273. "symfony/dependency-injection": "<4.4"
  4274. },
  4275. "provide": {
  4276. "psr/event-dispatcher-implementation": "1.0",
  4277. "symfony/event-dispatcher-implementation": "2.0"
  4278. },
  4279. "require-dev": {
  4280. "psr/log": "~1.0",
  4281. "symfony/config": "^4.4|^5.0",
  4282. "symfony/dependency-injection": "^4.4|^5.0",
  4283. "symfony/error-handler": "^4.4|^5.0",
  4284. "symfony/expression-language": "^4.4|^5.0",
  4285. "symfony/http-foundation": "^4.4|^5.0",
  4286. "symfony/service-contracts": "^1.1|^2",
  4287. "symfony/stopwatch": "^4.4|^5.0"
  4288. },
  4289. "suggest": {
  4290. "symfony/dependency-injection": "",
  4291. "symfony/http-kernel": ""
  4292. },
  4293. "type": "library",
  4294. "autoload": {
  4295. "psr-4": {
  4296. "Symfony\\Component\\EventDispatcher\\": ""
  4297. },
  4298. "exclude-from-classmap": [
  4299. "/Tests/"
  4300. ]
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "Fabien Potencier",
  4309. "email": "fabien@symfony.com"
  4310. },
  4311. {
  4312. "name": "Symfony Community",
  4313. "homepage": "https://symfony.com/contributors"
  4314. }
  4315. ],
  4316. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4317. "homepage": "https://symfony.com",
  4318. "support": {
  4319. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://symfony.com/sponsor",
  4324. "type": "custom"
  4325. },
  4326. {
  4327. "url": "https://github.com/fabpot",
  4328. "type": "github"
  4329. },
  4330. {
  4331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4332. "type": "tidelift"
  4333. }
  4334. ],
  4335. "time": "2021-02-18T17:12:37+00:00"
  4336. },
  4337. {
  4338. "name": "symfony/event-dispatcher-contracts",
  4339. "version": "v2.2.0",
  4340. "source": {
  4341. "type": "git",
  4342. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4343. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4344. },
  4345. "dist": {
  4346. "type": "zip",
  4347. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4348. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4349. "shasum": ""
  4350. },
  4351. "require": {
  4352. "php": ">=7.2.5",
  4353. "psr/event-dispatcher": "^1"
  4354. },
  4355. "suggest": {
  4356. "symfony/event-dispatcher-implementation": ""
  4357. },
  4358. "type": "library",
  4359. "extra": {
  4360. "branch-alias": {
  4361. "dev-master": "2.2-dev"
  4362. },
  4363. "thanks": {
  4364. "name": "symfony/contracts",
  4365. "url": "https://github.com/symfony/contracts"
  4366. }
  4367. },
  4368. "autoload": {
  4369. "psr-4": {
  4370. "Symfony\\Contracts\\EventDispatcher\\": ""
  4371. }
  4372. },
  4373. "notification-url": "https://packagist.org/downloads/",
  4374. "license": [
  4375. "MIT"
  4376. ],
  4377. "authors": [
  4378. {
  4379. "name": "Nicolas Grekas",
  4380. "email": "p@tchwork.com"
  4381. },
  4382. {
  4383. "name": "Symfony Community",
  4384. "homepage": "https://symfony.com/contributors"
  4385. }
  4386. ],
  4387. "description": "Generic abstractions related to dispatching event",
  4388. "homepage": "https://symfony.com",
  4389. "keywords": [
  4390. "abstractions",
  4391. "contracts",
  4392. "decoupling",
  4393. "interfaces",
  4394. "interoperability",
  4395. "standards"
  4396. ],
  4397. "support": {
  4398. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4399. },
  4400. "funding": [
  4401. {
  4402. "url": "https://symfony.com/sponsor",
  4403. "type": "custom"
  4404. },
  4405. {
  4406. "url": "https://github.com/fabpot",
  4407. "type": "github"
  4408. },
  4409. {
  4410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4411. "type": "tidelift"
  4412. }
  4413. ],
  4414. "time": "2020-09-07T11:33:47+00:00"
  4415. },
  4416. {
  4417. "name": "symfony/expression-language",
  4418. "version": "v5.2.4",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/symfony/expression-language.git",
  4422. "reference": "3fc560e62bc5121751b792b11505db03a12cf83c"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/symfony/expression-language/zipball/3fc560e62bc5121751b792b11505db03a12cf83c",
  4427. "reference": "3fc560e62bc5121751b792b11505db03a12cf83c",
  4428. "shasum": ""
  4429. },
  4430. "require": {
  4431. "php": ">=7.2.5",
  4432. "symfony/cache": "^4.4|^5.0",
  4433. "symfony/polyfill-php80": "^1.15",
  4434. "symfony/service-contracts": "^1.1|^2"
  4435. },
  4436. "type": "library",
  4437. "autoload": {
  4438. "psr-4": {
  4439. "Symfony\\Component\\ExpressionLanguage\\": ""
  4440. },
  4441. "exclude-from-classmap": [
  4442. "/Tests/"
  4443. ]
  4444. },
  4445. "notification-url": "https://packagist.org/downloads/",
  4446. "license": [
  4447. "MIT"
  4448. ],
  4449. "authors": [
  4450. {
  4451. "name": "Fabien Potencier",
  4452. "email": "fabien@symfony.com"
  4453. },
  4454. {
  4455. "name": "Symfony Community",
  4456. "homepage": "https://symfony.com/contributors"
  4457. }
  4458. ],
  4459. "description": "Provides an engine that can compile and evaluate expressions",
  4460. "homepage": "https://symfony.com",
  4461. "support": {
  4462. "source": "https://github.com/symfony/expression-language/tree/v5.2.4"
  4463. },
  4464. "funding": [
  4465. {
  4466. "url": "https://symfony.com/sponsor",
  4467. "type": "custom"
  4468. },
  4469. {
  4470. "url": "https://github.com/fabpot",
  4471. "type": "github"
  4472. },
  4473. {
  4474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4475. "type": "tidelift"
  4476. }
  4477. ],
  4478. "time": "2021-02-12T10:38:38+00:00"
  4479. },
  4480. {
  4481. "name": "symfony/filesystem",
  4482. "version": "v5.2.6",
  4483. "source": {
  4484. "type": "git",
  4485. "url": "https://github.com/symfony/filesystem.git",
  4486. "reference": "8c86a82f51658188119e62cff0a050a12d09836f"
  4487. },
  4488. "dist": {
  4489. "type": "zip",
  4490. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
  4491. "reference": "8c86a82f51658188119e62cff0a050a12d09836f",
  4492. "shasum": ""
  4493. },
  4494. "require": {
  4495. "php": ">=7.2.5",
  4496. "symfony/polyfill-ctype": "~1.8"
  4497. },
  4498. "type": "library",
  4499. "autoload": {
  4500. "psr-4": {
  4501. "Symfony\\Component\\Filesystem\\": ""
  4502. },
  4503. "exclude-from-classmap": [
  4504. "/Tests/"
  4505. ]
  4506. },
  4507. "notification-url": "https://packagist.org/downloads/",
  4508. "license": [
  4509. "MIT"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "Fabien Potencier",
  4514. "email": "fabien@symfony.com"
  4515. },
  4516. {
  4517. "name": "Symfony Community",
  4518. "homepage": "https://symfony.com/contributors"
  4519. }
  4520. ],
  4521. "description": "Provides basic utilities for the filesystem",
  4522. "homepage": "https://symfony.com",
  4523. "support": {
  4524. "source": "https://github.com/symfony/filesystem/tree/v5.2.6"
  4525. },
  4526. "funding": [
  4527. {
  4528. "url": "https://symfony.com/sponsor",
  4529. "type": "custom"
  4530. },
  4531. {
  4532. "url": "https://github.com/fabpot",
  4533. "type": "github"
  4534. },
  4535. {
  4536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4537. "type": "tidelift"
  4538. }
  4539. ],
  4540. "time": "2021-03-28T14:30:26+00:00"
  4541. },
  4542. {
  4543. "name": "symfony/finder",
  4544. "version": "v5.2.4",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/symfony/finder.git",
  4548. "reference": "0d639a0943822626290d169965804f79400e6a04"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
  4553. "reference": "0d639a0943822626290d169965804f79400e6a04",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "php": ">=7.2.5"
  4558. },
  4559. "type": "library",
  4560. "autoload": {
  4561. "psr-4": {
  4562. "Symfony\\Component\\Finder\\": ""
  4563. },
  4564. "exclude-from-classmap": [
  4565. "/Tests/"
  4566. ]
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Fabien Potencier",
  4575. "email": "fabien@symfony.com"
  4576. },
  4577. {
  4578. "name": "Symfony Community",
  4579. "homepage": "https://symfony.com/contributors"
  4580. }
  4581. ],
  4582. "description": "Finds files and directories via an intuitive fluent interface",
  4583. "homepage": "https://symfony.com",
  4584. "support": {
  4585. "source": "https://github.com/symfony/finder/tree/v5.2.4"
  4586. },
  4587. "funding": [
  4588. {
  4589. "url": "https://symfony.com/sponsor",
  4590. "type": "custom"
  4591. },
  4592. {
  4593. "url": "https://github.com/fabpot",
  4594. "type": "github"
  4595. },
  4596. {
  4597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4598. "type": "tidelift"
  4599. }
  4600. ],
  4601. "time": "2021-02-15T18:55:04+00:00"
  4602. },
  4603. {
  4604. "name": "symfony/flex",
  4605. "version": "v1.12.2",
  4606. "source": {
  4607. "type": "git",
  4608. "url": "https://github.com/symfony/flex.git",
  4609. "reference": "e472606b4b3173564f0edbca8f5d32b52fc4f2c9"
  4610. },
  4611. "dist": {
  4612. "type": "zip",
  4613. "url": "https://api.github.com/repos/symfony/flex/zipball/e472606b4b3173564f0edbca8f5d32b52fc4f2c9",
  4614. "reference": "e472606b4b3173564f0edbca8f5d32b52fc4f2c9",
  4615. "shasum": ""
  4616. },
  4617. "require": {
  4618. "composer-plugin-api": "^1.0|^2.0",
  4619. "php": ">=7.1"
  4620. },
  4621. "require-dev": {
  4622. "composer/composer": "^1.0.2|^2.0",
  4623. "symfony/dotenv": "^4.4|^5.0",
  4624. "symfony/filesystem": "^4.4|^5.0",
  4625. "symfony/phpunit-bridge": "^4.4|^5.0",
  4626. "symfony/process": "^3.4|^4.4|^5.0"
  4627. },
  4628. "type": "composer-plugin",
  4629. "extra": {
  4630. "branch-alias": {
  4631. "dev-main": "1.12-dev"
  4632. },
  4633. "class": "Symfony\\Flex\\Flex"
  4634. },
  4635. "autoload": {
  4636. "psr-4": {
  4637. "Symfony\\Flex\\": "src"
  4638. }
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "MIT"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Fabien Potencier",
  4647. "email": "fabien.potencier@gmail.com"
  4648. }
  4649. ],
  4650. "description": "Composer plugin for Symfony",
  4651. "support": {
  4652. "issues": "https://github.com/symfony/flex/issues",
  4653. "source": "https://github.com/symfony/flex/tree/v1.12.2"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://symfony.com/sponsor",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/fabpot",
  4662. "type": "github"
  4663. },
  4664. {
  4665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4666. "type": "tidelift"
  4667. }
  4668. ],
  4669. "time": "2021-02-16T14:05:05+00:00"
  4670. },
  4671. {
  4672. "name": "symfony/form",
  4673. "version": "v5.2.6",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/symfony/form.git",
  4677. "reference": "40fbaed8d4238e37fdd1fecce8e0678a3eb0e48b"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/symfony/form/zipball/40fbaed8d4238e37fdd1fecce8e0678a3eb0e48b",
  4682. "reference": "40fbaed8d4238e37fdd1fecce8e0678a3eb0e48b",
  4683. "shasum": ""
  4684. },
  4685. "require": {
  4686. "php": ">=7.2.5",
  4687. "symfony/deprecation-contracts": "^2.1",
  4688. "symfony/event-dispatcher": "^4.4|^5.0",
  4689. "symfony/intl": "^4.4|^5.0",
  4690. "symfony/options-resolver": "^5.1",
  4691. "symfony/polyfill-ctype": "~1.8",
  4692. "symfony/polyfill-mbstring": "~1.0",
  4693. "symfony/polyfill-php80": "^1.15",
  4694. "symfony/property-access": "^5.0.8",
  4695. "symfony/service-contracts": "^1.1|^2"
  4696. },
  4697. "conflict": {
  4698. "phpunit/phpunit": "<5.4.3",
  4699. "symfony/console": "<4.4",
  4700. "symfony/dependency-injection": "<4.4",
  4701. "symfony/doctrine-bridge": "<4.4",
  4702. "symfony/error-handler": "<4.4.5",
  4703. "symfony/framework-bundle": "<4.4",
  4704. "symfony/http-kernel": "<4.4",
  4705. "symfony/intl": "<4.4",
  4706. "symfony/translation": "<4.4",
  4707. "symfony/translation-contracts": "<1.1.7",
  4708. "symfony/twig-bridge": "<4.4"
  4709. },
  4710. "require-dev": {
  4711. "doctrine/collections": "~1.0",
  4712. "symfony/config": "^4.4|^5.0",
  4713. "symfony/console": "^4.4|^5.0",
  4714. "symfony/dependency-injection": "^4.4|^5.0",
  4715. "symfony/expression-language": "^4.4|^5.0",
  4716. "symfony/http-foundation": "^4.4|^5.0",
  4717. "symfony/http-kernel": "^4.4|^5.0",
  4718. "symfony/security-csrf": "^4.4|^5.0",
  4719. "symfony/translation": "^4.4|^5.0",
  4720. "symfony/validator": "^4.4.17|^5.1.9",
  4721. "symfony/var-dumper": "^4.4|^5.0"
  4722. },
  4723. "suggest": {
  4724. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4725. "symfony/twig-bridge": "For templating with Twig.",
  4726. "symfony/validator": "For form validation."
  4727. },
  4728. "type": "library",
  4729. "autoload": {
  4730. "psr-4": {
  4731. "Symfony\\Component\\Form\\": ""
  4732. },
  4733. "exclude-from-classmap": [
  4734. "/Tests/"
  4735. ]
  4736. },
  4737. "notification-url": "https://packagist.org/downloads/",
  4738. "license": [
  4739. "MIT"
  4740. ],
  4741. "authors": [
  4742. {
  4743. "name": "Fabien Potencier",
  4744. "email": "fabien@symfony.com"
  4745. },
  4746. {
  4747. "name": "Symfony Community",
  4748. "homepage": "https://symfony.com/contributors"
  4749. }
  4750. ],
  4751. "description": "Allows to easily create, process and reuse HTML forms",
  4752. "homepage": "https://symfony.com",
  4753. "support": {
  4754. "source": "https://github.com/symfony/form/tree/v5.2.6"
  4755. },
  4756. "funding": [
  4757. {
  4758. "url": "https://symfony.com/sponsor",
  4759. "type": "custom"
  4760. },
  4761. {
  4762. "url": "https://github.com/fabpot",
  4763. "type": "github"
  4764. },
  4765. {
  4766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4767. "type": "tidelift"
  4768. }
  4769. ],
  4770. "time": "2021-03-28T09:59:03+00:00"
  4771. },
  4772. {
  4773. "name": "symfony/framework-bundle",
  4774. "version": "v5.2.6",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/symfony/framework-bundle.git",
  4778. "reference": "8889da18c6faa76c6149a90e6542be4afe723f2f"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8889da18c6faa76c6149a90e6542be4afe723f2f",
  4783. "reference": "8889da18c6faa76c6149a90e6542be4afe723f2f",
  4784. "shasum": ""
  4785. },
  4786. "require": {
  4787. "ext-xml": "*",
  4788. "php": ">=7.2.5",
  4789. "symfony/cache": "^5.2",
  4790. "symfony/config": "^5.0",
  4791. "symfony/dependency-injection": "^5.2",
  4792. "symfony/deprecation-contracts": "^2.1",
  4793. "symfony/error-handler": "^4.4.1|^5.0.1",
  4794. "symfony/event-dispatcher": "^5.1",
  4795. "symfony/filesystem": "^4.4|^5.0",
  4796. "symfony/finder": "^4.4|^5.0",
  4797. "symfony/http-foundation": "^5.2.1",
  4798. "symfony/http-kernel": "^5.2.1",
  4799. "symfony/polyfill-mbstring": "~1.0",
  4800. "symfony/polyfill-php80": "^1.15",
  4801. "symfony/routing": "^5.2"
  4802. },
  4803. "conflict": {
  4804. "doctrine/persistence": "<1.3",
  4805. "phpdocumentor/reflection-docblock": "<3.2.2",
  4806. "phpdocumentor/type-resolver": "<1.4.0",
  4807. "phpunit/phpunit": "<5.4.3",
  4808. "symfony/asset": "<5.1",
  4809. "symfony/browser-kit": "<4.4",
  4810. "symfony/console": "<5.2.5",
  4811. "symfony/dom-crawler": "<4.4",
  4812. "symfony/dotenv": "<5.1",
  4813. "symfony/form": "<5.2",
  4814. "symfony/http-client": "<4.4",
  4815. "symfony/lock": "<4.4",
  4816. "symfony/mailer": "<5.2",
  4817. "symfony/messenger": "<4.4",
  4818. "symfony/mime": "<4.4",
  4819. "symfony/property-access": "<5.2",
  4820. "symfony/property-info": "<4.4",
  4821. "symfony/serializer": "<5.2",
  4822. "symfony/stopwatch": "<4.4",
  4823. "symfony/translation": "<5.0",
  4824. "symfony/twig-bridge": "<4.4",
  4825. "symfony/twig-bundle": "<4.4",
  4826. "symfony/validator": "<5.2",
  4827. "symfony/web-profiler-bundle": "<4.4",
  4828. "symfony/workflow": "<5.2"
  4829. },
  4830. "require-dev": {
  4831. "doctrine/annotations": "^1.10.4",
  4832. "doctrine/cache": "~1.0",
  4833. "doctrine/persistence": "^1.3|^2.0",
  4834. "paragonie/sodium_compat": "^1.8",
  4835. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4836. "symfony/asset": "^5.1",
  4837. "symfony/browser-kit": "^4.4|^5.0",
  4838. "symfony/console": "^5.2",
  4839. "symfony/css-selector": "^4.4|^5.0",
  4840. "symfony/dom-crawler": "^4.4|^5.0",
  4841. "symfony/dotenv": "^5.1",
  4842. "symfony/expression-language": "^4.4|^5.0",
  4843. "symfony/form": "^5.2",
  4844. "symfony/http-client": "^4.4|^5.0",
  4845. "symfony/lock": "^4.4|^5.0",
  4846. "symfony/mailer": "^5.2",
  4847. "symfony/messenger": "^5.2",
  4848. "symfony/mime": "^4.4|^5.0",
  4849. "symfony/polyfill-intl-icu": "~1.0",
  4850. "symfony/process": "^4.4|^5.0",
  4851. "symfony/property-info": "^4.4|^5.0",
  4852. "symfony/security-bundle": "^5.1",
  4853. "symfony/security-core": "^4.4|^5.2",
  4854. "symfony/security-csrf": "^4.4|^5.0",
  4855. "symfony/security-http": "^4.4|^5.0",
  4856. "symfony/serializer": "^5.2",
  4857. "symfony/stopwatch": "^4.4|^5.0",
  4858. "symfony/string": "^5.0",
  4859. "symfony/translation": "^5.0",
  4860. "symfony/twig-bundle": "^4.4|^5.0",
  4861. "symfony/validator": "^5.2",
  4862. "symfony/web-link": "^4.4|^5.0",
  4863. "symfony/workflow": "^5.2",
  4864. "symfony/yaml": "^4.4|^5.0",
  4865. "twig/twig": "^2.10|^3.0"
  4866. },
  4867. "suggest": {
  4868. "ext-apcu": "For best performance of the system caches",
  4869. "symfony/console": "For using the console commands",
  4870. "symfony/form": "For using forms",
  4871. "symfony/property-info": "For using the property_info service",
  4872. "symfony/serializer": "For using the serializer service",
  4873. "symfony/validator": "For using validation",
  4874. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4875. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4876. },
  4877. "type": "symfony-bundle",
  4878. "autoload": {
  4879. "psr-4": {
  4880. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4881. },
  4882. "exclude-from-classmap": [
  4883. "/Tests/"
  4884. ]
  4885. },
  4886. "notification-url": "https://packagist.org/downloads/",
  4887. "license": [
  4888. "MIT"
  4889. ],
  4890. "authors": [
  4891. {
  4892. "name": "Fabien Potencier",
  4893. "email": "fabien@symfony.com"
  4894. },
  4895. {
  4896. "name": "Symfony Community",
  4897. "homepage": "https://symfony.com/contributors"
  4898. }
  4899. ],
  4900. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4901. "homepage": "https://symfony.com",
  4902. "support": {
  4903. "source": "https://github.com/symfony/framework-bundle/tree/v5.2.6"
  4904. },
  4905. "funding": [
  4906. {
  4907. "url": "https://symfony.com/sponsor",
  4908. "type": "custom"
  4909. },
  4910. {
  4911. "url": "https://github.com/fabpot",
  4912. "type": "github"
  4913. },
  4914. {
  4915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4916. "type": "tidelift"
  4917. }
  4918. ],
  4919. "time": "2021-03-22T14:43:01+00:00"
  4920. },
  4921. {
  4922. "name": "symfony/http-client",
  4923. "version": "v5.2.6",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://github.com/symfony/http-client.git",
  4927. "reference": "3c3075467da15bc2edf38d2ac20d34719e794bd8"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://api.github.com/repos/symfony/http-client/zipball/3c3075467da15bc2edf38d2ac20d34719e794bd8",
  4932. "reference": "3c3075467da15bc2edf38d2ac20d34719e794bd8",
  4933. "shasum": ""
  4934. },
  4935. "require": {
  4936. "php": ">=7.2.5",
  4937. "psr/log": "^1.0",
  4938. "symfony/http-client-contracts": "^2.2",
  4939. "symfony/polyfill-php73": "^1.11",
  4940. "symfony/polyfill-php80": "^1.15",
  4941. "symfony/service-contracts": "^1.0|^2"
  4942. },
  4943. "provide": {
  4944. "php-http/async-client-implementation": "*",
  4945. "php-http/client-implementation": "*",
  4946. "psr/http-client-implementation": "1.0",
  4947. "symfony/http-client-implementation": "2.2"
  4948. },
  4949. "require-dev": {
  4950. "amphp/amp": "^2.5",
  4951. "amphp/http-client": "^4.2.1",
  4952. "amphp/http-tunnel": "^1.0",
  4953. "amphp/socket": "^1.1",
  4954. "guzzlehttp/promises": "^1.4",
  4955. "nyholm/psr7": "^1.0",
  4956. "php-http/httplug": "^1.0|^2.0",
  4957. "psr/http-client": "^1.0",
  4958. "symfony/dependency-injection": "^4.4|^5.0",
  4959. "symfony/http-kernel": "^4.4.13|^5.1.5",
  4960. "symfony/process": "^4.4|^5.0",
  4961. "symfony/stopwatch": "^4.4|^5.0"
  4962. },
  4963. "type": "library",
  4964. "autoload": {
  4965. "psr-4": {
  4966. "Symfony\\Component\\HttpClient\\": ""
  4967. },
  4968. "exclude-from-classmap": [
  4969. "/Tests/"
  4970. ]
  4971. },
  4972. "notification-url": "https://packagist.org/downloads/",
  4973. "license": [
  4974. "MIT"
  4975. ],
  4976. "authors": [
  4977. {
  4978. "name": "Nicolas Grekas",
  4979. "email": "p@tchwork.com"
  4980. },
  4981. {
  4982. "name": "Symfony Community",
  4983. "homepage": "https://symfony.com/contributors"
  4984. }
  4985. ],
  4986. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4987. "homepage": "https://symfony.com",
  4988. "support": {
  4989. "source": "https://github.com/symfony/http-client/tree/v5.2.6"
  4990. },
  4991. "funding": [
  4992. {
  4993. "url": "https://symfony.com/sponsor",
  4994. "type": "custom"
  4995. },
  4996. {
  4997. "url": "https://github.com/fabpot",
  4998. "type": "github"
  4999. },
  5000. {
  5001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5002. "type": "tidelift"
  5003. }
  5004. ],
  5005. "time": "2021-03-28T09:42:18+00:00"
  5006. },
  5007. {
  5008. "name": "symfony/http-client-contracts",
  5009. "version": "v2.3.1",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/symfony/http-client-contracts.git",
  5013. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5018. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "php": ">=7.2.5"
  5023. },
  5024. "suggest": {
  5025. "symfony/http-client-implementation": ""
  5026. },
  5027. "type": "library",
  5028. "extra": {
  5029. "branch-version": "2.3",
  5030. "branch-alias": {
  5031. "dev-main": "2.3-dev"
  5032. },
  5033. "thanks": {
  5034. "name": "symfony/contracts",
  5035. "url": "https://github.com/symfony/contracts"
  5036. }
  5037. },
  5038. "autoload": {
  5039. "psr-4": {
  5040. "Symfony\\Contracts\\HttpClient\\": ""
  5041. }
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Nicolas Grekas",
  5050. "email": "p@tchwork.com"
  5051. },
  5052. {
  5053. "name": "Symfony Community",
  5054. "homepage": "https://symfony.com/contributors"
  5055. }
  5056. ],
  5057. "description": "Generic abstractions related to HTTP clients",
  5058. "homepage": "https://symfony.com",
  5059. "keywords": [
  5060. "abstractions",
  5061. "contracts",
  5062. "decoupling",
  5063. "interfaces",
  5064. "interoperability",
  5065. "standards"
  5066. ],
  5067. "support": {
  5068. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://symfony.com/sponsor",
  5073. "type": "custom"
  5074. },
  5075. {
  5076. "url": "https://github.com/fabpot",
  5077. "type": "github"
  5078. },
  5079. {
  5080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5081. "type": "tidelift"
  5082. }
  5083. ],
  5084. "time": "2020-10-14T17:08:19+00:00"
  5085. },
  5086. {
  5087. "name": "symfony/http-foundation",
  5088. "version": "v5.2.4",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/symfony/http-foundation.git",
  5092. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5097. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": ">=7.2.5",
  5102. "symfony/deprecation-contracts": "^2.1",
  5103. "symfony/polyfill-mbstring": "~1.1",
  5104. "symfony/polyfill-php80": "^1.15"
  5105. },
  5106. "require-dev": {
  5107. "predis/predis": "~1.0",
  5108. "symfony/cache": "^4.4|^5.0",
  5109. "symfony/expression-language": "^4.4|^5.0",
  5110. "symfony/mime": "^4.4|^5.0"
  5111. },
  5112. "suggest": {
  5113. "symfony/mime": "To use the file extension guesser"
  5114. },
  5115. "type": "library",
  5116. "autoload": {
  5117. "psr-4": {
  5118. "Symfony\\Component\\HttpFoundation\\": ""
  5119. },
  5120. "exclude-from-classmap": [
  5121. "/Tests/"
  5122. ]
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Fabien Potencier",
  5131. "email": "fabien@symfony.com"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Defines an object-oriented layer for the HTTP specification",
  5139. "homepage": "https://symfony.com",
  5140. "support": {
  5141. "source": "https://github.com/symfony/http-foundation/tree/v5.2.4"
  5142. },
  5143. "funding": [
  5144. {
  5145. "url": "https://symfony.com/sponsor",
  5146. "type": "custom"
  5147. },
  5148. {
  5149. "url": "https://github.com/fabpot",
  5150. "type": "github"
  5151. },
  5152. {
  5153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5154. "type": "tidelift"
  5155. }
  5156. ],
  5157. "time": "2021-02-25T17:16:57+00:00"
  5158. },
  5159. {
  5160. "name": "symfony/http-kernel",
  5161. "version": "v5.2.6",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/symfony/http-kernel.git",
  5165. "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
  5170. "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": ">=7.2.5",
  5175. "psr/log": "~1.0",
  5176. "symfony/deprecation-contracts": "^2.1",
  5177. "symfony/error-handler": "^4.4|^5.0",
  5178. "symfony/event-dispatcher": "^5.0",
  5179. "symfony/http-client-contracts": "^1.1|^2",
  5180. "symfony/http-foundation": "^4.4|^5.0",
  5181. "symfony/polyfill-ctype": "^1.8",
  5182. "symfony/polyfill-php73": "^1.9",
  5183. "symfony/polyfill-php80": "^1.15"
  5184. },
  5185. "conflict": {
  5186. "symfony/browser-kit": "<4.4",
  5187. "symfony/cache": "<5.0",
  5188. "symfony/config": "<5.0",
  5189. "symfony/console": "<4.4",
  5190. "symfony/dependency-injection": "<5.1.8",
  5191. "symfony/doctrine-bridge": "<5.0",
  5192. "symfony/form": "<5.0",
  5193. "symfony/http-client": "<5.0",
  5194. "symfony/mailer": "<5.0",
  5195. "symfony/messenger": "<5.0",
  5196. "symfony/translation": "<5.0",
  5197. "symfony/twig-bridge": "<5.0",
  5198. "symfony/validator": "<5.0",
  5199. "twig/twig": "<2.13"
  5200. },
  5201. "provide": {
  5202. "psr/log-implementation": "1.0"
  5203. },
  5204. "require-dev": {
  5205. "psr/cache": "^1.0|^2.0|^3.0",
  5206. "symfony/browser-kit": "^4.4|^5.0",
  5207. "symfony/config": "^5.0",
  5208. "symfony/console": "^4.4|^5.0",
  5209. "symfony/css-selector": "^4.4|^5.0",
  5210. "symfony/dependency-injection": "^5.1.8",
  5211. "symfony/dom-crawler": "^4.4|^5.0",
  5212. "symfony/expression-language": "^4.4|^5.0",
  5213. "symfony/finder": "^4.4|^5.0",
  5214. "symfony/process": "^4.4|^5.0",
  5215. "symfony/routing": "^4.4|^5.0",
  5216. "symfony/stopwatch": "^4.4|^5.0",
  5217. "symfony/translation": "^4.4|^5.0",
  5218. "symfony/translation-contracts": "^1.1|^2",
  5219. "twig/twig": "^2.13|^3.0.4"
  5220. },
  5221. "suggest": {
  5222. "symfony/browser-kit": "",
  5223. "symfony/config": "",
  5224. "symfony/console": "",
  5225. "symfony/dependency-injection": ""
  5226. },
  5227. "type": "library",
  5228. "autoload": {
  5229. "psr-4": {
  5230. "Symfony\\Component\\HttpKernel\\": ""
  5231. },
  5232. "exclude-from-classmap": [
  5233. "/Tests/"
  5234. ]
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "MIT"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "Fabien Potencier",
  5243. "email": "fabien@symfony.com"
  5244. },
  5245. {
  5246. "name": "Symfony Community",
  5247. "homepage": "https://symfony.com/contributors"
  5248. }
  5249. ],
  5250. "description": "Provides a structured process for converting a Request into a Response",
  5251. "homepage": "https://symfony.com",
  5252. "support": {
  5253. "source": "https://github.com/symfony/http-kernel/tree/v5.2.6"
  5254. },
  5255. "funding": [
  5256. {
  5257. "url": "https://symfony.com/sponsor",
  5258. "type": "custom"
  5259. },
  5260. {
  5261. "url": "https://github.com/fabpot",
  5262. "type": "github"
  5263. },
  5264. {
  5265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5266. "type": "tidelift"
  5267. }
  5268. ],
  5269. "time": "2021-03-29T05:16:58+00:00"
  5270. },
  5271. {
  5272. "name": "symfony/intl",
  5273. "version": "v5.2.4",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://github.com/symfony/intl.git",
  5277. "reference": "11b4217e394c80a2e313d3a4a37262fbe65a7add"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://api.github.com/repos/symfony/intl/zipball/11b4217e394c80a2e313d3a4a37262fbe65a7add",
  5282. "reference": "11b4217e394c80a2e313d3a4a37262fbe65a7add",
  5283. "shasum": ""
  5284. },
  5285. "require": {
  5286. "php": ">=7.2.5",
  5287. "symfony/polyfill-intl-icu": "~1.0",
  5288. "symfony/polyfill-php80": "^1.15"
  5289. },
  5290. "require-dev": {
  5291. "symfony/filesystem": "^4.4|^5.0"
  5292. },
  5293. "suggest": {
  5294. "ext-intl": "to use the component with locales other than \"en\""
  5295. },
  5296. "type": "library",
  5297. "autoload": {
  5298. "psr-4": {
  5299. "Symfony\\Component\\Intl\\": ""
  5300. },
  5301. "classmap": [
  5302. "Resources/stubs"
  5303. ],
  5304. "exclude-from-classmap": [
  5305. "/Tests/"
  5306. ]
  5307. },
  5308. "notification-url": "https://packagist.org/downloads/",
  5309. "license": [
  5310. "MIT"
  5311. ],
  5312. "authors": [
  5313. {
  5314. "name": "Bernhard Schussek",
  5315. "email": "bschussek@gmail.com"
  5316. },
  5317. {
  5318. "name": "Eriksen Costa",
  5319. "email": "eriksen.costa@infranology.com.br"
  5320. },
  5321. {
  5322. "name": "Igor Wiedler",
  5323. "email": "igor@wiedler.ch"
  5324. },
  5325. {
  5326. "name": "Symfony Community",
  5327. "homepage": "https://symfony.com/contributors"
  5328. }
  5329. ],
  5330. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  5331. "homepage": "https://symfony.com",
  5332. "keywords": [
  5333. "i18n",
  5334. "icu",
  5335. "internationalization",
  5336. "intl",
  5337. "l10n",
  5338. "localization"
  5339. ],
  5340. "support": {
  5341. "source": "https://github.com/symfony/intl/tree/v5.2.4"
  5342. },
  5343. "funding": [
  5344. {
  5345. "url": "https://symfony.com/sponsor",
  5346. "type": "custom"
  5347. },
  5348. {
  5349. "url": "https://github.com/fabpot",
  5350. "type": "github"
  5351. },
  5352. {
  5353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5354. "type": "tidelift"
  5355. }
  5356. ],
  5357. "time": "2021-02-18T22:42:36+00:00"
  5358. },
  5359. {
  5360. "name": "symfony/mailer",
  5361. "version": "v5.2.6",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/symfony/mailer.git",
  5365. "reference": "04475b8368b6c7a559581ee8a0650c919ec79274"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/symfony/mailer/zipball/04475b8368b6c7a559581ee8a0650c919ec79274",
  5370. "reference": "04475b8368b6c7a559581ee8a0650c919ec79274",
  5371. "shasum": ""
  5372. },
  5373. "require": {
  5374. "egulias/email-validator": "^2.1.10|^3",
  5375. "php": ">=7.2.5",
  5376. "psr/log": "~1.0",
  5377. "symfony/event-dispatcher": "^4.4|^5.0",
  5378. "symfony/mime": "^5.2.6",
  5379. "symfony/polyfill-php80": "^1.15",
  5380. "symfony/service-contracts": "^1.1|^2"
  5381. },
  5382. "conflict": {
  5383. "symfony/http-kernel": "<4.4"
  5384. },
  5385. "require-dev": {
  5386. "symfony/amazon-mailer": "^4.4|^5.0",
  5387. "symfony/google-mailer": "^4.4|^5.0",
  5388. "symfony/http-client-contracts": "^1.1|^2",
  5389. "symfony/mailchimp-mailer": "^4.4|^5.0",
  5390. "symfony/mailgun-mailer": "^4.4|^5.0",
  5391. "symfony/mailjet-mailer": "^4.4|^5.0",
  5392. "symfony/messenger": "^4.4|^5.0",
  5393. "symfony/postmark-mailer": "^4.4|^5.0",
  5394. "symfony/sendgrid-mailer": "^4.4|^5.0"
  5395. },
  5396. "type": "library",
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Symfony\\Component\\Mailer\\": ""
  5400. },
  5401. "exclude-from-classmap": [
  5402. "/Tests/"
  5403. ]
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "license": [
  5407. "MIT"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "Fabien Potencier",
  5412. "email": "fabien@symfony.com"
  5413. },
  5414. {
  5415. "name": "Symfony Community",
  5416. "homepage": "https://symfony.com/contributors"
  5417. }
  5418. ],
  5419. "description": "Helps sending emails",
  5420. "homepage": "https://symfony.com",
  5421. "support": {
  5422. "source": "https://github.com/symfony/mailer/tree/v5.2.6"
  5423. },
  5424. "funding": [
  5425. {
  5426. "url": "https://symfony.com/sponsor",
  5427. "type": "custom"
  5428. },
  5429. {
  5430. "url": "https://github.com/fabpot",
  5431. "type": "github"
  5432. },
  5433. {
  5434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5435. "type": "tidelift"
  5436. }
  5437. ],
  5438. "time": "2021-03-12T13:18:39+00:00"
  5439. },
  5440. {
  5441. "name": "symfony/messenger",
  5442. "version": "v5.2.5",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://github.com/symfony/messenger.git",
  5446. "reference": "bc012fde3b96cfa3adf22f4d8a2e17860dc24a65"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://api.github.com/repos/symfony/messenger/zipball/bc012fde3b96cfa3adf22f4d8a2e17860dc24a65",
  5451. "reference": "bc012fde3b96cfa3adf22f4d8a2e17860dc24a65",
  5452. "shasum": ""
  5453. },
  5454. "require": {
  5455. "php": ">=7.2.5",
  5456. "psr/log": "~1.0",
  5457. "symfony/amqp-messenger": "^5.1",
  5458. "symfony/deprecation-contracts": "^2.1",
  5459. "symfony/doctrine-messenger": "^5.1",
  5460. "symfony/polyfill-php80": "^1.15",
  5461. "symfony/redis-messenger": "^5.1"
  5462. },
  5463. "conflict": {
  5464. "symfony/event-dispatcher": "<4.4",
  5465. "symfony/framework-bundle": "<4.4",
  5466. "symfony/http-kernel": "<4.4"
  5467. },
  5468. "require-dev": {
  5469. "psr/cache": "^1.0|^2.0|^3.0",
  5470. "symfony/console": "^4.4|^5.0",
  5471. "symfony/dependency-injection": "^4.4|^5.0",
  5472. "symfony/event-dispatcher": "^4.4|^5.0",
  5473. "symfony/http-kernel": "^4.4|^5.0",
  5474. "symfony/process": "^4.4|^5.0",
  5475. "symfony/property-access": "^4.4|^5.0",
  5476. "symfony/serializer": "^4.4|^5.0",
  5477. "symfony/service-contracts": "^1.1|^2",
  5478. "symfony/stopwatch": "^4.4|^5.0",
  5479. "symfony/validator": "^4.4|^5.0"
  5480. },
  5481. "suggest": {
  5482. "enqueue/messenger-adapter": "For using the php-enqueue library as a transport."
  5483. },
  5484. "type": "library",
  5485. "autoload": {
  5486. "psr-4": {
  5487. "Symfony\\Component\\Messenger\\": ""
  5488. },
  5489. "exclude-from-classmap": [
  5490. "/Tests/"
  5491. ]
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "MIT"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Samuel Roze",
  5500. "email": "samuel.roze@gmail.com"
  5501. },
  5502. {
  5503. "name": "Symfony Community",
  5504. "homepage": "https://symfony.com/contributors"
  5505. }
  5506. ],
  5507. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5508. "homepage": "https://symfony.com",
  5509. "support": {
  5510. "source": "https://github.com/symfony/messenger/tree/v5.2.5"
  5511. },
  5512. "funding": [
  5513. {
  5514. "url": "https://symfony.com/sponsor",
  5515. "type": "custom"
  5516. },
  5517. {
  5518. "url": "https://github.com/fabpot",
  5519. "type": "github"
  5520. },
  5521. {
  5522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5523. "type": "tidelift"
  5524. }
  5525. ],
  5526. "time": "2021-03-06T07:59:01+00:00"
  5527. },
  5528. {
  5529. "name": "symfony/mime",
  5530. "version": "v5.2.6",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/symfony/mime.git",
  5534. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b",
  5539. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "php": ">=7.2.5",
  5544. "symfony/deprecation-contracts": "^2.1",
  5545. "symfony/polyfill-intl-idn": "^1.10",
  5546. "symfony/polyfill-mbstring": "^1.0",
  5547. "symfony/polyfill-php80": "^1.15"
  5548. },
  5549. "conflict": {
  5550. "egulias/email-validator": "~3.0.0",
  5551. "phpdocumentor/reflection-docblock": "<3.2.2",
  5552. "phpdocumentor/type-resolver": "<1.4.0",
  5553. "symfony/mailer": "<4.4"
  5554. },
  5555. "require-dev": {
  5556. "egulias/email-validator": "^2.1.10|^3.1",
  5557. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5558. "symfony/dependency-injection": "^4.4|^5.0",
  5559. "symfony/property-access": "^4.4|^5.1",
  5560. "symfony/property-info": "^4.4|^5.1",
  5561. "symfony/serializer": "^5.2"
  5562. },
  5563. "type": "library",
  5564. "autoload": {
  5565. "psr-4": {
  5566. "Symfony\\Component\\Mime\\": ""
  5567. },
  5568. "exclude-from-classmap": [
  5569. "/Tests/"
  5570. ]
  5571. },
  5572. "notification-url": "https://packagist.org/downloads/",
  5573. "license": [
  5574. "MIT"
  5575. ],
  5576. "authors": [
  5577. {
  5578. "name": "Fabien Potencier",
  5579. "email": "fabien@symfony.com"
  5580. },
  5581. {
  5582. "name": "Symfony Community",
  5583. "homepage": "https://symfony.com/contributors"
  5584. }
  5585. ],
  5586. "description": "Allows manipulating MIME messages",
  5587. "homepage": "https://symfony.com",
  5588. "keywords": [
  5589. "mime",
  5590. "mime-type"
  5591. ],
  5592. "support": {
  5593. "source": "https://github.com/symfony/mime/tree/v5.2.6"
  5594. },
  5595. "funding": [
  5596. {
  5597. "url": "https://symfony.com/sponsor",
  5598. "type": "custom"
  5599. },
  5600. {
  5601. "url": "https://github.com/fabpot",
  5602. "type": "github"
  5603. },
  5604. {
  5605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5606. "type": "tidelift"
  5607. }
  5608. ],
  5609. "time": "2021-03-12T13:18:39+00:00"
  5610. },
  5611. {
  5612. "name": "symfony/monolog-bridge",
  5613. "version": "v5.2.5",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/symfony/monolog-bridge.git",
  5617. "reference": "8a330ab86c4bdf3983b26abf64bf85574edf0d52"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/8a330ab86c4bdf3983b26abf64bf85574edf0d52",
  5622. "reference": "8a330ab86c4bdf3983b26abf64bf85574edf0d52",
  5623. "shasum": ""
  5624. },
  5625. "require": {
  5626. "monolog/monolog": "^1.25.1|^2",
  5627. "php": ">=7.2.5",
  5628. "symfony/deprecation-contracts": "^2.1",
  5629. "symfony/http-kernel": "^4.4|^5.0",
  5630. "symfony/service-contracts": "^1.1|^2"
  5631. },
  5632. "conflict": {
  5633. "symfony/console": "<4.4",
  5634. "symfony/http-foundation": "<4.4"
  5635. },
  5636. "require-dev": {
  5637. "symfony/console": "^4.4|^5.0",
  5638. "symfony/http-client": "^4.4|^5.0",
  5639. "symfony/mailer": "^4.4|^5.0",
  5640. "symfony/mime": "^4.4|^5.0",
  5641. "symfony/security-core": "^4.4|^5.0",
  5642. "symfony/var-dumper": "^4.4|^5.0"
  5643. },
  5644. "suggest": {
  5645. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5646. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5647. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5648. },
  5649. "type": "symfony-bridge",
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Symfony\\Bridge\\Monolog\\": ""
  5653. },
  5654. "exclude-from-classmap": [
  5655. "/Tests/"
  5656. ]
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Fabien Potencier",
  5665. "email": "fabien@symfony.com"
  5666. },
  5667. {
  5668. "name": "Symfony Community",
  5669. "homepage": "https://symfony.com/contributors"
  5670. }
  5671. ],
  5672. "description": "Provides integration for Monolog with various Symfony components",
  5673. "homepage": "https://symfony.com",
  5674. "support": {
  5675. "source": "https://github.com/symfony/monolog-bridge/tree/v5.2.5"
  5676. },
  5677. "funding": [
  5678. {
  5679. "url": "https://symfony.com/sponsor",
  5680. "type": "custom"
  5681. },
  5682. {
  5683. "url": "https://github.com/fabpot",
  5684. "type": "github"
  5685. },
  5686. {
  5687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5688. "type": "tidelift"
  5689. }
  5690. ],
  5691. "time": "2021-03-06T07:59:01+00:00"
  5692. },
  5693. {
  5694. "name": "symfony/monolog-bundle",
  5695. "version": "v3.7.0",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/symfony/monolog-bundle.git",
  5699. "reference": "4054b2e940a25195ae15f0a49ab0c51718922eb4"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/4054b2e940a25195ae15f0a49ab0c51718922eb4",
  5704. "reference": "4054b2e940a25195ae15f0a49ab0c51718922eb4",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "monolog/monolog": "~1.22 || ~2.0",
  5709. "php": ">=7.1.3",
  5710. "symfony/config": "~4.4 || ^5.0",
  5711. "symfony/dependency-injection": "^4.4 || ^5.0",
  5712. "symfony/http-kernel": "~4.4 || ^5.0",
  5713. "symfony/monolog-bridge": "~4.4 || ^5.0"
  5714. },
  5715. "require-dev": {
  5716. "symfony/console": "~4.4 || ^5.0",
  5717. "symfony/phpunit-bridge": "^5.1",
  5718. "symfony/yaml": "~4.4 || ^5.0"
  5719. },
  5720. "type": "symfony-bundle",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "3.x-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "psr-4": {
  5728. "Symfony\\Bundle\\MonologBundle\\": ""
  5729. },
  5730. "exclude-from-classmap": [
  5731. "/Tests/"
  5732. ]
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Fabien Potencier",
  5741. "email": "fabien@symfony.com"
  5742. },
  5743. {
  5744. "name": "Symfony Community",
  5745. "homepage": "https://symfony.com/contributors"
  5746. }
  5747. ],
  5748. "description": "Symfony MonologBundle",
  5749. "homepage": "https://symfony.com",
  5750. "keywords": [
  5751. "log",
  5752. "logging"
  5753. ],
  5754. "support": {
  5755. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5756. "source": "https://github.com/symfony/monolog-bundle/tree/v3.7.0"
  5757. },
  5758. "funding": [
  5759. {
  5760. "url": "https://symfony.com/sponsor",
  5761. "type": "custom"
  5762. },
  5763. {
  5764. "url": "https://github.com/fabpot",
  5765. "type": "github"
  5766. },
  5767. {
  5768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5769. "type": "tidelift"
  5770. }
  5771. ],
  5772. "time": "2021-03-31T07:20:47+00:00"
  5773. },
  5774. {
  5775. "name": "symfony/notifier",
  5776. "version": "v5.2.4",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://github.com/symfony/notifier.git",
  5780. "reference": "bdb8702e91f19fc64d0c678f41fed144d0263657"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://api.github.com/repos/symfony/notifier/zipball/bdb8702e91f19fc64d0c678f41fed144d0263657",
  5785. "reference": "bdb8702e91f19fc64d0c678f41fed144d0263657",
  5786. "shasum": ""
  5787. },
  5788. "require": {
  5789. "php": ">=7.2.5",
  5790. "psr/log": "~1.0",
  5791. "symfony/polyfill-php80": "^1.15"
  5792. },
  5793. "conflict": {
  5794. "symfony/firebase-notifier": "<5.2",
  5795. "symfony/free-mobile-notifier": "<5.2",
  5796. "symfony/http-kernel": "<4.4",
  5797. "symfony/mattermost-notifier": "<5.2",
  5798. "symfony/nexmo-notifier": "<5.2",
  5799. "symfony/ovh-cloud-notifier": "<5.2",
  5800. "symfony/rocket-chat-notifier": "<5.2",
  5801. "symfony/sinch-notifier": "<5.2",
  5802. "symfony/slack-notifier": "<5.2",
  5803. "symfony/telegram-notifier": "<5.2",
  5804. "symfony/twilio-notifier": "<5.2"
  5805. },
  5806. "require-dev": {
  5807. "symfony/event-dispatcher-contracts": "^2",
  5808. "symfony/http-client-contracts": "^2"
  5809. },
  5810. "type": "library",
  5811. "autoload": {
  5812. "psr-4": {
  5813. "Symfony\\Component\\Notifier\\": ""
  5814. },
  5815. "exclude-from-classmap": [
  5816. "/Tests/"
  5817. ]
  5818. },
  5819. "notification-url": "https://packagist.org/downloads/",
  5820. "license": [
  5821. "MIT"
  5822. ],
  5823. "authors": [
  5824. {
  5825. "name": "Fabien Potencier",
  5826. "email": "fabien@symfony.com"
  5827. },
  5828. {
  5829. "name": "Symfony Community",
  5830. "homepage": "https://symfony.com/contributors"
  5831. }
  5832. ],
  5833. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5834. "homepage": "https://symfony.com",
  5835. "keywords": [
  5836. "notification",
  5837. "notifier"
  5838. ],
  5839. "support": {
  5840. "source": "https://github.com/symfony/notifier/tree/v5.2.4"
  5841. },
  5842. "funding": [
  5843. {
  5844. "url": "https://symfony.com/sponsor",
  5845. "type": "custom"
  5846. },
  5847. {
  5848. "url": "https://github.com/fabpot",
  5849. "type": "github"
  5850. },
  5851. {
  5852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5853. "type": "tidelift"
  5854. }
  5855. ],
  5856. "time": "2021-01-14T15:42:36+00:00"
  5857. },
  5858. {
  5859. "name": "symfony/options-resolver",
  5860. "version": "v5.2.4",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/symfony/options-resolver.git",
  5864. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5869. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "php": ">=7.2.5",
  5874. "symfony/deprecation-contracts": "^2.1",
  5875. "symfony/polyfill-php73": "~1.0",
  5876. "symfony/polyfill-php80": "^1.15"
  5877. },
  5878. "type": "library",
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Symfony\\Component\\OptionsResolver\\": ""
  5882. },
  5883. "exclude-from-classmap": [
  5884. "/Tests/"
  5885. ]
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Fabien Potencier",
  5894. "email": "fabien@symfony.com"
  5895. },
  5896. {
  5897. "name": "Symfony Community",
  5898. "homepage": "https://symfony.com/contributors"
  5899. }
  5900. ],
  5901. "description": "Provides an improved replacement for the array_replace PHP function",
  5902. "homepage": "https://symfony.com",
  5903. "keywords": [
  5904. "config",
  5905. "configuration",
  5906. "options"
  5907. ],
  5908. "support": {
  5909. "source": "https://github.com/symfony/options-resolver/tree/v5.2.4"
  5910. },
  5911. "funding": [
  5912. {
  5913. "url": "https://symfony.com/sponsor",
  5914. "type": "custom"
  5915. },
  5916. {
  5917. "url": "https://github.com/fabpot",
  5918. "type": "github"
  5919. },
  5920. {
  5921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5922. "type": "tidelift"
  5923. }
  5924. ],
  5925. "time": "2021-01-27T12:56:27+00:00"
  5926. },
  5927. {
  5928. "name": "symfony/orm-pack",
  5929. "version": "v2.1.0",
  5930. "source": {
  5931. "type": "git",
  5932. "url": "https://github.com/symfony/orm-pack.git",
  5933. "reference": "357f6362067b1ebb94af321b79f8939fc9118751"
  5934. },
  5935. "dist": {
  5936. "type": "zip",
  5937. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/357f6362067b1ebb94af321b79f8939fc9118751",
  5938. "reference": "357f6362067b1ebb94af321b79f8939fc9118751",
  5939. "shasum": ""
  5940. },
  5941. "require": {
  5942. "composer/package-versions-deprecated": "*",
  5943. "doctrine/doctrine-bundle": "*",
  5944. "doctrine/doctrine-migrations-bundle": "*",
  5945. "doctrine/orm": "*",
  5946. "symfony/proxy-manager-bridge": "*"
  5947. },
  5948. "type": "symfony-pack",
  5949. "notification-url": "https://packagist.org/downloads/",
  5950. "license": [
  5951. "MIT"
  5952. ],
  5953. "description": "A pack for the Doctrine ORM",
  5954. "support": {
  5955. "issues": "https://github.com/symfony/orm-pack/issues",
  5956. "source": "https://github.com/symfony/orm-pack/tree/v2.1.0"
  5957. },
  5958. "funding": [
  5959. {
  5960. "url": "https://symfony.com/sponsor",
  5961. "type": "custom"
  5962. },
  5963. {
  5964. "url": "https://github.com/fabpot",
  5965. "type": "github"
  5966. },
  5967. {
  5968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5969. "type": "tidelift"
  5970. }
  5971. ],
  5972. "time": "2020-12-22T16:33:52+00:00"
  5973. },
  5974. {
  5975. "name": "symfony/polyfill-intl-grapheme",
  5976. "version": "v1.22.1",
  5977. "source": {
  5978. "type": "git",
  5979. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5980. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  5981. },
  5982. "dist": {
  5983. "type": "zip",
  5984. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5985. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5986. "shasum": ""
  5987. },
  5988. "require": {
  5989. "php": ">=7.1"
  5990. },
  5991. "suggest": {
  5992. "ext-intl": "For best performance"
  5993. },
  5994. "type": "library",
  5995. "extra": {
  5996. "branch-alias": {
  5997. "dev-main": "1.22-dev"
  5998. },
  5999. "thanks": {
  6000. "name": "symfony/polyfill",
  6001. "url": "https://github.com/symfony/polyfill"
  6002. }
  6003. },
  6004. "autoload": {
  6005. "psr-4": {
  6006. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6007. },
  6008. "files": [
  6009. "bootstrap.php"
  6010. ]
  6011. },
  6012. "notification-url": "https://packagist.org/downloads/",
  6013. "license": [
  6014. "MIT"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "Nicolas Grekas",
  6019. "email": "p@tchwork.com"
  6020. },
  6021. {
  6022. "name": "Symfony Community",
  6023. "homepage": "https://symfony.com/contributors"
  6024. }
  6025. ],
  6026. "description": "Symfony polyfill for intl's grapheme_* functions",
  6027. "homepage": "https://symfony.com",
  6028. "keywords": [
  6029. "compatibility",
  6030. "grapheme",
  6031. "intl",
  6032. "polyfill",
  6033. "portable",
  6034. "shim"
  6035. ],
  6036. "support": {
  6037. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  6038. },
  6039. "funding": [
  6040. {
  6041. "url": "https://symfony.com/sponsor",
  6042. "type": "custom"
  6043. },
  6044. {
  6045. "url": "https://github.com/fabpot",
  6046. "type": "github"
  6047. },
  6048. {
  6049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6050. "type": "tidelift"
  6051. }
  6052. ],
  6053. "time": "2021-01-22T09:19:47+00:00"
  6054. },
  6055. {
  6056. "name": "symfony/polyfill-intl-icu",
  6057. "version": "v1.22.1",
  6058. "source": {
  6059. "type": "git",
  6060. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6061. "reference": "af1842919c7e7364aaaa2798b29839e3ba168588"
  6062. },
  6063. "dist": {
  6064. "type": "zip",
  6065. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/af1842919c7e7364aaaa2798b29839e3ba168588",
  6066. "reference": "af1842919c7e7364aaaa2798b29839e3ba168588",
  6067. "shasum": ""
  6068. },
  6069. "require": {
  6070. "php": ">=7.1"
  6071. },
  6072. "suggest": {
  6073. "ext-intl": "For best performance and support of other locales than \"en\""
  6074. },
  6075. "type": "library",
  6076. "extra": {
  6077. "branch-alias": {
  6078. "dev-main": "1.22-dev"
  6079. },
  6080. "thanks": {
  6081. "name": "symfony/polyfill",
  6082. "url": "https://github.com/symfony/polyfill"
  6083. }
  6084. },
  6085. "autoload": {
  6086. "files": [
  6087. "bootstrap.php"
  6088. ],
  6089. "psr-4": {
  6090. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6091. },
  6092. "classmap": [
  6093. "Resources/stubs"
  6094. ],
  6095. "exclude-from-classmap": [
  6096. "/Tests/"
  6097. ]
  6098. },
  6099. "notification-url": "https://packagist.org/downloads/",
  6100. "license": [
  6101. "MIT"
  6102. ],
  6103. "authors": [
  6104. {
  6105. "name": "Nicolas Grekas",
  6106. "email": "p@tchwork.com"
  6107. },
  6108. {
  6109. "name": "Symfony Community",
  6110. "homepage": "https://symfony.com/contributors"
  6111. }
  6112. ],
  6113. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6114. "homepage": "https://symfony.com",
  6115. "keywords": [
  6116. "compatibility",
  6117. "icu",
  6118. "intl",
  6119. "polyfill",
  6120. "portable",
  6121. "shim"
  6122. ],
  6123. "support": {
  6124. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.22.1"
  6125. },
  6126. "funding": [
  6127. {
  6128. "url": "https://symfony.com/sponsor",
  6129. "type": "custom"
  6130. },
  6131. {
  6132. "url": "https://github.com/fabpot",
  6133. "type": "github"
  6134. },
  6135. {
  6136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6137. "type": "tidelift"
  6138. }
  6139. ],
  6140. "time": "2021-01-22T09:19:47+00:00"
  6141. },
  6142. {
  6143. "name": "symfony/polyfill-intl-idn",
  6144. "version": "v1.22.1",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6148. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6153. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "php": ">=7.1",
  6158. "symfony/polyfill-intl-normalizer": "^1.10",
  6159. "symfony/polyfill-php72": "^1.10"
  6160. },
  6161. "suggest": {
  6162. "ext-intl": "For best performance"
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "branch-alias": {
  6167. "dev-main": "1.22-dev"
  6168. },
  6169. "thanks": {
  6170. "name": "symfony/polyfill",
  6171. "url": "https://github.com/symfony/polyfill"
  6172. }
  6173. },
  6174. "autoload": {
  6175. "psr-4": {
  6176. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6177. },
  6178. "files": [
  6179. "bootstrap.php"
  6180. ]
  6181. },
  6182. "notification-url": "https://packagist.org/downloads/",
  6183. "license": [
  6184. "MIT"
  6185. ],
  6186. "authors": [
  6187. {
  6188. "name": "Laurent Bassin",
  6189. "email": "laurent@bassin.info"
  6190. },
  6191. {
  6192. "name": "Trevor Rowbotham",
  6193. "email": "trevor.rowbotham@pm.me"
  6194. },
  6195. {
  6196. "name": "Symfony Community",
  6197. "homepage": "https://symfony.com/contributors"
  6198. }
  6199. ],
  6200. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6201. "homepage": "https://symfony.com",
  6202. "keywords": [
  6203. "compatibility",
  6204. "idn",
  6205. "intl",
  6206. "polyfill",
  6207. "portable",
  6208. "shim"
  6209. ],
  6210. "support": {
  6211. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  6212. },
  6213. "funding": [
  6214. {
  6215. "url": "https://symfony.com/sponsor",
  6216. "type": "custom"
  6217. },
  6218. {
  6219. "url": "https://github.com/fabpot",
  6220. "type": "github"
  6221. },
  6222. {
  6223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6224. "type": "tidelift"
  6225. }
  6226. ],
  6227. "time": "2021-01-22T09:19:47+00:00"
  6228. },
  6229. {
  6230. "name": "symfony/polyfill-intl-normalizer",
  6231. "version": "v1.22.1",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6235. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6240. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6241. "shasum": ""
  6242. },
  6243. "require": {
  6244. "php": ">=7.1"
  6245. },
  6246. "suggest": {
  6247. "ext-intl": "For best performance"
  6248. },
  6249. "type": "library",
  6250. "extra": {
  6251. "branch-alias": {
  6252. "dev-main": "1.22-dev"
  6253. },
  6254. "thanks": {
  6255. "name": "symfony/polyfill",
  6256. "url": "https://github.com/symfony/polyfill"
  6257. }
  6258. },
  6259. "autoload": {
  6260. "psr-4": {
  6261. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6262. },
  6263. "files": [
  6264. "bootstrap.php"
  6265. ],
  6266. "classmap": [
  6267. "Resources/stubs"
  6268. ]
  6269. },
  6270. "notification-url": "https://packagist.org/downloads/",
  6271. "license": [
  6272. "MIT"
  6273. ],
  6274. "authors": [
  6275. {
  6276. "name": "Nicolas Grekas",
  6277. "email": "p@tchwork.com"
  6278. },
  6279. {
  6280. "name": "Symfony Community",
  6281. "homepage": "https://symfony.com/contributors"
  6282. }
  6283. ],
  6284. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6285. "homepage": "https://symfony.com",
  6286. "keywords": [
  6287. "compatibility",
  6288. "intl",
  6289. "normalizer",
  6290. "polyfill",
  6291. "portable",
  6292. "shim"
  6293. ],
  6294. "support": {
  6295. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  6296. },
  6297. "funding": [
  6298. {
  6299. "url": "https://symfony.com/sponsor",
  6300. "type": "custom"
  6301. },
  6302. {
  6303. "url": "https://github.com/fabpot",
  6304. "type": "github"
  6305. },
  6306. {
  6307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6308. "type": "tidelift"
  6309. }
  6310. ],
  6311. "time": "2021-01-22T09:19:47+00:00"
  6312. },
  6313. {
  6314. "name": "symfony/polyfill-mbstring",
  6315. "version": "v1.22.1",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6319. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6324. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6325. "shasum": ""
  6326. },
  6327. "require": {
  6328. "php": ">=7.1"
  6329. },
  6330. "suggest": {
  6331. "ext-mbstring": "For best performance"
  6332. },
  6333. "type": "library",
  6334. "extra": {
  6335. "branch-alias": {
  6336. "dev-main": "1.22-dev"
  6337. },
  6338. "thanks": {
  6339. "name": "symfony/polyfill",
  6340. "url": "https://github.com/symfony/polyfill"
  6341. }
  6342. },
  6343. "autoload": {
  6344. "psr-4": {
  6345. "Symfony\\Polyfill\\Mbstring\\": ""
  6346. },
  6347. "files": [
  6348. "bootstrap.php"
  6349. ]
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "MIT"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Nicolas Grekas",
  6358. "email": "p@tchwork.com"
  6359. },
  6360. {
  6361. "name": "Symfony Community",
  6362. "homepage": "https://symfony.com/contributors"
  6363. }
  6364. ],
  6365. "description": "Symfony polyfill for the Mbstring extension",
  6366. "homepage": "https://symfony.com",
  6367. "keywords": [
  6368. "compatibility",
  6369. "mbstring",
  6370. "polyfill",
  6371. "portable",
  6372. "shim"
  6373. ],
  6374. "support": {
  6375. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  6376. },
  6377. "funding": [
  6378. {
  6379. "url": "https://symfony.com/sponsor",
  6380. "type": "custom"
  6381. },
  6382. {
  6383. "url": "https://github.com/fabpot",
  6384. "type": "github"
  6385. },
  6386. {
  6387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6388. "type": "tidelift"
  6389. }
  6390. ],
  6391. "time": "2021-01-22T09:19:47+00:00"
  6392. },
  6393. {
  6394. "name": "symfony/polyfill-php73",
  6395. "version": "v1.22.1",
  6396. "source": {
  6397. "type": "git",
  6398. "url": "https://github.com/symfony/polyfill-php73.git",
  6399. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6400. },
  6401. "dist": {
  6402. "type": "zip",
  6403. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6404. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6405. "shasum": ""
  6406. },
  6407. "require": {
  6408. "php": ">=7.1"
  6409. },
  6410. "type": "library",
  6411. "extra": {
  6412. "branch-alias": {
  6413. "dev-main": "1.22-dev"
  6414. },
  6415. "thanks": {
  6416. "name": "symfony/polyfill",
  6417. "url": "https://github.com/symfony/polyfill"
  6418. }
  6419. },
  6420. "autoload": {
  6421. "psr-4": {
  6422. "Symfony\\Polyfill\\Php73\\": ""
  6423. },
  6424. "files": [
  6425. "bootstrap.php"
  6426. ],
  6427. "classmap": [
  6428. "Resources/stubs"
  6429. ]
  6430. },
  6431. "notification-url": "https://packagist.org/downloads/",
  6432. "license": [
  6433. "MIT"
  6434. ],
  6435. "authors": [
  6436. {
  6437. "name": "Nicolas Grekas",
  6438. "email": "p@tchwork.com"
  6439. },
  6440. {
  6441. "name": "Symfony Community",
  6442. "homepage": "https://symfony.com/contributors"
  6443. }
  6444. ],
  6445. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6446. "homepage": "https://symfony.com",
  6447. "keywords": [
  6448. "compatibility",
  6449. "polyfill",
  6450. "portable",
  6451. "shim"
  6452. ],
  6453. "support": {
  6454. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  6455. },
  6456. "funding": [
  6457. {
  6458. "url": "https://symfony.com/sponsor",
  6459. "type": "custom"
  6460. },
  6461. {
  6462. "url": "https://github.com/fabpot",
  6463. "type": "github"
  6464. },
  6465. {
  6466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6467. "type": "tidelift"
  6468. }
  6469. ],
  6470. "time": "2021-01-07T16:49:33+00:00"
  6471. },
  6472. {
  6473. "name": "symfony/polyfill-php80",
  6474. "version": "v1.22.1",
  6475. "source": {
  6476. "type": "git",
  6477. "url": "https://github.com/symfony/polyfill-php80.git",
  6478. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6479. },
  6480. "dist": {
  6481. "type": "zip",
  6482. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6483. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6484. "shasum": ""
  6485. },
  6486. "require": {
  6487. "php": ">=7.1"
  6488. },
  6489. "type": "library",
  6490. "extra": {
  6491. "branch-alias": {
  6492. "dev-main": "1.22-dev"
  6493. },
  6494. "thanks": {
  6495. "name": "symfony/polyfill",
  6496. "url": "https://github.com/symfony/polyfill"
  6497. }
  6498. },
  6499. "autoload": {
  6500. "psr-4": {
  6501. "Symfony\\Polyfill\\Php80\\": ""
  6502. },
  6503. "files": [
  6504. "bootstrap.php"
  6505. ],
  6506. "classmap": [
  6507. "Resources/stubs"
  6508. ]
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Ion Bazan",
  6517. "email": "ion.bazan@gmail.com"
  6518. },
  6519. {
  6520. "name": "Nicolas Grekas",
  6521. "email": "p@tchwork.com"
  6522. },
  6523. {
  6524. "name": "Symfony Community",
  6525. "homepage": "https://symfony.com/contributors"
  6526. }
  6527. ],
  6528. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6529. "homepage": "https://symfony.com",
  6530. "keywords": [
  6531. "compatibility",
  6532. "polyfill",
  6533. "portable",
  6534. "shim"
  6535. ],
  6536. "support": {
  6537. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  6538. },
  6539. "funding": [
  6540. {
  6541. "url": "https://symfony.com/sponsor",
  6542. "type": "custom"
  6543. },
  6544. {
  6545. "url": "https://github.com/fabpot",
  6546. "type": "github"
  6547. },
  6548. {
  6549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6550. "type": "tidelift"
  6551. }
  6552. ],
  6553. "time": "2021-01-07T16:49:33+00:00"
  6554. },
  6555. {
  6556. "name": "symfony/process",
  6557. "version": "v5.2.4",
  6558. "source": {
  6559. "type": "git",
  6560. "url": "https://github.com/symfony/process.git",
  6561. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  6562. },
  6563. "dist": {
  6564. "type": "zip",
  6565. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6566. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6567. "shasum": ""
  6568. },
  6569. "require": {
  6570. "php": ">=7.2.5",
  6571. "symfony/polyfill-php80": "^1.15"
  6572. },
  6573. "type": "library",
  6574. "autoload": {
  6575. "psr-4": {
  6576. "Symfony\\Component\\Process\\": ""
  6577. },
  6578. "exclude-from-classmap": [
  6579. "/Tests/"
  6580. ]
  6581. },
  6582. "notification-url": "https://packagist.org/downloads/",
  6583. "license": [
  6584. "MIT"
  6585. ],
  6586. "authors": [
  6587. {
  6588. "name": "Fabien Potencier",
  6589. "email": "fabien@symfony.com"
  6590. },
  6591. {
  6592. "name": "Symfony Community",
  6593. "homepage": "https://symfony.com/contributors"
  6594. }
  6595. ],
  6596. "description": "Executes commands in sub-processes",
  6597. "homepage": "https://symfony.com",
  6598. "support": {
  6599. "source": "https://github.com/symfony/process/tree/v5.2.4"
  6600. },
  6601. "funding": [
  6602. {
  6603. "url": "https://symfony.com/sponsor",
  6604. "type": "custom"
  6605. },
  6606. {
  6607. "url": "https://github.com/fabpot",
  6608. "type": "github"
  6609. },
  6610. {
  6611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6612. "type": "tidelift"
  6613. }
  6614. ],
  6615. "time": "2021-01-27T10:15:41+00:00"
  6616. },
  6617. {
  6618. "name": "symfony/property-access",
  6619. "version": "v5.2.4",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://github.com/symfony/property-access.git",
  6623. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6628. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6629. "shasum": ""
  6630. },
  6631. "require": {
  6632. "php": ">=7.2.5",
  6633. "symfony/deprecation-contracts": "^2.1",
  6634. "symfony/polyfill-php80": "^1.15",
  6635. "symfony/property-info": "^5.2"
  6636. },
  6637. "require-dev": {
  6638. "symfony/cache": "^4.4|^5.0"
  6639. },
  6640. "suggest": {
  6641. "psr/cache-implementation": "To cache access methods."
  6642. },
  6643. "type": "library",
  6644. "autoload": {
  6645. "psr-4": {
  6646. "Symfony\\Component\\PropertyAccess\\": ""
  6647. },
  6648. "exclude-from-classmap": [
  6649. "/Tests/"
  6650. ]
  6651. },
  6652. "notification-url": "https://packagist.org/downloads/",
  6653. "license": [
  6654. "MIT"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Fabien Potencier",
  6659. "email": "fabien@symfony.com"
  6660. },
  6661. {
  6662. "name": "Symfony Community",
  6663. "homepage": "https://symfony.com/contributors"
  6664. }
  6665. ],
  6666. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6667. "homepage": "https://symfony.com",
  6668. "keywords": [
  6669. "access",
  6670. "array",
  6671. "extraction",
  6672. "index",
  6673. "injection",
  6674. "object",
  6675. "property",
  6676. "property path",
  6677. "reflection"
  6678. ],
  6679. "support": {
  6680. "source": "https://github.com/symfony/property-access/tree/v5.2.4"
  6681. },
  6682. "funding": [
  6683. {
  6684. "url": "https://symfony.com/sponsor",
  6685. "type": "custom"
  6686. },
  6687. {
  6688. "url": "https://github.com/fabpot",
  6689. "type": "github"
  6690. },
  6691. {
  6692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6693. "type": "tidelift"
  6694. }
  6695. ],
  6696. "time": "2021-01-27T10:15:41+00:00"
  6697. },
  6698. {
  6699. "name": "symfony/property-info",
  6700. "version": "v5.2.4",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/symfony/property-info.git",
  6704. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/symfony/property-info/zipball/7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6709. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "php": ">=7.2.5",
  6714. "symfony/deprecation-contracts": "^2.1",
  6715. "symfony/polyfill-php80": "^1.15",
  6716. "symfony/string": "^5.1"
  6717. },
  6718. "conflict": {
  6719. "phpdocumentor/reflection-docblock": "<3.2.2",
  6720. "phpdocumentor/type-resolver": "<1.4.0",
  6721. "symfony/dependency-injection": "<4.4"
  6722. },
  6723. "require-dev": {
  6724. "doctrine/annotations": "^1.10.4",
  6725. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6726. "symfony/cache": "^4.4|^5.0",
  6727. "symfony/dependency-injection": "^4.4|^5.0",
  6728. "symfony/serializer": "^4.4|^5.0"
  6729. },
  6730. "suggest": {
  6731. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6732. "psr/cache-implementation": "To cache results",
  6733. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6734. "symfony/serializer": "To use Serializer metadata"
  6735. },
  6736. "type": "library",
  6737. "autoload": {
  6738. "psr-4": {
  6739. "Symfony\\Component\\PropertyInfo\\": ""
  6740. },
  6741. "exclude-from-classmap": [
  6742. "/Tests/"
  6743. ]
  6744. },
  6745. "notification-url": "https://packagist.org/downloads/",
  6746. "license": [
  6747. "MIT"
  6748. ],
  6749. "authors": [
  6750. {
  6751. "name": "Kévin Dunglas",
  6752. "email": "dunglas@gmail.com"
  6753. },
  6754. {
  6755. "name": "Symfony Community",
  6756. "homepage": "https://symfony.com/contributors"
  6757. }
  6758. ],
  6759. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6760. "homepage": "https://symfony.com",
  6761. "keywords": [
  6762. "doctrine",
  6763. "phpdoc",
  6764. "property",
  6765. "symfony",
  6766. "type",
  6767. "validator"
  6768. ],
  6769. "support": {
  6770. "source": "https://github.com/symfony/property-info/tree/v5.2.4"
  6771. },
  6772. "funding": [
  6773. {
  6774. "url": "https://symfony.com/sponsor",
  6775. "type": "custom"
  6776. },
  6777. {
  6778. "url": "https://github.com/fabpot",
  6779. "type": "github"
  6780. },
  6781. {
  6782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6783. "type": "tidelift"
  6784. }
  6785. ],
  6786. "time": "2021-02-17T15:24:54+00:00"
  6787. },
  6788. {
  6789. "name": "symfony/proxy-manager-bridge",
  6790. "version": "v5.2.4",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6794. "reference": "fd6bb40190b1719abbe831be09adf38e0744d5f5"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/fd6bb40190b1719abbe831be09adf38e0744d5f5",
  6799. "reference": "fd6bb40190b1719abbe831be09adf38e0744d5f5",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "composer/package-versions-deprecated": "^1.8",
  6804. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6805. "php": ">=7.2.5",
  6806. "symfony/dependency-injection": "^5.0"
  6807. },
  6808. "require-dev": {
  6809. "symfony/config": "^4.4|^5.0"
  6810. },
  6811. "type": "symfony-bridge",
  6812. "autoload": {
  6813. "psr-4": {
  6814. "Symfony\\Bridge\\ProxyManager\\": ""
  6815. },
  6816. "exclude-from-classmap": [
  6817. "/Tests/"
  6818. ]
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "MIT"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "Fabien Potencier",
  6827. "email": "fabien@symfony.com"
  6828. },
  6829. {
  6830. "name": "Symfony Community",
  6831. "homepage": "https://symfony.com/contributors"
  6832. }
  6833. ],
  6834. "description": "Provides integration for ProxyManager with various Symfony components",
  6835. "homepage": "https://symfony.com",
  6836. "support": {
  6837. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.2.4"
  6838. },
  6839. "funding": [
  6840. {
  6841. "url": "https://symfony.com/sponsor",
  6842. "type": "custom"
  6843. },
  6844. {
  6845. "url": "https://github.com/fabpot",
  6846. "type": "github"
  6847. },
  6848. {
  6849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6850. "type": "tidelift"
  6851. }
  6852. ],
  6853. "time": "2021-01-27T10:01:46+00:00"
  6854. },
  6855. {
  6856. "name": "symfony/redis-messenger",
  6857. "version": "v5.2.4",
  6858. "source": {
  6859. "type": "git",
  6860. "url": "https://github.com/symfony/redis-messenger.git",
  6861. "reference": "7e68914bf35cda948ee4d9081b8eaed9fd783fe5"
  6862. },
  6863. "dist": {
  6864. "type": "zip",
  6865. "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/7e68914bf35cda948ee4d9081b8eaed9fd783fe5",
  6866. "reference": "7e68914bf35cda948ee4d9081b8eaed9fd783fe5",
  6867. "shasum": ""
  6868. },
  6869. "require": {
  6870. "php": ">=7.2.5",
  6871. "symfony/deprecation-contracts": "^2.1",
  6872. "symfony/messenger": "^5.1"
  6873. },
  6874. "require-dev": {
  6875. "symfony/property-access": "^4.4|^5.0",
  6876. "symfony/serializer": "^4.4|^5.0"
  6877. },
  6878. "type": "symfony-bridge",
  6879. "autoload": {
  6880. "psr-4": {
  6881. "Symfony\\Component\\Messenger\\Bridge\\Redis\\": ""
  6882. },
  6883. "exclude-from-classmap": [
  6884. "/Tests/"
  6885. ]
  6886. },
  6887. "notification-url": "https://packagist.org/downloads/",
  6888. "license": [
  6889. "MIT"
  6890. ],
  6891. "authors": [
  6892. {
  6893. "name": "Fabien Potencier",
  6894. "email": "fabien@symfony.com"
  6895. },
  6896. {
  6897. "name": "Symfony Community",
  6898. "homepage": "https://symfony.com/contributors"
  6899. }
  6900. ],
  6901. "description": "Symfony Redis extension Messenger Bridge",
  6902. "homepage": "https://symfony.com",
  6903. "support": {
  6904. "source": "https://github.com/symfony/redis-messenger/tree/v5.2.4"
  6905. },
  6906. "funding": [
  6907. {
  6908. "url": "https://symfony.com/sponsor",
  6909. "type": "custom"
  6910. },
  6911. {
  6912. "url": "https://github.com/fabpot",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2021-01-27T11:24:50+00:00"
  6921. },
  6922. {
  6923. "name": "symfony/routing",
  6924. "version": "v5.2.6",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/symfony/routing.git",
  6928. "reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/symfony/routing/zipball/31fba555f178afd04d54fd26953501b2c3f0c6e6",
  6933. "reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6",
  6934. "shasum": ""
  6935. },
  6936. "require": {
  6937. "php": ">=7.2.5",
  6938. "symfony/deprecation-contracts": "^2.1",
  6939. "symfony/polyfill-php80": "^1.15"
  6940. },
  6941. "conflict": {
  6942. "symfony/config": "<5.0",
  6943. "symfony/dependency-injection": "<4.4",
  6944. "symfony/yaml": "<4.4"
  6945. },
  6946. "require-dev": {
  6947. "doctrine/annotations": "^1.10.4",
  6948. "psr/log": "~1.0",
  6949. "symfony/config": "^5.0",
  6950. "symfony/dependency-injection": "^4.4|^5.0",
  6951. "symfony/expression-language": "^4.4|^5.0",
  6952. "symfony/http-foundation": "^4.4|^5.0",
  6953. "symfony/yaml": "^4.4|^5.0"
  6954. },
  6955. "suggest": {
  6956. "doctrine/annotations": "For using the annotation loader",
  6957. "symfony/config": "For using the all-in-one router or any loader",
  6958. "symfony/expression-language": "For using expression matching",
  6959. "symfony/http-foundation": "For using a Symfony Request object",
  6960. "symfony/yaml": "For using the YAML loader"
  6961. },
  6962. "type": "library",
  6963. "autoload": {
  6964. "psr-4": {
  6965. "Symfony\\Component\\Routing\\": ""
  6966. },
  6967. "exclude-from-classmap": [
  6968. "/Tests/"
  6969. ]
  6970. },
  6971. "notification-url": "https://packagist.org/downloads/",
  6972. "license": [
  6973. "MIT"
  6974. ],
  6975. "authors": [
  6976. {
  6977. "name": "Fabien Potencier",
  6978. "email": "fabien@symfony.com"
  6979. },
  6980. {
  6981. "name": "Symfony Community",
  6982. "homepage": "https://symfony.com/contributors"
  6983. }
  6984. ],
  6985. "description": "Maps an HTTP request to a set of configuration variables",
  6986. "homepage": "https://symfony.com",
  6987. "keywords": [
  6988. "router",
  6989. "routing",
  6990. "uri",
  6991. "url"
  6992. ],
  6993. "support": {
  6994. "source": "https://github.com/symfony/routing/tree/v5.2.6"
  6995. },
  6996. "funding": [
  6997. {
  6998. "url": "https://symfony.com/sponsor",
  6999. "type": "custom"
  7000. },
  7001. {
  7002. "url": "https://github.com/fabpot",
  7003. "type": "github"
  7004. },
  7005. {
  7006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7007. "type": "tidelift"
  7008. }
  7009. ],
  7010. "time": "2021-03-14T13:53:33+00:00"
  7011. },
  7012. {
  7013. "name": "symfony/security-bundle",
  7014. "version": "v5.2.6",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/symfony/security-bundle.git",
  7018. "reference": "26550782d6e6db6fbfd7702ae0ccef7964c3535d"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/26550782d6e6db6fbfd7702ae0ccef7964c3535d",
  7023. "reference": "26550782d6e6db6fbfd7702ae0ccef7964c3535d",
  7024. "shasum": ""
  7025. },
  7026. "require": {
  7027. "ext-xml": "*",
  7028. "php": ">=7.2.5",
  7029. "symfony/config": "^4.4|^5.0",
  7030. "symfony/dependency-injection": "^5.2",
  7031. "symfony/deprecation-contracts": "^2.1",
  7032. "symfony/event-dispatcher": "^5.1",
  7033. "symfony/http-kernel": "^5.0",
  7034. "symfony/polyfill-php80": "^1.15",
  7035. "symfony/security-core": "^5.2",
  7036. "symfony/security-csrf": "^4.4|^5.0",
  7037. "symfony/security-guard": "^5.2",
  7038. "symfony/security-http": "^5.2"
  7039. },
  7040. "conflict": {
  7041. "symfony/browser-kit": "<4.4",
  7042. "symfony/console": "<4.4",
  7043. "symfony/framework-bundle": "<4.4",
  7044. "symfony/ldap": "<4.4",
  7045. "symfony/twig-bundle": "<4.4"
  7046. },
  7047. "require-dev": {
  7048. "doctrine/doctrine-bundle": "^2.0",
  7049. "symfony/asset": "^4.4|^5.0",
  7050. "symfony/browser-kit": "^4.4|^5.0",
  7051. "symfony/console": "^4.4|^5.0",
  7052. "symfony/css-selector": "^4.4|^5.0",
  7053. "symfony/dom-crawler": "^4.4|^5.0",
  7054. "symfony/expression-language": "^4.4|^5.0",
  7055. "symfony/form": "^4.4|^5.0",
  7056. "symfony/framework-bundle": "^5.2",
  7057. "symfony/process": "^4.4|^5.0",
  7058. "symfony/rate-limiter": "^5.2",
  7059. "symfony/serializer": "^4.4|^5.0",
  7060. "symfony/translation": "^4.4|^5.0",
  7061. "symfony/twig-bridge": "^4.4|^5.0",
  7062. "symfony/twig-bundle": "^4.4|^5.0",
  7063. "symfony/validator": "^4.4|^5.0",
  7064. "symfony/yaml": "^4.4|^5.0",
  7065. "twig/twig": "^2.13|^3.0.4"
  7066. },
  7067. "type": "symfony-bundle",
  7068. "autoload": {
  7069. "psr-4": {
  7070. "Symfony\\Bundle\\SecurityBundle\\": ""
  7071. },
  7072. "exclude-from-classmap": [
  7073. "/Tests/"
  7074. ]
  7075. },
  7076. "notification-url": "https://packagist.org/downloads/",
  7077. "license": [
  7078. "MIT"
  7079. ],
  7080. "authors": [
  7081. {
  7082. "name": "Fabien Potencier",
  7083. "email": "fabien@symfony.com"
  7084. },
  7085. {
  7086. "name": "Symfony Community",
  7087. "homepage": "https://symfony.com/contributors"
  7088. }
  7089. ],
  7090. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  7091. "homepage": "https://symfony.com",
  7092. "support": {
  7093. "source": "https://github.com/symfony/security-bundle/tree/v5.2.6"
  7094. },
  7095. "funding": [
  7096. {
  7097. "url": "https://symfony.com/sponsor",
  7098. "type": "custom"
  7099. },
  7100. {
  7101. "url": "https://github.com/fabpot",
  7102. "type": "github"
  7103. },
  7104. {
  7105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7106. "type": "tidelift"
  7107. }
  7108. ],
  7109. "time": "2021-03-23T12:45:44+00:00"
  7110. },
  7111. {
  7112. "name": "symfony/security-core",
  7113. "version": "v5.2.6",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/symfony/security-core.git",
  7117. "reference": "9dcedab1c2c637fc9a377b3a9313a61087609760"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/symfony/security-core/zipball/9dcedab1c2c637fc9a377b3a9313a61087609760",
  7122. "reference": "9dcedab1c2c637fc9a377b3a9313a61087609760",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "php": ">=7.2.5",
  7127. "symfony/deprecation-contracts": "^2.1",
  7128. "symfony/event-dispatcher-contracts": "^1.1|^2",
  7129. "symfony/polyfill-php80": "^1.15",
  7130. "symfony/service-contracts": "^1.1.6|^2"
  7131. },
  7132. "conflict": {
  7133. "symfony/event-dispatcher": "<4.4",
  7134. "symfony/ldap": "<4.4",
  7135. "symfony/security-guard": "<4.4",
  7136. "symfony/validator": "<5.2"
  7137. },
  7138. "require-dev": {
  7139. "psr/container": "^1.0|^2.0",
  7140. "psr/log": "~1.0",
  7141. "symfony/event-dispatcher": "^4.4|^5.0",
  7142. "symfony/expression-language": "^4.4|^5.0",
  7143. "symfony/http-foundation": "^4.4|^5.0",
  7144. "symfony/ldap": "^4.4|^5.0",
  7145. "symfony/translation": "^4.4|^5.0",
  7146. "symfony/validator": "^5.2"
  7147. },
  7148. "suggest": {
  7149. "psr/container-implementation": "To instantiate the Security class",
  7150. "symfony/event-dispatcher": "",
  7151. "symfony/expression-language": "For using the expression voter",
  7152. "symfony/http-foundation": "",
  7153. "symfony/ldap": "For using LDAP integration",
  7154. "symfony/validator": "For using the user password constraint"
  7155. },
  7156. "type": "library",
  7157. "autoload": {
  7158. "psr-4": {
  7159. "Symfony\\Component\\Security\\Core\\": ""
  7160. },
  7161. "exclude-from-classmap": [
  7162. "/Tests/"
  7163. ]
  7164. },
  7165. "notification-url": "https://packagist.org/downloads/",
  7166. "license": [
  7167. "MIT"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "Fabien Potencier",
  7172. "email": "fabien@symfony.com"
  7173. },
  7174. {
  7175. "name": "Symfony Community",
  7176. "homepage": "https://symfony.com/contributors"
  7177. }
  7178. ],
  7179. "description": "Symfony Security Component - Core Library",
  7180. "homepage": "https://symfony.com",
  7181. "support": {
  7182. "source": "https://github.com/symfony/security-core/tree/v5.2.6"
  7183. },
  7184. "funding": [
  7185. {
  7186. "url": "https://symfony.com/sponsor",
  7187. "type": "custom"
  7188. },
  7189. {
  7190. "url": "https://github.com/fabpot",
  7191. "type": "github"
  7192. },
  7193. {
  7194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7195. "type": "tidelift"
  7196. }
  7197. ],
  7198. "time": "2021-03-10T22:10:15+00:00"
  7199. },
  7200. {
  7201. "name": "symfony/security-csrf",
  7202. "version": "v5.2.4",
  7203. "source": {
  7204. "type": "git",
  7205. "url": "https://github.com/symfony/security-csrf.git",
  7206. "reference": "e22ef49d5d3773014942f3dfe301b168a4a833dc"
  7207. },
  7208. "dist": {
  7209. "type": "zip",
  7210. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/e22ef49d5d3773014942f3dfe301b168a4a833dc",
  7211. "reference": "e22ef49d5d3773014942f3dfe301b168a4a833dc",
  7212. "shasum": ""
  7213. },
  7214. "require": {
  7215. "php": ">=7.2.5",
  7216. "symfony/security-core": "^4.4|^5.0"
  7217. },
  7218. "conflict": {
  7219. "symfony/http-foundation": "<4.4"
  7220. },
  7221. "require-dev": {
  7222. "symfony/http-foundation": "^4.4|^5.0"
  7223. },
  7224. "suggest": {
  7225. "symfony/http-foundation": "For using the class SessionTokenStorage."
  7226. },
  7227. "type": "library",
  7228. "autoload": {
  7229. "psr-4": {
  7230. "Symfony\\Component\\Security\\Csrf\\": ""
  7231. },
  7232. "exclude-from-classmap": [
  7233. "/Tests/"
  7234. ]
  7235. },
  7236. "notification-url": "https://packagist.org/downloads/",
  7237. "license": [
  7238. "MIT"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Fabien Potencier",
  7243. "email": "fabien@symfony.com"
  7244. },
  7245. {
  7246. "name": "Symfony Community",
  7247. "homepage": "https://symfony.com/contributors"
  7248. }
  7249. ],
  7250. "description": "Symfony Security Component - CSRF Library",
  7251. "homepage": "https://symfony.com",
  7252. "support": {
  7253. "source": "https://github.com/symfony/security-csrf/tree/v5.2.4"
  7254. },
  7255. "funding": [
  7256. {
  7257. "url": "https://symfony.com/sponsor",
  7258. "type": "custom"
  7259. },
  7260. {
  7261. "url": "https://github.com/fabpot",
  7262. "type": "github"
  7263. },
  7264. {
  7265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7266. "type": "tidelift"
  7267. }
  7268. ],
  7269. "time": "2021-01-27T10:01:46+00:00"
  7270. },
  7271. {
  7272. "name": "symfony/security-guard",
  7273. "version": "v5.2.4",
  7274. "source": {
  7275. "type": "git",
  7276. "url": "https://github.com/symfony/security-guard.git",
  7277. "reference": "a191352047f2ea0d927c62e1a2f261cf906d1bde"
  7278. },
  7279. "dist": {
  7280. "type": "zip",
  7281. "url": "https://api.github.com/repos/symfony/security-guard/zipball/a191352047f2ea0d927c62e1a2f261cf906d1bde",
  7282. "reference": "a191352047f2ea0d927c62e1a2f261cf906d1bde",
  7283. "shasum": ""
  7284. },
  7285. "require": {
  7286. "php": ">=7.2.5",
  7287. "symfony/polyfill-php80": "^1.15",
  7288. "symfony/security-core": "^5.0",
  7289. "symfony/security-http": "^4.4.1|^5.0.1"
  7290. },
  7291. "require-dev": {
  7292. "psr/log": "~1.0"
  7293. },
  7294. "type": "library",
  7295. "autoload": {
  7296. "psr-4": {
  7297. "Symfony\\Component\\Security\\Guard\\": ""
  7298. },
  7299. "exclude-from-classmap": [
  7300. "/Tests/"
  7301. ]
  7302. },
  7303. "notification-url": "https://packagist.org/downloads/",
  7304. "license": [
  7305. "MIT"
  7306. ],
  7307. "authors": [
  7308. {
  7309. "name": "Fabien Potencier",
  7310. "email": "fabien@symfony.com"
  7311. },
  7312. {
  7313. "name": "Symfony Community",
  7314. "homepage": "https://symfony.com/contributors"
  7315. }
  7316. ],
  7317. "description": "Symfony Security Component - Guard",
  7318. "homepage": "https://symfony.com",
  7319. "support": {
  7320. "source": "https://github.com/symfony/security-guard/tree/v5.2.4"
  7321. },
  7322. "funding": [
  7323. {
  7324. "url": "https://symfony.com/sponsor",
  7325. "type": "custom"
  7326. },
  7327. {
  7328. "url": "https://github.com/fabpot",
  7329. "type": "github"
  7330. },
  7331. {
  7332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7333. "type": "tidelift"
  7334. }
  7335. ],
  7336. "time": "2021-01-27T10:15:41+00:00"
  7337. },
  7338. {
  7339. "name": "symfony/security-http",
  7340. "version": "v5.2.6",
  7341. "source": {
  7342. "type": "git",
  7343. "url": "https://github.com/symfony/security-http.git",
  7344. "reference": "a4b3d122ee0c263850ca1ed620faa1b3a8e7584b"
  7345. },
  7346. "dist": {
  7347. "type": "zip",
  7348. "url": "https://api.github.com/repos/symfony/security-http/zipball/a4b3d122ee0c263850ca1ed620faa1b3a8e7584b",
  7349. "reference": "a4b3d122ee0c263850ca1ed620faa1b3a8e7584b",
  7350. "shasum": ""
  7351. },
  7352. "require": {
  7353. "php": ">=7.2.5",
  7354. "symfony/deprecation-contracts": "^2.1",
  7355. "symfony/http-foundation": "^5.2",
  7356. "symfony/http-kernel": "^5.2",
  7357. "symfony/polyfill-php80": "^1.15",
  7358. "symfony/property-access": "^4.4|^5.0",
  7359. "symfony/security-core": "^5.2"
  7360. },
  7361. "conflict": {
  7362. "symfony/event-dispatcher": "<4.3",
  7363. "symfony/security-csrf": "<4.4"
  7364. },
  7365. "require-dev": {
  7366. "psr/log": "~1.0",
  7367. "symfony/cache": "^4.4|^5.0",
  7368. "symfony/rate-limiter": "^5.2",
  7369. "symfony/routing": "^4.4|^5.0",
  7370. "symfony/security-csrf": "^4.4|^5.0",
  7371. "symfony/translation": "^4.4|^5.0"
  7372. },
  7373. "suggest": {
  7374. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  7375. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  7376. },
  7377. "type": "library",
  7378. "autoload": {
  7379. "psr-4": {
  7380. "Symfony\\Component\\Security\\Http\\": ""
  7381. },
  7382. "exclude-from-classmap": [
  7383. "/Tests/"
  7384. ]
  7385. },
  7386. "notification-url": "https://packagist.org/downloads/",
  7387. "license": [
  7388. "MIT"
  7389. ],
  7390. "authors": [
  7391. {
  7392. "name": "Fabien Potencier",
  7393. "email": "fabien@symfony.com"
  7394. },
  7395. {
  7396. "name": "Symfony Community",
  7397. "homepage": "https://symfony.com/contributors"
  7398. }
  7399. ],
  7400. "description": "Symfony Security Component - HTTP Integration",
  7401. "homepage": "https://symfony.com",
  7402. "support": {
  7403. "source": "https://github.com/symfony/security-http/tree/v5.2.6"
  7404. },
  7405. "funding": [
  7406. {
  7407. "url": "https://symfony.com/sponsor",
  7408. "type": "custom"
  7409. },
  7410. {
  7411. "url": "https://github.com/fabpot",
  7412. "type": "github"
  7413. },
  7414. {
  7415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7416. "type": "tidelift"
  7417. }
  7418. ],
  7419. "time": "2021-03-28T17:23:00+00:00"
  7420. },
  7421. {
  7422. "name": "symfony/serializer",
  7423. "version": "v5.2.4",
  7424. "source": {
  7425. "type": "git",
  7426. "url": "https://github.com/symfony/serializer.git",
  7427. "reference": "a285f474a72397ccbd384900abc968ffcb511dda"
  7428. },
  7429. "dist": {
  7430. "type": "zip",
  7431. "url": "https://api.github.com/repos/symfony/serializer/zipball/a285f474a72397ccbd384900abc968ffcb511dda",
  7432. "reference": "a285f474a72397ccbd384900abc968ffcb511dda",
  7433. "shasum": ""
  7434. },
  7435. "require": {
  7436. "php": ">=7.2.5",
  7437. "symfony/polyfill-ctype": "~1.8",
  7438. "symfony/polyfill-php80": "^1.15"
  7439. },
  7440. "conflict": {
  7441. "phpdocumentor/reflection-docblock": "<3.2.2",
  7442. "phpdocumentor/type-resolver": "<1.4.0",
  7443. "symfony/dependency-injection": "<4.4",
  7444. "symfony/property-access": "<4.4",
  7445. "symfony/property-info": "<4.4",
  7446. "symfony/yaml": "<4.4"
  7447. },
  7448. "require-dev": {
  7449. "doctrine/annotations": "^1.10.4",
  7450. "doctrine/cache": "~1.0",
  7451. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7452. "symfony/cache": "^4.4|^5.0",
  7453. "symfony/config": "^4.4|^5.0",
  7454. "symfony/dependency-injection": "^4.4|^5.0",
  7455. "symfony/error-handler": "^4.4|^5.0",
  7456. "symfony/filesystem": "^4.4|^5.0",
  7457. "symfony/form": "^4.4|^5.0",
  7458. "symfony/http-foundation": "^4.4|^5.0",
  7459. "symfony/http-kernel": "^4.4|^5.0",
  7460. "symfony/mime": "^4.4|^5.0",
  7461. "symfony/property-access": "^4.4.9|^5.0.9",
  7462. "symfony/property-info": "^4.4|^5.0",
  7463. "symfony/uid": "^5.1",
  7464. "symfony/validator": "^4.4|^5.0",
  7465. "symfony/var-exporter": "^4.4|^5.0",
  7466. "symfony/yaml": "^4.4|^5.0"
  7467. },
  7468. "suggest": {
  7469. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7470. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7471. "psr/cache-implementation": "For using the metadata cache.",
  7472. "symfony/config": "For using the XML mapping loader.",
  7473. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  7474. "symfony/property-access": "For using the ObjectNormalizer.",
  7475. "symfony/property-info": "To deserialize relations.",
  7476. "symfony/var-exporter": "For using the metadata compiler.",
  7477. "symfony/yaml": "For using the default YAML mapping loader."
  7478. },
  7479. "type": "library",
  7480. "autoload": {
  7481. "psr-4": {
  7482. "Symfony\\Component\\Serializer\\": ""
  7483. },
  7484. "exclude-from-classmap": [
  7485. "/Tests/"
  7486. ]
  7487. },
  7488. "notification-url": "https://packagist.org/downloads/",
  7489. "license": [
  7490. "MIT"
  7491. ],
  7492. "authors": [
  7493. {
  7494. "name": "Fabien Potencier",
  7495. "email": "fabien@symfony.com"
  7496. },
  7497. {
  7498. "name": "Symfony Community",
  7499. "homepage": "https://symfony.com/contributors"
  7500. }
  7501. ],
  7502. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7503. "homepage": "https://symfony.com",
  7504. "support": {
  7505. "source": "https://github.com/symfony/serializer/tree/v5.2.4"
  7506. },
  7507. "funding": [
  7508. {
  7509. "url": "https://symfony.com/sponsor",
  7510. "type": "custom"
  7511. },
  7512. {
  7513. "url": "https://github.com/fabpot",
  7514. "type": "github"
  7515. },
  7516. {
  7517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7518. "type": "tidelift"
  7519. }
  7520. ],
  7521. "time": "2021-03-02T12:14:02+00:00"
  7522. },
  7523. {
  7524. "name": "symfony/serializer-pack",
  7525. "version": "v1.0.4",
  7526. "source": {
  7527. "type": "git",
  7528. "url": "https://github.com/symfony/serializer-pack.git",
  7529. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e"
  7530. },
  7531. "dist": {
  7532. "type": "zip",
  7533. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7534. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7535. "shasum": ""
  7536. },
  7537. "require": {
  7538. "doctrine/annotations": "^1.0",
  7539. "phpdocumentor/reflection-docblock": "*",
  7540. "symfony/property-access": "*",
  7541. "symfony/property-info": "*",
  7542. "symfony/serializer": "*"
  7543. },
  7544. "type": "symfony-pack",
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "MIT"
  7548. ],
  7549. "description": "A pack for the Symfony serializer",
  7550. "support": {
  7551. "issues": "https://github.com/symfony/serializer-pack/issues",
  7552. "source": "https://github.com/symfony/serializer-pack/tree/v1.0.4"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://symfony.com/sponsor",
  7557. "type": "custom"
  7558. },
  7559. {
  7560. "url": "https://github.com/fabpot",
  7561. "type": "github"
  7562. },
  7563. {
  7564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7565. "type": "tidelift"
  7566. }
  7567. ],
  7568. "time": "2020-10-19T08:52:16+00:00"
  7569. },
  7570. {
  7571. "name": "symfony/service-contracts",
  7572. "version": "v2.2.0",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/symfony/service-contracts.git",
  7576. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7581. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7582. "shasum": ""
  7583. },
  7584. "require": {
  7585. "php": ">=7.2.5",
  7586. "psr/container": "^1.0"
  7587. },
  7588. "suggest": {
  7589. "symfony/service-implementation": ""
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-master": "2.2-dev"
  7595. },
  7596. "thanks": {
  7597. "name": "symfony/contracts",
  7598. "url": "https://github.com/symfony/contracts"
  7599. }
  7600. },
  7601. "autoload": {
  7602. "psr-4": {
  7603. "Symfony\\Contracts\\Service\\": ""
  7604. }
  7605. },
  7606. "notification-url": "https://packagist.org/downloads/",
  7607. "license": [
  7608. "MIT"
  7609. ],
  7610. "authors": [
  7611. {
  7612. "name": "Nicolas Grekas",
  7613. "email": "p@tchwork.com"
  7614. },
  7615. {
  7616. "name": "Symfony Community",
  7617. "homepage": "https://symfony.com/contributors"
  7618. }
  7619. ],
  7620. "description": "Generic abstractions related to writing services",
  7621. "homepage": "https://symfony.com",
  7622. "keywords": [
  7623. "abstractions",
  7624. "contracts",
  7625. "decoupling",
  7626. "interfaces",
  7627. "interoperability",
  7628. "standards"
  7629. ],
  7630. "support": {
  7631. "source": "https://github.com/symfony/service-contracts/tree/master"
  7632. },
  7633. "funding": [
  7634. {
  7635. "url": "https://symfony.com/sponsor",
  7636. "type": "custom"
  7637. },
  7638. {
  7639. "url": "https://github.com/fabpot",
  7640. "type": "github"
  7641. },
  7642. {
  7643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7644. "type": "tidelift"
  7645. }
  7646. ],
  7647. "time": "2020-09-07T11:33:47+00:00"
  7648. },
  7649. {
  7650. "name": "symfony/stopwatch",
  7651. "version": "v5.2.4",
  7652. "source": {
  7653. "type": "git",
  7654. "url": "https://github.com/symfony/stopwatch.git",
  7655. "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c"
  7656. },
  7657. "dist": {
  7658. "type": "zip",
  7659. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/b12274acfab9d9850c52583d136a24398cdf1a0c",
  7660. "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c",
  7661. "shasum": ""
  7662. },
  7663. "require": {
  7664. "php": ">=7.2.5",
  7665. "symfony/service-contracts": "^1.0|^2"
  7666. },
  7667. "type": "library",
  7668. "autoload": {
  7669. "psr-4": {
  7670. "Symfony\\Component\\Stopwatch\\": ""
  7671. },
  7672. "exclude-from-classmap": [
  7673. "/Tests/"
  7674. ]
  7675. },
  7676. "notification-url": "https://packagist.org/downloads/",
  7677. "license": [
  7678. "MIT"
  7679. ],
  7680. "authors": [
  7681. {
  7682. "name": "Fabien Potencier",
  7683. "email": "fabien@symfony.com"
  7684. },
  7685. {
  7686. "name": "Symfony Community",
  7687. "homepage": "https://symfony.com/contributors"
  7688. }
  7689. ],
  7690. "description": "Provides a way to profile code",
  7691. "homepage": "https://symfony.com",
  7692. "support": {
  7693. "source": "https://github.com/symfony/stopwatch/tree/v5.2.4"
  7694. },
  7695. "funding": [
  7696. {
  7697. "url": "https://symfony.com/sponsor",
  7698. "type": "custom"
  7699. },
  7700. {
  7701. "url": "https://github.com/fabpot",
  7702. "type": "github"
  7703. },
  7704. {
  7705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7706. "type": "tidelift"
  7707. }
  7708. ],
  7709. "time": "2021-01-27T10:15:41+00:00"
  7710. },
  7711. {
  7712. "name": "symfony/string",
  7713. "version": "v5.2.6",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/symfony/string.git",
  7717. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7722. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": ">=7.2.5",
  7727. "symfony/polyfill-ctype": "~1.8",
  7728. "symfony/polyfill-intl-grapheme": "~1.0",
  7729. "symfony/polyfill-intl-normalizer": "~1.0",
  7730. "symfony/polyfill-mbstring": "~1.0",
  7731. "symfony/polyfill-php80": "~1.15"
  7732. },
  7733. "require-dev": {
  7734. "symfony/error-handler": "^4.4|^5.0",
  7735. "symfony/http-client": "^4.4|^5.0",
  7736. "symfony/translation-contracts": "^1.1|^2",
  7737. "symfony/var-exporter": "^4.4|^5.0"
  7738. },
  7739. "type": "library",
  7740. "autoload": {
  7741. "psr-4": {
  7742. "Symfony\\Component\\String\\": ""
  7743. },
  7744. "files": [
  7745. "Resources/functions.php"
  7746. ],
  7747. "exclude-from-classmap": [
  7748. "/Tests/"
  7749. ]
  7750. },
  7751. "notification-url": "https://packagist.org/downloads/",
  7752. "license": [
  7753. "MIT"
  7754. ],
  7755. "authors": [
  7756. {
  7757. "name": "Nicolas Grekas",
  7758. "email": "p@tchwork.com"
  7759. },
  7760. {
  7761. "name": "Symfony Community",
  7762. "homepage": "https://symfony.com/contributors"
  7763. }
  7764. ],
  7765. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7766. "homepage": "https://symfony.com",
  7767. "keywords": [
  7768. "grapheme",
  7769. "i18n",
  7770. "string",
  7771. "unicode",
  7772. "utf-8",
  7773. "utf8"
  7774. ],
  7775. "support": {
  7776. "source": "https://github.com/symfony/string/tree/v5.2.6"
  7777. },
  7778. "funding": [
  7779. {
  7780. "url": "https://symfony.com/sponsor",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://github.com/fabpot",
  7785. "type": "github"
  7786. },
  7787. {
  7788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7789. "type": "tidelift"
  7790. }
  7791. ],
  7792. "time": "2021-03-17T17:12:15+00:00"
  7793. },
  7794. {
  7795. "name": "symfony/translation",
  7796. "version": "v5.2.6",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/symfony/translation.git",
  7800. "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/symfony/translation/zipball/2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
  7805. "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=7.2.5",
  7810. "symfony/polyfill-mbstring": "~1.0",
  7811. "symfony/polyfill-php80": "^1.15",
  7812. "symfony/translation-contracts": "^2.3"
  7813. },
  7814. "conflict": {
  7815. "symfony/config": "<4.4",
  7816. "symfony/dependency-injection": "<5.0",
  7817. "symfony/http-kernel": "<5.0",
  7818. "symfony/twig-bundle": "<5.0",
  7819. "symfony/yaml": "<4.4"
  7820. },
  7821. "provide": {
  7822. "symfony/translation-implementation": "2.3"
  7823. },
  7824. "require-dev": {
  7825. "psr/log": "~1.0",
  7826. "symfony/config": "^4.4|^5.0",
  7827. "symfony/console": "^4.4|^5.0",
  7828. "symfony/dependency-injection": "^5.0",
  7829. "symfony/finder": "^4.4|^5.0",
  7830. "symfony/http-kernel": "^5.0",
  7831. "symfony/intl": "^4.4|^5.0",
  7832. "symfony/service-contracts": "^1.1.2|^2",
  7833. "symfony/yaml": "^4.4|^5.0"
  7834. },
  7835. "suggest": {
  7836. "psr/log-implementation": "To use logging capability in translator",
  7837. "symfony/config": "",
  7838. "symfony/yaml": ""
  7839. },
  7840. "type": "library",
  7841. "autoload": {
  7842. "files": [
  7843. "Resources/functions.php"
  7844. ],
  7845. "psr-4": {
  7846. "Symfony\\Component\\Translation\\": ""
  7847. },
  7848. "exclude-from-classmap": [
  7849. "/Tests/"
  7850. ]
  7851. },
  7852. "notification-url": "https://packagist.org/downloads/",
  7853. "license": [
  7854. "MIT"
  7855. ],
  7856. "authors": [
  7857. {
  7858. "name": "Fabien Potencier",
  7859. "email": "fabien@symfony.com"
  7860. },
  7861. {
  7862. "name": "Symfony Community",
  7863. "homepage": "https://symfony.com/contributors"
  7864. }
  7865. ],
  7866. "description": "Provides tools to internationalize your application",
  7867. "homepage": "https://symfony.com",
  7868. "support": {
  7869. "source": "https://github.com/symfony/translation/tree/v5.2.6"
  7870. },
  7871. "funding": [
  7872. {
  7873. "url": "https://symfony.com/sponsor",
  7874. "type": "custom"
  7875. },
  7876. {
  7877. "url": "https://github.com/fabpot",
  7878. "type": "github"
  7879. },
  7880. {
  7881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7882. "type": "tidelift"
  7883. }
  7884. ],
  7885. "time": "2021-03-23T19:33:48+00:00"
  7886. },
  7887. {
  7888. "name": "symfony/translation-contracts",
  7889. "version": "v2.3.0",
  7890. "source": {
  7891. "type": "git",
  7892. "url": "https://github.com/symfony/translation-contracts.git",
  7893. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7894. },
  7895. "dist": {
  7896. "type": "zip",
  7897. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7898. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7899. "shasum": ""
  7900. },
  7901. "require": {
  7902. "php": ">=7.2.5"
  7903. },
  7904. "suggest": {
  7905. "symfony/translation-implementation": ""
  7906. },
  7907. "type": "library",
  7908. "extra": {
  7909. "branch-alias": {
  7910. "dev-master": "2.3-dev"
  7911. },
  7912. "thanks": {
  7913. "name": "symfony/contracts",
  7914. "url": "https://github.com/symfony/contracts"
  7915. }
  7916. },
  7917. "autoload": {
  7918. "psr-4": {
  7919. "Symfony\\Contracts\\Translation\\": ""
  7920. }
  7921. },
  7922. "notification-url": "https://packagist.org/downloads/",
  7923. "license": [
  7924. "MIT"
  7925. ],
  7926. "authors": [
  7927. {
  7928. "name": "Nicolas Grekas",
  7929. "email": "p@tchwork.com"
  7930. },
  7931. {
  7932. "name": "Symfony Community",
  7933. "homepage": "https://symfony.com/contributors"
  7934. }
  7935. ],
  7936. "description": "Generic abstractions related to translation",
  7937. "homepage": "https://symfony.com",
  7938. "keywords": [
  7939. "abstractions",
  7940. "contracts",
  7941. "decoupling",
  7942. "interfaces",
  7943. "interoperability",
  7944. "standards"
  7945. ],
  7946. "support": {
  7947. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  7948. },
  7949. "funding": [
  7950. {
  7951. "url": "https://symfony.com/sponsor",
  7952. "type": "custom"
  7953. },
  7954. {
  7955. "url": "https://github.com/fabpot",
  7956. "type": "github"
  7957. },
  7958. {
  7959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7960. "type": "tidelift"
  7961. }
  7962. ],
  7963. "time": "2020-09-28T13:05:58+00:00"
  7964. },
  7965. {
  7966. "name": "symfony/twig-bridge",
  7967. "version": "v5.2.6",
  7968. "source": {
  7969. "type": "git",
  7970. "url": "https://github.com/symfony/twig-bridge.git",
  7971. "reference": "a65d8d38c66f147f29b73d53d14e8c9a983653b8"
  7972. },
  7973. "dist": {
  7974. "type": "zip",
  7975. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/a65d8d38c66f147f29b73d53d14e8c9a983653b8",
  7976. "reference": "a65d8d38c66f147f29b73d53d14e8c9a983653b8",
  7977. "shasum": ""
  7978. },
  7979. "require": {
  7980. "php": ">=7.2.5",
  7981. "symfony/polyfill-php80": "^1.15",
  7982. "symfony/translation-contracts": "^1.1|^2",
  7983. "twig/twig": "^2.13|^3.0.4"
  7984. },
  7985. "conflict": {
  7986. "phpdocumentor/reflection-docblock": "<3.2.2",
  7987. "phpdocumentor/type-resolver": "<1.4.0",
  7988. "symfony/console": "<4.4",
  7989. "symfony/form": "<5.1",
  7990. "symfony/http-foundation": "<4.4",
  7991. "symfony/http-kernel": "<4.4",
  7992. "symfony/translation": "<5.2",
  7993. "symfony/workflow": "<5.2"
  7994. },
  7995. "require-dev": {
  7996. "egulias/email-validator": "^2.1.10|^3",
  7997. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7998. "symfony/asset": "^4.4|^5.0",
  7999. "symfony/console": "^4.4|^5.0",
  8000. "symfony/dependency-injection": "^4.4|^5.0",
  8001. "symfony/expression-language": "^4.4|^5.0",
  8002. "symfony/finder": "^4.4|^5.0",
  8003. "symfony/form": "^5.1.9",
  8004. "symfony/http-foundation": "^4.4|^5.0",
  8005. "symfony/http-kernel": "^4.4|^5.0",
  8006. "symfony/intl": "^4.4|^5.0",
  8007. "symfony/mime": "^5.2",
  8008. "symfony/polyfill-intl-icu": "~1.0",
  8009. "symfony/property-info": "^4.4|^5.1",
  8010. "symfony/routing": "^4.4|^5.0",
  8011. "symfony/security-acl": "^2.8|^3.0",
  8012. "symfony/security-core": "^4.4|^5.0",
  8013. "symfony/security-csrf": "^4.4|^5.0",
  8014. "symfony/security-http": "^4.4|^5.0",
  8015. "symfony/serializer": "^5.2",
  8016. "symfony/stopwatch": "^4.4|^5.0",
  8017. "symfony/translation": "^5.2",
  8018. "symfony/web-link": "^4.4|^5.0",
  8019. "symfony/workflow": "^5.2",
  8020. "symfony/yaml": "^4.4|^5.0",
  8021. "twig/cssinliner-extra": "^2.12|^3",
  8022. "twig/inky-extra": "^2.12|^3",
  8023. "twig/markdown-extra": "^2.12|^3"
  8024. },
  8025. "suggest": {
  8026. "symfony/asset": "For using the AssetExtension",
  8027. "symfony/expression-language": "For using the ExpressionExtension",
  8028. "symfony/finder": "",
  8029. "symfony/form": "For using the FormExtension",
  8030. "symfony/http-kernel": "For using the HttpKernelExtension",
  8031. "symfony/routing": "For using the RoutingExtension",
  8032. "symfony/security-core": "For using the SecurityExtension",
  8033. "symfony/security-csrf": "For using the CsrfExtension",
  8034. "symfony/security-http": "For using the LogoutUrlExtension",
  8035. "symfony/stopwatch": "For using the StopwatchExtension",
  8036. "symfony/translation": "For using the TranslationExtension",
  8037. "symfony/var-dumper": "For using the DumpExtension",
  8038. "symfony/web-link": "For using the WebLinkExtension",
  8039. "symfony/yaml": "For using the YamlExtension"
  8040. },
  8041. "type": "symfony-bridge",
  8042. "autoload": {
  8043. "psr-4": {
  8044. "Symfony\\Bridge\\Twig\\": ""
  8045. },
  8046. "exclude-from-classmap": [
  8047. "/Tests/"
  8048. ]
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "MIT"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Fabien Potencier",
  8057. "email": "fabien@symfony.com"
  8058. },
  8059. {
  8060. "name": "Symfony Community",
  8061. "homepage": "https://symfony.com/contributors"
  8062. }
  8063. ],
  8064. "description": "Provides integration for Twig with various Symfony components",
  8065. "homepage": "https://symfony.com",
  8066. "support": {
  8067. "source": "https://github.com/symfony/twig-bridge/tree/v5.2.6"
  8068. },
  8069. "funding": [
  8070. {
  8071. "url": "https://symfony.com/sponsor",
  8072. "type": "custom"
  8073. },
  8074. {
  8075. "url": "https://github.com/fabpot",
  8076. "type": "github"
  8077. },
  8078. {
  8079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8080. "type": "tidelift"
  8081. }
  8082. ],
  8083. "time": "2021-03-16T09:10:13+00:00"
  8084. },
  8085. {
  8086. "name": "symfony/twig-bundle",
  8087. "version": "v5.2.4",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/symfony/twig-bundle.git",
  8091. "reference": "5ebbb5f0e8bfaa0b4b37cb25ff97f83b18caf221"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/5ebbb5f0e8bfaa0b4b37cb25ff97f83b18caf221",
  8096. "reference": "5ebbb5f0e8bfaa0b4b37cb25ff97f83b18caf221",
  8097. "shasum": ""
  8098. },
  8099. "require": {
  8100. "php": ">=7.2.5",
  8101. "symfony/config": "^4.4|^5.0",
  8102. "symfony/http-foundation": "^4.4|^5.0",
  8103. "symfony/http-kernel": "^5.0",
  8104. "symfony/polyfill-ctype": "~1.8",
  8105. "symfony/twig-bridge": "^5.0",
  8106. "twig/twig": "^2.13|^3.0.4"
  8107. },
  8108. "conflict": {
  8109. "symfony/dependency-injection": "<5.2",
  8110. "symfony/framework-bundle": "<5.0",
  8111. "symfony/translation": "<5.0"
  8112. },
  8113. "require-dev": {
  8114. "doctrine/annotations": "^1.10.4",
  8115. "doctrine/cache": "~1.0",
  8116. "symfony/asset": "^4.4|^5.0",
  8117. "symfony/dependency-injection": "^5.2",
  8118. "symfony/expression-language": "^4.4|^5.0",
  8119. "symfony/finder": "^4.4|^5.0",
  8120. "symfony/form": "^4.4|^5.0",
  8121. "symfony/framework-bundle": "^5.0",
  8122. "symfony/routing": "^4.4|^5.0",
  8123. "symfony/stopwatch": "^4.4|^5.0",
  8124. "symfony/translation": "^5.0",
  8125. "symfony/web-link": "^4.4|^5.0",
  8126. "symfony/yaml": "^4.4|^5.0"
  8127. },
  8128. "type": "symfony-bundle",
  8129. "autoload": {
  8130. "psr-4": {
  8131. "Symfony\\Bundle\\TwigBundle\\": ""
  8132. },
  8133. "exclude-from-classmap": [
  8134. "/Tests/"
  8135. ]
  8136. },
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "MIT"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Fabien Potencier",
  8144. "email": "fabien@symfony.com"
  8145. },
  8146. {
  8147. "name": "Symfony Community",
  8148. "homepage": "https://symfony.com/contributors"
  8149. }
  8150. ],
  8151. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8152. "homepage": "https://symfony.com",
  8153. "support": {
  8154. "source": "https://github.com/symfony/twig-bundle/tree/v5.2.4"
  8155. },
  8156. "funding": [
  8157. {
  8158. "url": "https://symfony.com/sponsor",
  8159. "type": "custom"
  8160. },
  8161. {
  8162. "url": "https://github.com/fabpot",
  8163. "type": "github"
  8164. },
  8165. {
  8166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8167. "type": "tidelift"
  8168. }
  8169. ],
  8170. "time": "2021-01-27T10:15:41+00:00"
  8171. },
  8172. {
  8173. "name": "symfony/twig-pack",
  8174. "version": "v1.0.1",
  8175. "source": {
  8176. "type": "git",
  8177. "url": "https://github.com/symfony/twig-pack.git",
  8178. "reference": "08a73e833e07921c464336deb7630f93e85ef930"
  8179. },
  8180. "dist": {
  8181. "type": "zip",
  8182. "url": "https://api.github.com/repos/symfony/twig-pack/zipball/08a73e833e07921c464336deb7630f93e85ef930",
  8183. "reference": "08a73e833e07921c464336deb7630f93e85ef930",
  8184. "shasum": ""
  8185. },
  8186. "require": {
  8187. "symfony/twig-bundle": "*",
  8188. "twig/extra-bundle": "^2.12|^3.0",
  8189. "twig/twig": "^2.12|^3.0"
  8190. },
  8191. "type": "symfony-pack",
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "MIT"
  8195. ],
  8196. "description": "A Twig pack for Symfony projects",
  8197. "support": {
  8198. "issues": "https://github.com/symfony/twig-pack/issues",
  8199. "source": "https://github.com/symfony/twig-pack/tree/v1.0.1"
  8200. },
  8201. "funding": [
  8202. {
  8203. "url": "https://symfony.com/sponsor",
  8204. "type": "custom"
  8205. },
  8206. {
  8207. "url": "https://github.com/fabpot",
  8208. "type": "github"
  8209. },
  8210. {
  8211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8212. "type": "tidelift"
  8213. }
  8214. ],
  8215. "time": "2020-10-19T08:46:41+00:00"
  8216. },
  8217. {
  8218. "name": "symfony/validator",
  8219. "version": "v5.2.6",
  8220. "source": {
  8221. "type": "git",
  8222. "url": "https://github.com/symfony/validator.git",
  8223. "reference": "67354644f9baba3cc122134c255b7461b7e0fe31"
  8224. },
  8225. "dist": {
  8226. "type": "zip",
  8227. "url": "https://api.github.com/repos/symfony/validator/zipball/67354644f9baba3cc122134c255b7461b7e0fe31",
  8228. "reference": "67354644f9baba3cc122134c255b7461b7e0fe31",
  8229. "shasum": ""
  8230. },
  8231. "require": {
  8232. "php": ">=7.2.5",
  8233. "symfony/deprecation-contracts": "^2.1",
  8234. "symfony/polyfill-ctype": "~1.8",
  8235. "symfony/polyfill-mbstring": "~1.0",
  8236. "symfony/polyfill-php73": "~1.0",
  8237. "symfony/polyfill-php80": "^1.15",
  8238. "symfony/translation-contracts": "^1.1|^2"
  8239. },
  8240. "conflict": {
  8241. "doctrine/lexer": "<1.0.2",
  8242. "phpunit/phpunit": "<5.4.3",
  8243. "symfony/dependency-injection": "<4.4",
  8244. "symfony/expression-language": "<5.1",
  8245. "symfony/http-kernel": "<4.4",
  8246. "symfony/intl": "<4.4",
  8247. "symfony/translation": "<4.4",
  8248. "symfony/yaml": "<4.4"
  8249. },
  8250. "require-dev": {
  8251. "doctrine/annotations": "^1.10.4",
  8252. "doctrine/cache": "~1.0",
  8253. "egulias/email-validator": "^2.1.10|^3",
  8254. "symfony/cache": "^4.4|^5.0",
  8255. "symfony/config": "^4.4|^5.0",
  8256. "symfony/console": "^4.4|^5.0",
  8257. "symfony/dependency-injection": "^4.4|^5.0",
  8258. "symfony/expression-language": "^5.1",
  8259. "symfony/finder": "^4.4|^5.0",
  8260. "symfony/http-client": "^4.4|^5.0",
  8261. "symfony/http-foundation": "^4.4|^5.0",
  8262. "symfony/http-kernel": "^4.4|^5.0",
  8263. "symfony/intl": "^4.4|^5.0",
  8264. "symfony/mime": "^4.4|^5.0",
  8265. "symfony/property-access": "^4.4|^5.0",
  8266. "symfony/property-info": "^4.4|^5.0",
  8267. "symfony/translation": "^4.4|^5.0",
  8268. "symfony/yaml": "^4.4|^5.0"
  8269. },
  8270. "suggest": {
  8271. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8272. "doctrine/cache": "For using the default cached annotation reader.",
  8273. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8274. "psr/cache-implementation": "For using the mapping cache.",
  8275. "symfony/config": "",
  8276. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  8277. "symfony/http-foundation": "",
  8278. "symfony/intl": "",
  8279. "symfony/property-access": "For accessing properties within comparison constraints",
  8280. "symfony/property-info": "To automatically add NotNull and Type constraints",
  8281. "symfony/translation": "For translating validation errors.",
  8282. "symfony/yaml": ""
  8283. },
  8284. "type": "library",
  8285. "autoload": {
  8286. "psr-4": {
  8287. "Symfony\\Component\\Validator\\": ""
  8288. },
  8289. "exclude-from-classmap": [
  8290. "/Tests/"
  8291. ]
  8292. },
  8293. "notification-url": "https://packagist.org/downloads/",
  8294. "license": [
  8295. "MIT"
  8296. ],
  8297. "authors": [
  8298. {
  8299. "name": "Fabien Potencier",
  8300. "email": "fabien@symfony.com"
  8301. },
  8302. {
  8303. "name": "Symfony Community",
  8304. "homepage": "https://symfony.com/contributors"
  8305. }
  8306. ],
  8307. "description": "Provides tools to validate values",
  8308. "homepage": "https://symfony.com",
  8309. "support": {
  8310. "source": "https://github.com/symfony/validator/tree/v5.2.6"
  8311. },
  8312. "funding": [
  8313. {
  8314. "url": "https://symfony.com/sponsor",
  8315. "type": "custom"
  8316. },
  8317. {
  8318. "url": "https://github.com/fabpot",
  8319. "type": "github"
  8320. },
  8321. {
  8322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8323. "type": "tidelift"
  8324. }
  8325. ],
  8326. "time": "2021-03-23T12:45:44+00:00"
  8327. },
  8328. {
  8329. "name": "symfony/var-dumper",
  8330. "version": "v5.2.6",
  8331. "source": {
  8332. "type": "git",
  8333. "url": "https://github.com/symfony/var-dumper.git",
  8334. "reference": "89412a68ea2e675b4e44f260a5666729f77f668e"
  8335. },
  8336. "dist": {
  8337. "type": "zip",
  8338. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89412a68ea2e675b4e44f260a5666729f77f668e",
  8339. "reference": "89412a68ea2e675b4e44f260a5666729f77f668e",
  8340. "shasum": ""
  8341. },
  8342. "require": {
  8343. "php": ">=7.2.5",
  8344. "symfony/polyfill-mbstring": "~1.0",
  8345. "symfony/polyfill-php80": "^1.15"
  8346. },
  8347. "conflict": {
  8348. "phpunit/phpunit": "<5.4.3",
  8349. "symfony/console": "<4.4"
  8350. },
  8351. "require-dev": {
  8352. "ext-iconv": "*",
  8353. "symfony/console": "^4.4|^5.0",
  8354. "symfony/process": "^4.4|^5.0",
  8355. "twig/twig": "^2.13|^3.0.4"
  8356. },
  8357. "suggest": {
  8358. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8359. "ext-intl": "To show region name in time zone dump",
  8360. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8361. },
  8362. "bin": [
  8363. "Resources/bin/var-dump-server"
  8364. ],
  8365. "type": "library",
  8366. "autoload": {
  8367. "files": [
  8368. "Resources/functions/dump.php"
  8369. ],
  8370. "psr-4": {
  8371. "Symfony\\Component\\VarDumper\\": ""
  8372. },
  8373. "exclude-from-classmap": [
  8374. "/Tests/"
  8375. ]
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "MIT"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "Nicolas Grekas",
  8384. "email": "p@tchwork.com"
  8385. },
  8386. {
  8387. "name": "Symfony Community",
  8388. "homepage": "https://symfony.com/contributors"
  8389. }
  8390. ],
  8391. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8392. "homepage": "https://symfony.com",
  8393. "keywords": [
  8394. "debug",
  8395. "dump"
  8396. ],
  8397. "support": {
  8398. "source": "https://github.com/symfony/var-dumper/tree/v5.2.6"
  8399. },
  8400. "funding": [
  8401. {
  8402. "url": "https://symfony.com/sponsor",
  8403. "type": "custom"
  8404. },
  8405. {
  8406. "url": "https://github.com/fabpot",
  8407. "type": "github"
  8408. },
  8409. {
  8410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8411. "type": "tidelift"
  8412. }
  8413. ],
  8414. "time": "2021-03-28T09:42:18+00:00"
  8415. },
  8416. {
  8417. "name": "symfony/var-exporter",
  8418. "version": "v5.2.4",
  8419. "source": {
  8420. "type": "git",
  8421. "url": "https://github.com/symfony/var-exporter.git",
  8422. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  8423. },
  8424. "dist": {
  8425. "type": "zip",
  8426. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8427. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8428. "shasum": ""
  8429. },
  8430. "require": {
  8431. "php": ">=7.2.5",
  8432. "symfony/polyfill-php80": "^1.15"
  8433. },
  8434. "require-dev": {
  8435. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8436. },
  8437. "type": "library",
  8438. "autoload": {
  8439. "psr-4": {
  8440. "Symfony\\Component\\VarExporter\\": ""
  8441. },
  8442. "exclude-from-classmap": [
  8443. "/Tests/"
  8444. ]
  8445. },
  8446. "notification-url": "https://packagist.org/downloads/",
  8447. "license": [
  8448. "MIT"
  8449. ],
  8450. "authors": [
  8451. {
  8452. "name": "Nicolas Grekas",
  8453. "email": "p@tchwork.com"
  8454. },
  8455. {
  8456. "name": "Symfony Community",
  8457. "homepage": "https://symfony.com/contributors"
  8458. }
  8459. ],
  8460. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8461. "homepage": "https://symfony.com",
  8462. "keywords": [
  8463. "clone",
  8464. "construct",
  8465. "export",
  8466. "hydrate",
  8467. "instantiate",
  8468. "serialize"
  8469. ],
  8470. "support": {
  8471. "source": "https://github.com/symfony/var-exporter/tree/v5.2.4"
  8472. },
  8473. "funding": [
  8474. {
  8475. "url": "https://symfony.com/sponsor",
  8476. "type": "custom"
  8477. },
  8478. {
  8479. "url": "https://github.com/fabpot",
  8480. "type": "github"
  8481. },
  8482. {
  8483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8484. "type": "tidelift"
  8485. }
  8486. ],
  8487. "time": "2021-01-27T10:01:46+00:00"
  8488. },
  8489. {
  8490. "name": "symfony/web-link",
  8491. "version": "v5.2.5",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/symfony/web-link.git",
  8495. "reference": "118ef73c177a033955af1342ec54f08dd1bf6d8e"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/symfony/web-link/zipball/118ef73c177a033955af1342ec54f08dd1bf6d8e",
  8500. "reference": "118ef73c177a033955af1342ec54f08dd1bf6d8e",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "php": ">=7.2.5",
  8505. "psr/link": "^1.0"
  8506. },
  8507. "conflict": {
  8508. "symfony/http-kernel": "<4.4"
  8509. },
  8510. "provide": {
  8511. "psr/link-implementation": "1.0"
  8512. },
  8513. "require-dev": {
  8514. "symfony/http-foundation": "^4.4|^5.0",
  8515. "symfony/http-kernel": "^4.4|^5.0"
  8516. },
  8517. "suggest": {
  8518. "symfony/http-kernel": ""
  8519. },
  8520. "type": "library",
  8521. "autoload": {
  8522. "psr-4": {
  8523. "Symfony\\Component\\WebLink\\": ""
  8524. },
  8525. "exclude-from-classmap": [
  8526. "/Tests/"
  8527. ]
  8528. },
  8529. "notification-url": "https://packagist.org/downloads/",
  8530. "license": [
  8531. "MIT"
  8532. ],
  8533. "authors": [
  8534. {
  8535. "name": "Kévin Dunglas",
  8536. "email": "dunglas@gmail.com"
  8537. },
  8538. {
  8539. "name": "Symfony Community",
  8540. "homepage": "https://symfony.com/contributors"
  8541. }
  8542. ],
  8543. "description": "Manages links between resources",
  8544. "homepage": "https://symfony.com",
  8545. "keywords": [
  8546. "dns-prefetch",
  8547. "http",
  8548. "http2",
  8549. "link",
  8550. "performance",
  8551. "prefetch",
  8552. "preload",
  8553. "prerender",
  8554. "psr13",
  8555. "push"
  8556. ],
  8557. "support": {
  8558. "source": "https://github.com/symfony/web-link/tree/v5.2.5"
  8559. },
  8560. "funding": [
  8561. {
  8562. "url": "https://symfony.com/sponsor",
  8563. "type": "custom"
  8564. },
  8565. {
  8566. "url": "https://github.com/fabpot",
  8567. "type": "github"
  8568. },
  8569. {
  8570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8571. "type": "tidelift"
  8572. }
  8573. ],
  8574. "time": "2021-03-07T15:51:33+00:00"
  8575. },
  8576. {
  8577. "name": "symfony/webpack-encore-bundle",
  8578. "version": "v1.11.1",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8582. "reference": "395b60a549ded8e7f77f0d551815d7555e2d9eb0"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/395b60a549ded8e7f77f0d551815d7555e2d9eb0",
  8587. "reference": "395b60a549ded8e7f77f0d551815d7555e2d9eb0",
  8588. "shasum": ""
  8589. },
  8590. "require": {
  8591. "php": ">=7.1.3",
  8592. "symfony/asset": "^4.4 || ^5.0",
  8593. "symfony/config": "^4.4 || ^5.0",
  8594. "symfony/dependency-injection": "^4.4 || ^5.0",
  8595. "symfony/http-kernel": "^4.4 || ^5.0",
  8596. "symfony/service-contracts": "^1.0 || ^2.0"
  8597. },
  8598. "require-dev": {
  8599. "symfony/framework-bundle": "^4.4 || ^5.0",
  8600. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  8601. "symfony/twig-bundle": "^4.4 || ^5.0",
  8602. "symfony/web-link": "^4.4 || ^5.0"
  8603. },
  8604. "type": "symfony-bundle",
  8605. "extra": {
  8606. "thanks": {
  8607. "name": "symfony/webpack-encore",
  8608. "url": "https://github.com/symfony/webpack-encore"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "Symfony\\WebpackEncoreBundle\\": "src"
  8614. }
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Symfony Community",
  8623. "homepage": "https://symfony.com/contributors"
  8624. }
  8625. ],
  8626. "description": "Integration with your Symfony app & Webpack Encore!",
  8627. "support": {
  8628. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8629. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.11.1"
  8630. },
  8631. "funding": [
  8632. {
  8633. "url": "https://symfony.com/sponsor",
  8634. "type": "custom"
  8635. },
  8636. {
  8637. "url": "https://github.com/fabpot",
  8638. "type": "github"
  8639. },
  8640. {
  8641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8642. "type": "tidelift"
  8643. }
  8644. ],
  8645. "time": "2021-02-17T13:45:51+00:00"
  8646. },
  8647. {
  8648. "name": "symfony/yaml",
  8649. "version": "v5.2.5",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/symfony/yaml.git",
  8653. "reference": "298a08ddda623485208506fcee08817807a251dd"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/symfony/yaml/zipball/298a08ddda623485208506fcee08817807a251dd",
  8658. "reference": "298a08ddda623485208506fcee08817807a251dd",
  8659. "shasum": ""
  8660. },
  8661. "require": {
  8662. "php": ">=7.2.5",
  8663. "symfony/deprecation-contracts": "^2.1",
  8664. "symfony/polyfill-ctype": "~1.8"
  8665. },
  8666. "conflict": {
  8667. "symfony/console": "<4.4"
  8668. },
  8669. "require-dev": {
  8670. "symfony/console": "^4.4|^5.0"
  8671. },
  8672. "suggest": {
  8673. "symfony/console": "For validating YAML files using the lint command"
  8674. },
  8675. "bin": [
  8676. "Resources/bin/yaml-lint"
  8677. ],
  8678. "type": "library",
  8679. "autoload": {
  8680. "psr-4": {
  8681. "Symfony\\Component\\Yaml\\": ""
  8682. },
  8683. "exclude-from-classmap": [
  8684. "/Tests/"
  8685. ]
  8686. },
  8687. "notification-url": "https://packagist.org/downloads/",
  8688. "license": [
  8689. "MIT"
  8690. ],
  8691. "authors": [
  8692. {
  8693. "name": "Fabien Potencier",
  8694. "email": "fabien@symfony.com"
  8695. },
  8696. {
  8697. "name": "Symfony Community",
  8698. "homepage": "https://symfony.com/contributors"
  8699. }
  8700. ],
  8701. "description": "Loads and dumps YAML files",
  8702. "homepage": "https://symfony.com",
  8703. "support": {
  8704. "source": "https://github.com/symfony/yaml/tree/v5.2.5"
  8705. },
  8706. "funding": [
  8707. {
  8708. "url": "https://symfony.com/sponsor",
  8709. "type": "custom"
  8710. },
  8711. {
  8712. "url": "https://github.com/fabpot",
  8713. "type": "github"
  8714. },
  8715. {
  8716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8717. "type": "tidelift"
  8718. }
  8719. ],
  8720. "time": "2021-03-06T07:59:01+00:00"
  8721. },
  8722. {
  8723. "name": "symfonycasts/verify-email-bundle",
  8724. "version": "v1.4.0",
  8725. "source": {
  8726. "type": "git",
  8727. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8728. "reference": "3935f7375b2fa795f349bb4281ba8bcb754f4c91"
  8729. },
  8730. "dist": {
  8731. "type": "zip",
  8732. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/3935f7375b2fa795f349bb4281ba8bcb754f4c91",
  8733. "reference": "3935f7375b2fa795f349bb4281ba8bcb754f4c91",
  8734. "shasum": ""
  8735. },
  8736. "require": {
  8737. "php": ">=7.2.5",
  8738. "symfony/config": "^4.4 | ^5.0",
  8739. "symfony/dependency-injection": "^4.4 | ^5.0",
  8740. "symfony/deprecation-contracts": "^2.2",
  8741. "symfony/http-kernel": "^4.4 | ^5.0",
  8742. "symfony/routing": "^4.4 | ^5.0"
  8743. },
  8744. "conflict": {
  8745. "symfony/framework-bundle": "<4.4"
  8746. },
  8747. "require-dev": {
  8748. "doctrine/orm": "^2.7",
  8749. "doctrine/persistence": "^2.0",
  8750. "friendsofphp/php-cs-fixer": "^2.17",
  8751. "symfony/framework-bundle": "^4.4 | ^5.0",
  8752. "symfony/phpunit-bridge": "^5.0",
  8753. "vimeo/psalm": "^4.3"
  8754. },
  8755. "type": "symfony-bundle",
  8756. "autoload": {
  8757. "psr-4": {
  8758. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8759. }
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "MIT"
  8764. ],
  8765. "description": "Simple, stylish Email Verification for Symfony",
  8766. "support": {
  8767. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  8768. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.4.0"
  8769. },
  8770. "time": "2021-04-12T17:34:34+00:00"
  8771. },
  8772. {
  8773. "name": "tgalopin/html-sanitizer",
  8774. "version": "1.4.0",
  8775. "source": {
  8776. "type": "git",
  8777. "url": "https://github.com/tgalopin/html-sanitizer.git",
  8778. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91"
  8779. },
  8780. "dist": {
  8781. "type": "zip",
  8782. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8783. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8784. "shasum": ""
  8785. },
  8786. "require": {
  8787. "ext-dom": "*",
  8788. "league/uri-parser": "^1.4.1",
  8789. "masterminds/html5": "^2.4",
  8790. "php": ">=7.1",
  8791. "psr/log": "^1.0"
  8792. },
  8793. "require-dev": {
  8794. "phpunit/phpunit": "^7.4",
  8795. "symfony/var-dumper": "^4.1"
  8796. },
  8797. "type": "library",
  8798. "autoload": {
  8799. "psr-4": {
  8800. "HtmlSanitizer\\": "src"
  8801. }
  8802. },
  8803. "notification-url": "https://packagist.org/downloads/",
  8804. "license": [
  8805. "MIT"
  8806. ],
  8807. "authors": [
  8808. {
  8809. "name": "Titouan Galopin",
  8810. "email": "galopintitouan@gmail.com"
  8811. }
  8812. ],
  8813. "description": "Sanitize untrustworthy HTML user input",
  8814. "support": {
  8815. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  8816. "source": "https://github.com/tgalopin/html-sanitizer/tree/master"
  8817. },
  8818. "time": "2020-02-03T16:51:08+00:00"
  8819. },
  8820. {
  8821. "name": "tgalopin/html-sanitizer-bundle",
  8822. "version": "1.3.0",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/tgalopin/html-sanitizer-bundle.git",
  8826. "reference": "87e07cee80136d845a21faa3116982990884a89a"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/tgalopin/html-sanitizer-bundle/zipball/87e07cee80136d845a21faa3116982990884a89a",
  8831. "reference": "87e07cee80136d845a21faa3116982990884a89a",
  8832. "shasum": ""
  8833. },
  8834. "require": {
  8835. "php": ">=7.1",
  8836. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  8837. "tgalopin/html-sanitizer": "^1.1"
  8838. },
  8839. "require-dev": {
  8840. "phpunit/phpunit": "^7.4",
  8841. "symfony/form": "^4.1|^5.0",
  8842. "symfony/twig-bundle": "^4.1|^5.0",
  8843. "symfony/var-dumper": "^4.1|^5.0"
  8844. },
  8845. "type": "symfony-bundle",
  8846. "autoload": {
  8847. "psr-4": {
  8848. "HtmlSanitizer\\Bundle\\": "src"
  8849. }
  8850. },
  8851. "notification-url": "https://packagist.org/downloads/",
  8852. "license": [
  8853. "MIT"
  8854. ],
  8855. "authors": [
  8856. {
  8857. "name": "Titouan Galopin",
  8858. "email": "galopintitouan@gmail.com"
  8859. }
  8860. ],
  8861. "description": "Symfony Bundle for https://github.com/tgalopin/html-sanitizer",
  8862. "support": {
  8863. "issues": "https://github.com/tgalopin/html-sanitizer-bundle/issues",
  8864. "source": "https://github.com/tgalopin/html-sanitizer-bundle/tree/1.3.0"
  8865. },
  8866. "time": "2021-01-27T08:34:58+00:00"
  8867. },
  8868. {
  8869. "name": "twig/extra-bundle",
  8870. "version": "v3.3.0",
  8871. "source": {
  8872. "type": "git",
  8873. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8874. "reference": "e2d27a86c3f47859eb07808fa7c8679d30fcbdde"
  8875. },
  8876. "dist": {
  8877. "type": "zip",
  8878. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/e2d27a86c3f47859eb07808fa7c8679d30fcbdde",
  8879. "reference": "e2d27a86c3f47859eb07808fa7c8679d30fcbdde",
  8880. "shasum": ""
  8881. },
  8882. "require": {
  8883. "php": "^7.1.3|^8.0",
  8884. "symfony/framework-bundle": "^4.3|^5.0",
  8885. "symfony/twig-bundle": "^4.3|^5.0",
  8886. "twig/twig": "^2.4|^3.0"
  8887. },
  8888. "require-dev": {
  8889. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  8890. "twig/cache-extra": "^3.0",
  8891. "twig/cssinliner-extra": "^2.12|^3.0",
  8892. "twig/html-extra": "^2.12|^3.0",
  8893. "twig/inky-extra": "^2.12|^3.0",
  8894. "twig/intl-extra": "^2.12|^3.0",
  8895. "twig/markdown-extra": "^2.12|^3.0",
  8896. "twig/string-extra": "^2.12|^3.0"
  8897. },
  8898. "type": "symfony-bundle",
  8899. "extra": {
  8900. "branch-alias": {
  8901. "dev-master": "3.2-dev"
  8902. }
  8903. },
  8904. "autoload": {
  8905. "psr-4": {
  8906. "Twig\\Extra\\TwigExtraBundle\\": ""
  8907. },
  8908. "exclude-from-classmap": [
  8909. "/Tests/"
  8910. ]
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "MIT"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Fabien Potencier",
  8919. "email": "fabien@symfony.com",
  8920. "homepage": "http://fabien.potencier.org",
  8921. "role": "Lead Developer"
  8922. }
  8923. ],
  8924. "description": "A Symfony bundle for extra Twig extensions",
  8925. "homepage": "https://twig.symfony.com",
  8926. "keywords": [
  8927. "bundle",
  8928. "extra",
  8929. "twig"
  8930. ],
  8931. "support": {
  8932. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.3.0"
  8933. },
  8934. "funding": [
  8935. {
  8936. "url": "https://github.com/fabpot",
  8937. "type": "github"
  8938. },
  8939. {
  8940. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8941. "type": "tidelift"
  8942. }
  8943. ],
  8944. "time": "2021-02-06T21:13:17+00:00"
  8945. },
  8946. {
  8947. "name": "twig/markdown-extra",
  8948. "version": "v3.3.0",
  8949. "source": {
  8950. "type": "git",
  8951. "url": "https://github.com/twigphp/markdown-extra.git",
  8952. "reference": "48142a7727b2b84691f843056346d534933f1d3f"
  8953. },
  8954. "dist": {
  8955. "type": "zip",
  8956. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/48142a7727b2b84691f843056346d534933f1d3f",
  8957. "reference": "48142a7727b2b84691f843056346d534933f1d3f",
  8958. "shasum": ""
  8959. },
  8960. "require": {
  8961. "php": ">=7.1.3",
  8962. "twig/twig": "^2.4|^3.0"
  8963. },
  8964. "require-dev": {
  8965. "erusev/parsedown": "^1.7",
  8966. "league/commonmark": "^1.0",
  8967. "league/html-to-markdown": "^4.8",
  8968. "michelf/php-markdown": "^1.8",
  8969. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8970. },
  8971. "type": "library",
  8972. "extra": {
  8973. "branch-alias": {
  8974. "dev-master": "3.2-dev"
  8975. }
  8976. },
  8977. "autoload": {
  8978. "psr-4": {
  8979. "Twig\\Extra\\Markdown\\": ""
  8980. },
  8981. "exclude-from-classmap": [
  8982. "/Tests/"
  8983. ]
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "MIT"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Fabien Potencier",
  8992. "email": "fabien@symfony.com",
  8993. "homepage": "http://fabien.potencier.org",
  8994. "role": "Lead Developer"
  8995. }
  8996. ],
  8997. "description": "A Twig extension for Markdown",
  8998. "homepage": "https://twig.symfony.com",
  8999. "keywords": [
  9000. "html",
  9001. "markdown",
  9002. "twig"
  9003. ],
  9004. "support": {
  9005. "source": "https://github.com/twigphp/markdown-extra/tree/v3.3.0"
  9006. },
  9007. "funding": [
  9008. {
  9009. "url": "https://github.com/fabpot",
  9010. "type": "github"
  9011. },
  9012. {
  9013. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9014. "type": "tidelift"
  9015. }
  9016. ],
  9017. "time": "2021-01-01T14:58:18+00:00"
  9018. },
  9019. {
  9020. "name": "twig/twig",
  9021. "version": "v3.3.0",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/twigphp/Twig.git",
  9025. "reference": "1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/twigphp/Twig/zipball/1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5",
  9030. "reference": "1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "php": ">=7.2.5",
  9035. "symfony/polyfill-ctype": "^1.8",
  9036. "symfony/polyfill-mbstring": "^1.3"
  9037. },
  9038. "require-dev": {
  9039. "psr/container": "^1.0",
  9040. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  9041. },
  9042. "type": "library",
  9043. "extra": {
  9044. "branch-alias": {
  9045. "dev-master": "3.3-dev"
  9046. }
  9047. },
  9048. "autoload": {
  9049. "psr-4": {
  9050. "Twig\\": "src/"
  9051. }
  9052. },
  9053. "notification-url": "https://packagist.org/downloads/",
  9054. "license": [
  9055. "BSD-3-Clause"
  9056. ],
  9057. "authors": [
  9058. {
  9059. "name": "Fabien Potencier",
  9060. "email": "fabien@symfony.com",
  9061. "homepage": "http://fabien.potencier.org",
  9062. "role": "Lead Developer"
  9063. },
  9064. {
  9065. "name": "Twig Team",
  9066. "role": "Contributors"
  9067. },
  9068. {
  9069. "name": "Armin Ronacher",
  9070. "email": "armin.ronacher@active-4.com",
  9071. "role": "Project Founder"
  9072. }
  9073. ],
  9074. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9075. "homepage": "https://twig.symfony.com",
  9076. "keywords": [
  9077. "templating"
  9078. ],
  9079. "support": {
  9080. "issues": "https://github.com/twigphp/Twig/issues",
  9081. "source": "https://github.com/twigphp/Twig/tree/v3.3.0"
  9082. },
  9083. "funding": [
  9084. {
  9085. "url": "https://github.com/fabpot",
  9086. "type": "github"
  9087. },
  9088. {
  9089. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9090. "type": "tidelift"
  9091. }
  9092. ],
  9093. "time": "2021-02-08T09:54:36+00:00"
  9094. },
  9095. {
  9096. "name": "webmozart/assert",
  9097. "version": "1.10.0",
  9098. "source": {
  9099. "type": "git",
  9100. "url": "https://github.com/webmozarts/assert.git",
  9101. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  9102. },
  9103. "dist": {
  9104. "type": "zip",
  9105. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  9106. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  9107. "shasum": ""
  9108. },
  9109. "require": {
  9110. "php": "^7.2 || ^8.0",
  9111. "symfony/polyfill-ctype": "^1.8"
  9112. },
  9113. "conflict": {
  9114. "phpstan/phpstan": "<0.12.20",
  9115. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9116. },
  9117. "require-dev": {
  9118. "phpunit/phpunit": "^8.5.13"
  9119. },
  9120. "type": "library",
  9121. "extra": {
  9122. "branch-alias": {
  9123. "dev-master": "1.10-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "psr-4": {
  9128. "Webmozart\\Assert\\": "src/"
  9129. }
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "MIT"
  9134. ],
  9135. "authors": [
  9136. {
  9137. "name": "Bernhard Schussek",
  9138. "email": "bschussek@gmail.com"
  9139. }
  9140. ],
  9141. "description": "Assertions to validate method input/output with nice error messages.",
  9142. "keywords": [
  9143. "assert",
  9144. "check",
  9145. "validate"
  9146. ],
  9147. "support": {
  9148. "issues": "https://github.com/webmozarts/assert/issues",
  9149. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  9150. },
  9151. "time": "2021-03-09T10:59:23+00:00"
  9152. },
  9153. {
  9154. "name": "wikimedia/composer-merge-plugin",
  9155. "version": "v2.0.1",
  9156. "source": {
  9157. "type": "git",
  9158. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  9159. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  9160. },
  9161. "dist": {
  9162. "type": "zip",
  9163. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  9164. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  9165. "shasum": ""
  9166. },
  9167. "require": {
  9168. "composer-plugin-api": "^1.1||^2.0",
  9169. "php": ">=7.2.0"
  9170. },
  9171. "require-dev": {
  9172. "composer/composer": "^1.1||^2.0",
  9173. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  9174. "phpunit/phpunit": "^8.5||^9.0",
  9175. "squizlabs/php_codesniffer": "~3.5.4"
  9176. },
  9177. "type": "composer-plugin",
  9178. "extra": {
  9179. "branch-alias": {
  9180. "dev-master": "2.x-dev"
  9181. },
  9182. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  9183. },
  9184. "autoload": {
  9185. "psr-4": {
  9186. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  9187. }
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "MIT"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Bryan Davis",
  9196. "email": "bd808@wikimedia.org"
  9197. }
  9198. ],
  9199. "description": "Composer plugin to merge multiple composer.json files",
  9200. "support": {
  9201. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  9202. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1"
  9203. },
  9204. "time": "2021-02-24T05:28:06+00:00"
  9205. }
  9206. ],
  9207. "packages-dev": [
  9208. {
  9209. "name": "composer/semver",
  9210. "version": "3.2.4",
  9211. "source": {
  9212. "type": "git",
  9213. "url": "https://github.com/composer/semver.git",
  9214. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  9215. },
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  9219. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "php": "^5.3.2 || ^7.0 || ^8.0"
  9224. },
  9225. "require-dev": {
  9226. "phpstan/phpstan": "^0.12.54",
  9227. "symfony/phpunit-bridge": "^4.2 || ^5"
  9228. },
  9229. "type": "library",
  9230. "extra": {
  9231. "branch-alias": {
  9232. "dev-main": "3.x-dev"
  9233. }
  9234. },
  9235. "autoload": {
  9236. "psr-4": {
  9237. "Composer\\Semver\\": "src"
  9238. }
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Nils Adermann",
  9247. "email": "naderman@naderman.de",
  9248. "homepage": "http://www.naderman.de"
  9249. },
  9250. {
  9251. "name": "Jordi Boggiano",
  9252. "email": "j.boggiano@seld.be",
  9253. "homepage": "http://seld.be"
  9254. },
  9255. {
  9256. "name": "Rob Bast",
  9257. "email": "rob.bast@gmail.com",
  9258. "homepage": "http://robbast.nl"
  9259. }
  9260. ],
  9261. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  9262. "keywords": [
  9263. "semantic",
  9264. "semver",
  9265. "validation",
  9266. "versioning"
  9267. ],
  9268. "support": {
  9269. "irc": "irc://irc.freenode.org/composer",
  9270. "issues": "https://github.com/composer/semver/issues",
  9271. "source": "https://github.com/composer/semver/tree/3.2.4"
  9272. },
  9273. "funding": [
  9274. {
  9275. "url": "https://packagist.com",
  9276. "type": "custom"
  9277. },
  9278. {
  9279. "url": "https://github.com/composer",
  9280. "type": "github"
  9281. },
  9282. {
  9283. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9284. "type": "tidelift"
  9285. }
  9286. ],
  9287. "time": "2020-11-13T08:59:24+00:00"
  9288. },
  9289. {
  9290. "name": "composer/xdebug-handler",
  9291. "version": "1.4.6",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/composer/xdebug-handler.git",
  9295. "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
  9300. "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
  9301. "shasum": ""
  9302. },
  9303. "require": {
  9304. "php": "^5.3.2 || ^7.0 || ^8.0",
  9305. "psr/log": "^1.0"
  9306. },
  9307. "require-dev": {
  9308. "phpstan/phpstan": "^0.12.55",
  9309. "symfony/phpunit-bridge": "^4.2 || ^5"
  9310. },
  9311. "type": "library",
  9312. "autoload": {
  9313. "psr-4": {
  9314. "Composer\\XdebugHandler\\": "src"
  9315. }
  9316. },
  9317. "notification-url": "https://packagist.org/downloads/",
  9318. "license": [
  9319. "MIT"
  9320. ],
  9321. "authors": [
  9322. {
  9323. "name": "John Stevenson",
  9324. "email": "john-stevenson@blueyonder.co.uk"
  9325. }
  9326. ],
  9327. "description": "Restarts a process without Xdebug.",
  9328. "keywords": [
  9329. "Xdebug",
  9330. "performance"
  9331. ],
  9332. "support": {
  9333. "irc": "irc://irc.freenode.org/composer",
  9334. "issues": "https://github.com/composer/xdebug-handler/issues",
  9335. "source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
  9336. },
  9337. "funding": [
  9338. {
  9339. "url": "https://packagist.com",
  9340. "type": "custom"
  9341. },
  9342. {
  9343. "url": "https://github.com/composer",
  9344. "type": "github"
  9345. },
  9346. {
  9347. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9348. "type": "tidelift"
  9349. }
  9350. ],
  9351. "time": "2021-03-25T17:01:18+00:00"
  9352. },
  9353. {
  9354. "name": "friendsofphp/php-cs-fixer",
  9355. "version": "v2.18.5",
  9356. "source": {
  9357. "type": "git",
  9358. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  9359. "reference": "e0f6d05c8b157f50029ca6c65c19ed2694f475bf"
  9360. },
  9361. "dist": {
  9362. "type": "zip",
  9363. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/e0f6d05c8b157f50029ca6c65c19ed2694f475bf",
  9364. "reference": "e0f6d05c8b157f50029ca6c65c19ed2694f475bf",
  9365. "shasum": ""
  9366. },
  9367. "require": {
  9368. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  9369. "composer/xdebug-handler": "^1.2",
  9370. "doctrine/annotations": "^1.2",
  9371. "ext-json": "*",
  9372. "ext-tokenizer": "*",
  9373. "php": "^5.6 || ^7.0 || ^8.0",
  9374. "php-cs-fixer/diff": "^1.3",
  9375. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  9376. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  9377. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  9378. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  9379. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  9380. "symfony/polyfill-php70": "^1.0",
  9381. "symfony/polyfill-php72": "^1.4",
  9382. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  9383. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  9384. },
  9385. "require-dev": {
  9386. "justinrainbow/json-schema": "^5.0",
  9387. "keradus/cli-executor": "^1.4",
  9388. "mikey179/vfsstream": "^1.6",
  9389. "php-coveralls/php-coveralls": "^2.4.2",
  9390. "php-cs-fixer/accessible-object": "^1.0",
  9391. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  9392. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  9393. "phpspec/prophecy-phpunit": "^1.1 || ^2.0",
  9394. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.13 || ^9.5",
  9395. "phpunitgoodpractices/polyfill": "^1.5",
  9396. "phpunitgoodpractices/traits": "^1.9.1",
  9397. "sanmai/phpunit-legacy-adapter": "^6.4 || ^8.2.1",
  9398. "symfony/phpunit-bridge": "^5.2.1",
  9399. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  9400. },
  9401. "suggest": {
  9402. "ext-dom": "For handling output formats in XML",
  9403. "ext-mbstring": "For handling non-UTF8 characters.",
  9404. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  9405. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  9406. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  9407. },
  9408. "bin": [
  9409. "php-cs-fixer"
  9410. ],
  9411. "type": "application",
  9412. "autoload": {
  9413. "psr-4": {
  9414. "PhpCsFixer\\": "src/"
  9415. },
  9416. "classmap": [
  9417. "tests/Test/AbstractFixerTestCase.php",
  9418. "tests/Test/AbstractIntegrationCaseFactory.php",
  9419. "tests/Test/AbstractIntegrationTestCase.php",
  9420. "tests/Test/Assert/AssertTokensTrait.php",
  9421. "tests/Test/IntegrationCase.php",
  9422. "tests/Test/IntegrationCaseFactory.php",
  9423. "tests/Test/IntegrationCaseFactoryInterface.php",
  9424. "tests/Test/InternalIntegrationCaseFactory.php",
  9425. "tests/Test/IsIdenticalConstraint.php",
  9426. "tests/Test/TokensWithObservedTransformers.php",
  9427. "tests/TestCase.php"
  9428. ]
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Fabien Potencier",
  9437. "email": "fabien@symfony.com"
  9438. },
  9439. {
  9440. "name": "Dariusz Rumiński",
  9441. "email": "dariusz.ruminski@gmail.com"
  9442. }
  9443. ],
  9444. "description": "A tool to automatically fix PHP code style",
  9445. "support": {
  9446. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  9447. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.18.5"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://github.com/keradus",
  9452. "type": "github"
  9453. }
  9454. ],
  9455. "time": "2021-04-06T18:37:33+00:00"
  9456. },
  9457. {
  9458. "name": "jchook/phpunit-assert-throws",
  9459. "version": "v1.0.3",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/jchook/phpunit-assert-throws.git",
  9463. "reference": "5082114dcaa87aafa21da02b5d0b32e9d3e991a7"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/jchook/phpunit-assert-throws/zipball/5082114dcaa87aafa21da02b5d0b32e9d3e991a7",
  9468. "reference": "5082114dcaa87aafa21da02b5d0b32e9d3e991a7",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "phpunit/phpunit": ">=7.0.0"
  9473. },
  9474. "type": "library",
  9475. "autoload": {
  9476. "psr-4": {
  9477. "Jchook\\AssertThrows\\": "src/"
  9478. }
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Wes Roberts",
  9487. "email": "u36g@a.zinc.email"
  9488. },
  9489. {
  9490. "name": "Librarian",
  9491. "email": "librarians.studios@gmail.com"
  9492. }
  9493. ],
  9494. "description": "Exception assertions for PHPUnit",
  9495. "support": {
  9496. "issues": "https://github.com/jchook/phpunit-assert-throws/issues",
  9497. "source": "https://github.com/jchook/phpunit-assert-throws/tree/v1.0.3"
  9498. },
  9499. "time": "2019-04-13T22:17:20+00:00"
  9500. },
  9501. {
  9502. "name": "myclabs/deep-copy",
  9503. "version": "1.10.2",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/myclabs/DeepCopy.git",
  9507. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9512. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "php": "^7.1 || ^8.0"
  9517. },
  9518. "replace": {
  9519. "myclabs/deep-copy": "self.version"
  9520. },
  9521. "require-dev": {
  9522. "doctrine/collections": "^1.0",
  9523. "doctrine/common": "^2.6",
  9524. "phpunit/phpunit": "^7.1"
  9525. },
  9526. "type": "library",
  9527. "autoload": {
  9528. "psr-4": {
  9529. "DeepCopy\\": "src/DeepCopy/"
  9530. },
  9531. "files": [
  9532. "src/DeepCopy/deep_copy.php"
  9533. ]
  9534. },
  9535. "notification-url": "https://packagist.org/downloads/",
  9536. "license": [
  9537. "MIT"
  9538. ],
  9539. "description": "Create deep copies (clones) of your objects",
  9540. "keywords": [
  9541. "clone",
  9542. "copy",
  9543. "duplicate",
  9544. "object",
  9545. "object graph"
  9546. ],
  9547. "support": {
  9548. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9549. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9554. "type": "tidelift"
  9555. }
  9556. ],
  9557. "time": "2020-11-13T09:40:50+00:00"
  9558. },
  9559. {
  9560. "name": "niels-de-blaauw/php-doc-check",
  9561. "version": "v0.2.2",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/NielsdeBlaauw/php-doc-check.git",
  9565. "reference": "c0262fb76db3ed3f93ae0a2857bf41b695ec3b62"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/NielsdeBlaauw/php-doc-check/zipball/c0262fb76db3ed3f93ae0a2857bf41b695ec3b62",
  9570. "reference": "c0262fb76db3ed3f93ae0a2857bf41b695ec3b62",
  9571. "shasum": ""
  9572. },
  9573. "require": {
  9574. "nikic/php-parser": "^4.2",
  9575. "ulrichsg/getopt-php": "^3.2",
  9576. "wp-cli/php-cli-tools": "^0.11.11"
  9577. },
  9578. "require-dev": {
  9579. "humbug/box": "^3.4",
  9580. "phpmd/phpmd": "^2.6",
  9581. "phpstan/phpstan": "^0.11.1",
  9582. "phpunit/phpunit": "^7.5",
  9583. "squizlabs/php_codesniffer": "^3.4"
  9584. },
  9585. "bin": [
  9586. "bin/php-doc-check"
  9587. ],
  9588. "type": "library",
  9589. "autoload": {
  9590. "psr-4": {
  9591. "NdB\\PhpDocCheck\\": "src"
  9592. }
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "MIT"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Niels de Blaauw",
  9601. "email": "niels.de.blaauw@gmail.com"
  9602. }
  9603. ],
  9604. "description": "Command line tool that identifies code that needs documentation.",
  9605. "support": {
  9606. "issues": "https://github.com/NielsdeBlaauw/php-doc-check/issues",
  9607. "source": "https://github.com/NielsdeBlaauw/php-doc-check/tree/master"
  9608. },
  9609. "time": "2019-02-10T20:38:29+00:00"
  9610. },
  9611. {
  9612. "name": "nikic/php-parser",
  9613. "version": "v4.10.4",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/nikic/PHP-Parser.git",
  9617. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  9622. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "ext-tokenizer": "*",
  9627. "php": ">=7.0"
  9628. },
  9629. "require-dev": {
  9630. "ircmaxell/php-yacc": "^0.0.7",
  9631. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9632. },
  9633. "bin": [
  9634. "bin/php-parse"
  9635. ],
  9636. "type": "library",
  9637. "extra": {
  9638. "branch-alias": {
  9639. "dev-master": "4.9-dev"
  9640. }
  9641. },
  9642. "autoload": {
  9643. "psr-4": {
  9644. "PhpParser\\": "lib/PhpParser"
  9645. }
  9646. },
  9647. "notification-url": "https://packagist.org/downloads/",
  9648. "license": [
  9649. "BSD-3-Clause"
  9650. ],
  9651. "authors": [
  9652. {
  9653. "name": "Nikita Popov"
  9654. }
  9655. ],
  9656. "description": "A PHP parser written in PHP",
  9657. "keywords": [
  9658. "parser",
  9659. "php"
  9660. ],
  9661. "support": {
  9662. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9663. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  9664. },
  9665. "time": "2020-12-20T10:01:03+00:00"
  9666. },
  9667. {
  9668. "name": "phar-io/manifest",
  9669. "version": "2.0.1",
  9670. "source": {
  9671. "type": "git",
  9672. "url": "https://github.com/phar-io/manifest.git",
  9673. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9674. },
  9675. "dist": {
  9676. "type": "zip",
  9677. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9678. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9679. "shasum": ""
  9680. },
  9681. "require": {
  9682. "ext-dom": "*",
  9683. "ext-phar": "*",
  9684. "ext-xmlwriter": "*",
  9685. "phar-io/version": "^3.0.1",
  9686. "php": "^7.2 || ^8.0"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-master": "2.0.x-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "classmap": [
  9696. "src/"
  9697. ]
  9698. },
  9699. "notification-url": "https://packagist.org/downloads/",
  9700. "license": [
  9701. "BSD-3-Clause"
  9702. ],
  9703. "authors": [
  9704. {
  9705. "name": "Arne Blankerts",
  9706. "email": "arne@blankerts.de",
  9707. "role": "Developer"
  9708. },
  9709. {
  9710. "name": "Sebastian Heuer",
  9711. "email": "sebastian@phpeople.de",
  9712. "role": "Developer"
  9713. },
  9714. {
  9715. "name": "Sebastian Bergmann",
  9716. "email": "sebastian@phpunit.de",
  9717. "role": "Developer"
  9718. }
  9719. ],
  9720. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9721. "support": {
  9722. "issues": "https://github.com/phar-io/manifest/issues",
  9723. "source": "https://github.com/phar-io/manifest/tree/master"
  9724. },
  9725. "time": "2020-06-27T14:33:11+00:00"
  9726. },
  9727. {
  9728. "name": "phar-io/version",
  9729. "version": "3.1.0",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/phar-io/version.git",
  9733. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9738. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "php": "^7.2 || ^8.0"
  9743. },
  9744. "type": "library",
  9745. "autoload": {
  9746. "classmap": [
  9747. "src/"
  9748. ]
  9749. },
  9750. "notification-url": "https://packagist.org/downloads/",
  9751. "license": [
  9752. "BSD-3-Clause"
  9753. ],
  9754. "authors": [
  9755. {
  9756. "name": "Arne Blankerts",
  9757. "email": "arne@blankerts.de",
  9758. "role": "Developer"
  9759. },
  9760. {
  9761. "name": "Sebastian Heuer",
  9762. "email": "sebastian@phpeople.de",
  9763. "role": "Developer"
  9764. },
  9765. {
  9766. "name": "Sebastian Bergmann",
  9767. "email": "sebastian@phpunit.de",
  9768. "role": "Developer"
  9769. }
  9770. ],
  9771. "description": "Library for handling version information and constraints",
  9772. "support": {
  9773. "issues": "https://github.com/phar-io/version/issues",
  9774. "source": "https://github.com/phar-io/version/tree/3.1.0"
  9775. },
  9776. "time": "2021-02-23T14:00:09+00:00"
  9777. },
  9778. {
  9779. "name": "php-cs-fixer/diff",
  9780. "version": "v1.3.1",
  9781. "source": {
  9782. "type": "git",
  9783. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  9784. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  9785. },
  9786. "dist": {
  9787. "type": "zip",
  9788. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9789. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9790. "shasum": ""
  9791. },
  9792. "require": {
  9793. "php": "^5.6 || ^7.0 || ^8.0"
  9794. },
  9795. "require-dev": {
  9796. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  9797. "symfony/process": "^3.3"
  9798. },
  9799. "type": "library",
  9800. "autoload": {
  9801. "classmap": [
  9802. "src/"
  9803. ]
  9804. },
  9805. "notification-url": "https://packagist.org/downloads/",
  9806. "license": [
  9807. "BSD-3-Clause"
  9808. ],
  9809. "authors": [
  9810. {
  9811. "name": "Sebastian Bergmann",
  9812. "email": "sebastian@phpunit.de"
  9813. },
  9814. {
  9815. "name": "Kore Nordmann",
  9816. "email": "mail@kore-nordmann.de"
  9817. },
  9818. {
  9819. "name": "SpacePossum"
  9820. }
  9821. ],
  9822. "description": "sebastian/diff v2 backport support for PHP5.6",
  9823. "homepage": "https://github.com/PHP-CS-Fixer",
  9824. "keywords": [
  9825. "diff"
  9826. ],
  9827. "support": {
  9828. "issues": "https://github.com/PHP-CS-Fixer/diff/issues",
  9829. "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1"
  9830. },
  9831. "time": "2020-10-14T08:39:05+00:00"
  9832. },
  9833. {
  9834. "name": "phpspec/prophecy",
  9835. "version": "1.13.0",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/phpspec/prophecy.git",
  9839. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  9844. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  9845. "shasum": ""
  9846. },
  9847. "require": {
  9848. "doctrine/instantiator": "^1.2",
  9849. "php": "^7.2 || ~8.0, <8.1",
  9850. "phpdocumentor/reflection-docblock": "^5.2",
  9851. "sebastian/comparator": "^3.0 || ^4.0",
  9852. "sebastian/recursion-context": "^3.0 || ^4.0"
  9853. },
  9854. "require-dev": {
  9855. "phpspec/phpspec": "^6.0",
  9856. "phpunit/phpunit": "^8.0 || ^9.0"
  9857. },
  9858. "type": "library",
  9859. "extra": {
  9860. "branch-alias": {
  9861. "dev-master": "1.11.x-dev"
  9862. }
  9863. },
  9864. "autoload": {
  9865. "psr-4": {
  9866. "Prophecy\\": "src/Prophecy"
  9867. }
  9868. },
  9869. "notification-url": "https://packagist.org/downloads/",
  9870. "license": [
  9871. "MIT"
  9872. ],
  9873. "authors": [
  9874. {
  9875. "name": "Konstantin Kudryashov",
  9876. "email": "ever.zet@gmail.com",
  9877. "homepage": "http://everzet.com"
  9878. },
  9879. {
  9880. "name": "Marcello Duarte",
  9881. "email": "marcello.duarte@gmail.com"
  9882. }
  9883. ],
  9884. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9885. "homepage": "https://github.com/phpspec/prophecy",
  9886. "keywords": [
  9887. "Double",
  9888. "Dummy",
  9889. "fake",
  9890. "mock",
  9891. "spy",
  9892. "stub"
  9893. ],
  9894. "support": {
  9895. "issues": "https://github.com/phpspec/prophecy/issues",
  9896. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  9897. },
  9898. "time": "2021-03-17T13:42:18+00:00"
  9899. },
  9900. {
  9901. "name": "phpunit/php-code-coverage",
  9902. "version": "9.2.6",
  9903. "source": {
  9904. "type": "git",
  9905. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9906. "reference": "f6293e1b30a2354e8428e004689671b83871edde"
  9907. },
  9908. "dist": {
  9909. "type": "zip",
  9910. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
  9911. "reference": "f6293e1b30a2354e8428e004689671b83871edde",
  9912. "shasum": ""
  9913. },
  9914. "require": {
  9915. "ext-dom": "*",
  9916. "ext-libxml": "*",
  9917. "ext-xmlwriter": "*",
  9918. "nikic/php-parser": "^4.10.2",
  9919. "php": ">=7.3",
  9920. "phpunit/php-file-iterator": "^3.0.3",
  9921. "phpunit/php-text-template": "^2.0.2",
  9922. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9923. "sebastian/complexity": "^2.0",
  9924. "sebastian/environment": "^5.1.2",
  9925. "sebastian/lines-of-code": "^1.0.3",
  9926. "sebastian/version": "^3.0.1",
  9927. "theseer/tokenizer": "^1.2.0"
  9928. },
  9929. "require-dev": {
  9930. "phpunit/phpunit": "^9.3"
  9931. },
  9932. "suggest": {
  9933. "ext-pcov": "*",
  9934. "ext-xdebug": "*"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-master": "9.2-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "classmap": [
  9944. "src/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "BSD-3-Clause"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Sebastian Bergmann",
  9954. "email": "sebastian@phpunit.de",
  9955. "role": "lead"
  9956. }
  9957. ],
  9958. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9959. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9960. "keywords": [
  9961. "coverage",
  9962. "testing",
  9963. "xunit"
  9964. ],
  9965. "support": {
  9966. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9967. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
  9968. },
  9969. "funding": [
  9970. {
  9971. "url": "https://github.com/sebastianbergmann",
  9972. "type": "github"
  9973. }
  9974. ],
  9975. "time": "2021-03-28T07:26:59+00:00"
  9976. },
  9977. {
  9978. "name": "phpunit/php-file-iterator",
  9979. "version": "3.0.5",
  9980. "source": {
  9981. "type": "git",
  9982. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9983. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9984. },
  9985. "dist": {
  9986. "type": "zip",
  9987. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9988. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9989. "shasum": ""
  9990. },
  9991. "require": {
  9992. "php": ">=7.3"
  9993. },
  9994. "require-dev": {
  9995. "phpunit/phpunit": "^9.3"
  9996. },
  9997. "type": "library",
  9998. "extra": {
  9999. "branch-alias": {
  10000. "dev-master": "3.0-dev"
  10001. }
  10002. },
  10003. "autoload": {
  10004. "classmap": [
  10005. "src/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "BSD-3-Clause"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Sebastian Bergmann",
  10015. "email": "sebastian@phpunit.de",
  10016. "role": "lead"
  10017. }
  10018. ],
  10019. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10020. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10021. "keywords": [
  10022. "filesystem",
  10023. "iterator"
  10024. ],
  10025. "support": {
  10026. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10027. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10028. },
  10029. "funding": [
  10030. {
  10031. "url": "https://github.com/sebastianbergmann",
  10032. "type": "github"
  10033. }
  10034. ],
  10035. "time": "2020-09-28T05:57:25+00:00"
  10036. },
  10037. {
  10038. "name": "phpunit/php-invoker",
  10039. "version": "3.1.1",
  10040. "source": {
  10041. "type": "git",
  10042. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10043. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10044. },
  10045. "dist": {
  10046. "type": "zip",
  10047. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10048. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10049. "shasum": ""
  10050. },
  10051. "require": {
  10052. "php": ">=7.3"
  10053. },
  10054. "require-dev": {
  10055. "ext-pcntl": "*",
  10056. "phpunit/phpunit": "^9.3"
  10057. },
  10058. "suggest": {
  10059. "ext-pcntl": "*"
  10060. },
  10061. "type": "library",
  10062. "extra": {
  10063. "branch-alias": {
  10064. "dev-master": "3.1-dev"
  10065. }
  10066. },
  10067. "autoload": {
  10068. "classmap": [
  10069. "src/"
  10070. ]
  10071. },
  10072. "notification-url": "https://packagist.org/downloads/",
  10073. "license": [
  10074. "BSD-3-Clause"
  10075. ],
  10076. "authors": [
  10077. {
  10078. "name": "Sebastian Bergmann",
  10079. "email": "sebastian@phpunit.de",
  10080. "role": "lead"
  10081. }
  10082. ],
  10083. "description": "Invoke callables with a timeout",
  10084. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10085. "keywords": [
  10086. "process"
  10087. ],
  10088. "support": {
  10089. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10090. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10091. },
  10092. "funding": [
  10093. {
  10094. "url": "https://github.com/sebastianbergmann",
  10095. "type": "github"
  10096. }
  10097. ],
  10098. "time": "2020-09-28T05:58:55+00:00"
  10099. },
  10100. {
  10101. "name": "phpunit/php-text-template",
  10102. "version": "2.0.4",
  10103. "source": {
  10104. "type": "git",
  10105. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10106. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10107. },
  10108. "dist": {
  10109. "type": "zip",
  10110. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10111. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10112. "shasum": ""
  10113. },
  10114. "require": {
  10115. "php": ">=7.3"
  10116. },
  10117. "require-dev": {
  10118. "phpunit/phpunit": "^9.3"
  10119. },
  10120. "type": "library",
  10121. "extra": {
  10122. "branch-alias": {
  10123. "dev-master": "2.0-dev"
  10124. }
  10125. },
  10126. "autoload": {
  10127. "classmap": [
  10128. "src/"
  10129. ]
  10130. },
  10131. "notification-url": "https://packagist.org/downloads/",
  10132. "license": [
  10133. "BSD-3-Clause"
  10134. ],
  10135. "authors": [
  10136. {
  10137. "name": "Sebastian Bergmann",
  10138. "email": "sebastian@phpunit.de",
  10139. "role": "lead"
  10140. }
  10141. ],
  10142. "description": "Simple template engine.",
  10143. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10144. "keywords": [
  10145. "template"
  10146. ],
  10147. "support": {
  10148. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10149. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10150. },
  10151. "funding": [
  10152. {
  10153. "url": "https://github.com/sebastianbergmann",
  10154. "type": "github"
  10155. }
  10156. ],
  10157. "time": "2020-10-26T05:33:50+00:00"
  10158. },
  10159. {
  10160. "name": "phpunit/php-timer",
  10161. "version": "5.0.3",
  10162. "source": {
  10163. "type": "git",
  10164. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10165. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10166. },
  10167. "dist": {
  10168. "type": "zip",
  10169. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10170. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10171. "shasum": ""
  10172. },
  10173. "require": {
  10174. "php": ">=7.3"
  10175. },
  10176. "require-dev": {
  10177. "phpunit/phpunit": "^9.3"
  10178. },
  10179. "type": "library",
  10180. "extra": {
  10181. "branch-alias": {
  10182. "dev-master": "5.0-dev"
  10183. }
  10184. },
  10185. "autoload": {
  10186. "classmap": [
  10187. "src/"
  10188. ]
  10189. },
  10190. "notification-url": "https://packagist.org/downloads/",
  10191. "license": [
  10192. "BSD-3-Clause"
  10193. ],
  10194. "authors": [
  10195. {
  10196. "name": "Sebastian Bergmann",
  10197. "email": "sebastian@phpunit.de",
  10198. "role": "lead"
  10199. }
  10200. ],
  10201. "description": "Utility class for timing",
  10202. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10203. "keywords": [
  10204. "timer"
  10205. ],
  10206. "support": {
  10207. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10208. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10209. },
  10210. "funding": [
  10211. {
  10212. "url": "https://github.com/sebastianbergmann",
  10213. "type": "github"
  10214. }
  10215. ],
  10216. "time": "2020-10-26T13:16:10+00:00"
  10217. },
  10218. {
  10219. "name": "phpunit/phpunit",
  10220. "version": "9.5.4",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10224. "reference": "c73c6737305e779771147af66c96ca6a7ed8a741"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741",
  10229. "reference": "c73c6737305e779771147af66c96ca6a7ed8a741",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "doctrine/instantiator": "^1.3.1",
  10234. "ext-dom": "*",
  10235. "ext-json": "*",
  10236. "ext-libxml": "*",
  10237. "ext-mbstring": "*",
  10238. "ext-xml": "*",
  10239. "ext-xmlwriter": "*",
  10240. "myclabs/deep-copy": "^1.10.1",
  10241. "phar-io/manifest": "^2.0.1",
  10242. "phar-io/version": "^3.0.2",
  10243. "php": ">=7.3",
  10244. "phpspec/prophecy": "^1.12.1",
  10245. "phpunit/php-code-coverage": "^9.2.3",
  10246. "phpunit/php-file-iterator": "^3.0.5",
  10247. "phpunit/php-invoker": "^3.1.1",
  10248. "phpunit/php-text-template": "^2.0.3",
  10249. "phpunit/php-timer": "^5.0.2",
  10250. "sebastian/cli-parser": "^1.0.1",
  10251. "sebastian/code-unit": "^1.0.6",
  10252. "sebastian/comparator": "^4.0.5",
  10253. "sebastian/diff": "^4.0.3",
  10254. "sebastian/environment": "^5.1.3",
  10255. "sebastian/exporter": "^4.0.3",
  10256. "sebastian/global-state": "^5.0.1",
  10257. "sebastian/object-enumerator": "^4.0.3",
  10258. "sebastian/resource-operations": "^3.0.3",
  10259. "sebastian/type": "^2.3",
  10260. "sebastian/version": "^3.0.2"
  10261. },
  10262. "require-dev": {
  10263. "ext-pdo": "*",
  10264. "phpspec/prophecy-phpunit": "^2.0.1"
  10265. },
  10266. "suggest": {
  10267. "ext-soap": "*",
  10268. "ext-xdebug": "*"
  10269. },
  10270. "bin": [
  10271. "phpunit"
  10272. ],
  10273. "type": "library",
  10274. "extra": {
  10275. "branch-alias": {
  10276. "dev-master": "9.5-dev"
  10277. }
  10278. },
  10279. "autoload": {
  10280. "classmap": [
  10281. "src/"
  10282. ],
  10283. "files": [
  10284. "src/Framework/Assert/Functions.php"
  10285. ]
  10286. },
  10287. "notification-url": "https://packagist.org/downloads/",
  10288. "license": [
  10289. "BSD-3-Clause"
  10290. ],
  10291. "authors": [
  10292. {
  10293. "name": "Sebastian Bergmann",
  10294. "email": "sebastian@phpunit.de",
  10295. "role": "lead"
  10296. }
  10297. ],
  10298. "description": "The PHP Unit Testing framework.",
  10299. "homepage": "https://phpunit.de/",
  10300. "keywords": [
  10301. "phpunit",
  10302. "testing",
  10303. "xunit"
  10304. ],
  10305. "support": {
  10306. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10307. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4"
  10308. },
  10309. "funding": [
  10310. {
  10311. "url": "https://phpunit.de/donate.html",
  10312. "type": "custom"
  10313. },
  10314. {
  10315. "url": "https://github.com/sebastianbergmann",
  10316. "type": "github"
  10317. }
  10318. ],
  10319. "time": "2021-03-23T07:16:29+00:00"
  10320. },
  10321. {
  10322. "name": "sebastian/cli-parser",
  10323. "version": "1.0.1",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10327. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10332. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10333. "shasum": ""
  10334. },
  10335. "require": {
  10336. "php": ">=7.3"
  10337. },
  10338. "require-dev": {
  10339. "phpunit/phpunit": "^9.3"
  10340. },
  10341. "type": "library",
  10342. "extra": {
  10343. "branch-alias": {
  10344. "dev-master": "1.0-dev"
  10345. }
  10346. },
  10347. "autoload": {
  10348. "classmap": [
  10349. "src/"
  10350. ]
  10351. },
  10352. "notification-url": "https://packagist.org/downloads/",
  10353. "license": [
  10354. "BSD-3-Clause"
  10355. ],
  10356. "authors": [
  10357. {
  10358. "name": "Sebastian Bergmann",
  10359. "email": "sebastian@phpunit.de",
  10360. "role": "lead"
  10361. }
  10362. ],
  10363. "description": "Library for parsing CLI options",
  10364. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10365. "support": {
  10366. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10367. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10368. },
  10369. "funding": [
  10370. {
  10371. "url": "https://github.com/sebastianbergmann",
  10372. "type": "github"
  10373. }
  10374. ],
  10375. "time": "2020-09-28T06:08:49+00:00"
  10376. },
  10377. {
  10378. "name": "sebastian/code-unit",
  10379. "version": "1.0.8",
  10380. "source": {
  10381. "type": "git",
  10382. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10383. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10384. },
  10385. "dist": {
  10386. "type": "zip",
  10387. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10388. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10389. "shasum": ""
  10390. },
  10391. "require": {
  10392. "php": ">=7.3"
  10393. },
  10394. "require-dev": {
  10395. "phpunit/phpunit": "^9.3"
  10396. },
  10397. "type": "library",
  10398. "extra": {
  10399. "branch-alias": {
  10400. "dev-master": "1.0-dev"
  10401. }
  10402. },
  10403. "autoload": {
  10404. "classmap": [
  10405. "src/"
  10406. ]
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "BSD-3-Clause"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "Sebastian Bergmann",
  10415. "email": "sebastian@phpunit.de",
  10416. "role": "lead"
  10417. }
  10418. ],
  10419. "description": "Collection of value objects that represent the PHP code units",
  10420. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10421. "support": {
  10422. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10423. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10424. },
  10425. "funding": [
  10426. {
  10427. "url": "https://github.com/sebastianbergmann",
  10428. "type": "github"
  10429. }
  10430. ],
  10431. "time": "2020-10-26T13:08:54+00:00"
  10432. },
  10433. {
  10434. "name": "sebastian/code-unit-reverse-lookup",
  10435. "version": "2.0.3",
  10436. "source": {
  10437. "type": "git",
  10438. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10439. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10440. },
  10441. "dist": {
  10442. "type": "zip",
  10443. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10444. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10445. "shasum": ""
  10446. },
  10447. "require": {
  10448. "php": ">=7.3"
  10449. },
  10450. "require-dev": {
  10451. "phpunit/phpunit": "^9.3"
  10452. },
  10453. "type": "library",
  10454. "extra": {
  10455. "branch-alias": {
  10456. "dev-master": "2.0-dev"
  10457. }
  10458. },
  10459. "autoload": {
  10460. "classmap": [
  10461. "src/"
  10462. ]
  10463. },
  10464. "notification-url": "https://packagist.org/downloads/",
  10465. "license": [
  10466. "BSD-3-Clause"
  10467. ],
  10468. "authors": [
  10469. {
  10470. "name": "Sebastian Bergmann",
  10471. "email": "sebastian@phpunit.de"
  10472. }
  10473. ],
  10474. "description": "Looks up which function or method a line of code belongs to",
  10475. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10476. "support": {
  10477. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10478. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10479. },
  10480. "funding": [
  10481. {
  10482. "url": "https://github.com/sebastianbergmann",
  10483. "type": "github"
  10484. }
  10485. ],
  10486. "time": "2020-09-28T05:30:19+00:00"
  10487. },
  10488. {
  10489. "name": "sebastian/comparator",
  10490. "version": "4.0.6",
  10491. "source": {
  10492. "type": "git",
  10493. "url": "https://github.com/sebastianbergmann/comparator.git",
  10494. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10495. },
  10496. "dist": {
  10497. "type": "zip",
  10498. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10499. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10500. "shasum": ""
  10501. },
  10502. "require": {
  10503. "php": ">=7.3",
  10504. "sebastian/diff": "^4.0",
  10505. "sebastian/exporter": "^4.0"
  10506. },
  10507. "require-dev": {
  10508. "phpunit/phpunit": "^9.3"
  10509. },
  10510. "type": "library",
  10511. "extra": {
  10512. "branch-alias": {
  10513. "dev-master": "4.0-dev"
  10514. }
  10515. },
  10516. "autoload": {
  10517. "classmap": [
  10518. "src/"
  10519. ]
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "BSD-3-Clause"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Sebastian Bergmann",
  10528. "email": "sebastian@phpunit.de"
  10529. },
  10530. {
  10531. "name": "Jeff Welch",
  10532. "email": "whatthejeff@gmail.com"
  10533. },
  10534. {
  10535. "name": "Volker Dusch",
  10536. "email": "github@wallbash.com"
  10537. },
  10538. {
  10539. "name": "Bernhard Schussek",
  10540. "email": "bschussek@2bepublished.at"
  10541. }
  10542. ],
  10543. "description": "Provides the functionality to compare PHP values for equality",
  10544. "homepage": "https://github.com/sebastianbergmann/comparator",
  10545. "keywords": [
  10546. "comparator",
  10547. "compare",
  10548. "equality"
  10549. ],
  10550. "support": {
  10551. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10552. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10553. },
  10554. "funding": [
  10555. {
  10556. "url": "https://github.com/sebastianbergmann",
  10557. "type": "github"
  10558. }
  10559. ],
  10560. "time": "2020-10-26T15:49:45+00:00"
  10561. },
  10562. {
  10563. "name": "sebastian/complexity",
  10564. "version": "2.0.2",
  10565. "source": {
  10566. "type": "git",
  10567. "url": "https://github.com/sebastianbergmann/complexity.git",
  10568. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10569. },
  10570. "dist": {
  10571. "type": "zip",
  10572. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10573. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10574. "shasum": ""
  10575. },
  10576. "require": {
  10577. "nikic/php-parser": "^4.7",
  10578. "php": ">=7.3"
  10579. },
  10580. "require-dev": {
  10581. "phpunit/phpunit": "^9.3"
  10582. },
  10583. "type": "library",
  10584. "extra": {
  10585. "branch-alias": {
  10586. "dev-master": "2.0-dev"
  10587. }
  10588. },
  10589. "autoload": {
  10590. "classmap": [
  10591. "src/"
  10592. ]
  10593. },
  10594. "notification-url": "https://packagist.org/downloads/",
  10595. "license": [
  10596. "BSD-3-Clause"
  10597. ],
  10598. "authors": [
  10599. {
  10600. "name": "Sebastian Bergmann",
  10601. "email": "sebastian@phpunit.de",
  10602. "role": "lead"
  10603. }
  10604. ],
  10605. "description": "Library for calculating the complexity of PHP code units",
  10606. "homepage": "https://github.com/sebastianbergmann/complexity",
  10607. "support": {
  10608. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10609. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10610. },
  10611. "funding": [
  10612. {
  10613. "url": "https://github.com/sebastianbergmann",
  10614. "type": "github"
  10615. }
  10616. ],
  10617. "time": "2020-10-26T15:52:27+00:00"
  10618. },
  10619. {
  10620. "name": "sebastian/diff",
  10621. "version": "4.0.4",
  10622. "source": {
  10623. "type": "git",
  10624. "url": "https://github.com/sebastianbergmann/diff.git",
  10625. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10626. },
  10627. "dist": {
  10628. "type": "zip",
  10629. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10630. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10631. "shasum": ""
  10632. },
  10633. "require": {
  10634. "php": ">=7.3"
  10635. },
  10636. "require-dev": {
  10637. "phpunit/phpunit": "^9.3",
  10638. "symfony/process": "^4.2 || ^5"
  10639. },
  10640. "type": "library",
  10641. "extra": {
  10642. "branch-alias": {
  10643. "dev-master": "4.0-dev"
  10644. }
  10645. },
  10646. "autoload": {
  10647. "classmap": [
  10648. "src/"
  10649. ]
  10650. },
  10651. "notification-url": "https://packagist.org/downloads/",
  10652. "license": [
  10653. "BSD-3-Clause"
  10654. ],
  10655. "authors": [
  10656. {
  10657. "name": "Sebastian Bergmann",
  10658. "email": "sebastian@phpunit.de"
  10659. },
  10660. {
  10661. "name": "Kore Nordmann",
  10662. "email": "mail@kore-nordmann.de"
  10663. }
  10664. ],
  10665. "description": "Diff implementation",
  10666. "homepage": "https://github.com/sebastianbergmann/diff",
  10667. "keywords": [
  10668. "diff",
  10669. "udiff",
  10670. "unidiff",
  10671. "unified diff"
  10672. ],
  10673. "support": {
  10674. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10675. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10676. },
  10677. "funding": [
  10678. {
  10679. "url": "https://github.com/sebastianbergmann",
  10680. "type": "github"
  10681. }
  10682. ],
  10683. "time": "2020-10-26T13:10:38+00:00"
  10684. },
  10685. {
  10686. "name": "sebastian/environment",
  10687. "version": "5.1.3",
  10688. "source": {
  10689. "type": "git",
  10690. "url": "https://github.com/sebastianbergmann/environment.git",
  10691. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10692. },
  10693. "dist": {
  10694. "type": "zip",
  10695. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10696. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10697. "shasum": ""
  10698. },
  10699. "require": {
  10700. "php": ">=7.3"
  10701. },
  10702. "require-dev": {
  10703. "phpunit/phpunit": "^9.3"
  10704. },
  10705. "suggest": {
  10706. "ext-posix": "*"
  10707. },
  10708. "type": "library",
  10709. "extra": {
  10710. "branch-alias": {
  10711. "dev-master": "5.1-dev"
  10712. }
  10713. },
  10714. "autoload": {
  10715. "classmap": [
  10716. "src/"
  10717. ]
  10718. },
  10719. "notification-url": "https://packagist.org/downloads/",
  10720. "license": [
  10721. "BSD-3-Clause"
  10722. ],
  10723. "authors": [
  10724. {
  10725. "name": "Sebastian Bergmann",
  10726. "email": "sebastian@phpunit.de"
  10727. }
  10728. ],
  10729. "description": "Provides functionality to handle HHVM/PHP environments",
  10730. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10731. "keywords": [
  10732. "Xdebug",
  10733. "environment",
  10734. "hhvm"
  10735. ],
  10736. "support": {
  10737. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10738. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10739. },
  10740. "funding": [
  10741. {
  10742. "url": "https://github.com/sebastianbergmann",
  10743. "type": "github"
  10744. }
  10745. ],
  10746. "time": "2020-09-28T05:52:38+00:00"
  10747. },
  10748. {
  10749. "name": "sebastian/exporter",
  10750. "version": "4.0.3",
  10751. "source": {
  10752. "type": "git",
  10753. "url": "https://github.com/sebastianbergmann/exporter.git",
  10754. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10755. },
  10756. "dist": {
  10757. "type": "zip",
  10758. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10759. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10760. "shasum": ""
  10761. },
  10762. "require": {
  10763. "php": ">=7.3",
  10764. "sebastian/recursion-context": "^4.0"
  10765. },
  10766. "require-dev": {
  10767. "ext-mbstring": "*",
  10768. "phpunit/phpunit": "^9.3"
  10769. },
  10770. "type": "library",
  10771. "extra": {
  10772. "branch-alias": {
  10773. "dev-master": "4.0-dev"
  10774. }
  10775. },
  10776. "autoload": {
  10777. "classmap": [
  10778. "src/"
  10779. ]
  10780. },
  10781. "notification-url": "https://packagist.org/downloads/",
  10782. "license": [
  10783. "BSD-3-Clause"
  10784. ],
  10785. "authors": [
  10786. {
  10787. "name": "Sebastian Bergmann",
  10788. "email": "sebastian@phpunit.de"
  10789. },
  10790. {
  10791. "name": "Jeff Welch",
  10792. "email": "whatthejeff@gmail.com"
  10793. },
  10794. {
  10795. "name": "Volker Dusch",
  10796. "email": "github@wallbash.com"
  10797. },
  10798. {
  10799. "name": "Adam Harvey",
  10800. "email": "aharvey@php.net"
  10801. },
  10802. {
  10803. "name": "Bernhard Schussek",
  10804. "email": "bschussek@gmail.com"
  10805. }
  10806. ],
  10807. "description": "Provides the functionality to export PHP variables for visualization",
  10808. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10809. "keywords": [
  10810. "export",
  10811. "exporter"
  10812. ],
  10813. "support": {
  10814. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10815. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10816. },
  10817. "funding": [
  10818. {
  10819. "url": "https://github.com/sebastianbergmann",
  10820. "type": "github"
  10821. }
  10822. ],
  10823. "time": "2020-09-28T05:24:23+00:00"
  10824. },
  10825. {
  10826. "name": "sebastian/global-state",
  10827. "version": "5.0.2",
  10828. "source": {
  10829. "type": "git",
  10830. "url": "https://github.com/sebastianbergmann/global-state.git",
  10831. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10832. },
  10833. "dist": {
  10834. "type": "zip",
  10835. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10836. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10837. "shasum": ""
  10838. },
  10839. "require": {
  10840. "php": ">=7.3",
  10841. "sebastian/object-reflector": "^2.0",
  10842. "sebastian/recursion-context": "^4.0"
  10843. },
  10844. "require-dev": {
  10845. "ext-dom": "*",
  10846. "phpunit/phpunit": "^9.3"
  10847. },
  10848. "suggest": {
  10849. "ext-uopz": "*"
  10850. },
  10851. "type": "library",
  10852. "extra": {
  10853. "branch-alias": {
  10854. "dev-master": "5.0-dev"
  10855. }
  10856. },
  10857. "autoload": {
  10858. "classmap": [
  10859. "src/"
  10860. ]
  10861. },
  10862. "notification-url": "https://packagist.org/downloads/",
  10863. "license": [
  10864. "BSD-3-Clause"
  10865. ],
  10866. "authors": [
  10867. {
  10868. "name": "Sebastian Bergmann",
  10869. "email": "sebastian@phpunit.de"
  10870. }
  10871. ],
  10872. "description": "Snapshotting of global state",
  10873. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10874. "keywords": [
  10875. "global state"
  10876. ],
  10877. "support": {
  10878. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10879. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10880. },
  10881. "funding": [
  10882. {
  10883. "url": "https://github.com/sebastianbergmann",
  10884. "type": "github"
  10885. }
  10886. ],
  10887. "time": "2020-10-26T15:55:19+00:00"
  10888. },
  10889. {
  10890. "name": "sebastian/lines-of-code",
  10891. "version": "1.0.3",
  10892. "source": {
  10893. "type": "git",
  10894. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10895. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10896. },
  10897. "dist": {
  10898. "type": "zip",
  10899. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10900. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10901. "shasum": ""
  10902. },
  10903. "require": {
  10904. "nikic/php-parser": "^4.6",
  10905. "php": ">=7.3"
  10906. },
  10907. "require-dev": {
  10908. "phpunit/phpunit": "^9.3"
  10909. },
  10910. "type": "library",
  10911. "extra": {
  10912. "branch-alias": {
  10913. "dev-master": "1.0-dev"
  10914. }
  10915. },
  10916. "autoload": {
  10917. "classmap": [
  10918. "src/"
  10919. ]
  10920. },
  10921. "notification-url": "https://packagist.org/downloads/",
  10922. "license": [
  10923. "BSD-3-Clause"
  10924. ],
  10925. "authors": [
  10926. {
  10927. "name": "Sebastian Bergmann",
  10928. "email": "sebastian@phpunit.de",
  10929. "role": "lead"
  10930. }
  10931. ],
  10932. "description": "Library for counting the lines of code in PHP source code",
  10933. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10934. "support": {
  10935. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10936. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10937. },
  10938. "funding": [
  10939. {
  10940. "url": "https://github.com/sebastianbergmann",
  10941. "type": "github"
  10942. }
  10943. ],
  10944. "time": "2020-11-28T06:42:11+00:00"
  10945. },
  10946. {
  10947. "name": "sebastian/object-enumerator",
  10948. "version": "4.0.4",
  10949. "source": {
  10950. "type": "git",
  10951. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10952. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10953. },
  10954. "dist": {
  10955. "type": "zip",
  10956. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10957. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10958. "shasum": ""
  10959. },
  10960. "require": {
  10961. "php": ">=7.3",
  10962. "sebastian/object-reflector": "^2.0",
  10963. "sebastian/recursion-context": "^4.0"
  10964. },
  10965. "require-dev": {
  10966. "phpunit/phpunit": "^9.3"
  10967. },
  10968. "type": "library",
  10969. "extra": {
  10970. "branch-alias": {
  10971. "dev-master": "4.0-dev"
  10972. }
  10973. },
  10974. "autoload": {
  10975. "classmap": [
  10976. "src/"
  10977. ]
  10978. },
  10979. "notification-url": "https://packagist.org/downloads/",
  10980. "license": [
  10981. "BSD-3-Clause"
  10982. ],
  10983. "authors": [
  10984. {
  10985. "name": "Sebastian Bergmann",
  10986. "email": "sebastian@phpunit.de"
  10987. }
  10988. ],
  10989. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10990. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10991. "support": {
  10992. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10993. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10994. },
  10995. "funding": [
  10996. {
  10997. "url": "https://github.com/sebastianbergmann",
  10998. "type": "github"
  10999. }
  11000. ],
  11001. "time": "2020-10-26T13:12:34+00:00"
  11002. },
  11003. {
  11004. "name": "sebastian/object-reflector",
  11005. "version": "2.0.4",
  11006. "source": {
  11007. "type": "git",
  11008. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11009. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11010. },
  11011. "dist": {
  11012. "type": "zip",
  11013. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11014. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11015. "shasum": ""
  11016. },
  11017. "require": {
  11018. "php": ">=7.3"
  11019. },
  11020. "require-dev": {
  11021. "phpunit/phpunit": "^9.3"
  11022. },
  11023. "type": "library",
  11024. "extra": {
  11025. "branch-alias": {
  11026. "dev-master": "2.0-dev"
  11027. }
  11028. },
  11029. "autoload": {
  11030. "classmap": [
  11031. "src/"
  11032. ]
  11033. },
  11034. "notification-url": "https://packagist.org/downloads/",
  11035. "license": [
  11036. "BSD-3-Clause"
  11037. ],
  11038. "authors": [
  11039. {
  11040. "name": "Sebastian Bergmann",
  11041. "email": "sebastian@phpunit.de"
  11042. }
  11043. ],
  11044. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11045. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11046. "support": {
  11047. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11048. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11049. },
  11050. "funding": [
  11051. {
  11052. "url": "https://github.com/sebastianbergmann",
  11053. "type": "github"
  11054. }
  11055. ],
  11056. "time": "2020-10-26T13:14:26+00:00"
  11057. },
  11058. {
  11059. "name": "sebastian/recursion-context",
  11060. "version": "4.0.4",
  11061. "source": {
  11062. "type": "git",
  11063. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11064. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11065. },
  11066. "dist": {
  11067. "type": "zip",
  11068. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11069. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11070. "shasum": ""
  11071. },
  11072. "require": {
  11073. "php": ">=7.3"
  11074. },
  11075. "require-dev": {
  11076. "phpunit/phpunit": "^9.3"
  11077. },
  11078. "type": "library",
  11079. "extra": {
  11080. "branch-alias": {
  11081. "dev-master": "4.0-dev"
  11082. }
  11083. },
  11084. "autoload": {
  11085. "classmap": [
  11086. "src/"
  11087. ]
  11088. },
  11089. "notification-url": "https://packagist.org/downloads/",
  11090. "license": [
  11091. "BSD-3-Clause"
  11092. ],
  11093. "authors": [
  11094. {
  11095. "name": "Sebastian Bergmann",
  11096. "email": "sebastian@phpunit.de"
  11097. },
  11098. {
  11099. "name": "Jeff Welch",
  11100. "email": "whatthejeff@gmail.com"
  11101. },
  11102. {
  11103. "name": "Adam Harvey",
  11104. "email": "aharvey@php.net"
  11105. }
  11106. ],
  11107. "description": "Provides functionality to recursively process PHP variables",
  11108. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11109. "support": {
  11110. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11111. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11112. },
  11113. "funding": [
  11114. {
  11115. "url": "https://github.com/sebastianbergmann",
  11116. "type": "github"
  11117. }
  11118. ],
  11119. "time": "2020-10-26T13:17:30+00:00"
  11120. },
  11121. {
  11122. "name": "sebastian/resource-operations",
  11123. "version": "3.0.3",
  11124. "source": {
  11125. "type": "git",
  11126. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11127. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11128. },
  11129. "dist": {
  11130. "type": "zip",
  11131. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11132. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11133. "shasum": ""
  11134. },
  11135. "require": {
  11136. "php": ">=7.3"
  11137. },
  11138. "require-dev": {
  11139. "phpunit/phpunit": "^9.0"
  11140. },
  11141. "type": "library",
  11142. "extra": {
  11143. "branch-alias": {
  11144. "dev-master": "3.0-dev"
  11145. }
  11146. },
  11147. "autoload": {
  11148. "classmap": [
  11149. "src/"
  11150. ]
  11151. },
  11152. "notification-url": "https://packagist.org/downloads/",
  11153. "license": [
  11154. "BSD-3-Clause"
  11155. ],
  11156. "authors": [
  11157. {
  11158. "name": "Sebastian Bergmann",
  11159. "email": "sebastian@phpunit.de"
  11160. }
  11161. ],
  11162. "description": "Provides a list of PHP built-in functions that operate on resources",
  11163. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11164. "support": {
  11165. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11166. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11167. },
  11168. "funding": [
  11169. {
  11170. "url": "https://github.com/sebastianbergmann",
  11171. "type": "github"
  11172. }
  11173. ],
  11174. "time": "2020-09-28T06:45:17+00:00"
  11175. },
  11176. {
  11177. "name": "sebastian/type",
  11178. "version": "2.3.1",
  11179. "source": {
  11180. "type": "git",
  11181. "url": "https://github.com/sebastianbergmann/type.git",
  11182. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11183. },
  11184. "dist": {
  11185. "type": "zip",
  11186. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11187. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11188. "shasum": ""
  11189. },
  11190. "require": {
  11191. "php": ">=7.3"
  11192. },
  11193. "require-dev": {
  11194. "phpunit/phpunit": "^9.3"
  11195. },
  11196. "type": "library",
  11197. "extra": {
  11198. "branch-alias": {
  11199. "dev-master": "2.3-dev"
  11200. }
  11201. },
  11202. "autoload": {
  11203. "classmap": [
  11204. "src/"
  11205. ]
  11206. },
  11207. "notification-url": "https://packagist.org/downloads/",
  11208. "license": [
  11209. "BSD-3-Clause"
  11210. ],
  11211. "authors": [
  11212. {
  11213. "name": "Sebastian Bergmann",
  11214. "email": "sebastian@phpunit.de",
  11215. "role": "lead"
  11216. }
  11217. ],
  11218. "description": "Collection of value objects that represent the types of the PHP type system",
  11219. "homepage": "https://github.com/sebastianbergmann/type",
  11220. "support": {
  11221. "issues": "https://github.com/sebastianbergmann/type/issues",
  11222. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11223. },
  11224. "funding": [
  11225. {
  11226. "url": "https://github.com/sebastianbergmann",
  11227. "type": "github"
  11228. }
  11229. ],
  11230. "time": "2020-10-26T13:18:59+00:00"
  11231. },
  11232. {
  11233. "name": "sebastian/version",
  11234. "version": "3.0.2",
  11235. "source": {
  11236. "type": "git",
  11237. "url": "https://github.com/sebastianbergmann/version.git",
  11238. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11239. },
  11240. "dist": {
  11241. "type": "zip",
  11242. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11243. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11244. "shasum": ""
  11245. },
  11246. "require": {
  11247. "php": ">=7.3"
  11248. },
  11249. "type": "library",
  11250. "extra": {
  11251. "branch-alias": {
  11252. "dev-master": "3.0-dev"
  11253. }
  11254. },
  11255. "autoload": {
  11256. "classmap": [
  11257. "src/"
  11258. ]
  11259. },
  11260. "notification-url": "https://packagist.org/downloads/",
  11261. "license": [
  11262. "BSD-3-Clause"
  11263. ],
  11264. "authors": [
  11265. {
  11266. "name": "Sebastian Bergmann",
  11267. "email": "sebastian@phpunit.de",
  11268. "role": "lead"
  11269. }
  11270. ],
  11271. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11272. "homepage": "https://github.com/sebastianbergmann/version",
  11273. "support": {
  11274. "issues": "https://github.com/sebastianbergmann/version/issues",
  11275. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11276. },
  11277. "funding": [
  11278. {
  11279. "url": "https://github.com/sebastianbergmann",
  11280. "type": "github"
  11281. }
  11282. ],
  11283. "time": "2020-09-28T06:39:44+00:00"
  11284. },
  11285. {
  11286. "name": "symfony/browser-kit",
  11287. "version": "v5.2.4",
  11288. "source": {
  11289. "type": "git",
  11290. "url": "https://github.com/symfony/browser-kit.git",
  11291. "reference": "3ca3a57ce9860318b20a924fec5daf5c6db44d93"
  11292. },
  11293. "dist": {
  11294. "type": "zip",
  11295. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/3ca3a57ce9860318b20a924fec5daf5c6db44d93",
  11296. "reference": "3ca3a57ce9860318b20a924fec5daf5c6db44d93",
  11297. "shasum": ""
  11298. },
  11299. "require": {
  11300. "php": ">=7.2.5",
  11301. "symfony/dom-crawler": "^4.4|^5.0"
  11302. },
  11303. "require-dev": {
  11304. "symfony/css-selector": "^4.4|^5.0",
  11305. "symfony/http-client": "^4.4|^5.0",
  11306. "symfony/mime": "^4.4|^5.0",
  11307. "symfony/process": "^4.4|^5.0"
  11308. },
  11309. "suggest": {
  11310. "symfony/process": ""
  11311. },
  11312. "type": "library",
  11313. "autoload": {
  11314. "psr-4": {
  11315. "Symfony\\Component\\BrowserKit\\": ""
  11316. },
  11317. "exclude-from-classmap": [
  11318. "/Tests/"
  11319. ]
  11320. },
  11321. "notification-url": "https://packagist.org/downloads/",
  11322. "license": [
  11323. "MIT"
  11324. ],
  11325. "authors": [
  11326. {
  11327. "name": "Fabien Potencier",
  11328. "email": "fabien@symfony.com"
  11329. },
  11330. {
  11331. "name": "Symfony Community",
  11332. "homepage": "https://symfony.com/contributors"
  11333. }
  11334. ],
  11335. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  11336. "homepage": "https://symfony.com",
  11337. "support": {
  11338. "source": "https://github.com/symfony/browser-kit/tree/v5.2.4"
  11339. },
  11340. "funding": [
  11341. {
  11342. "url": "https://symfony.com/sponsor",
  11343. "type": "custom"
  11344. },
  11345. {
  11346. "url": "https://github.com/fabpot",
  11347. "type": "github"
  11348. },
  11349. {
  11350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11351. "type": "tidelift"
  11352. }
  11353. ],
  11354. "time": "2021-02-22T06:48:33+00:00"
  11355. },
  11356. {
  11357. "name": "symfony/css-selector",
  11358. "version": "v5.2.4",
  11359. "source": {
  11360. "type": "git",
  11361. "url": "https://github.com/symfony/css-selector.git",
  11362. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  11363. },
  11364. "dist": {
  11365. "type": "zip",
  11366. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  11367. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  11368. "shasum": ""
  11369. },
  11370. "require": {
  11371. "php": ">=7.2.5"
  11372. },
  11373. "type": "library",
  11374. "autoload": {
  11375. "psr-4": {
  11376. "Symfony\\Component\\CssSelector\\": ""
  11377. },
  11378. "exclude-from-classmap": [
  11379. "/Tests/"
  11380. ]
  11381. },
  11382. "notification-url": "https://packagist.org/downloads/",
  11383. "license": [
  11384. "MIT"
  11385. ],
  11386. "authors": [
  11387. {
  11388. "name": "Fabien Potencier",
  11389. "email": "fabien@symfony.com"
  11390. },
  11391. {
  11392. "name": "Jean-François Simon",
  11393. "email": "jeanfrancois.simon@sensiolabs.com"
  11394. },
  11395. {
  11396. "name": "Symfony Community",
  11397. "homepage": "https://symfony.com/contributors"
  11398. }
  11399. ],
  11400. "description": "Converts CSS selectors to XPath expressions",
  11401. "homepage": "https://symfony.com",
  11402. "support": {
  11403. "source": "https://github.com/symfony/css-selector/tree/v5.2.4"
  11404. },
  11405. "funding": [
  11406. {
  11407. "url": "https://symfony.com/sponsor",
  11408. "type": "custom"
  11409. },
  11410. {
  11411. "url": "https://github.com/fabpot",
  11412. "type": "github"
  11413. },
  11414. {
  11415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11416. "type": "tidelift"
  11417. }
  11418. ],
  11419. "time": "2021-01-27T10:01:46+00:00"
  11420. },
  11421. {
  11422. "name": "symfony/debug-bundle",
  11423. "version": "v5.2.4",
  11424. "source": {
  11425. "type": "git",
  11426. "url": "https://github.com/symfony/debug-bundle.git",
  11427. "reference": "ec21bd26d24dab02ac40e4bec362b3f4032486e8"
  11428. },
  11429. "dist": {
  11430. "type": "zip",
  11431. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/ec21bd26d24dab02ac40e4bec362b3f4032486e8",
  11432. "reference": "ec21bd26d24dab02ac40e4bec362b3f4032486e8",
  11433. "shasum": ""
  11434. },
  11435. "require": {
  11436. "ext-xml": "*",
  11437. "php": ">=7.2.5",
  11438. "symfony/http-kernel": "^4.4|^5.0",
  11439. "symfony/twig-bridge": "^4.4|^5.0",
  11440. "symfony/var-dumper": "^4.4|^5.0"
  11441. },
  11442. "conflict": {
  11443. "symfony/config": "<4.4",
  11444. "symfony/dependency-injection": "<5.2"
  11445. },
  11446. "require-dev": {
  11447. "symfony/config": "^4.4|^5.0",
  11448. "symfony/dependency-injection": "^4.4|^5.0",
  11449. "symfony/web-profiler-bundle": "^4.4|^5.0"
  11450. },
  11451. "suggest": {
  11452. "symfony/config": "For service container configuration",
  11453. "symfony/dependency-injection": "For using as a service from the container"
  11454. },
  11455. "type": "symfony-bundle",
  11456. "autoload": {
  11457. "psr-4": {
  11458. "Symfony\\Bundle\\DebugBundle\\": ""
  11459. },
  11460. "exclude-from-classmap": [
  11461. "/Tests/"
  11462. ]
  11463. },
  11464. "notification-url": "https://packagist.org/downloads/",
  11465. "license": [
  11466. "MIT"
  11467. ],
  11468. "authors": [
  11469. {
  11470. "name": "Fabien Potencier",
  11471. "email": "fabien@symfony.com"
  11472. },
  11473. {
  11474. "name": "Symfony Community",
  11475. "homepage": "https://symfony.com/contributors"
  11476. }
  11477. ],
  11478. "description": "Provides a tight integration of the Symfony Debug component into the Symfony full-stack framework",
  11479. "homepage": "https://symfony.com",
  11480. "support": {
  11481. "source": "https://github.com/symfony/debug-bundle/tree/v5.2.4"
  11482. },
  11483. "funding": [
  11484. {
  11485. "url": "https://symfony.com/sponsor",
  11486. "type": "custom"
  11487. },
  11488. {
  11489. "url": "https://github.com/fabpot",
  11490. "type": "github"
  11491. },
  11492. {
  11493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11494. "type": "tidelift"
  11495. }
  11496. ],
  11497. "time": "2021-01-10T16:30:10+00:00"
  11498. },
  11499. {
  11500. "name": "symfony/debug-pack",
  11501. "version": "v1.0.9",
  11502. "source": {
  11503. "type": "git",
  11504. "url": "https://github.com/symfony/debug-pack.git",
  11505. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342"
  11506. },
  11507. "dist": {
  11508. "type": "zip",
  11509. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/cfd5093378e9cafe500f05c777a22fe8a64a9342",
  11510. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342",
  11511. "shasum": ""
  11512. },
  11513. "require": {
  11514. "symfony/debug-bundle": "*",
  11515. "symfony/monolog-bundle": "^3.0",
  11516. "symfony/profiler-pack": "*",
  11517. "symfony/var-dumper": "*"
  11518. },
  11519. "type": "symfony-pack",
  11520. "notification-url": "https://packagist.org/downloads/",
  11521. "license": [
  11522. "MIT"
  11523. ],
  11524. "description": "A debug pack for Symfony projects",
  11525. "support": {
  11526. "issues": "https://github.com/symfony/debug-pack/issues",
  11527. "source": "https://github.com/symfony/debug-pack/tree/v1.0.9"
  11528. },
  11529. "funding": [
  11530. {
  11531. "url": "https://symfony.com/sponsor",
  11532. "type": "custom"
  11533. },
  11534. {
  11535. "url": "https://github.com/fabpot",
  11536. "type": "github"
  11537. },
  11538. {
  11539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11540. "type": "tidelift"
  11541. }
  11542. ],
  11543. "time": "2020-10-19T08:51:51+00:00"
  11544. },
  11545. {
  11546. "name": "symfony/dom-crawler",
  11547. "version": "v5.2.4",
  11548. "source": {
  11549. "type": "git",
  11550. "url": "https://github.com/symfony/dom-crawler.git",
  11551. "reference": "400e265163f65aceee7e904ef532e15228de674b"
  11552. },
  11553. "dist": {
  11554. "type": "zip",
  11555. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/400e265163f65aceee7e904ef532e15228de674b",
  11556. "reference": "400e265163f65aceee7e904ef532e15228de674b",
  11557. "shasum": ""
  11558. },
  11559. "require": {
  11560. "php": ">=7.2.5",
  11561. "symfony/polyfill-ctype": "~1.8",
  11562. "symfony/polyfill-mbstring": "~1.0",
  11563. "symfony/polyfill-php80": "^1.15"
  11564. },
  11565. "conflict": {
  11566. "masterminds/html5": "<2.6"
  11567. },
  11568. "require-dev": {
  11569. "masterminds/html5": "^2.6",
  11570. "symfony/css-selector": "^4.4|^5.0"
  11571. },
  11572. "suggest": {
  11573. "symfony/css-selector": ""
  11574. },
  11575. "type": "library",
  11576. "autoload": {
  11577. "psr-4": {
  11578. "Symfony\\Component\\DomCrawler\\": ""
  11579. },
  11580. "exclude-from-classmap": [
  11581. "/Tests/"
  11582. ]
  11583. },
  11584. "notification-url": "https://packagist.org/downloads/",
  11585. "license": [
  11586. "MIT"
  11587. ],
  11588. "authors": [
  11589. {
  11590. "name": "Fabien Potencier",
  11591. "email": "fabien@symfony.com"
  11592. },
  11593. {
  11594. "name": "Symfony Community",
  11595. "homepage": "https://symfony.com/contributors"
  11596. }
  11597. ],
  11598. "description": "Eases DOM navigation for HTML and XML documents",
  11599. "homepage": "https://symfony.com",
  11600. "support": {
  11601. "source": "https://github.com/symfony/dom-crawler/tree/v5.2.4"
  11602. },
  11603. "funding": [
  11604. {
  11605. "url": "https://symfony.com/sponsor",
  11606. "type": "custom"
  11607. },
  11608. {
  11609. "url": "https://github.com/fabpot",
  11610. "type": "github"
  11611. },
  11612. {
  11613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11614. "type": "tidelift"
  11615. }
  11616. ],
  11617. "time": "2021-02-15T18:55:04+00:00"
  11618. },
  11619. {
  11620. "name": "symfony/maker-bundle",
  11621. "version": "v1.30.2",
  11622. "source": {
  11623. "type": "git",
  11624. "url": "https://github.com/symfony/maker-bundle.git",
  11625. "reference": "a395a85aa4ded6c1fa3da118d60329b64b6c2acd"
  11626. },
  11627. "dist": {
  11628. "type": "zip",
  11629. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a395a85aa4ded6c1fa3da118d60329b64b6c2acd",
  11630. "reference": "a395a85aa4ded6c1fa3da118d60329b64b6c2acd",
  11631. "shasum": ""
  11632. },
  11633. "require": {
  11634. "doctrine/inflector": "^1.2|^2.0",
  11635. "nikic/php-parser": "^4.0",
  11636. "php": ">=7.1.3",
  11637. "symfony/config": "^4.0|^5.0",
  11638. "symfony/console": "^4.0|^5.0",
  11639. "symfony/dependency-injection": "^4.0|^5.0",
  11640. "symfony/deprecation-contracts": "^2.2",
  11641. "symfony/filesystem": "^4.0|^5.0",
  11642. "symfony/finder": "^4.0|^5.0",
  11643. "symfony/framework-bundle": "^4.0|^5.0",
  11644. "symfony/http-kernel": "^4.0|^5.0"
  11645. },
  11646. "require-dev": {
  11647. "composer/semver": "^3.0@dev",
  11648. "doctrine/doctrine-bundle": "^1.8|^2.0",
  11649. "doctrine/orm": "^2.3",
  11650. "friendsofphp/php-cs-fixer": "^2.8",
  11651. "friendsoftwig/twigcs": "^4.1.0|^5.0.0",
  11652. "symfony/http-client": "^4.3|^5.0",
  11653. "symfony/phpunit-bridge": "^4.3|^5.0",
  11654. "symfony/process": "^4.0|^5.0",
  11655. "symfony/security-core": "^4.0|^5.0",
  11656. "symfony/yaml": "^4.0|^5.0"
  11657. },
  11658. "type": "symfony-bundle",
  11659. "extra": {
  11660. "branch-alias": {
  11661. "dev-main": "1.0-dev"
  11662. }
  11663. },
  11664. "autoload": {
  11665. "psr-4": {
  11666. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11667. }
  11668. },
  11669. "notification-url": "https://packagist.org/downloads/",
  11670. "license": [
  11671. "MIT"
  11672. ],
  11673. "authors": [
  11674. {
  11675. "name": "Symfony Community",
  11676. "homepage": "https://symfony.com/contributors"
  11677. }
  11678. ],
  11679. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11680. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11681. "keywords": [
  11682. "code generator",
  11683. "generator",
  11684. "scaffold",
  11685. "scaffolding"
  11686. ],
  11687. "support": {
  11688. "issues": "https://github.com/symfony/maker-bundle/issues",
  11689. "source": "https://github.com/symfony/maker-bundle/tree/v1.30.2"
  11690. },
  11691. "funding": [
  11692. {
  11693. "url": "https://symfony.com/sponsor",
  11694. "type": "custom"
  11695. },
  11696. {
  11697. "url": "https://github.com/fabpot",
  11698. "type": "github"
  11699. },
  11700. {
  11701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11702. "type": "tidelift"
  11703. }
  11704. ],
  11705. "time": "2021-03-23T13:53:38+00:00"
  11706. },
  11707. {
  11708. "name": "symfony/phpunit-bridge",
  11709. "version": "v5.2.6",
  11710. "source": {
  11711. "type": "git",
  11712. "url": "https://github.com/symfony/phpunit-bridge.git",
  11713. "reference": "f2f94fd78379cdcdef09dd5025af791301913968"
  11714. },
  11715. "dist": {
  11716. "type": "zip",
  11717. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/f2f94fd78379cdcdef09dd5025af791301913968",
  11718. "reference": "f2f94fd78379cdcdef09dd5025af791301913968",
  11719. "shasum": ""
  11720. },
  11721. "require": {
  11722. "php": ">=5.5.9"
  11723. },
  11724. "conflict": {
  11725. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  11726. },
  11727. "require-dev": {
  11728. "symfony/deprecation-contracts": "^2.1",
  11729. "symfony/error-handler": "^4.4|^5.0"
  11730. },
  11731. "suggest": {
  11732. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11733. },
  11734. "bin": [
  11735. "bin/simple-phpunit"
  11736. ],
  11737. "type": "symfony-bridge",
  11738. "extra": {
  11739. "thanks": {
  11740. "name": "phpunit/phpunit",
  11741. "url": "https://github.com/sebastianbergmann/phpunit"
  11742. }
  11743. },
  11744. "autoload": {
  11745. "files": [
  11746. "bootstrap.php"
  11747. ],
  11748. "psr-4": {
  11749. "Symfony\\Bridge\\PhpUnit\\": ""
  11750. },
  11751. "exclude-from-classmap": [
  11752. "/Tests/"
  11753. ]
  11754. },
  11755. "notification-url": "https://packagist.org/downloads/",
  11756. "license": [
  11757. "MIT"
  11758. ],
  11759. "authors": [
  11760. {
  11761. "name": "Nicolas Grekas",
  11762. "email": "p@tchwork.com"
  11763. },
  11764. {
  11765. "name": "Symfony Community",
  11766. "homepage": "https://symfony.com/contributors"
  11767. }
  11768. ],
  11769. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  11770. "homepage": "https://symfony.com",
  11771. "support": {
  11772. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.2.6"
  11773. },
  11774. "funding": [
  11775. {
  11776. "url": "https://symfony.com/sponsor",
  11777. "type": "custom"
  11778. },
  11779. {
  11780. "url": "https://github.com/fabpot",
  11781. "type": "github"
  11782. },
  11783. {
  11784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11785. "type": "tidelift"
  11786. }
  11787. ],
  11788. "time": "2021-03-23T20:42:04+00:00"
  11789. },
  11790. {
  11791. "name": "symfony/profiler-pack",
  11792. "version": "v1.0.5",
  11793. "source": {
  11794. "type": "git",
  11795. "url": "https://github.com/symfony/profiler-pack.git",
  11796. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7"
  11797. },
  11798. "dist": {
  11799. "type": "zip",
  11800. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/29ec66471082b4eb068db11eb4f0a48c277653f7",
  11801. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7",
  11802. "shasum": ""
  11803. },
  11804. "require": {
  11805. "symfony/stopwatch": "*",
  11806. "symfony/twig-bundle": "*",
  11807. "symfony/web-profiler-bundle": "*"
  11808. },
  11809. "type": "symfony-pack",
  11810. "notification-url": "https://packagist.org/downloads/",
  11811. "license": [
  11812. "MIT"
  11813. ],
  11814. "description": "A pack for the Symfony web profiler",
  11815. "support": {
  11816. "issues": "https://github.com/symfony/profiler-pack/issues",
  11817. "source": "https://github.com/symfony/profiler-pack/tree/v1.0.5"
  11818. },
  11819. "funding": [
  11820. {
  11821. "url": "https://symfony.com/sponsor",
  11822. "type": "custom"
  11823. },
  11824. {
  11825. "url": "https://github.com/fabpot",
  11826. "type": "github"
  11827. },
  11828. {
  11829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11830. "type": "tidelift"
  11831. }
  11832. ],
  11833. "time": "2020-08-12T06:50:46+00:00"
  11834. },
  11835. {
  11836. "name": "symfony/test-pack",
  11837. "version": "v1.0.7",
  11838. "source": {
  11839. "type": "git",
  11840. "url": "https://github.com/symfony/test-pack.git",
  11841. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c"
  11842. },
  11843. "dist": {
  11844. "type": "zip",
  11845. "url": "https://api.github.com/repos/symfony/test-pack/zipball/e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  11846. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  11847. "shasum": ""
  11848. },
  11849. "require": {
  11850. "symfony/browser-kit": "*",
  11851. "symfony/css-selector": "*",
  11852. "symfony/phpunit-bridge": "*"
  11853. },
  11854. "type": "symfony-pack",
  11855. "notification-url": "https://packagist.org/downloads/",
  11856. "license": [
  11857. "MIT"
  11858. ],
  11859. "description": "A pack for functional and end-to-end testing within a Symfony app",
  11860. "support": {
  11861. "issues": "https://github.com/symfony/test-pack/issues",
  11862. "source": "https://github.com/symfony/test-pack/tree/v1.0.7"
  11863. },
  11864. "funding": [
  11865. {
  11866. "url": "https://symfony.com/sponsor",
  11867. "type": "custom"
  11868. },
  11869. {
  11870. "url": "https://github.com/fabpot",
  11871. "type": "github"
  11872. },
  11873. {
  11874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11875. "type": "tidelift"
  11876. }
  11877. ],
  11878. "time": "2020-10-19T08:52:28+00:00"
  11879. },
  11880. {
  11881. "name": "symfony/web-profiler-bundle",
  11882. "version": "v5.2.6",
  11883. "source": {
  11884. "type": "git",
  11885. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11886. "reference": "58e5be2aa69041ff35250537190d9ec29136782a"
  11887. },
  11888. "dist": {
  11889. "type": "zip",
  11890. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/58e5be2aa69041ff35250537190d9ec29136782a",
  11891. "reference": "58e5be2aa69041ff35250537190d9ec29136782a",
  11892. "shasum": ""
  11893. },
  11894. "require": {
  11895. "php": ">=7.2.5",
  11896. "symfony/config": "^4.4|^5.0",
  11897. "symfony/framework-bundle": "^5.1",
  11898. "symfony/http-kernel": "^5.2",
  11899. "symfony/routing": "^4.4|^5.0",
  11900. "symfony/twig-bundle": "^4.4|^5.0",
  11901. "twig/twig": "^2.13|^3.0.4"
  11902. },
  11903. "conflict": {
  11904. "symfony/dependency-injection": "<5.2",
  11905. "symfony/form": "<4.4",
  11906. "symfony/messenger": "<4.4"
  11907. },
  11908. "require-dev": {
  11909. "symfony/browser-kit": "^4.4|^5.0",
  11910. "symfony/console": "^4.4|^5.0",
  11911. "symfony/css-selector": "^4.4|^5.0",
  11912. "symfony/stopwatch": "^4.4|^5.0"
  11913. },
  11914. "type": "symfony-bundle",
  11915. "autoload": {
  11916. "psr-4": {
  11917. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11918. },
  11919. "exclude-from-classmap": [
  11920. "/Tests/"
  11921. ]
  11922. },
  11923. "notification-url": "https://packagist.org/downloads/",
  11924. "license": [
  11925. "MIT"
  11926. ],
  11927. "authors": [
  11928. {
  11929. "name": "Fabien Potencier",
  11930. "email": "fabien@symfony.com"
  11931. },
  11932. {
  11933. "name": "Symfony Community",
  11934. "homepage": "https://symfony.com/contributors"
  11935. }
  11936. ],
  11937. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11938. "homepage": "https://symfony.com",
  11939. "support": {
  11940. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.2.6"
  11941. },
  11942. "funding": [
  11943. {
  11944. "url": "https://symfony.com/sponsor",
  11945. "type": "custom"
  11946. },
  11947. {
  11948. "url": "https://github.com/fabpot",
  11949. "type": "github"
  11950. },
  11951. {
  11952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11953. "type": "tidelift"
  11954. }
  11955. ],
  11956. "time": "2021-03-16T09:10:13+00:00"
  11957. },
  11958. {
  11959. "name": "theseer/tokenizer",
  11960. "version": "1.2.0",
  11961. "source": {
  11962. "type": "git",
  11963. "url": "https://github.com/theseer/tokenizer.git",
  11964. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11965. },
  11966. "dist": {
  11967. "type": "zip",
  11968. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11969. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11970. "shasum": ""
  11971. },
  11972. "require": {
  11973. "ext-dom": "*",
  11974. "ext-tokenizer": "*",
  11975. "ext-xmlwriter": "*",
  11976. "php": "^7.2 || ^8.0"
  11977. },
  11978. "type": "library",
  11979. "autoload": {
  11980. "classmap": [
  11981. "src/"
  11982. ]
  11983. },
  11984. "notification-url": "https://packagist.org/downloads/",
  11985. "license": [
  11986. "BSD-3-Clause"
  11987. ],
  11988. "authors": [
  11989. {
  11990. "name": "Arne Blankerts",
  11991. "email": "arne@blankerts.de",
  11992. "role": "Developer"
  11993. }
  11994. ],
  11995. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11996. "support": {
  11997. "issues": "https://github.com/theseer/tokenizer/issues",
  11998. "source": "https://github.com/theseer/tokenizer/tree/master"
  11999. },
  12000. "funding": [
  12001. {
  12002. "url": "https://github.com/theseer",
  12003. "type": "github"
  12004. }
  12005. ],
  12006. "time": "2020-07-12T23:59:07+00:00"
  12007. },
  12008. {
  12009. "name": "ulrichsg/getopt-php",
  12010. "version": "v3.4.0",
  12011. "source": {
  12012. "type": "git",
  12013. "url": "https://github.com/getopt-php/getopt-php.git",
  12014. "reference": "9121d7c2c51a6a59ee407c49a13b4d8cfae71075"
  12015. },
  12016. "dist": {
  12017. "type": "zip",
  12018. "url": "https://api.github.com/repos/getopt-php/getopt-php/zipball/9121d7c2c51a6a59ee407c49a13b4d8cfae71075",
  12019. "reference": "9121d7c2c51a6a59ee407c49a13b4d8cfae71075",
  12020. "shasum": ""
  12021. },
  12022. "require": {
  12023. "ext-mbstring": "*",
  12024. "php": ">=5.4.0"
  12025. },
  12026. "require-dev": {
  12027. "phpunit/phpunit": "^4.8",
  12028. "squizlabs/php_codesniffer": "^2.7"
  12029. },
  12030. "type": "library",
  12031. "autoload": {
  12032. "psr-4": {
  12033. "GetOpt\\": "src"
  12034. }
  12035. },
  12036. "notification-url": "https://packagist.org/downloads/",
  12037. "license": [
  12038. "MIT"
  12039. ],
  12040. "authors": [
  12041. {
  12042. "name": "Ulrich Schmidt-Goertz",
  12043. "email": "ulrich@schmidt-goertz.de"
  12044. },
  12045. {
  12046. "name": "Thomas Flori",
  12047. "email": "thflori@gmail.com"
  12048. }
  12049. ],
  12050. "description": "Command line arguments parser for PHP 5.4 - 7.3",
  12051. "homepage": "http://getopt-php.github.io/getopt-php",
  12052. "support": {
  12053. "issues": "https://github.com/getopt-php/getopt-php/issues",
  12054. "source": "https://github.com/getopt-php/getopt-php/tree/v3.4.0"
  12055. },
  12056. "time": "2020-07-14T06:09:04+00:00"
  12057. },
  12058. {
  12059. "name": "wp-cli/php-cli-tools",
  12060. "version": "v0.11.12",
  12061. "source": {
  12062. "type": "git",
  12063. "url": "https://github.com/wp-cli/php-cli-tools.git",
  12064. "reference": "e472e08489f7504d9e8c5c5a057e1419cd1b2b3e"
  12065. },
  12066. "dist": {
  12067. "type": "zip",
  12068. "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/e472e08489f7504d9e8c5c5a057e1419cd1b2b3e",
  12069. "reference": "e472e08489f7504d9e8c5c5a057e1419cd1b2b3e",
  12070. "shasum": ""
  12071. },
  12072. "require": {
  12073. "php": ">= 5.3.0"
  12074. },
  12075. "type": "library",
  12076. "autoload": {
  12077. "psr-0": {
  12078. "cli": "lib/"
  12079. },
  12080. "files": [
  12081. "lib/cli/cli.php"
  12082. ]
  12083. },
  12084. "notification-url": "https://packagist.org/downloads/",
  12085. "license": [
  12086. "MIT"
  12087. ],
  12088. "authors": [
  12089. {
  12090. "name": "Daniel Bachhuber",
  12091. "email": "daniel@handbuilt.co",
  12092. "role": "Maintainer"
  12093. },
  12094. {
  12095. "name": "James Logsdon",
  12096. "email": "jlogsdon@php.net",
  12097. "role": "Developer"
  12098. }
  12099. ],
  12100. "description": "Console utilities for PHP",
  12101. "homepage": "http://github.com/wp-cli/php-cli-tools",
  12102. "keywords": [
  12103. "cli",
  12104. "console"
  12105. ],
  12106. "support": {
  12107. "issues": "https://github.com/wp-cli/php-cli-tools/issues",
  12108. "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.12"
  12109. },
  12110. "time": "2021-03-03T12:43:49+00:00"
  12111. }
  12112. ],
  12113. "aliases": [],
  12114. "minimum-stability": "stable",
  12115. "stability-flags": {
  12116. "alchemy/zippy": 20,
  12117. "someonewithpc/redis-polyfill": 20
  12118. },
  12119. "prefer-stable": false,
  12120. "prefer-lowest": false,
  12121. "platform": {
  12122. "php": "^8.0",
  12123. "ext-ctype": "*",
  12124. "ext-iconv": "*",
  12125. "ext-vips": "*"
  12126. },
  12127. "platform-dev": [],
  12128. "plugin-api-version": "2.0.0"
  12129. }