composer.lock 357 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767
  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": "688c3a4caba4f1565d49033d85774e39",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  20. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2021-05-24T07:46:03+00:00"
  81. },
  82. {
  83. "name": "doctrine/annotations",
  84. "version": "1.13.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/doctrine/annotations.git",
  88. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  93. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "doctrine/lexer": "1.*",
  98. "ext-tokenizer": "*",
  99. "php": "^7.1 || ^8.0",
  100. "psr/cache": "^1 || ^2 || ^3"
  101. },
  102. "require-dev": {
  103. "doctrine/cache": "^1.11 || ^2.0",
  104. "doctrine/coding-standard": "^6.0 || ^8.1",
  105. "phpstan/phpstan": "^0.12.20",
  106. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  107. "symfony/cache": "^4.4 || ^5.2"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  151. },
  152. "time": "2021-08-05T19:00:23+00:00"
  153. },
  154. {
  155. "name": "doctrine/cache",
  156. "version": "2.1.1",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/cache.git",
  160. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  165. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "~7.1 || ^8.0"
  170. },
  171. "conflict": {
  172. "doctrine/common": ">2.2,<2.4"
  173. },
  174. "require-dev": {
  175. "alcaeus/mongo-php-adapter": "^1.1",
  176. "cache/integration-tests": "dev-master",
  177. "doctrine/coding-standard": "^8.0",
  178. "mongodb/mongodb": "^1.1",
  179. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  180. "predis/predis": "~1.0",
  181. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  182. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  183. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  184. },
  185. "suggest": {
  186. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  221. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  222. "keywords": [
  223. "abstraction",
  224. "apcu",
  225. "cache",
  226. "caching",
  227. "couchdb",
  228. "memcached",
  229. "php",
  230. "redis",
  231. "xcache"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/doctrine/cache/issues",
  235. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  236. },
  237. "funding": [
  238. {
  239. "url": "https://www.doctrine-project.org/sponsorship.html",
  240. "type": "custom"
  241. },
  242. {
  243. "url": "https://www.patreon.com/phpdoctrine",
  244. "type": "patreon"
  245. },
  246. {
  247. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  248. "type": "tidelift"
  249. }
  250. ],
  251. "time": "2021-07-17T14:49:29+00:00"
  252. },
  253. {
  254. "name": "doctrine/collections",
  255. "version": "1.6.8",
  256. "source": {
  257. "type": "git",
  258. "url": "https://github.com/doctrine/collections.git",
  259. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  260. },
  261. "dist": {
  262. "type": "zip",
  263. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  264. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  265. "shasum": ""
  266. },
  267. "require": {
  268. "php": "^7.1.3 || ^8.0"
  269. },
  270. "require-dev": {
  271. "doctrine/coding-standard": "^9.0",
  272. "phpstan/phpstan": "^0.12",
  273. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  274. "vimeo/psalm": "^4.2.1"
  275. },
  276. "type": "library",
  277. "autoload": {
  278. "psr-4": {
  279. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Guilherme Blanco",
  289. "email": "guilhermeblanco@gmail.com"
  290. },
  291. {
  292. "name": "Roman Borschel",
  293. "email": "roman@code-factory.org"
  294. },
  295. {
  296. "name": "Benjamin Eberlei",
  297. "email": "kontakt@beberlei.de"
  298. },
  299. {
  300. "name": "Jonathan Wage",
  301. "email": "jonwage@gmail.com"
  302. },
  303. {
  304. "name": "Johannes Schmitt",
  305. "email": "schmittjoh@gmail.com"
  306. }
  307. ],
  308. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  309. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  310. "keywords": [
  311. "array",
  312. "collections",
  313. "iterators",
  314. "php"
  315. ],
  316. "support": {
  317. "issues": "https://github.com/doctrine/collections/issues",
  318. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  319. },
  320. "time": "2021-08-10T18:51:53+00:00"
  321. },
  322. {
  323. "name": "doctrine/common",
  324. "version": "3.2.2",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/doctrine/common.git",
  328. "reference": "295082d3750987065912816a9d536c2df735f637"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/doctrine/common/zipball/295082d3750987065912816a9d536c2df735f637",
  333. "reference": "295082d3750987065912816a9d536c2df735f637",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "doctrine/persistence": "^2.0",
  338. "php": "^7.1 || ^8.0"
  339. },
  340. "require-dev": {
  341. "doctrine/coding-standard": "^9.0",
  342. "phpstan/phpstan": "^1.4.1",
  343. "phpstan/phpstan-phpunit": "^1",
  344. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  345. "squizlabs/php_codesniffer": "^3.0",
  346. "symfony/phpunit-bridge": "^4.0.5",
  347. "vimeo/psalm": "^4.4"
  348. },
  349. "type": "library",
  350. "autoload": {
  351. "psr-4": {
  352. "Doctrine\\Common\\": "lib/Doctrine/Common"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "MIT"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Guilherme Blanco",
  362. "email": "guilhermeblanco@gmail.com"
  363. },
  364. {
  365. "name": "Roman Borschel",
  366. "email": "roman@code-factory.org"
  367. },
  368. {
  369. "name": "Benjamin Eberlei",
  370. "email": "kontakt@beberlei.de"
  371. },
  372. {
  373. "name": "Jonathan Wage",
  374. "email": "jonwage@gmail.com"
  375. },
  376. {
  377. "name": "Johannes Schmitt",
  378. "email": "schmittjoh@gmail.com"
  379. },
  380. {
  381. "name": "Marco Pivetta",
  382. "email": "ocramius@gmail.com"
  383. }
  384. ],
  385. "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.",
  386. "homepage": "https://www.doctrine-project.org/projects/common.html",
  387. "keywords": [
  388. "common",
  389. "doctrine",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/common/issues",
  394. "source": "https://github.com/doctrine/common/tree/3.2.2"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2022-02-02T09:15:57+00:00"
  411. },
  412. {
  413. "name": "doctrine/dbal",
  414. "version": "3.3.2",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/dbal.git",
  418. "reference": "35eae239ef515d55ebb24e9d4715cad09a4f58ed"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/dbal/zipball/35eae239ef515d55ebb24e9d4715cad09a4f58ed",
  423. "reference": "35eae239ef515d55ebb24e9d4715cad09a4f58ed",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "composer-runtime-api": "^2",
  428. "doctrine/cache": "^1.11|^2.0",
  429. "doctrine/deprecations": "^0.5.3",
  430. "doctrine/event-manager": "^1.0",
  431. "php": "^7.3 || ^8.0",
  432. "psr/cache": "^1|^2|^3",
  433. "psr/log": "^1|^2|^3"
  434. },
  435. "require-dev": {
  436. "doctrine/coding-standard": "9.0.0",
  437. "jetbrains/phpstorm-stubs": "2021.1",
  438. "phpstan/phpstan": "1.4.0",
  439. "phpstan/phpstan-strict-rules": "^1.1",
  440. "phpunit/phpunit": "9.5.11",
  441. "psalm/plugin-phpunit": "0.16.1",
  442. "squizlabs/php_codesniffer": "3.6.2",
  443. "symfony/cache": "^5.2|^6.0",
  444. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  445. "vimeo/psalm": "4.16.1"
  446. },
  447. "suggest": {
  448. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  449. },
  450. "bin": [
  451. "bin/doctrine-dbal"
  452. ],
  453. "type": "library",
  454. "autoload": {
  455. "psr-4": {
  456. "Doctrine\\DBAL\\": "src"
  457. }
  458. },
  459. "notification-url": "https://packagist.org/downloads/",
  460. "license": [
  461. "MIT"
  462. ],
  463. "authors": [
  464. {
  465. "name": "Guilherme Blanco",
  466. "email": "guilhermeblanco@gmail.com"
  467. },
  468. {
  469. "name": "Roman Borschel",
  470. "email": "roman@code-factory.org"
  471. },
  472. {
  473. "name": "Benjamin Eberlei",
  474. "email": "kontakt@beberlei.de"
  475. },
  476. {
  477. "name": "Jonathan Wage",
  478. "email": "jonwage@gmail.com"
  479. }
  480. ],
  481. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  482. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  483. "keywords": [
  484. "abstraction",
  485. "database",
  486. "db2",
  487. "dbal",
  488. "mariadb",
  489. "mssql",
  490. "mysql",
  491. "oci8",
  492. "oracle",
  493. "pdo",
  494. "pgsql",
  495. "postgresql",
  496. "queryobject",
  497. "sasql",
  498. "sql",
  499. "sqlite",
  500. "sqlserver",
  501. "sqlsrv"
  502. ],
  503. "support": {
  504. "issues": "https://github.com/doctrine/dbal/issues",
  505. "source": "https://github.com/doctrine/dbal/tree/3.3.2"
  506. },
  507. "funding": [
  508. {
  509. "url": "https://www.doctrine-project.org/sponsorship.html",
  510. "type": "custom"
  511. },
  512. {
  513. "url": "https://www.patreon.com/phpdoctrine",
  514. "type": "patreon"
  515. },
  516. {
  517. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  518. "type": "tidelift"
  519. }
  520. ],
  521. "time": "2022-02-05T16:33:45+00:00"
  522. },
  523. {
  524. "name": "doctrine/deprecations",
  525. "version": "v0.5.3",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/doctrine/deprecations.git",
  529. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  534. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  535. "shasum": ""
  536. },
  537. "require": {
  538. "php": "^7.1|^8.0"
  539. },
  540. "require-dev": {
  541. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  542. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  543. "psr/log": "^1.0"
  544. },
  545. "suggest": {
  546. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  547. },
  548. "type": "library",
  549. "autoload": {
  550. "psr-4": {
  551. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "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.",
  559. "homepage": "https://www.doctrine-project.org/",
  560. "support": {
  561. "issues": "https://github.com/doctrine/deprecations/issues",
  562. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  563. },
  564. "time": "2021-03-21T12:59:47+00:00"
  565. },
  566. {
  567. "name": "doctrine/doctrine-bundle",
  568. "version": "2.5.7",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/doctrine/DoctrineBundle.git",
  572. "reference": "1e0d1d7a5982eeebc37dcb4d77bb1a5c5961d96d"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/1e0d1d7a5982eeebc37dcb4d77bb1a5c5961d96d",
  577. "reference": "1e0d1d7a5982eeebc37dcb4d77bb1a5c5961d96d",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "doctrine/annotations": "^1",
  582. "doctrine/cache": "^1.11 || ^2.0",
  583. "doctrine/dbal": "^2.13.1|^3.3.2",
  584. "doctrine/persistence": "^2.2",
  585. "doctrine/sql-formatter": "^1.0.1",
  586. "php": "^7.1 || ^8.0",
  587. "symfony/cache": "^4.3.3|^5.0|^6.0",
  588. "symfony/config": "^4.4.3|^5.0|^6.0",
  589. "symfony/console": "^3.4.30|^4.3.3|^5.0|^6.0",
  590. "symfony/dependency-injection": "^4.4.18|^5.0|^6.0",
  591. "symfony/deprecation-contracts": "^2.1|^3",
  592. "symfony/doctrine-bridge": "^4.4.22|^5.2.7|^6.0",
  593. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  594. "symfony/service-contracts": "^1.1.1|^2.0|^3"
  595. },
  596. "conflict": {
  597. "doctrine/orm": "<2.9|>=3.0",
  598. "twig/twig": "<1.34|>=2.0,<2.4"
  599. },
  600. "require-dev": {
  601. "doctrine/coding-standard": "^9.0",
  602. "doctrine/orm": "^2.9 || ^3.0",
  603. "friendsofphp/proxy-manager-lts": "^1.0",
  604. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  605. "psalm/plugin-phpunit": "^0.16.1",
  606. "psalm/plugin-symfony": "^3",
  607. "symfony/phpunit-bridge": "^5.2|^6.0",
  608. "symfony/property-info": "^4.3.3|^5.0|^6.0",
  609. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0|^6.0",
  610. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  611. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0|^6.0",
  612. "symfony/validator": "^3.4.30|^4.3.3|^5.0|^6.0",
  613. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  614. "symfony/yaml": "^3.4.30|^4.3.3|^5.0|^6.0",
  615. "twig/twig": "^1.34|^2.12|^3.0",
  616. "vimeo/psalm": "^4.7"
  617. },
  618. "suggest": {
  619. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  620. "ext-pdo": "*",
  621. "symfony/web-profiler-bundle": "To use the data collector."
  622. },
  623. "type": "symfony-bundle",
  624. "autoload": {
  625. "psr-4": {
  626. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Fabien Potencier",
  636. "email": "fabien@symfony.com"
  637. },
  638. {
  639. "name": "Benjamin Eberlei",
  640. "email": "kontakt@beberlei.de"
  641. },
  642. {
  643. "name": "Symfony Community",
  644. "homepage": "https://symfony.com/contributors"
  645. },
  646. {
  647. "name": "Doctrine Project",
  648. "homepage": "https://www.doctrine-project.org/"
  649. }
  650. ],
  651. "description": "Symfony DoctrineBundle",
  652. "homepage": "https://www.doctrine-project.org",
  653. "keywords": [
  654. "database",
  655. "dbal",
  656. "orm",
  657. "persistence"
  658. ],
  659. "support": {
  660. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  661. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.5.7"
  662. },
  663. "funding": [
  664. {
  665. "url": "https://www.doctrine-project.org/sponsorship.html",
  666. "type": "custom"
  667. },
  668. {
  669. "url": "https://www.patreon.com/phpdoctrine",
  670. "type": "patreon"
  671. },
  672. {
  673. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  674. "type": "tidelift"
  675. }
  676. ],
  677. "time": "2022-03-05T10:29:13+00:00"
  678. },
  679. {
  680. "name": "doctrine/doctrine-migrations-bundle",
  681. "version": "3.2.2",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  685. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  690. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "doctrine/doctrine-bundle": "~1.0|~2.0",
  695. "doctrine/migrations": "^3.2",
  696. "php": "^7.2|^8.0",
  697. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  698. },
  699. "require-dev": {
  700. "doctrine/coding-standard": "^8.0",
  701. "doctrine/orm": "^2.6",
  702. "doctrine/persistence": "^1.3||^2.0",
  703. "phpstan/phpstan": "^0.12",
  704. "phpstan/phpstan-deprecation-rules": "^0.12",
  705. "phpstan/phpstan-phpunit": "^0.12",
  706. "phpstan/phpstan-strict-rules": "^0.12",
  707. "phpunit/phpunit": "^8.0|^9.0",
  708. "vimeo/psalm": "^4.11"
  709. },
  710. "type": "symfony-bundle",
  711. "autoload": {
  712. "psr-4": {
  713. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  714. },
  715. "exclude-from-classmap": [
  716. "/Tests/"
  717. ]
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "MIT"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Fabien Potencier",
  726. "email": "fabien@symfony.com"
  727. },
  728. {
  729. "name": "Doctrine Project",
  730. "homepage": "https://www.doctrine-project.org"
  731. },
  732. {
  733. "name": "Symfony Community",
  734. "homepage": "https://symfony.com/contributors"
  735. }
  736. ],
  737. "description": "Symfony DoctrineMigrationsBundle",
  738. "homepage": "https://www.doctrine-project.org",
  739. "keywords": [
  740. "dbal",
  741. "migrations",
  742. "schema"
  743. ],
  744. "support": {
  745. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  746. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  747. },
  748. "funding": [
  749. {
  750. "url": "https://www.doctrine-project.org/sponsorship.html",
  751. "type": "custom"
  752. },
  753. {
  754. "url": "https://www.patreon.com/phpdoctrine",
  755. "type": "patreon"
  756. },
  757. {
  758. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  759. "type": "tidelift"
  760. }
  761. ],
  762. "time": "2022-02-01T18:08:07+00:00"
  763. },
  764. {
  765. "name": "doctrine/event-manager",
  766. "version": "1.1.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/doctrine/event-manager.git",
  770. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  775. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "php": "^7.1 || ^8.0"
  780. },
  781. "conflict": {
  782. "doctrine/common": "<2.9@dev"
  783. },
  784. "require-dev": {
  785. "doctrine/coding-standard": "^6.0",
  786. "phpunit/phpunit": "^7.0"
  787. },
  788. "type": "library",
  789. "extra": {
  790. "branch-alias": {
  791. "dev-master": "1.0.x-dev"
  792. }
  793. },
  794. "autoload": {
  795. "psr-4": {
  796. "Doctrine\\Common\\": "lib/Doctrine/Common"
  797. }
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Guilherme Blanco",
  806. "email": "guilhermeblanco@gmail.com"
  807. },
  808. {
  809. "name": "Roman Borschel",
  810. "email": "roman@code-factory.org"
  811. },
  812. {
  813. "name": "Benjamin Eberlei",
  814. "email": "kontakt@beberlei.de"
  815. },
  816. {
  817. "name": "Jonathan Wage",
  818. "email": "jonwage@gmail.com"
  819. },
  820. {
  821. "name": "Johannes Schmitt",
  822. "email": "schmittjoh@gmail.com"
  823. },
  824. {
  825. "name": "Marco Pivetta",
  826. "email": "ocramius@gmail.com"
  827. }
  828. ],
  829. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  830. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  831. "keywords": [
  832. "event",
  833. "event dispatcher",
  834. "event manager",
  835. "event system",
  836. "events"
  837. ],
  838. "support": {
  839. "issues": "https://github.com/doctrine/event-manager/issues",
  840. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  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%2Fevent-manager",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2020-05-29T18:28:51+00:00"
  857. },
  858. {
  859. "name": "doctrine/inflector",
  860. "version": "2.0.4",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/doctrine/inflector.git",
  864. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  869. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "php": "^7.2 || ^8.0"
  874. },
  875. "require-dev": {
  876. "doctrine/coding-standard": "^8.2",
  877. "phpstan/phpstan": "^0.12",
  878. "phpstan/phpstan-phpunit": "^0.12",
  879. "phpstan/phpstan-strict-rules": "^0.12",
  880. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  881. "vimeo/psalm": "^4.10"
  882. },
  883. "type": "library",
  884. "autoload": {
  885. "psr-4": {
  886. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Guilherme Blanco",
  896. "email": "guilhermeblanco@gmail.com"
  897. },
  898. {
  899. "name": "Roman Borschel",
  900. "email": "roman@code-factory.org"
  901. },
  902. {
  903. "name": "Benjamin Eberlei",
  904. "email": "kontakt@beberlei.de"
  905. },
  906. {
  907. "name": "Jonathan Wage",
  908. "email": "jonwage@gmail.com"
  909. },
  910. {
  911. "name": "Johannes Schmitt",
  912. "email": "schmittjoh@gmail.com"
  913. }
  914. ],
  915. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  916. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  917. "keywords": [
  918. "inflection",
  919. "inflector",
  920. "lowercase",
  921. "manipulation",
  922. "php",
  923. "plural",
  924. "singular",
  925. "strings",
  926. "uppercase",
  927. "words"
  928. ],
  929. "support": {
  930. "issues": "https://github.com/doctrine/inflector/issues",
  931. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  932. },
  933. "funding": [
  934. {
  935. "url": "https://www.doctrine-project.org/sponsorship.html",
  936. "type": "custom"
  937. },
  938. {
  939. "url": "https://www.patreon.com/phpdoctrine",
  940. "type": "patreon"
  941. },
  942. {
  943. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  944. "type": "tidelift"
  945. }
  946. ],
  947. "time": "2021-10-22T20:16:43+00:00"
  948. },
  949. {
  950. "name": "doctrine/instantiator",
  951. "version": "1.4.1",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/doctrine/instantiator.git",
  955. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  960. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "php": "^7.1 || ^8.0"
  965. },
  966. "require-dev": {
  967. "doctrine/coding-standard": "^9",
  968. "ext-pdo": "*",
  969. "ext-phar": "*",
  970. "phpbench/phpbench": "^0.16 || ^1",
  971. "phpstan/phpstan": "^1.4",
  972. "phpstan/phpstan-phpunit": "^1",
  973. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  974. "vimeo/psalm": "^4.22"
  975. },
  976. "type": "library",
  977. "autoload": {
  978. "psr-4": {
  979. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  980. }
  981. },
  982. "notification-url": "https://packagist.org/downloads/",
  983. "license": [
  984. "MIT"
  985. ],
  986. "authors": [
  987. {
  988. "name": "Marco Pivetta",
  989. "email": "ocramius@gmail.com",
  990. "homepage": "https://ocramius.github.io/"
  991. }
  992. ],
  993. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  994. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  995. "keywords": [
  996. "constructor",
  997. "instantiate"
  998. ],
  999. "support": {
  1000. "issues": "https://github.com/doctrine/instantiator/issues",
  1001. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  1002. },
  1003. "funding": [
  1004. {
  1005. "url": "https://www.doctrine-project.org/sponsorship.html",
  1006. "type": "custom"
  1007. },
  1008. {
  1009. "url": "https://www.patreon.com/phpdoctrine",
  1010. "type": "patreon"
  1011. },
  1012. {
  1013. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1014. "type": "tidelift"
  1015. }
  1016. ],
  1017. "time": "2022-03-03T08:28:38+00:00"
  1018. },
  1019. {
  1020. "name": "doctrine/lexer",
  1021. "version": "1.2.3",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/doctrine/lexer.git",
  1025. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1030. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "php": "^7.1 || ^8.0"
  1035. },
  1036. "require-dev": {
  1037. "doctrine/coding-standard": "^9.0",
  1038. "phpstan/phpstan": "^1.3",
  1039. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1040. "vimeo/psalm": "^4.11"
  1041. },
  1042. "type": "library",
  1043. "autoload": {
  1044. "psr-4": {
  1045. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1046. }
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "Guilherme Blanco",
  1055. "email": "guilhermeblanco@gmail.com"
  1056. },
  1057. {
  1058. "name": "Roman Borschel",
  1059. "email": "roman@code-factory.org"
  1060. },
  1061. {
  1062. "name": "Johannes Schmitt",
  1063. "email": "schmittjoh@gmail.com"
  1064. }
  1065. ],
  1066. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1067. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1068. "keywords": [
  1069. "annotations",
  1070. "docblock",
  1071. "lexer",
  1072. "parser",
  1073. "php"
  1074. ],
  1075. "support": {
  1076. "issues": "https://github.com/doctrine/lexer/issues",
  1077. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1078. },
  1079. "funding": [
  1080. {
  1081. "url": "https://www.doctrine-project.org/sponsorship.html",
  1082. "type": "custom"
  1083. },
  1084. {
  1085. "url": "https://www.patreon.com/phpdoctrine",
  1086. "type": "patreon"
  1087. },
  1088. {
  1089. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1090. "type": "tidelift"
  1091. }
  1092. ],
  1093. "time": "2022-02-28T11:07:21+00:00"
  1094. },
  1095. {
  1096. "name": "doctrine/migrations",
  1097. "version": "3.4.1",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/doctrine/migrations.git",
  1101. "reference": "e7df670aa9565b435ffec636cebdb4d0a1987f10"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e7df670aa9565b435ffec636cebdb4d0a1987f10",
  1106. "reference": "e7df670aa9565b435ffec636cebdb4d0a1987f10",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "composer-runtime-api": "^2",
  1111. "doctrine/dbal": "^2.11 || ^3.0",
  1112. "doctrine/deprecations": "^0.5.3",
  1113. "doctrine/event-manager": "^1.0",
  1114. "friendsofphp/proxy-manager-lts": "^1.0",
  1115. "php": "^7.2 || ^8.0",
  1116. "psr/log": "^1.1.3 || ^2 || ^3",
  1117. "symfony/console": "^3.4 || ^4.4.16 || ^5.0 || ^6.0",
  1118. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1119. },
  1120. "require-dev": {
  1121. "doctrine/coding-standard": "^8.0",
  1122. "doctrine/orm": "^2.6",
  1123. "doctrine/persistence": "^1.3 || ^2.0",
  1124. "doctrine/sql-formatter": "^1.0",
  1125. "ergebnis/composer-normalize": "^2.9",
  1126. "ext-pdo_sqlite": "*",
  1127. "phpstan/phpstan": "^0.12",
  1128. "phpstan/phpstan-deprecation-rules": "^0.12",
  1129. "phpstan/phpstan-phpunit": "^0.12",
  1130. "phpstan/phpstan-strict-rules": "^0.12",
  1131. "phpstan/phpstan-symfony": "^0.12",
  1132. "phpunit/phpunit": "^8.5 || ^9.4",
  1133. "symfony/cache": "^3.4.26 || ^4.2.12 || ^5.0 || ^6.0",
  1134. "symfony/process": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1135. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1136. },
  1137. "suggest": {
  1138. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1139. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1140. },
  1141. "bin": [
  1142. "bin/doctrine-migrations"
  1143. ],
  1144. "type": "library",
  1145. "extra": {
  1146. "composer-normalize": {
  1147. "indent-size": 4,
  1148. "indent-style": "space"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Benjamin Eberlei",
  1163. "email": "kontakt@beberlei.de"
  1164. },
  1165. {
  1166. "name": "Jonathan Wage",
  1167. "email": "jonwage@gmail.com"
  1168. },
  1169. {
  1170. "name": "Michael Simonson",
  1171. "email": "contact@mikesimonson.com"
  1172. }
  1173. ],
  1174. "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.",
  1175. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1176. "keywords": [
  1177. "database",
  1178. "dbal",
  1179. "migrations"
  1180. ],
  1181. "support": {
  1182. "issues": "https://github.com/doctrine/migrations/issues",
  1183. "source": "https://github.com/doctrine/migrations/tree/3.4.1"
  1184. },
  1185. "funding": [
  1186. {
  1187. "url": "https://www.doctrine-project.org/sponsorship.html",
  1188. "type": "custom"
  1189. },
  1190. {
  1191. "url": "https://www.patreon.com/phpdoctrine",
  1192. "type": "patreon"
  1193. },
  1194. {
  1195. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1196. "type": "tidelift"
  1197. }
  1198. ],
  1199. "time": "2022-01-28T21:58:35+00:00"
  1200. },
  1201. {
  1202. "name": "doctrine/orm",
  1203. "version": "2.11.1",
  1204. "source": {
  1205. "type": "git",
  1206. "url": "https://github.com/doctrine/orm.git",
  1207. "reference": "4b88ce787d3916c8366abf52f6c658a7a27ed3a6"
  1208. },
  1209. "dist": {
  1210. "type": "zip",
  1211. "url": "https://api.github.com/repos/doctrine/orm/zipball/4b88ce787d3916c8366abf52f6c658a7a27ed3a6",
  1212. "reference": "4b88ce787d3916c8366abf52f6c658a7a27ed3a6",
  1213. "shasum": ""
  1214. },
  1215. "require": {
  1216. "composer-runtime-api": "^2",
  1217. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1218. "doctrine/collections": "^1.5",
  1219. "doctrine/common": "^3.0.3",
  1220. "doctrine/dbal": "^2.13.1 || ^3.2",
  1221. "doctrine/deprecations": "^0.5.3",
  1222. "doctrine/event-manager": "^1.1",
  1223. "doctrine/inflector": "^1.4 || ^2.0",
  1224. "doctrine/instantiator": "^1.3",
  1225. "doctrine/lexer": "^1.0",
  1226. "doctrine/persistence": "^2.2",
  1227. "ext-ctype": "*",
  1228. "ext-pdo": "*",
  1229. "php": "^7.1 || ^8.0",
  1230. "psr/cache": "^1 || ^2 || ^3",
  1231. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1232. "symfony/polyfill-php72": "^1.23",
  1233. "symfony/polyfill-php80": "^1.15"
  1234. },
  1235. "conflict": {
  1236. "doctrine/annotations": "<1.13 || >= 2.0"
  1237. },
  1238. "require-dev": {
  1239. "doctrine/annotations": "^1.13",
  1240. "doctrine/coding-standard": "^9.0",
  1241. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1242. "phpstan/phpstan": "1.4.3",
  1243. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  1244. "squizlabs/php_codesniffer": "3.6.2",
  1245. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1246. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1247. "vimeo/psalm": "4.19.0"
  1248. },
  1249. "suggest": {
  1250. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1251. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1252. },
  1253. "bin": [
  1254. "bin/doctrine"
  1255. ],
  1256. "type": "library",
  1257. "autoload": {
  1258. "psr-4": {
  1259. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1260. }
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "MIT"
  1265. ],
  1266. "authors": [
  1267. {
  1268. "name": "Guilherme Blanco",
  1269. "email": "guilhermeblanco@gmail.com"
  1270. },
  1271. {
  1272. "name": "Roman Borschel",
  1273. "email": "roman@code-factory.org"
  1274. },
  1275. {
  1276. "name": "Benjamin Eberlei",
  1277. "email": "kontakt@beberlei.de"
  1278. },
  1279. {
  1280. "name": "Jonathan Wage",
  1281. "email": "jonwage@gmail.com"
  1282. },
  1283. {
  1284. "name": "Marco Pivetta",
  1285. "email": "ocramius@gmail.com"
  1286. }
  1287. ],
  1288. "description": "Object-Relational-Mapper for PHP",
  1289. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1290. "keywords": [
  1291. "database",
  1292. "orm"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/doctrine/orm/issues",
  1296. "source": "https://github.com/doctrine/orm/tree/2.11.1"
  1297. },
  1298. "time": "2022-01-30T21:47:06+00:00"
  1299. },
  1300. {
  1301. "name": "doctrine/persistence",
  1302. "version": "2.3.0",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/doctrine/persistence.git",
  1306. "reference": "f8af155c1e7963f3d2b4415097d55757bbaa53d8"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/doctrine/persistence/zipball/f8af155c1e7963f3d2b4415097d55757bbaa53d8",
  1311. "reference": "f8af155c1e7963f3d2b4415097d55757bbaa53d8",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "doctrine/cache": "^1.11 || ^2.0",
  1316. "doctrine/collections": "^1.0",
  1317. "doctrine/deprecations": "^0.5.3",
  1318. "doctrine/event-manager": "^1.0",
  1319. "php": "^7.1 || ^8.0",
  1320. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1321. },
  1322. "conflict": {
  1323. "doctrine/annotations": "<1.0 || >=2.0",
  1324. "doctrine/common": "<2.10@dev"
  1325. },
  1326. "require-dev": {
  1327. "composer/package-versions-deprecated": "^1.11",
  1328. "doctrine/annotations": "^1.0",
  1329. "doctrine/coding-standard": "^6.0 || ^9.0",
  1330. "doctrine/common": "^3.0",
  1331. "phpstan/phpstan": "1.2.0",
  1332. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  1333. "symfony/cache": "^4.4 || ^5.0 || ^6.0",
  1334. "vimeo/psalm": "4.13.1"
  1335. },
  1336. "type": "library",
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1340. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Guilherme Blanco",
  1350. "email": "guilhermeblanco@gmail.com"
  1351. },
  1352. {
  1353. "name": "Roman Borschel",
  1354. "email": "roman@code-factory.org"
  1355. },
  1356. {
  1357. "name": "Benjamin Eberlei",
  1358. "email": "kontakt@beberlei.de"
  1359. },
  1360. {
  1361. "name": "Jonathan Wage",
  1362. "email": "jonwage@gmail.com"
  1363. },
  1364. {
  1365. "name": "Johannes Schmitt",
  1366. "email": "schmittjoh@gmail.com"
  1367. },
  1368. {
  1369. "name": "Marco Pivetta",
  1370. "email": "ocramius@gmail.com"
  1371. }
  1372. ],
  1373. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1374. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1375. "keywords": [
  1376. "mapper",
  1377. "object",
  1378. "odm",
  1379. "orm",
  1380. "persistence"
  1381. ],
  1382. "support": {
  1383. "issues": "https://github.com/doctrine/persistence/issues",
  1384. "source": "https://github.com/doctrine/persistence/tree/2.3.0"
  1385. },
  1386. "time": "2022-01-09T19:58:46+00:00"
  1387. },
  1388. {
  1389. "name": "doctrine/sql-formatter",
  1390. "version": "1.1.2",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/doctrine/sql-formatter.git",
  1394. "reference": "20c39c2de286a9d3262cc8ed282a4ae60e265894"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/20c39c2de286a9d3262cc8ed282a4ae60e265894",
  1399. "reference": "20c39c2de286a9d3262cc8ed282a4ae60e265894",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "php": "^7.1 || ^8.0"
  1404. },
  1405. "require-dev": {
  1406. "bamarni/composer-bin-plugin": "^1.4"
  1407. },
  1408. "bin": [
  1409. "bin/sql-formatter"
  1410. ],
  1411. "type": "library",
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Doctrine\\SqlFormatter\\": "src"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "authors": [
  1422. {
  1423. "name": "Jeremy Dorn",
  1424. "email": "jeremy@jeremydorn.com",
  1425. "homepage": "http://jeremydorn.com/"
  1426. }
  1427. ],
  1428. "description": "a PHP SQL highlighting library",
  1429. "homepage": "https://github.com/doctrine/sql-formatter/",
  1430. "keywords": [
  1431. "highlight",
  1432. "sql"
  1433. ],
  1434. "support": {
  1435. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1436. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.2"
  1437. },
  1438. "time": "2021-11-05T11:11:14+00:00"
  1439. },
  1440. {
  1441. "name": "egulias/email-validator",
  1442. "version": "3.1.2",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/egulias/EmailValidator.git",
  1446. "reference": "ee0db30118f661fb166bcffbf5d82032df484697"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  1451. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  1452. "shasum": ""
  1453. },
  1454. "require": {
  1455. "doctrine/lexer": "^1.2",
  1456. "php": ">=7.2",
  1457. "symfony/polyfill-intl-idn": "^1.15"
  1458. },
  1459. "require-dev": {
  1460. "php-coveralls/php-coveralls": "^2.2",
  1461. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1462. "vimeo/psalm": "^4"
  1463. },
  1464. "suggest": {
  1465. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "3.0.x-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-4": {
  1475. "Egulias\\EmailValidator\\": "src"
  1476. }
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "Eduardo Gulias Davis"
  1485. }
  1486. ],
  1487. "description": "A library for validating emails against several RFCs",
  1488. "homepage": "https://github.com/egulias/EmailValidator",
  1489. "keywords": [
  1490. "email",
  1491. "emailvalidation",
  1492. "emailvalidator",
  1493. "validation",
  1494. "validator"
  1495. ],
  1496. "support": {
  1497. "issues": "https://github.com/egulias/EmailValidator/issues",
  1498. "source": "https://github.com/egulias/EmailValidator/tree/3.1.2"
  1499. },
  1500. "funding": [
  1501. {
  1502. "url": "https://github.com/egulias",
  1503. "type": "github"
  1504. }
  1505. ],
  1506. "time": "2021-10-11T09:18:27+00:00"
  1507. },
  1508. {
  1509. "name": "friendsofphp/proxy-manager-lts",
  1510. "version": "v1.0.7",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1514. "reference": "c828ced1f932094ab79e4120a106a666565e4d9c"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/c828ced1f932094ab79e4120a106a666565e4d9c",
  1519. "reference": "c828ced1f932094ab79e4120a106a666565e4d9c",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "laminas/laminas-code": "~3.4.1|^4.0",
  1524. "php": ">=7.1",
  1525. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1526. },
  1527. "conflict": {
  1528. "laminas/laminas-stdlib": "<3.2.1",
  1529. "zendframework/zend-stdlib": "<3.2.1"
  1530. },
  1531. "replace": {
  1532. "ocramius/proxy-manager": "^2.1"
  1533. },
  1534. "require-dev": {
  1535. "ext-phar": "*",
  1536. "symfony/phpunit-bridge": "^5.4|^6.0"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "thanks": {
  1541. "name": "ocramius/proxy-manager",
  1542. "url": "https://github.com/Ocramius/ProxyManager"
  1543. }
  1544. },
  1545. "autoload": {
  1546. "psr-4": {
  1547. "ProxyManager\\": "src/ProxyManager"
  1548. }
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "MIT"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Marco Pivetta",
  1557. "email": "ocramius@gmail.com",
  1558. "homepage": "https://ocramius.github.io/"
  1559. },
  1560. {
  1561. "name": "Nicolas Grekas",
  1562. "email": "p@tchwork.com"
  1563. }
  1564. ],
  1565. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1566. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1567. "keywords": [
  1568. "aop",
  1569. "lazy loading",
  1570. "proxy",
  1571. "proxy pattern",
  1572. "service proxies"
  1573. ],
  1574. "support": {
  1575. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1576. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.7"
  1577. },
  1578. "funding": [
  1579. {
  1580. "url": "https://github.com/Ocramius",
  1581. "type": "github"
  1582. },
  1583. {
  1584. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1585. "type": "tidelift"
  1586. }
  1587. ],
  1588. "time": "2022-03-02T09:29:19+00:00"
  1589. },
  1590. {
  1591. "name": "laminas/laminas-code",
  1592. "version": "3.4.1",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/laminas/laminas-code.git",
  1596. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1601. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "laminas/laminas-eventmanager": "^2.6 || ^3.0",
  1606. "laminas/laminas-zendframework-bridge": "^1.0",
  1607. "php": "^7.1"
  1608. },
  1609. "conflict": {
  1610. "phpspec/prophecy": "<1.9.0"
  1611. },
  1612. "replace": {
  1613. "zendframework/zend-code": "self.version"
  1614. },
  1615. "require-dev": {
  1616. "doctrine/annotations": "^1.7",
  1617. "ext-phar": "*",
  1618. "laminas/laminas-coding-standard": "^1.0",
  1619. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  1620. "phpunit/phpunit": "^7.5.16 || ^8.4"
  1621. },
  1622. "suggest": {
  1623. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1624. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "3.4.x-dev",
  1630. "dev-develop": "3.5.x-dev",
  1631. "dev-dev-4.0": "4.0.x-dev"
  1632. }
  1633. },
  1634. "autoload": {
  1635. "psr-4": {
  1636. "Laminas\\Code\\": "src/"
  1637. }
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "BSD-3-Clause"
  1642. ],
  1643. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1644. "homepage": "https://laminas.dev",
  1645. "keywords": [
  1646. "code",
  1647. "laminas"
  1648. ],
  1649. "support": {
  1650. "chat": "https://laminas.dev/chat",
  1651. "docs": "https://docs.laminas.dev/laminas-code/",
  1652. "forum": "https://discourse.laminas.dev",
  1653. "issues": "https://github.com/laminas/laminas-code/issues",
  1654. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1655. "source": "https://github.com/laminas/laminas-code"
  1656. },
  1657. "time": "2019-12-31T16:28:24+00:00"
  1658. },
  1659. {
  1660. "name": "laminas/laminas-eventmanager",
  1661. "version": "3.4.0",
  1662. "source": {
  1663. "type": "git",
  1664. "url": "https://github.com/laminas/laminas-eventmanager.git",
  1665. "reference": "a93fd278c97b2d41ebbce5ba048a24e3e6f580ba"
  1666. },
  1667. "dist": {
  1668. "type": "zip",
  1669. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/a93fd278c97b2d41ebbce5ba048a24e3e6f580ba",
  1670. "reference": "a93fd278c97b2d41ebbce5ba048a24e3e6f580ba",
  1671. "shasum": ""
  1672. },
  1673. "require": {
  1674. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  1675. },
  1676. "conflict": {
  1677. "zendframework/zend-eventmanager": "*"
  1678. },
  1679. "require-dev": {
  1680. "container-interop/container-interop": "^1.1",
  1681. "laminas/laminas-coding-standard": "~2.2.1",
  1682. "laminas/laminas-stdlib": "^3.6",
  1683. "phpbench/phpbench": "^1.1",
  1684. "phpspec/prophecy-phpunit": "^2.0",
  1685. "phpunit/phpunit": "^9.5.5"
  1686. },
  1687. "suggest": {
  1688. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  1689. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  1690. },
  1691. "type": "library",
  1692. "autoload": {
  1693. "psr-4": {
  1694. "Laminas\\EventManager\\": "src/"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "BSD-3-Clause"
  1700. ],
  1701. "description": "Trigger and listen to events within a PHP application",
  1702. "homepage": "https://laminas.dev",
  1703. "keywords": [
  1704. "event",
  1705. "eventmanager",
  1706. "events",
  1707. "laminas"
  1708. ],
  1709. "support": {
  1710. "chat": "https://laminas.dev/chat",
  1711. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  1712. "forum": "https://discourse.laminas.dev",
  1713. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  1714. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  1715. "source": "https://github.com/laminas/laminas-eventmanager"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1720. "type": "community_bridge"
  1721. }
  1722. ],
  1723. "time": "2021-09-07T22:35:32+00:00"
  1724. },
  1725. {
  1726. "name": "laminas/laminas-zendframework-bridge",
  1727. "version": "1.4.1",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  1731. "reference": "88bf037259869891afce6504cacc4f8a07b24d0f"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/88bf037259869891afce6504cacc4f8a07b24d0f",
  1736. "reference": "88bf037259869891afce6504cacc4f8a07b24d0f",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  1741. },
  1742. "require-dev": {
  1743. "phpunit/phpunit": "^9.3",
  1744. "psalm/plugin-phpunit": "^0.15.1",
  1745. "squizlabs/php_codesniffer": "^3.5",
  1746. "vimeo/psalm": "^4.6"
  1747. },
  1748. "type": "library",
  1749. "extra": {
  1750. "laminas": {
  1751. "module": "Laminas\\ZendFrameworkBridge"
  1752. }
  1753. },
  1754. "autoload": {
  1755. "files": [
  1756. "src/autoload.php"
  1757. ],
  1758. "psr-4": {
  1759. "Laminas\\ZendFrameworkBridge\\": "src//"
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "BSD-3-Clause"
  1765. ],
  1766. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  1767. "keywords": [
  1768. "ZendFramework",
  1769. "autoloading",
  1770. "laminas",
  1771. "zf"
  1772. ],
  1773. "support": {
  1774. "forum": "https://discourse.laminas.dev/",
  1775. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  1776. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  1777. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  1778. },
  1779. "funding": [
  1780. {
  1781. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1782. "type": "community_bridge"
  1783. }
  1784. ],
  1785. "time": "2021-12-21T14:34:37+00:00"
  1786. },
  1787. {
  1788. "name": "monolog/monolog",
  1789. "version": "2.3.5",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/Seldaek/monolog.git",
  1793. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  1798. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  1799. "shasum": ""
  1800. },
  1801. "require": {
  1802. "php": ">=7.2",
  1803. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1804. },
  1805. "provide": {
  1806. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1807. },
  1808. "require-dev": {
  1809. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1810. "doctrine/couchdb": "~1.0@dev",
  1811. "elasticsearch/elasticsearch": "^7",
  1812. "graylog2/gelf-php": "^1.4.2",
  1813. "mongodb/mongodb": "^1.8",
  1814. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1815. "php-console/php-console": "^3.1.3",
  1816. "phpspec/prophecy": "^1.6.1",
  1817. "phpstan/phpstan": "^0.12.91",
  1818. "phpunit/phpunit": "^8.5",
  1819. "predis/predis": "^1.1",
  1820. "rollbar/rollbar": "^1.3",
  1821. "ruflin/elastica": ">=0.90@dev",
  1822. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1823. },
  1824. "suggest": {
  1825. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1826. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1827. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1828. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1829. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1830. "ext-mbstring": "Allow to work properly with unicode symbols",
  1831. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1832. "ext-openssl": "Required to send log messages using SSL",
  1833. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1834. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1835. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1836. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1837. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1838. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1839. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-main": "2.x-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "psr-4": {
  1849. "Monolog\\": "src/Monolog"
  1850. }
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "MIT"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "Jordi Boggiano",
  1859. "email": "j.boggiano@seld.be",
  1860. "homepage": "https://seld.be"
  1861. }
  1862. ],
  1863. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1864. "homepage": "https://github.com/Seldaek/monolog",
  1865. "keywords": [
  1866. "log",
  1867. "logging",
  1868. "psr-3"
  1869. ],
  1870. "support": {
  1871. "issues": "https://github.com/Seldaek/monolog/issues",
  1872. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  1873. },
  1874. "funding": [
  1875. {
  1876. "url": "https://github.com/Seldaek",
  1877. "type": "github"
  1878. },
  1879. {
  1880. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1881. "type": "tidelift"
  1882. }
  1883. ],
  1884. "time": "2021-10-01T21:08:31+00:00"
  1885. },
  1886. {
  1887. "name": "phpdocumentor/reflection-common",
  1888. "version": "2.2.0",
  1889. "source": {
  1890. "type": "git",
  1891. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1892. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1893. },
  1894. "dist": {
  1895. "type": "zip",
  1896. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1897. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1898. "shasum": ""
  1899. },
  1900. "require": {
  1901. "php": "^7.2 || ^8.0"
  1902. },
  1903. "type": "library",
  1904. "extra": {
  1905. "branch-alias": {
  1906. "dev-2.x": "2.x-dev"
  1907. }
  1908. },
  1909. "autoload": {
  1910. "psr-4": {
  1911. "phpDocumentor\\Reflection\\": "src/"
  1912. }
  1913. },
  1914. "notification-url": "https://packagist.org/downloads/",
  1915. "license": [
  1916. "MIT"
  1917. ],
  1918. "authors": [
  1919. {
  1920. "name": "Jaap van Otterdijk",
  1921. "email": "opensource@ijaap.nl"
  1922. }
  1923. ],
  1924. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1925. "homepage": "http://www.phpdoc.org",
  1926. "keywords": [
  1927. "FQSEN",
  1928. "phpDocumentor",
  1929. "phpdoc",
  1930. "reflection",
  1931. "static analysis"
  1932. ],
  1933. "support": {
  1934. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1935. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1936. },
  1937. "time": "2020-06-27T09:03:43+00:00"
  1938. },
  1939. {
  1940. "name": "phpdocumentor/reflection-docblock",
  1941. "version": "5.3.0",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1945. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1950. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1951. "shasum": ""
  1952. },
  1953. "require": {
  1954. "ext-filter": "*",
  1955. "php": "^7.2 || ^8.0",
  1956. "phpdocumentor/reflection-common": "^2.2",
  1957. "phpdocumentor/type-resolver": "^1.3",
  1958. "webmozart/assert": "^1.9.1"
  1959. },
  1960. "require-dev": {
  1961. "mockery/mockery": "~1.3.2",
  1962. "psalm/phar": "^4.8"
  1963. },
  1964. "type": "library",
  1965. "extra": {
  1966. "branch-alias": {
  1967. "dev-master": "5.x-dev"
  1968. }
  1969. },
  1970. "autoload": {
  1971. "psr-4": {
  1972. "phpDocumentor\\Reflection\\": "src"
  1973. }
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "MIT"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Mike van Riel",
  1982. "email": "me@mikevanriel.com"
  1983. },
  1984. {
  1985. "name": "Jaap van Otterdijk",
  1986. "email": "account@ijaap.nl"
  1987. }
  1988. ],
  1989. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1990. "support": {
  1991. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1992. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  1993. },
  1994. "time": "2021-10-19T17:43:47+00:00"
  1995. },
  1996. {
  1997. "name": "phpdocumentor/type-resolver",
  1998. "version": "1.6.0",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2002. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  2007. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  2008. "shasum": ""
  2009. },
  2010. "require": {
  2011. "php": "^7.2 || ^8.0",
  2012. "phpdocumentor/reflection-common": "^2.0"
  2013. },
  2014. "require-dev": {
  2015. "ext-tokenizer": "*",
  2016. "psalm/phar": "^4.8"
  2017. },
  2018. "type": "library",
  2019. "extra": {
  2020. "branch-alias": {
  2021. "dev-1.x": "1.x-dev"
  2022. }
  2023. },
  2024. "autoload": {
  2025. "psr-4": {
  2026. "phpDocumentor\\Reflection\\": "src"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Mike van Riel",
  2036. "email": "me@mikevanriel.com"
  2037. }
  2038. ],
  2039. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2040. "support": {
  2041. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2042. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  2043. },
  2044. "time": "2022-01-04T19:58:01+00:00"
  2045. },
  2046. {
  2047. "name": "psr/cache",
  2048. "version": "1.0.1",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/php-fig/cache.git",
  2052. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2057. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "php": ">=5.3.0"
  2062. },
  2063. "type": "library",
  2064. "extra": {
  2065. "branch-alias": {
  2066. "dev-master": "1.0.x-dev"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Psr\\Cache\\": "src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "PHP-FIG",
  2081. "homepage": "http://www.php-fig.org/"
  2082. }
  2083. ],
  2084. "description": "Common interface for caching libraries",
  2085. "keywords": [
  2086. "cache",
  2087. "psr",
  2088. "psr-6"
  2089. ],
  2090. "support": {
  2091. "source": "https://github.com/php-fig/cache/tree/master"
  2092. },
  2093. "time": "2016-08-06T20:24:11+00:00"
  2094. },
  2095. {
  2096. "name": "psr/container",
  2097. "version": "1.1.1",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/php-fig/container.git",
  2101. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2106. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "php": ">=7.2.0"
  2111. },
  2112. "type": "library",
  2113. "autoload": {
  2114. "psr-4": {
  2115. "Psr\\Container\\": "src/"
  2116. }
  2117. },
  2118. "notification-url": "https://packagist.org/downloads/",
  2119. "license": [
  2120. "MIT"
  2121. ],
  2122. "authors": [
  2123. {
  2124. "name": "PHP-FIG",
  2125. "homepage": "https://www.php-fig.org/"
  2126. }
  2127. ],
  2128. "description": "Common Container Interface (PHP FIG PSR-11)",
  2129. "homepage": "https://github.com/php-fig/container",
  2130. "keywords": [
  2131. "PSR-11",
  2132. "container",
  2133. "container-interface",
  2134. "container-interop",
  2135. "psr"
  2136. ],
  2137. "support": {
  2138. "issues": "https://github.com/php-fig/container/issues",
  2139. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2140. },
  2141. "time": "2021-03-05T17:36:06+00:00"
  2142. },
  2143. {
  2144. "name": "psr/event-dispatcher",
  2145. "version": "1.0.0",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/php-fig/event-dispatcher.git",
  2149. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2154. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2155. "shasum": ""
  2156. },
  2157. "require": {
  2158. "php": ">=7.2.0"
  2159. },
  2160. "type": "library",
  2161. "extra": {
  2162. "branch-alias": {
  2163. "dev-master": "1.0.x-dev"
  2164. }
  2165. },
  2166. "autoload": {
  2167. "psr-4": {
  2168. "Psr\\EventDispatcher\\": "src/"
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "PHP-FIG",
  2178. "homepage": "http://www.php-fig.org/"
  2179. }
  2180. ],
  2181. "description": "Standard interfaces for event handling.",
  2182. "keywords": [
  2183. "events",
  2184. "psr",
  2185. "psr-14"
  2186. ],
  2187. "support": {
  2188. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2189. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2190. },
  2191. "time": "2019-01-08T18:20:26+00:00"
  2192. },
  2193. {
  2194. "name": "psr/link",
  2195. "version": "1.0.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/php-fig/link.git",
  2199. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2204. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": ">=5.3.0"
  2209. },
  2210. "type": "library",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-master": "1.0.x-dev"
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Psr\\Link\\": "src/"
  2219. }
  2220. },
  2221. "notification-url": "https://packagist.org/downloads/",
  2222. "license": [
  2223. "MIT"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "PHP-FIG",
  2228. "homepage": "http://www.php-fig.org/"
  2229. }
  2230. ],
  2231. "description": "Common interfaces for HTTP links",
  2232. "keywords": [
  2233. "http",
  2234. "http-link",
  2235. "link",
  2236. "psr",
  2237. "psr-13",
  2238. "rest"
  2239. ],
  2240. "support": {
  2241. "source": "https://github.com/php-fig/link/tree/master"
  2242. },
  2243. "time": "2016-10-28T16:06:13+00:00"
  2244. },
  2245. {
  2246. "name": "psr/log",
  2247. "version": "1.1.4",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/php-fig/log.git",
  2251. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2256. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2257. "shasum": ""
  2258. },
  2259. "require": {
  2260. "php": ">=5.3.0"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "branch-alias": {
  2265. "dev-master": "1.1.x-dev"
  2266. }
  2267. },
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Psr\\Log\\": "Psr/Log/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "PHP-FIG",
  2280. "homepage": "https://www.php-fig.org/"
  2281. }
  2282. ],
  2283. "description": "Common interface for logging libraries",
  2284. "homepage": "https://github.com/php-fig/log",
  2285. "keywords": [
  2286. "log",
  2287. "psr",
  2288. "psr-3"
  2289. ],
  2290. "support": {
  2291. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2292. },
  2293. "time": "2021-05-03T11:20:27+00:00"
  2294. },
  2295. {
  2296. "name": "sensio/framework-extra-bundle",
  2297. "version": "v6.2.6",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2301. "reference": "6bd976c99ef3f78e31c9490a10ba6dd8901076eb"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/6bd976c99ef3f78e31c9490a10ba6dd8901076eb",
  2306. "reference": "6bd976c99ef3f78e31c9490a10ba6dd8901076eb",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "doctrine/annotations": "^1.0",
  2311. "php": ">=7.2.5",
  2312. "symfony/config": "^4.4|^5.0|^6.0",
  2313. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2314. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2315. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2316. },
  2317. "conflict": {
  2318. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2319. "doctrine/persistence": "<1.3"
  2320. },
  2321. "require-dev": {
  2322. "doctrine/dbal": "^2.10|^3.0",
  2323. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2324. "doctrine/orm": "^2.5",
  2325. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2326. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2327. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2328. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2329. "symfony/finder": "^4.4|^5.0|^6.0",
  2330. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2331. "symfony/monolog-bundle": "^3.2",
  2332. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2333. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2334. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2335. "symfony/yaml": "^4.4|^5.0|^6.0",
  2336. "twig/twig": "^1.34|^2.4|^3.0"
  2337. },
  2338. "type": "symfony-bundle",
  2339. "extra": {
  2340. "branch-alias": {
  2341. "dev-master": "6.1.x-dev"
  2342. }
  2343. },
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2347. },
  2348. "exclude-from-classmap": [
  2349. "/tests/"
  2350. ]
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Fabien Potencier",
  2359. "email": "fabien@symfony.com"
  2360. }
  2361. ],
  2362. "description": "This bundle provides a way to configure your controllers with annotations",
  2363. "keywords": [
  2364. "annotations",
  2365. "controllers"
  2366. ],
  2367. "support": {
  2368. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2369. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.6"
  2370. },
  2371. "time": "2022-01-14T11:51:13+00:00"
  2372. },
  2373. {
  2374. "name": "symfony/apache-pack",
  2375. "version": "v1.0.1",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/symfony/apache-pack.git",
  2379. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2384. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2385. "shasum": ""
  2386. },
  2387. "type": "symfony-pack",
  2388. "notification-url": "https://packagist.org/downloads/",
  2389. "license": [
  2390. "MIT"
  2391. ],
  2392. "description": "A pack for Apache support in Symfony",
  2393. "support": {
  2394. "issues": "https://github.com/symfony/apache-pack/issues",
  2395. "source": "https://github.com/symfony/apache-pack/tree/master"
  2396. },
  2397. "time": "2017-12-12T01:46:35+00:00"
  2398. },
  2399. {
  2400. "name": "symfony/asset",
  2401. "version": "v5.4.3",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/symfony/asset.git",
  2405. "reference": "156e45cba14f9be3fe8b987e86f482a76aa078f3"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/symfony/asset/zipball/156e45cba14f9be3fe8b987e86f482a76aa078f3",
  2410. "reference": "156e45cba14f9be3fe8b987e86f482a76aa078f3",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": ">=7.2.5",
  2415. "symfony/deprecation-contracts": "^2.1|^3",
  2416. "symfony/polyfill-php80": "^1.16"
  2417. },
  2418. "conflict": {
  2419. "symfony/http-foundation": "<5.3"
  2420. },
  2421. "require-dev": {
  2422. "symfony/http-client": "^4.4|^5.0|^6.0",
  2423. "symfony/http-foundation": "^5.3|^6.0",
  2424. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2425. },
  2426. "suggest": {
  2427. "symfony/http-foundation": ""
  2428. },
  2429. "type": "library",
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Symfony\\Component\\Asset\\": ""
  2433. },
  2434. "exclude-from-classmap": [
  2435. "/Tests/"
  2436. ]
  2437. },
  2438. "notification-url": "https://packagist.org/downloads/",
  2439. "license": [
  2440. "MIT"
  2441. ],
  2442. "authors": [
  2443. {
  2444. "name": "Fabien Potencier",
  2445. "email": "fabien@symfony.com"
  2446. },
  2447. {
  2448. "name": "Symfony Community",
  2449. "homepage": "https://symfony.com/contributors"
  2450. }
  2451. ],
  2452. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2453. "homepage": "https://symfony.com",
  2454. "support": {
  2455. "source": "https://github.com/symfony/asset/tree/v5.4.3"
  2456. },
  2457. "funding": [
  2458. {
  2459. "url": "https://symfony.com/sponsor",
  2460. "type": "custom"
  2461. },
  2462. {
  2463. "url": "https://github.com/fabpot",
  2464. "type": "github"
  2465. },
  2466. {
  2467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2468. "type": "tidelift"
  2469. }
  2470. ],
  2471. "time": "2022-01-02T09:53:40+00:00"
  2472. },
  2473. {
  2474. "name": "symfony/cache",
  2475. "version": "v5.4.5",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/symfony/cache.git",
  2479. "reference": "b954c9397b226df319c6dfd002636ddaa4d848ef"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/symfony/cache/zipball/b954c9397b226df319c6dfd002636ddaa4d848ef",
  2484. "reference": "b954c9397b226df319c6dfd002636ddaa4d848ef",
  2485. "shasum": ""
  2486. },
  2487. "require": {
  2488. "php": ">=7.2.5",
  2489. "psr/cache": "^1.0|^2.0",
  2490. "psr/log": "^1.1|^2|^3",
  2491. "symfony/cache-contracts": "^1.1.7|^2",
  2492. "symfony/deprecation-contracts": "^2.1|^3",
  2493. "symfony/polyfill-php73": "^1.9",
  2494. "symfony/polyfill-php80": "^1.16",
  2495. "symfony/service-contracts": "^1.1|^2|^3",
  2496. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2497. },
  2498. "conflict": {
  2499. "doctrine/dbal": "<2.13.1",
  2500. "symfony/dependency-injection": "<4.4",
  2501. "symfony/http-kernel": "<4.4",
  2502. "symfony/var-dumper": "<4.4"
  2503. },
  2504. "provide": {
  2505. "psr/cache-implementation": "1.0|2.0",
  2506. "psr/simple-cache-implementation": "1.0|2.0",
  2507. "symfony/cache-implementation": "1.0|2.0"
  2508. },
  2509. "require-dev": {
  2510. "cache/integration-tests": "dev-master",
  2511. "doctrine/cache": "^1.6|^2.0",
  2512. "doctrine/dbal": "^2.13.1|^3.0",
  2513. "predis/predis": "^1.1",
  2514. "psr/simple-cache": "^1.0|^2.0",
  2515. "symfony/config": "^4.4|^5.0|^6.0",
  2516. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2517. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2518. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2519. "symfony/messenger": "^4.4|^5.0|^6.0",
  2520. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2521. },
  2522. "type": "library",
  2523. "autoload": {
  2524. "psr-4": {
  2525. "Symfony\\Component\\Cache\\": ""
  2526. },
  2527. "exclude-from-classmap": [
  2528. "/Tests/"
  2529. ]
  2530. },
  2531. "notification-url": "https://packagist.org/downloads/",
  2532. "license": [
  2533. "MIT"
  2534. ],
  2535. "authors": [
  2536. {
  2537. "name": "Nicolas Grekas",
  2538. "email": "p@tchwork.com"
  2539. },
  2540. {
  2541. "name": "Symfony Community",
  2542. "homepage": "https://symfony.com/contributors"
  2543. }
  2544. ],
  2545. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2546. "homepage": "https://symfony.com",
  2547. "keywords": [
  2548. "caching",
  2549. "psr6"
  2550. ],
  2551. "support": {
  2552. "source": "https://github.com/symfony/cache/tree/v5.4.5"
  2553. },
  2554. "funding": [
  2555. {
  2556. "url": "https://symfony.com/sponsor",
  2557. "type": "custom"
  2558. },
  2559. {
  2560. "url": "https://github.com/fabpot",
  2561. "type": "github"
  2562. },
  2563. {
  2564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2565. "type": "tidelift"
  2566. }
  2567. ],
  2568. "time": "2022-02-21T15:00:19+00:00"
  2569. },
  2570. {
  2571. "name": "symfony/cache-contracts",
  2572. "version": "v2.5.0",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/symfony/cache-contracts.git",
  2576. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ac2e168102a2e06a2624f0379bde94cd5854ced2",
  2581. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "php": ">=7.2.5",
  2586. "psr/cache": "^1.0|^2.0|^3.0"
  2587. },
  2588. "suggest": {
  2589. "symfony/cache-implementation": ""
  2590. },
  2591. "type": "library",
  2592. "extra": {
  2593. "branch-alias": {
  2594. "dev-main": "2.5-dev"
  2595. },
  2596. "thanks": {
  2597. "name": "symfony/contracts",
  2598. "url": "https://github.com/symfony/contracts"
  2599. }
  2600. },
  2601. "autoload": {
  2602. "psr-4": {
  2603. "Symfony\\Contracts\\Cache\\": ""
  2604. }
  2605. },
  2606. "notification-url": "https://packagist.org/downloads/",
  2607. "license": [
  2608. "MIT"
  2609. ],
  2610. "authors": [
  2611. {
  2612. "name": "Nicolas Grekas",
  2613. "email": "p@tchwork.com"
  2614. },
  2615. {
  2616. "name": "Symfony Community",
  2617. "homepage": "https://symfony.com/contributors"
  2618. }
  2619. ],
  2620. "description": "Generic abstractions related to caching",
  2621. "homepage": "https://symfony.com",
  2622. "keywords": [
  2623. "abstractions",
  2624. "contracts",
  2625. "decoupling",
  2626. "interfaces",
  2627. "interoperability",
  2628. "standards"
  2629. ],
  2630. "support": {
  2631. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.0"
  2632. },
  2633. "funding": [
  2634. {
  2635. "url": "https://symfony.com/sponsor",
  2636. "type": "custom"
  2637. },
  2638. {
  2639. "url": "https://github.com/fabpot",
  2640. "type": "github"
  2641. },
  2642. {
  2643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2644. "type": "tidelift"
  2645. }
  2646. ],
  2647. "time": "2021-08-17T14:20:01+00:00"
  2648. },
  2649. {
  2650. "name": "symfony/config",
  2651. "version": "v5.4.3",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://github.com/symfony/config.git",
  2655. "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://api.github.com/repos/symfony/config/zipball/d65e1bd990c740e31feb07d2b0927b8d4df9956f",
  2660. "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f",
  2661. "shasum": ""
  2662. },
  2663. "require": {
  2664. "php": ">=7.2.5",
  2665. "symfony/deprecation-contracts": "^2.1|^3",
  2666. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2667. "symfony/polyfill-ctype": "~1.8",
  2668. "symfony/polyfill-php80": "^1.16",
  2669. "symfony/polyfill-php81": "^1.22"
  2670. },
  2671. "conflict": {
  2672. "symfony/finder": "<4.4"
  2673. },
  2674. "require-dev": {
  2675. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2676. "symfony/finder": "^4.4|^5.0|^6.0",
  2677. "symfony/messenger": "^4.4|^5.0|^6.0",
  2678. "symfony/service-contracts": "^1.1|^2|^3",
  2679. "symfony/yaml": "^4.4|^5.0|^6.0"
  2680. },
  2681. "suggest": {
  2682. "symfony/yaml": "To use the yaml reference dumper"
  2683. },
  2684. "type": "library",
  2685. "autoload": {
  2686. "psr-4": {
  2687. "Symfony\\Component\\Config\\": ""
  2688. },
  2689. "exclude-from-classmap": [
  2690. "/Tests/"
  2691. ]
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "Fabien Potencier",
  2700. "email": "fabien@symfony.com"
  2701. },
  2702. {
  2703. "name": "Symfony Community",
  2704. "homepage": "https://symfony.com/contributors"
  2705. }
  2706. ],
  2707. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2708. "homepage": "https://symfony.com",
  2709. "support": {
  2710. "source": "https://github.com/symfony/config/tree/v5.4.3"
  2711. },
  2712. "funding": [
  2713. {
  2714. "url": "https://symfony.com/sponsor",
  2715. "type": "custom"
  2716. },
  2717. {
  2718. "url": "https://github.com/fabpot",
  2719. "type": "github"
  2720. },
  2721. {
  2722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2723. "type": "tidelift"
  2724. }
  2725. ],
  2726. "time": "2022-01-03T09:50:52+00:00"
  2727. },
  2728. {
  2729. "name": "symfony/console",
  2730. "version": "v5.4.5",
  2731. "source": {
  2732. "type": "git",
  2733. "url": "https://github.com/symfony/console.git",
  2734. "reference": "d8111acc99876953f52fe16d4c50eb60940d49ad"
  2735. },
  2736. "dist": {
  2737. "type": "zip",
  2738. "url": "https://api.github.com/repos/symfony/console/zipball/d8111acc99876953f52fe16d4c50eb60940d49ad",
  2739. "reference": "d8111acc99876953f52fe16d4c50eb60940d49ad",
  2740. "shasum": ""
  2741. },
  2742. "require": {
  2743. "php": ">=7.2.5",
  2744. "symfony/deprecation-contracts": "^2.1|^3",
  2745. "symfony/polyfill-mbstring": "~1.0",
  2746. "symfony/polyfill-php73": "^1.9",
  2747. "symfony/polyfill-php80": "^1.16",
  2748. "symfony/service-contracts": "^1.1|^2|^3",
  2749. "symfony/string": "^5.1|^6.0"
  2750. },
  2751. "conflict": {
  2752. "psr/log": ">=3",
  2753. "symfony/dependency-injection": "<4.4",
  2754. "symfony/dotenv": "<5.1",
  2755. "symfony/event-dispatcher": "<4.4",
  2756. "symfony/lock": "<4.4",
  2757. "symfony/process": "<4.4"
  2758. },
  2759. "provide": {
  2760. "psr/log-implementation": "1.0|2.0"
  2761. },
  2762. "require-dev": {
  2763. "psr/log": "^1|^2",
  2764. "symfony/config": "^4.4|^5.0|^6.0",
  2765. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2766. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2767. "symfony/lock": "^4.4|^5.0|^6.0",
  2768. "symfony/process": "^4.4|^5.0|^6.0",
  2769. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2770. },
  2771. "suggest": {
  2772. "psr/log": "For using the console logger",
  2773. "symfony/event-dispatcher": "",
  2774. "symfony/lock": "",
  2775. "symfony/process": ""
  2776. },
  2777. "type": "library",
  2778. "autoload": {
  2779. "psr-4": {
  2780. "Symfony\\Component\\Console\\": ""
  2781. },
  2782. "exclude-from-classmap": [
  2783. "/Tests/"
  2784. ]
  2785. },
  2786. "notification-url": "https://packagist.org/downloads/",
  2787. "license": [
  2788. "MIT"
  2789. ],
  2790. "authors": [
  2791. {
  2792. "name": "Fabien Potencier",
  2793. "email": "fabien@symfony.com"
  2794. },
  2795. {
  2796. "name": "Symfony Community",
  2797. "homepage": "https://symfony.com/contributors"
  2798. }
  2799. ],
  2800. "description": "Eases the creation of beautiful and testable command line interfaces",
  2801. "homepage": "https://symfony.com",
  2802. "keywords": [
  2803. "cli",
  2804. "command line",
  2805. "console",
  2806. "terminal"
  2807. ],
  2808. "support": {
  2809. "source": "https://github.com/symfony/console/tree/v5.4.5"
  2810. },
  2811. "funding": [
  2812. {
  2813. "url": "https://symfony.com/sponsor",
  2814. "type": "custom"
  2815. },
  2816. {
  2817. "url": "https://github.com/fabpot",
  2818. "type": "github"
  2819. },
  2820. {
  2821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2822. "type": "tidelift"
  2823. }
  2824. ],
  2825. "time": "2022-02-24T12:45:35+00:00"
  2826. },
  2827. {
  2828. "name": "symfony/dependency-injection",
  2829. "version": "v5.4.5",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://github.com/symfony/dependency-injection.git",
  2833. "reference": "17f31bc13ef2b577d3c652d71af49d000cbd5894"
  2834. },
  2835. "dist": {
  2836. "type": "zip",
  2837. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/17f31bc13ef2b577d3c652d71af49d000cbd5894",
  2838. "reference": "17f31bc13ef2b577d3c652d71af49d000cbd5894",
  2839. "shasum": ""
  2840. },
  2841. "require": {
  2842. "php": ">=7.2.5",
  2843. "psr/container": "^1.1.1",
  2844. "symfony/deprecation-contracts": "^2.1|^3",
  2845. "symfony/polyfill-php80": "^1.16",
  2846. "symfony/polyfill-php81": "^1.22",
  2847. "symfony/service-contracts": "^1.1.6|^2"
  2848. },
  2849. "conflict": {
  2850. "ext-psr": "<1.1|>=2",
  2851. "symfony/config": "<5.3",
  2852. "symfony/finder": "<4.4",
  2853. "symfony/proxy-manager-bridge": "<4.4",
  2854. "symfony/yaml": "<4.4.26"
  2855. },
  2856. "provide": {
  2857. "psr/container-implementation": "1.0",
  2858. "symfony/service-implementation": "1.0|2.0"
  2859. },
  2860. "require-dev": {
  2861. "symfony/config": "^5.3|^6.0",
  2862. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2863. "symfony/yaml": "^4.4.26|^5.0|^6.0"
  2864. },
  2865. "suggest": {
  2866. "symfony/config": "",
  2867. "symfony/expression-language": "For using expressions in service container configuration",
  2868. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2869. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2870. "symfony/yaml": ""
  2871. },
  2872. "type": "library",
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Symfony\\Component\\DependencyInjection\\": ""
  2876. },
  2877. "exclude-from-classmap": [
  2878. "/Tests/"
  2879. ]
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "Fabien Potencier",
  2888. "email": "fabien@symfony.com"
  2889. },
  2890. {
  2891. "name": "Symfony Community",
  2892. "homepage": "https://symfony.com/contributors"
  2893. }
  2894. ],
  2895. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2896. "homepage": "https://symfony.com",
  2897. "support": {
  2898. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.5"
  2899. },
  2900. "funding": [
  2901. {
  2902. "url": "https://symfony.com/sponsor",
  2903. "type": "custom"
  2904. },
  2905. {
  2906. "url": "https://github.com/fabpot",
  2907. "type": "github"
  2908. },
  2909. {
  2910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2911. "type": "tidelift"
  2912. }
  2913. ],
  2914. "time": "2022-02-24T09:30:07+00:00"
  2915. },
  2916. {
  2917. "name": "symfony/deprecation-contracts",
  2918. "version": "v2.5.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/symfony/deprecation-contracts.git",
  2922. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  2927. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": ">=7.1"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-main": "2.5-dev"
  2937. },
  2938. "thanks": {
  2939. "name": "symfony/contracts",
  2940. "url": "https://github.com/symfony/contracts"
  2941. }
  2942. },
  2943. "autoload": {
  2944. "files": [
  2945. "function.php"
  2946. ]
  2947. },
  2948. "notification-url": "https://packagist.org/downloads/",
  2949. "license": [
  2950. "MIT"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Nicolas Grekas",
  2955. "email": "p@tchwork.com"
  2956. },
  2957. {
  2958. "name": "Symfony Community",
  2959. "homepage": "https://symfony.com/contributors"
  2960. }
  2961. ],
  2962. "description": "A generic function and convention to trigger deprecation notices",
  2963. "homepage": "https://symfony.com",
  2964. "support": {
  2965. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  2966. },
  2967. "funding": [
  2968. {
  2969. "url": "https://symfony.com/sponsor",
  2970. "type": "custom"
  2971. },
  2972. {
  2973. "url": "https://github.com/fabpot",
  2974. "type": "github"
  2975. },
  2976. {
  2977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2978. "type": "tidelift"
  2979. }
  2980. ],
  2981. "time": "2021-07-12T14:48:14+00:00"
  2982. },
  2983. {
  2984. "name": "symfony/doctrine-bridge",
  2985. "version": "v5.4.5",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/symfony/doctrine-bridge.git",
  2989. "reference": "0c61df4d8311d9ff25a01d479b9c85a0df3b376d"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/0c61df4d8311d9ff25a01d479b9c85a0df3b376d",
  2994. "reference": "0c61df4d8311d9ff25a01d479b9c85a0df3b376d",
  2995. "shasum": ""
  2996. },
  2997. "require": {
  2998. "doctrine/event-manager": "~1.0",
  2999. "doctrine/persistence": "^2",
  3000. "php": ">=7.2.5",
  3001. "symfony/deprecation-contracts": "^2.1|^3",
  3002. "symfony/polyfill-ctype": "~1.8",
  3003. "symfony/polyfill-mbstring": "~1.0",
  3004. "symfony/polyfill-php80": "^1.16",
  3005. "symfony/service-contracts": "^1.1|^2|^3"
  3006. },
  3007. "conflict": {
  3008. "doctrine/dbal": "<2.13.1",
  3009. "doctrine/lexer": "<1.1",
  3010. "doctrine/orm": "<2.7.4",
  3011. "phpunit/phpunit": "<5.4.3",
  3012. "symfony/cache": "<5.4",
  3013. "symfony/dependency-injection": "<4.4",
  3014. "symfony/form": "<5.1",
  3015. "symfony/http-kernel": "<5",
  3016. "symfony/messenger": "<4.4",
  3017. "symfony/property-info": "<5",
  3018. "symfony/proxy-manager-bridge": "<4.4.19",
  3019. "symfony/security-bundle": "<5",
  3020. "symfony/security-core": "<5.3",
  3021. "symfony/validator": "<5.2"
  3022. },
  3023. "require-dev": {
  3024. "doctrine/annotations": "^1.10.4",
  3025. "doctrine/collections": "~1.0",
  3026. "doctrine/data-fixtures": "^1.1",
  3027. "doctrine/dbal": "^2.13.1|^3.0",
  3028. "doctrine/orm": "^2.7.4",
  3029. "psr/log": "^1|^2|^3",
  3030. "symfony/cache": "^5.4|^6.0",
  3031. "symfony/config": "^4.4|^5.0|^6.0",
  3032. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3033. "symfony/doctrine-messenger": "^5.1|^6.0",
  3034. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3035. "symfony/form": "^5.1.3|^6.0",
  3036. "symfony/http-kernel": "^5.0|^6.0",
  3037. "symfony/messenger": "^4.4|^5.0|^6.0",
  3038. "symfony/property-access": "^4.4|^5.0|^6.0",
  3039. "symfony/property-info": "^5.0|^6.0",
  3040. "symfony/proxy-manager-bridge": "^4.4|^5.0|^6.0",
  3041. "symfony/security-core": "^5.3|^6.0",
  3042. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3043. "symfony/translation": "^4.4|^5.0|^6.0",
  3044. "symfony/uid": "^5.1|^6.0",
  3045. "symfony/validator": "^5.2|^6.0",
  3046. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3047. },
  3048. "suggest": {
  3049. "doctrine/data-fixtures": "",
  3050. "doctrine/dbal": "",
  3051. "doctrine/orm": "",
  3052. "symfony/form": "",
  3053. "symfony/property-info": "",
  3054. "symfony/validator": ""
  3055. },
  3056. "type": "symfony-bridge",
  3057. "autoload": {
  3058. "psr-4": {
  3059. "Symfony\\Bridge\\Doctrine\\": ""
  3060. },
  3061. "exclude-from-classmap": [
  3062. "/Tests/"
  3063. ]
  3064. },
  3065. "notification-url": "https://packagist.org/downloads/",
  3066. "license": [
  3067. "MIT"
  3068. ],
  3069. "authors": [
  3070. {
  3071. "name": "Fabien Potencier",
  3072. "email": "fabien@symfony.com"
  3073. },
  3074. {
  3075. "name": "Symfony Community",
  3076. "homepage": "https://symfony.com/contributors"
  3077. }
  3078. ],
  3079. "description": "Provides integration for Doctrine with various Symfony components",
  3080. "homepage": "https://symfony.com",
  3081. "support": {
  3082. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.4.5"
  3083. },
  3084. "funding": [
  3085. {
  3086. "url": "https://symfony.com/sponsor",
  3087. "type": "custom"
  3088. },
  3089. {
  3090. "url": "https://github.com/fabpot",
  3091. "type": "github"
  3092. },
  3093. {
  3094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3095. "type": "tidelift"
  3096. }
  3097. ],
  3098. "time": "2022-02-09T08:59:58+00:00"
  3099. },
  3100. {
  3101. "name": "symfony/dotenv",
  3102. "version": "v5.4.5",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/symfony/dotenv.git",
  3106. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/symfony/dotenv/zipball/83a2310904a4f5d4f42526227b5a578ac82232a9",
  3111. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "php": ">=7.2.5",
  3116. "symfony/deprecation-contracts": "^2.1|^3"
  3117. },
  3118. "require-dev": {
  3119. "symfony/console": "^4.4|^5.0|^6.0",
  3120. "symfony/process": "^4.4|^5.0|^6.0"
  3121. },
  3122. "type": "library",
  3123. "autoload": {
  3124. "psr-4": {
  3125. "Symfony\\Component\\Dotenv\\": ""
  3126. },
  3127. "exclude-from-classmap": [
  3128. "/Tests/"
  3129. ]
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "MIT"
  3134. ],
  3135. "authors": [
  3136. {
  3137. "name": "Fabien Potencier",
  3138. "email": "fabien@symfony.com"
  3139. },
  3140. {
  3141. "name": "Symfony Community",
  3142. "homepage": "https://symfony.com/contributors"
  3143. }
  3144. ],
  3145. "description": "Registers environment variables from a .env file",
  3146. "homepage": "https://symfony.com",
  3147. "keywords": [
  3148. "dotenv",
  3149. "env",
  3150. "environment"
  3151. ],
  3152. "support": {
  3153. "source": "https://github.com/symfony/dotenv/tree/v5.4.5"
  3154. },
  3155. "funding": [
  3156. {
  3157. "url": "https://symfony.com/sponsor",
  3158. "type": "custom"
  3159. },
  3160. {
  3161. "url": "https://github.com/fabpot",
  3162. "type": "github"
  3163. },
  3164. {
  3165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3166. "type": "tidelift"
  3167. }
  3168. ],
  3169. "time": "2022-02-15T17:04:12+00:00"
  3170. },
  3171. {
  3172. "name": "symfony/error-handler",
  3173. "version": "v5.4.3",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/symfony/error-handler.git",
  3177. "reference": "c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5",
  3182. "reference": "c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "php": ">=7.2.5",
  3187. "psr/log": "^1|^2|^3",
  3188. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3189. },
  3190. "require-dev": {
  3191. "symfony/deprecation-contracts": "^2.1|^3",
  3192. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3193. "symfony/serializer": "^4.4|^5.0|^6.0"
  3194. },
  3195. "bin": [
  3196. "Resources/bin/patch-type-declarations"
  3197. ],
  3198. "type": "library",
  3199. "autoload": {
  3200. "psr-4": {
  3201. "Symfony\\Component\\ErrorHandler\\": ""
  3202. },
  3203. "exclude-from-classmap": [
  3204. "/Tests/"
  3205. ]
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "authors": [
  3212. {
  3213. "name": "Fabien Potencier",
  3214. "email": "fabien@symfony.com"
  3215. },
  3216. {
  3217. "name": "Symfony Community",
  3218. "homepage": "https://symfony.com/contributors"
  3219. }
  3220. ],
  3221. "description": "Provides tools to manage errors and ease debugging PHP code",
  3222. "homepage": "https://symfony.com",
  3223. "support": {
  3224. "source": "https://github.com/symfony/error-handler/tree/v5.4.3"
  3225. },
  3226. "funding": [
  3227. {
  3228. "url": "https://symfony.com/sponsor",
  3229. "type": "custom"
  3230. },
  3231. {
  3232. "url": "https://github.com/fabpot",
  3233. "type": "github"
  3234. },
  3235. {
  3236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3237. "type": "tidelift"
  3238. }
  3239. ],
  3240. "time": "2022-01-02T09:53:40+00:00"
  3241. },
  3242. {
  3243. "name": "symfony/event-dispatcher",
  3244. "version": "v5.4.3",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/symfony/event-dispatcher.git",
  3248. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  3253. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "php": ">=7.2.5",
  3258. "symfony/deprecation-contracts": "^2.1|^3",
  3259. "symfony/event-dispatcher-contracts": "^2|^3",
  3260. "symfony/polyfill-php80": "^1.16"
  3261. },
  3262. "conflict": {
  3263. "symfony/dependency-injection": "<4.4"
  3264. },
  3265. "provide": {
  3266. "psr/event-dispatcher-implementation": "1.0",
  3267. "symfony/event-dispatcher-implementation": "2.0"
  3268. },
  3269. "require-dev": {
  3270. "psr/log": "^1|^2|^3",
  3271. "symfony/config": "^4.4|^5.0|^6.0",
  3272. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3273. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3274. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3275. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3276. "symfony/service-contracts": "^1.1|^2|^3",
  3277. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3278. },
  3279. "suggest": {
  3280. "symfony/dependency-injection": "",
  3281. "symfony/http-kernel": ""
  3282. },
  3283. "type": "library",
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Symfony\\Component\\EventDispatcher\\": ""
  3287. },
  3288. "exclude-from-classmap": [
  3289. "/Tests/"
  3290. ]
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Fabien Potencier",
  3299. "email": "fabien@symfony.com"
  3300. },
  3301. {
  3302. "name": "Symfony Community",
  3303. "homepage": "https://symfony.com/contributors"
  3304. }
  3305. ],
  3306. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3307. "homepage": "https://symfony.com",
  3308. "support": {
  3309. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3"
  3310. },
  3311. "funding": [
  3312. {
  3313. "url": "https://symfony.com/sponsor",
  3314. "type": "custom"
  3315. },
  3316. {
  3317. "url": "https://github.com/fabpot",
  3318. "type": "github"
  3319. },
  3320. {
  3321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3322. "type": "tidelift"
  3323. }
  3324. ],
  3325. "time": "2022-01-02T09:53:40+00:00"
  3326. },
  3327. {
  3328. "name": "symfony/event-dispatcher-contracts",
  3329. "version": "v2.5.0",
  3330. "source": {
  3331. "type": "git",
  3332. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3333. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  3334. },
  3335. "dist": {
  3336. "type": "zip",
  3337. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3338. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3339. "shasum": ""
  3340. },
  3341. "require": {
  3342. "php": ">=7.2.5",
  3343. "psr/event-dispatcher": "^1"
  3344. },
  3345. "suggest": {
  3346. "symfony/event-dispatcher-implementation": ""
  3347. },
  3348. "type": "library",
  3349. "extra": {
  3350. "branch-alias": {
  3351. "dev-main": "2.5-dev"
  3352. },
  3353. "thanks": {
  3354. "name": "symfony/contracts",
  3355. "url": "https://github.com/symfony/contracts"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-4": {
  3360. "Symfony\\Contracts\\EventDispatcher\\": ""
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "MIT"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Nicolas Grekas",
  3370. "email": "p@tchwork.com"
  3371. },
  3372. {
  3373. "name": "Symfony Community",
  3374. "homepage": "https://symfony.com/contributors"
  3375. }
  3376. ],
  3377. "description": "Generic abstractions related to dispatching event",
  3378. "homepage": "https://symfony.com",
  3379. "keywords": [
  3380. "abstractions",
  3381. "contracts",
  3382. "decoupling",
  3383. "interfaces",
  3384. "interoperability",
  3385. "standards"
  3386. ],
  3387. "support": {
  3388. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  3389. },
  3390. "funding": [
  3391. {
  3392. "url": "https://symfony.com/sponsor",
  3393. "type": "custom"
  3394. },
  3395. {
  3396. "url": "https://github.com/fabpot",
  3397. "type": "github"
  3398. },
  3399. {
  3400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3401. "type": "tidelift"
  3402. }
  3403. ],
  3404. "time": "2021-07-12T14:48:14+00:00"
  3405. },
  3406. {
  3407. "name": "symfony/expression-language",
  3408. "version": "v5.4.3",
  3409. "source": {
  3410. "type": "git",
  3411. "url": "https://github.com/symfony/expression-language.git",
  3412. "reference": "c68c6d1a308f6e2a1382bdb3a317959e1ee9aa08"
  3413. },
  3414. "dist": {
  3415. "type": "zip",
  3416. "url": "https://api.github.com/repos/symfony/expression-language/zipball/c68c6d1a308f6e2a1382bdb3a317959e1ee9aa08",
  3417. "reference": "c68c6d1a308f6e2a1382bdb3a317959e1ee9aa08",
  3418. "shasum": ""
  3419. },
  3420. "require": {
  3421. "php": ">=7.2.5",
  3422. "symfony/cache": "^4.4|^5.0|^6.0",
  3423. "symfony/service-contracts": "^1.1|^2|^3"
  3424. },
  3425. "type": "library",
  3426. "autoload": {
  3427. "psr-4": {
  3428. "Symfony\\Component\\ExpressionLanguage\\": ""
  3429. },
  3430. "exclude-from-classmap": [
  3431. "/Tests/"
  3432. ]
  3433. },
  3434. "notification-url": "https://packagist.org/downloads/",
  3435. "license": [
  3436. "MIT"
  3437. ],
  3438. "authors": [
  3439. {
  3440. "name": "Fabien Potencier",
  3441. "email": "fabien@symfony.com"
  3442. },
  3443. {
  3444. "name": "Symfony Community",
  3445. "homepage": "https://symfony.com/contributors"
  3446. }
  3447. ],
  3448. "description": "Provides an engine that can compile and evaluate expressions",
  3449. "homepage": "https://symfony.com",
  3450. "support": {
  3451. "source": "https://github.com/symfony/expression-language/tree/v5.4.3"
  3452. },
  3453. "funding": [
  3454. {
  3455. "url": "https://symfony.com/sponsor",
  3456. "type": "custom"
  3457. },
  3458. {
  3459. "url": "https://github.com/fabpot",
  3460. "type": "github"
  3461. },
  3462. {
  3463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3464. "type": "tidelift"
  3465. }
  3466. ],
  3467. "time": "2022-01-02T09:53:40+00:00"
  3468. },
  3469. {
  3470. "name": "symfony/filesystem",
  3471. "version": "v5.4.5",
  3472. "source": {
  3473. "type": "git",
  3474. "url": "https://github.com/symfony/filesystem.git",
  3475. "reference": "797680071ea8f71b94eb958680c50d0e002638f5"
  3476. },
  3477. "dist": {
  3478. "type": "zip",
  3479. "url": "https://api.github.com/repos/symfony/filesystem/zipball/797680071ea8f71b94eb958680c50d0e002638f5",
  3480. "reference": "797680071ea8f71b94eb958680c50d0e002638f5",
  3481. "shasum": ""
  3482. },
  3483. "require": {
  3484. "php": ">=7.2.5",
  3485. "symfony/polyfill-ctype": "~1.8",
  3486. "symfony/polyfill-mbstring": "~1.8",
  3487. "symfony/polyfill-php80": "^1.16"
  3488. },
  3489. "type": "library",
  3490. "autoload": {
  3491. "psr-4": {
  3492. "Symfony\\Component\\Filesystem\\": ""
  3493. },
  3494. "exclude-from-classmap": [
  3495. "/Tests/"
  3496. ]
  3497. },
  3498. "notification-url": "https://packagist.org/downloads/",
  3499. "license": [
  3500. "MIT"
  3501. ],
  3502. "authors": [
  3503. {
  3504. "name": "Fabien Potencier",
  3505. "email": "fabien@symfony.com"
  3506. },
  3507. {
  3508. "name": "Symfony Community",
  3509. "homepage": "https://symfony.com/contributors"
  3510. }
  3511. ],
  3512. "description": "Provides basic utilities for the filesystem",
  3513. "homepage": "https://symfony.com",
  3514. "support": {
  3515. "source": "https://github.com/symfony/filesystem/tree/v5.4.5"
  3516. },
  3517. "funding": [
  3518. {
  3519. "url": "https://symfony.com/sponsor",
  3520. "type": "custom"
  3521. },
  3522. {
  3523. "url": "https://github.com/fabpot",
  3524. "type": "github"
  3525. },
  3526. {
  3527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3528. "type": "tidelift"
  3529. }
  3530. ],
  3531. "time": "2022-02-27T10:31:47+00:00"
  3532. },
  3533. {
  3534. "name": "symfony/finder",
  3535. "version": "v5.4.3",
  3536. "source": {
  3537. "type": "git",
  3538. "url": "https://github.com/symfony/finder.git",
  3539. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
  3540. },
  3541. "dist": {
  3542. "type": "zip",
  3543. "url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  3544. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  3545. "shasum": ""
  3546. },
  3547. "require": {
  3548. "php": ">=7.2.5",
  3549. "symfony/deprecation-contracts": "^2.1|^3",
  3550. "symfony/polyfill-php80": "^1.16"
  3551. },
  3552. "type": "library",
  3553. "autoload": {
  3554. "psr-4": {
  3555. "Symfony\\Component\\Finder\\": ""
  3556. },
  3557. "exclude-from-classmap": [
  3558. "/Tests/"
  3559. ]
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Fabien Potencier",
  3568. "email": "fabien@symfony.com"
  3569. },
  3570. {
  3571. "name": "Symfony Community",
  3572. "homepage": "https://symfony.com/contributors"
  3573. }
  3574. ],
  3575. "description": "Finds files and directories via an intuitive fluent interface",
  3576. "homepage": "https://symfony.com",
  3577. "support": {
  3578. "source": "https://github.com/symfony/finder/tree/v5.4.3"
  3579. },
  3580. "funding": [
  3581. {
  3582. "url": "https://symfony.com/sponsor",
  3583. "type": "custom"
  3584. },
  3585. {
  3586. "url": "https://github.com/fabpot",
  3587. "type": "github"
  3588. },
  3589. {
  3590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3591. "type": "tidelift"
  3592. }
  3593. ],
  3594. "time": "2022-01-26T16:34:36+00:00"
  3595. },
  3596. {
  3597. "name": "symfony/flex",
  3598. "version": "v1.18.5",
  3599. "source": {
  3600. "type": "git",
  3601. "url": "https://github.com/symfony/flex.git",
  3602. "reference": "10e438f53a972439675dc720706f0cd5c0ed94f1"
  3603. },
  3604. "dist": {
  3605. "type": "zip",
  3606. "url": "https://api.github.com/repos/symfony/flex/zipball/10e438f53a972439675dc720706f0cd5c0ed94f1",
  3607. "reference": "10e438f53a972439675dc720706f0cd5c0ed94f1",
  3608. "shasum": ""
  3609. },
  3610. "require": {
  3611. "composer-plugin-api": "^1.0|^2.0",
  3612. "php": ">=7.1"
  3613. },
  3614. "require-dev": {
  3615. "composer/composer": "^1.0.2|^2.0",
  3616. "symfony/dotenv": "^4.4|^5.0|^6.0",
  3617. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3618. "symfony/phpunit-bridge": "^4.4.12|^5.0|^6.0",
  3619. "symfony/process": "^4.4|^5.0|^6.0"
  3620. },
  3621. "type": "composer-plugin",
  3622. "extra": {
  3623. "class": "Symfony\\Flex\\Flex"
  3624. },
  3625. "autoload": {
  3626. "psr-4": {
  3627. "Symfony\\Flex\\": "src"
  3628. }
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "Fabien Potencier",
  3637. "email": "fabien.potencier@gmail.com"
  3638. }
  3639. ],
  3640. "description": "Composer plugin for Symfony",
  3641. "support": {
  3642. "issues": "https://github.com/symfony/flex/issues",
  3643. "source": "https://github.com/symfony/flex/tree/v1.18.5"
  3644. },
  3645. "funding": [
  3646. {
  3647. "url": "https://symfony.com/sponsor",
  3648. "type": "custom"
  3649. },
  3650. {
  3651. "url": "https://github.com/fabpot",
  3652. "type": "github"
  3653. },
  3654. {
  3655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3656. "type": "tidelift"
  3657. }
  3658. ],
  3659. "time": "2022-02-16T17:26:46+00:00"
  3660. },
  3661. {
  3662. "name": "symfony/form",
  3663. "version": "v5.4.5",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/symfony/form.git",
  3667. "reference": "18f4f8209d2db06fc3cf5ba3b2eb8e4706b34aac"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/symfony/form/zipball/18f4f8209d2db06fc3cf5ba3b2eb8e4706b34aac",
  3672. "reference": "18f4f8209d2db06fc3cf5ba3b2eb8e4706b34aac",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "php": ">=7.2.5",
  3677. "symfony/deprecation-contracts": "^2.1|^3",
  3678. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3679. "symfony/options-resolver": "^5.1|^6.0",
  3680. "symfony/polyfill-ctype": "~1.8",
  3681. "symfony/polyfill-intl-icu": "^1.21",
  3682. "symfony/polyfill-mbstring": "~1.0",
  3683. "symfony/polyfill-php80": "^1.16",
  3684. "symfony/polyfill-php81": "^1.23",
  3685. "symfony/property-access": "^5.0.8|^6.0",
  3686. "symfony/service-contracts": "^1.1|^2|^3"
  3687. },
  3688. "conflict": {
  3689. "phpunit/phpunit": "<5.4.3",
  3690. "symfony/console": "<4.4",
  3691. "symfony/dependency-injection": "<4.4",
  3692. "symfony/doctrine-bridge": "<4.4",
  3693. "symfony/error-handler": "<4.4.5",
  3694. "symfony/framework-bundle": "<4.4",
  3695. "symfony/http-kernel": "<4.4",
  3696. "symfony/translation": "<4.4",
  3697. "symfony/translation-contracts": "<1.1.7",
  3698. "symfony/twig-bridge": "<4.4"
  3699. },
  3700. "require-dev": {
  3701. "doctrine/collections": "~1.0",
  3702. "symfony/config": "^4.4|^5.0|^6.0",
  3703. "symfony/console": "^5.4|^6.0",
  3704. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3705. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3706. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3707. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3708. "symfony/intl": "^4.4|^5.0|^6.0",
  3709. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  3710. "symfony/translation": "^4.4|^5.0|^6.0",
  3711. "symfony/uid": "^5.1|^6.0",
  3712. "symfony/validator": "^4.4.17|^5.1.9|^6.0",
  3713. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3714. },
  3715. "suggest": {
  3716. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3717. "symfony/twig-bridge": "For templating with Twig.",
  3718. "symfony/validator": "For form validation."
  3719. },
  3720. "type": "library",
  3721. "autoload": {
  3722. "psr-4": {
  3723. "Symfony\\Component\\Form\\": ""
  3724. },
  3725. "exclude-from-classmap": [
  3726. "/Tests/"
  3727. ]
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Fabien Potencier",
  3736. "email": "fabien@symfony.com"
  3737. },
  3738. {
  3739. "name": "Symfony Community",
  3740. "homepage": "https://symfony.com/contributors"
  3741. }
  3742. ],
  3743. "description": "Allows to easily create, process and reuse HTML forms",
  3744. "homepage": "https://symfony.com",
  3745. "support": {
  3746. "source": "https://github.com/symfony/form/tree/v5.4.5"
  3747. },
  3748. "funding": [
  3749. {
  3750. "url": "https://symfony.com/sponsor",
  3751. "type": "custom"
  3752. },
  3753. {
  3754. "url": "https://github.com/fabpot",
  3755. "type": "github"
  3756. },
  3757. {
  3758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3759. "type": "tidelift"
  3760. }
  3761. ],
  3762. "time": "2022-02-04T23:26:40+00:00"
  3763. },
  3764. {
  3765. "name": "symfony/framework-bundle",
  3766. "version": "v5.4.5",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/symfony/framework-bundle.git",
  3770. "reference": "59eda813401a947efefa8509322b9adee576e926"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/59eda813401a947efefa8509322b9adee576e926",
  3775. "reference": "59eda813401a947efefa8509322b9adee576e926",
  3776. "shasum": ""
  3777. },
  3778. "require": {
  3779. "ext-xml": "*",
  3780. "php": ">=7.2.5",
  3781. "symfony/cache": "^5.2|^6.0",
  3782. "symfony/config": "^5.3|^6.0",
  3783. "symfony/dependency-injection": "^5.4.5|^6.0.5",
  3784. "symfony/deprecation-contracts": "^2.1|^3",
  3785. "symfony/error-handler": "^4.4.1|^5.0.1|^6.0",
  3786. "symfony/event-dispatcher": "^5.1|^6.0",
  3787. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3788. "symfony/finder": "^4.4|^5.0|^6.0",
  3789. "symfony/http-foundation": "^5.3|^6.0",
  3790. "symfony/http-kernel": "^5.4|^6.0",
  3791. "symfony/polyfill-mbstring": "~1.0",
  3792. "symfony/polyfill-php80": "^1.16",
  3793. "symfony/polyfill-php81": "^1.22",
  3794. "symfony/routing": "^5.3|^6.0"
  3795. },
  3796. "conflict": {
  3797. "doctrine/annotations": "<1.13.1",
  3798. "doctrine/cache": "<1.11",
  3799. "doctrine/persistence": "<1.3",
  3800. "phpdocumentor/reflection-docblock": "<3.2.2",
  3801. "phpdocumentor/type-resolver": "<1.4.0",
  3802. "phpunit/phpunit": "<5.4.3",
  3803. "symfony/asset": "<5.3",
  3804. "symfony/console": "<5.2.5",
  3805. "symfony/dom-crawler": "<4.4",
  3806. "symfony/dotenv": "<5.1",
  3807. "symfony/form": "<5.2",
  3808. "symfony/http-client": "<4.4",
  3809. "symfony/lock": "<4.4",
  3810. "symfony/mailer": "<5.2",
  3811. "symfony/messenger": "<5.4",
  3812. "symfony/mime": "<4.4",
  3813. "symfony/property-access": "<5.3",
  3814. "symfony/property-info": "<4.4",
  3815. "symfony/security-csrf": "<5.3",
  3816. "symfony/serializer": "<5.2",
  3817. "symfony/service-contracts": ">=3.0",
  3818. "symfony/stopwatch": "<4.4",
  3819. "symfony/translation": "<5.3",
  3820. "symfony/twig-bridge": "<4.4",
  3821. "symfony/twig-bundle": "<4.4",
  3822. "symfony/validator": "<5.2",
  3823. "symfony/web-profiler-bundle": "<4.4",
  3824. "symfony/workflow": "<5.2"
  3825. },
  3826. "require-dev": {
  3827. "doctrine/annotations": "^1.13.1",
  3828. "doctrine/cache": "^1.11|^2.0",
  3829. "doctrine/persistence": "^1.3|^2.0",
  3830. "paragonie/sodium_compat": "^1.8",
  3831. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3832. "symfony/asset": "^5.3|^6.0",
  3833. "symfony/browser-kit": "^5.4|^6.0",
  3834. "symfony/console": "^5.4|^6.0",
  3835. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3836. "symfony/dom-crawler": "^4.4.30|^5.3.7|^6.0",
  3837. "symfony/dotenv": "^5.1|^6.0",
  3838. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3839. "symfony/form": "^5.2|^6.0",
  3840. "symfony/http-client": "^4.4|^5.0|^6.0",
  3841. "symfony/lock": "^4.4|^5.0|^6.0",
  3842. "symfony/mailer": "^5.2|^6.0",
  3843. "symfony/messenger": "^5.4|^6.0",
  3844. "symfony/mime": "^4.4|^5.0|^6.0",
  3845. "symfony/notifier": "^5.4|^6.0",
  3846. "symfony/phpunit-bridge": "^5.3|^6.0",
  3847. "symfony/polyfill-intl-icu": "~1.0",
  3848. "symfony/process": "^4.4|^5.0|^6.0",
  3849. "symfony/property-info": "^4.4|^5.0|^6.0",
  3850. "symfony/rate-limiter": "^5.2|^6.0",
  3851. "symfony/security-bundle": "^5.4|^6.0",
  3852. "symfony/serializer": "^5.4|^6.0",
  3853. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3854. "symfony/string": "^5.0|^6.0",
  3855. "symfony/translation": "^5.3|^6.0",
  3856. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  3857. "symfony/validator": "^5.2|^6.0",
  3858. "symfony/web-link": "^4.4|^5.0|^6.0",
  3859. "symfony/workflow": "^5.2|^6.0",
  3860. "symfony/yaml": "^4.4|^5.0|^6.0",
  3861. "twig/twig": "^2.10|^3.0"
  3862. },
  3863. "suggest": {
  3864. "ext-apcu": "For best performance of the system caches",
  3865. "symfony/console": "For using the console commands",
  3866. "symfony/form": "For using forms",
  3867. "symfony/property-info": "For using the property_info service",
  3868. "symfony/serializer": "For using the serializer service",
  3869. "symfony/validator": "For using validation",
  3870. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  3871. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  3872. },
  3873. "type": "symfony-bundle",
  3874. "autoload": {
  3875. "psr-4": {
  3876. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3877. },
  3878. "exclude-from-classmap": [
  3879. "/Tests/"
  3880. ]
  3881. },
  3882. "notification-url": "https://packagist.org/downloads/",
  3883. "license": [
  3884. "MIT"
  3885. ],
  3886. "authors": [
  3887. {
  3888. "name": "Fabien Potencier",
  3889. "email": "fabien@symfony.com"
  3890. },
  3891. {
  3892. "name": "Symfony Community",
  3893. "homepage": "https://symfony.com/contributors"
  3894. }
  3895. ],
  3896. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3897. "homepage": "https://symfony.com",
  3898. "support": {
  3899. "source": "https://github.com/symfony/framework-bundle/tree/v5.4.5"
  3900. },
  3901. "funding": [
  3902. {
  3903. "url": "https://symfony.com/sponsor",
  3904. "type": "custom"
  3905. },
  3906. {
  3907. "url": "https://github.com/fabpot",
  3908. "type": "github"
  3909. },
  3910. {
  3911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3912. "type": "tidelift"
  3913. }
  3914. ],
  3915. "time": "2022-02-21T15:00:19+00:00"
  3916. },
  3917. {
  3918. "name": "symfony/http-foundation",
  3919. "version": "v5.4.5",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/symfony/http-foundation.git",
  3923. "reference": "dd68a3b24262a902bc338fc7c9a2a61b7ab2029f"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/dd68a3b24262a902bc338fc7c9a2a61b7ab2029f",
  3928. "reference": "dd68a3b24262a902bc338fc7c9a2a61b7ab2029f",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "php": ">=7.2.5",
  3933. "symfony/deprecation-contracts": "^2.1|^3",
  3934. "symfony/polyfill-mbstring": "~1.1",
  3935. "symfony/polyfill-php80": "^1.16"
  3936. },
  3937. "require-dev": {
  3938. "predis/predis": "~1.0",
  3939. "symfony/cache": "^4.4|^5.0|^6.0",
  3940. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3941. "symfony/mime": "^4.4|^5.0|^6.0"
  3942. },
  3943. "suggest": {
  3944. "symfony/mime": "To use the file extension guesser"
  3945. },
  3946. "type": "library",
  3947. "autoload": {
  3948. "psr-4": {
  3949. "Symfony\\Component\\HttpFoundation\\": ""
  3950. },
  3951. "exclude-from-classmap": [
  3952. "/Tests/"
  3953. ]
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Fabien Potencier",
  3962. "email": "fabien@symfony.com"
  3963. },
  3964. {
  3965. "name": "Symfony Community",
  3966. "homepage": "https://symfony.com/contributors"
  3967. }
  3968. ],
  3969. "description": "Defines an object-oriented layer for the HTTP specification",
  3970. "homepage": "https://symfony.com",
  3971. "support": {
  3972. "source": "https://github.com/symfony/http-foundation/tree/v5.4.5"
  3973. },
  3974. "funding": [
  3975. {
  3976. "url": "https://symfony.com/sponsor",
  3977. "type": "custom"
  3978. },
  3979. {
  3980. "url": "https://github.com/fabpot",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2022-02-21T15:00:19+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/http-kernel",
  3992. "version": "v5.4.5",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/http-kernel.git",
  3996. "reference": "c770c90bc71f1db911e2d996c991fdafe273ac84"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c770c90bc71f1db911e2d996c991fdafe273ac84",
  4001. "reference": "c770c90bc71f1db911e2d996c991fdafe273ac84",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "php": ">=7.2.5",
  4006. "psr/log": "^1|^2",
  4007. "symfony/deprecation-contracts": "^2.1|^3",
  4008. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4009. "symfony/event-dispatcher": "^5.0|^6.0",
  4010. "symfony/http-foundation": "^5.3.7|^6.0",
  4011. "symfony/polyfill-ctype": "^1.8",
  4012. "symfony/polyfill-php73": "^1.9",
  4013. "symfony/polyfill-php80": "^1.16"
  4014. },
  4015. "conflict": {
  4016. "symfony/browser-kit": "<5.4",
  4017. "symfony/cache": "<5.0",
  4018. "symfony/config": "<5.0",
  4019. "symfony/console": "<4.4",
  4020. "symfony/dependency-injection": "<5.3",
  4021. "symfony/doctrine-bridge": "<5.0",
  4022. "symfony/form": "<5.0",
  4023. "symfony/http-client": "<5.0",
  4024. "symfony/mailer": "<5.0",
  4025. "symfony/messenger": "<5.0",
  4026. "symfony/translation": "<5.0",
  4027. "symfony/twig-bridge": "<5.0",
  4028. "symfony/validator": "<5.0",
  4029. "twig/twig": "<2.13"
  4030. },
  4031. "provide": {
  4032. "psr/log-implementation": "1.0|2.0"
  4033. },
  4034. "require-dev": {
  4035. "psr/cache": "^1.0|^2.0|^3.0",
  4036. "symfony/browser-kit": "^5.4|^6.0",
  4037. "symfony/config": "^5.0|^6.0",
  4038. "symfony/console": "^4.4|^5.0|^6.0",
  4039. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4040. "symfony/dependency-injection": "^5.3|^6.0",
  4041. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  4042. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4043. "symfony/finder": "^4.4|^5.0|^6.0",
  4044. "symfony/http-client-contracts": "^1.1|^2|^3",
  4045. "symfony/process": "^4.4|^5.0|^6.0",
  4046. "symfony/routing": "^4.4|^5.0|^6.0",
  4047. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4048. "symfony/translation": "^4.4|^5.0|^6.0",
  4049. "symfony/translation-contracts": "^1.1|^2|^3",
  4050. "twig/twig": "^2.13|^3.0.4"
  4051. },
  4052. "suggest": {
  4053. "symfony/browser-kit": "",
  4054. "symfony/config": "",
  4055. "symfony/console": "",
  4056. "symfony/dependency-injection": ""
  4057. },
  4058. "type": "library",
  4059. "autoload": {
  4060. "psr-4": {
  4061. "Symfony\\Component\\HttpKernel\\": ""
  4062. },
  4063. "exclude-from-classmap": [
  4064. "/Tests/"
  4065. ]
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Fabien Potencier",
  4074. "email": "fabien@symfony.com"
  4075. },
  4076. {
  4077. "name": "Symfony Community",
  4078. "homepage": "https://symfony.com/contributors"
  4079. }
  4080. ],
  4081. "description": "Provides a structured process for converting a Request into a Response",
  4082. "homepage": "https://symfony.com",
  4083. "support": {
  4084. "source": "https://github.com/symfony/http-kernel/tree/v5.4.5"
  4085. },
  4086. "funding": [
  4087. {
  4088. "url": "https://symfony.com/sponsor",
  4089. "type": "custom"
  4090. },
  4091. {
  4092. "url": "https://github.com/fabpot",
  4093. "type": "github"
  4094. },
  4095. {
  4096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4097. "type": "tidelift"
  4098. }
  4099. ],
  4100. "time": "2022-02-28T07:57:55+00:00"
  4101. },
  4102. {
  4103. "name": "symfony/mailer",
  4104. "version": "v5.4.5",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/symfony/mailer.git",
  4108. "reference": "f6e927ec95c957131e6b2c78790e1a6d4c576447"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/symfony/mailer/zipball/f6e927ec95c957131e6b2c78790e1a6d4c576447",
  4113. "reference": "f6e927ec95c957131e6b2c78790e1a6d4c576447",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "egulias/email-validator": "^2.1.10|^3",
  4118. "php": ">=7.2.5",
  4119. "psr/event-dispatcher": "^1",
  4120. "psr/log": "^1|^2|^3",
  4121. "symfony/deprecation-contracts": "^2.1|^3",
  4122. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4123. "symfony/mime": "^5.2.6|^6.0",
  4124. "symfony/polyfill-php80": "^1.16",
  4125. "symfony/service-contracts": "^1.1|^2|^3"
  4126. },
  4127. "conflict": {
  4128. "symfony/http-kernel": "<4.4"
  4129. },
  4130. "require-dev": {
  4131. "symfony/http-client-contracts": "^1.1|^2|^3",
  4132. "symfony/messenger": "^4.4|^5.0|^6.0"
  4133. },
  4134. "type": "library",
  4135. "autoload": {
  4136. "psr-4": {
  4137. "Symfony\\Component\\Mailer\\": ""
  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": "Helps sending emails",
  4158. "homepage": "https://symfony.com",
  4159. "support": {
  4160. "source": "https://github.com/symfony/mailer/tree/v5.4.5"
  4161. },
  4162. "funding": [
  4163. {
  4164. "url": "https://symfony.com/sponsor",
  4165. "type": "custom"
  4166. },
  4167. {
  4168. "url": "https://github.com/fabpot",
  4169. "type": "github"
  4170. },
  4171. {
  4172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4173. "type": "tidelift"
  4174. }
  4175. ],
  4176. "time": "2022-02-25T10:48:33+00:00"
  4177. },
  4178. {
  4179. "name": "symfony/mime",
  4180. "version": "v5.4.3",
  4181. "source": {
  4182. "type": "git",
  4183. "url": "https://github.com/symfony/mime.git",
  4184. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f"
  4185. },
  4186. "dist": {
  4187. "type": "zip",
  4188. "url": "https://api.github.com/repos/symfony/mime/zipball/e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  4189. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  4190. "shasum": ""
  4191. },
  4192. "require": {
  4193. "php": ">=7.2.5",
  4194. "symfony/deprecation-contracts": "^2.1|^3",
  4195. "symfony/polyfill-intl-idn": "^1.10",
  4196. "symfony/polyfill-mbstring": "^1.0",
  4197. "symfony/polyfill-php80": "^1.16"
  4198. },
  4199. "conflict": {
  4200. "egulias/email-validator": "~3.0.0",
  4201. "phpdocumentor/reflection-docblock": "<3.2.2",
  4202. "phpdocumentor/type-resolver": "<1.4.0",
  4203. "symfony/mailer": "<4.4"
  4204. },
  4205. "require-dev": {
  4206. "egulias/email-validator": "^2.1.10|^3.1",
  4207. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4208. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4209. "symfony/property-access": "^4.4|^5.1|^6.0",
  4210. "symfony/property-info": "^4.4|^5.1|^6.0",
  4211. "symfony/serializer": "^5.2|^6.0"
  4212. },
  4213. "type": "library",
  4214. "autoload": {
  4215. "psr-4": {
  4216. "Symfony\\Component\\Mime\\": ""
  4217. },
  4218. "exclude-from-classmap": [
  4219. "/Tests/"
  4220. ]
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Fabien Potencier",
  4229. "email": "fabien@symfony.com"
  4230. },
  4231. {
  4232. "name": "Symfony Community",
  4233. "homepage": "https://symfony.com/contributors"
  4234. }
  4235. ],
  4236. "description": "Allows manipulating MIME messages",
  4237. "homepage": "https://symfony.com",
  4238. "keywords": [
  4239. "mime",
  4240. "mime-type"
  4241. ],
  4242. "support": {
  4243. "source": "https://github.com/symfony/mime/tree/v5.4.3"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://symfony.com/sponsor",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://github.com/fabpot",
  4252. "type": "github"
  4253. },
  4254. {
  4255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4256. "type": "tidelift"
  4257. }
  4258. ],
  4259. "time": "2022-01-02T09:53:40+00:00"
  4260. },
  4261. {
  4262. "name": "symfony/monolog-bridge",
  4263. "version": "v5.4.3",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/symfony/monolog-bridge.git",
  4267. "reference": "4b56e17c443e7092895477f047f2a70f324f984c"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/4b56e17c443e7092895477f047f2a70f324f984c",
  4272. "reference": "4b56e17c443e7092895477f047f2a70f324f984c",
  4273. "shasum": ""
  4274. },
  4275. "require": {
  4276. "monolog/monolog": "^1.25.1|^2",
  4277. "php": ">=7.2.5",
  4278. "symfony/deprecation-contracts": "^2.1|^3",
  4279. "symfony/http-kernel": "^5.3|^6.0",
  4280. "symfony/polyfill-php80": "^1.16",
  4281. "symfony/service-contracts": "^1.1|^2|^3"
  4282. },
  4283. "conflict": {
  4284. "symfony/console": "<4.4",
  4285. "symfony/http-foundation": "<5.3"
  4286. },
  4287. "require-dev": {
  4288. "symfony/console": "^4.4|^5.0|^6.0",
  4289. "symfony/http-client": "^4.4|^5.0|^6.0",
  4290. "symfony/mailer": "^4.4|^5.0|^6.0",
  4291. "symfony/messenger": "^4.4|^5.0|^6.0",
  4292. "symfony/mime": "^4.4|^5.0|^6.0",
  4293. "symfony/security-core": "^4.4|^5.0|^6.0",
  4294. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4295. },
  4296. "suggest": {
  4297. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4298. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4299. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4300. },
  4301. "type": "symfony-bridge",
  4302. "autoload": {
  4303. "psr-4": {
  4304. "Symfony\\Bridge\\Monolog\\": ""
  4305. },
  4306. "exclude-from-classmap": [
  4307. "/Tests/"
  4308. ]
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Fabien Potencier",
  4317. "email": "fabien@symfony.com"
  4318. },
  4319. {
  4320. "name": "Symfony Community",
  4321. "homepage": "https://symfony.com/contributors"
  4322. }
  4323. ],
  4324. "description": "Provides integration for Monolog with various Symfony components",
  4325. "homepage": "https://symfony.com",
  4326. "support": {
  4327. "source": "https://github.com/symfony/monolog-bridge/tree/v5.4.3"
  4328. },
  4329. "funding": [
  4330. {
  4331. "url": "https://symfony.com/sponsor",
  4332. "type": "custom"
  4333. },
  4334. {
  4335. "url": "https://github.com/fabpot",
  4336. "type": "github"
  4337. },
  4338. {
  4339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4340. "type": "tidelift"
  4341. }
  4342. ],
  4343. "time": "2022-01-02T09:53:40+00:00"
  4344. },
  4345. {
  4346. "name": "symfony/monolog-bundle",
  4347. "version": "v3.7.1",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://github.com/symfony/monolog-bundle.git",
  4351. "reference": "fde12fc628162787a4e53877abadc30047fd868b"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/fde12fc628162787a4e53877abadc30047fd868b",
  4356. "reference": "fde12fc628162787a4e53877abadc30047fd868b",
  4357. "shasum": ""
  4358. },
  4359. "require": {
  4360. "monolog/monolog": "~1.22 || ~2.0",
  4361. "php": ">=7.1.3",
  4362. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4363. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4364. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4365. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4366. },
  4367. "require-dev": {
  4368. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4369. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4370. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4371. },
  4372. "type": "symfony-bundle",
  4373. "extra": {
  4374. "branch-alias": {
  4375. "dev-master": "3.x-dev"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "psr-4": {
  4380. "Symfony\\Bundle\\MonologBundle\\": ""
  4381. },
  4382. "exclude-from-classmap": [
  4383. "/Tests/"
  4384. ]
  4385. },
  4386. "notification-url": "https://packagist.org/downloads/",
  4387. "license": [
  4388. "MIT"
  4389. ],
  4390. "authors": [
  4391. {
  4392. "name": "Fabien Potencier",
  4393. "email": "fabien@symfony.com"
  4394. },
  4395. {
  4396. "name": "Symfony Community",
  4397. "homepage": "https://symfony.com/contributors"
  4398. }
  4399. ],
  4400. "description": "Symfony MonologBundle",
  4401. "homepage": "https://symfony.com",
  4402. "keywords": [
  4403. "log",
  4404. "logging"
  4405. ],
  4406. "support": {
  4407. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4408. "source": "https://github.com/symfony/monolog-bundle/tree/v3.7.1"
  4409. },
  4410. "funding": [
  4411. {
  4412. "url": "https://symfony.com/sponsor",
  4413. "type": "custom"
  4414. },
  4415. {
  4416. "url": "https://github.com/fabpot",
  4417. "type": "github"
  4418. },
  4419. {
  4420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4421. "type": "tidelift"
  4422. }
  4423. ],
  4424. "time": "2021-11-05T10:34:29+00:00"
  4425. },
  4426. {
  4427. "name": "symfony/options-resolver",
  4428. "version": "v5.4.3",
  4429. "source": {
  4430. "type": "git",
  4431. "url": "https://github.com/symfony/options-resolver.git",
  4432. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8"
  4433. },
  4434. "dist": {
  4435. "type": "zip",
  4436. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  4437. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  4438. "shasum": ""
  4439. },
  4440. "require": {
  4441. "php": ">=7.2.5",
  4442. "symfony/deprecation-contracts": "^2.1|^3",
  4443. "symfony/polyfill-php73": "~1.0",
  4444. "symfony/polyfill-php80": "^1.16"
  4445. },
  4446. "type": "library",
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Symfony\\Component\\OptionsResolver\\": ""
  4450. },
  4451. "exclude-from-classmap": [
  4452. "/Tests/"
  4453. ]
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "Fabien Potencier",
  4462. "email": "fabien@symfony.com"
  4463. },
  4464. {
  4465. "name": "Symfony Community",
  4466. "homepage": "https://symfony.com/contributors"
  4467. }
  4468. ],
  4469. "description": "Provides an improved replacement for the array_replace PHP function",
  4470. "homepage": "https://symfony.com",
  4471. "keywords": [
  4472. "config",
  4473. "configuration",
  4474. "options"
  4475. ],
  4476. "support": {
  4477. "source": "https://github.com/symfony/options-resolver/tree/v5.4.3"
  4478. },
  4479. "funding": [
  4480. {
  4481. "url": "https://symfony.com/sponsor",
  4482. "type": "custom"
  4483. },
  4484. {
  4485. "url": "https://github.com/fabpot",
  4486. "type": "github"
  4487. },
  4488. {
  4489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4490. "type": "tidelift"
  4491. }
  4492. ],
  4493. "time": "2022-01-02T09:53:40+00:00"
  4494. },
  4495. {
  4496. "name": "symfony/password-hasher",
  4497. "version": "v5.4.3",
  4498. "source": {
  4499. "type": "git",
  4500. "url": "https://github.com/symfony/password-hasher.git",
  4501. "reference": "b5ed59c4536d8386cd37bb86df2b7bd5fbbd46d4"
  4502. },
  4503. "dist": {
  4504. "type": "zip",
  4505. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/b5ed59c4536d8386cd37bb86df2b7bd5fbbd46d4",
  4506. "reference": "b5ed59c4536d8386cd37bb86df2b7bd5fbbd46d4",
  4507. "shasum": ""
  4508. },
  4509. "require": {
  4510. "php": ">=7.2.5",
  4511. "symfony/polyfill-php80": "^1.15"
  4512. },
  4513. "conflict": {
  4514. "symfony/security-core": "<5.3"
  4515. },
  4516. "require-dev": {
  4517. "symfony/console": "^5",
  4518. "symfony/security-core": "^5.3|^6.0"
  4519. },
  4520. "type": "library",
  4521. "autoload": {
  4522. "psr-4": {
  4523. "Symfony\\Component\\PasswordHasher\\": ""
  4524. },
  4525. "exclude-from-classmap": [
  4526. "/Tests/"
  4527. ]
  4528. },
  4529. "notification-url": "https://packagist.org/downloads/",
  4530. "license": [
  4531. "MIT"
  4532. ],
  4533. "authors": [
  4534. {
  4535. "name": "Robin Chalas",
  4536. "email": "robin.chalas@gmail.com"
  4537. },
  4538. {
  4539. "name": "Symfony Community",
  4540. "homepage": "https://symfony.com/contributors"
  4541. }
  4542. ],
  4543. "description": "Provides password hashing utilities",
  4544. "homepage": "https://symfony.com",
  4545. "keywords": [
  4546. "hashing",
  4547. "password"
  4548. ],
  4549. "support": {
  4550. "source": "https://github.com/symfony/password-hasher/tree/v5.4.3"
  4551. },
  4552. "funding": [
  4553. {
  4554. "url": "https://symfony.com/sponsor",
  4555. "type": "custom"
  4556. },
  4557. {
  4558. "url": "https://github.com/fabpot",
  4559. "type": "github"
  4560. },
  4561. {
  4562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4563. "type": "tidelift"
  4564. }
  4565. ],
  4566. "time": "2022-01-02T09:53:40+00:00"
  4567. },
  4568. {
  4569. "name": "symfony/polyfill-intl-grapheme",
  4570. "version": "v1.25.0",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4574. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  4579. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  4580. "shasum": ""
  4581. },
  4582. "require": {
  4583. "php": ">=7.1"
  4584. },
  4585. "suggest": {
  4586. "ext-intl": "For best performance"
  4587. },
  4588. "type": "library",
  4589. "extra": {
  4590. "branch-alias": {
  4591. "dev-main": "1.23-dev"
  4592. },
  4593. "thanks": {
  4594. "name": "symfony/polyfill",
  4595. "url": "https://github.com/symfony/polyfill"
  4596. }
  4597. },
  4598. "autoload": {
  4599. "files": [
  4600. "bootstrap.php"
  4601. ],
  4602. "psr-4": {
  4603. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4604. }
  4605. },
  4606. "notification-url": "https://packagist.org/downloads/",
  4607. "license": [
  4608. "MIT"
  4609. ],
  4610. "authors": [
  4611. {
  4612. "name": "Nicolas Grekas",
  4613. "email": "p@tchwork.com"
  4614. },
  4615. {
  4616. "name": "Symfony Community",
  4617. "homepage": "https://symfony.com/contributors"
  4618. }
  4619. ],
  4620. "description": "Symfony polyfill for intl's grapheme_* functions",
  4621. "homepage": "https://symfony.com",
  4622. "keywords": [
  4623. "compatibility",
  4624. "grapheme",
  4625. "intl",
  4626. "polyfill",
  4627. "portable",
  4628. "shim"
  4629. ],
  4630. "support": {
  4631. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  4632. },
  4633. "funding": [
  4634. {
  4635. "url": "https://symfony.com/sponsor",
  4636. "type": "custom"
  4637. },
  4638. {
  4639. "url": "https://github.com/fabpot",
  4640. "type": "github"
  4641. },
  4642. {
  4643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4644. "type": "tidelift"
  4645. }
  4646. ],
  4647. "time": "2021-11-23T21:10:46+00:00"
  4648. },
  4649. {
  4650. "name": "symfony/polyfill-intl-icu",
  4651. "version": "v1.25.0",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4655. "reference": "c023a439b8551e320cc3c8433b198e408a623af1"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/c023a439b8551e320cc3c8433b198e408a623af1",
  4660. "reference": "c023a439b8551e320cc3c8433b198e408a623af1",
  4661. "shasum": ""
  4662. },
  4663. "require": {
  4664. "php": ">=7.1"
  4665. },
  4666. "suggest": {
  4667. "ext-intl": "For best performance and support of other locales than \"en\""
  4668. },
  4669. "type": "library",
  4670. "extra": {
  4671. "branch-alias": {
  4672. "dev-main": "1.23-dev"
  4673. },
  4674. "thanks": {
  4675. "name": "symfony/polyfill",
  4676. "url": "https://github.com/symfony/polyfill"
  4677. }
  4678. },
  4679. "autoload": {
  4680. "files": [
  4681. "bootstrap.php"
  4682. ],
  4683. "psr-4": {
  4684. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4685. },
  4686. "classmap": [
  4687. "Resources/stubs"
  4688. ],
  4689. "exclude-from-classmap": [
  4690. "/Tests/"
  4691. ]
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "MIT"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "Nicolas Grekas",
  4700. "email": "p@tchwork.com"
  4701. },
  4702. {
  4703. "name": "Symfony Community",
  4704. "homepage": "https://symfony.com/contributors"
  4705. }
  4706. ],
  4707. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4708. "homepage": "https://symfony.com",
  4709. "keywords": [
  4710. "compatibility",
  4711. "icu",
  4712. "intl",
  4713. "polyfill",
  4714. "portable",
  4715. "shim"
  4716. ],
  4717. "support": {
  4718. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.25.0"
  4719. },
  4720. "funding": [
  4721. {
  4722. "url": "https://symfony.com/sponsor",
  4723. "type": "custom"
  4724. },
  4725. {
  4726. "url": "https://github.com/fabpot",
  4727. "type": "github"
  4728. },
  4729. {
  4730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4731. "type": "tidelift"
  4732. }
  4733. ],
  4734. "time": "2021-10-26T17:16:04+00:00"
  4735. },
  4736. {
  4737. "name": "symfony/polyfill-intl-idn",
  4738. "version": "v1.25.0",
  4739. "source": {
  4740. "type": "git",
  4741. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4742. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  4743. },
  4744. "dist": {
  4745. "type": "zip",
  4746. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  4747. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  4748. "shasum": ""
  4749. },
  4750. "require": {
  4751. "php": ">=7.1",
  4752. "symfony/polyfill-intl-normalizer": "^1.10",
  4753. "symfony/polyfill-php72": "^1.10"
  4754. },
  4755. "suggest": {
  4756. "ext-intl": "For best performance"
  4757. },
  4758. "type": "library",
  4759. "extra": {
  4760. "branch-alias": {
  4761. "dev-main": "1.23-dev"
  4762. },
  4763. "thanks": {
  4764. "name": "symfony/polyfill",
  4765. "url": "https://github.com/symfony/polyfill"
  4766. }
  4767. },
  4768. "autoload": {
  4769. "files": [
  4770. "bootstrap.php"
  4771. ],
  4772. "psr-4": {
  4773. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4774. }
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "Laurent Bassin",
  4783. "email": "laurent@bassin.info"
  4784. },
  4785. {
  4786. "name": "Trevor Rowbotham",
  4787. "email": "trevor.rowbotham@pm.me"
  4788. },
  4789. {
  4790. "name": "Symfony Community",
  4791. "homepage": "https://symfony.com/contributors"
  4792. }
  4793. ],
  4794. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4795. "homepage": "https://symfony.com",
  4796. "keywords": [
  4797. "compatibility",
  4798. "idn",
  4799. "intl",
  4800. "polyfill",
  4801. "portable",
  4802. "shim"
  4803. ],
  4804. "support": {
  4805. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  4806. },
  4807. "funding": [
  4808. {
  4809. "url": "https://symfony.com/sponsor",
  4810. "type": "custom"
  4811. },
  4812. {
  4813. "url": "https://github.com/fabpot",
  4814. "type": "github"
  4815. },
  4816. {
  4817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4818. "type": "tidelift"
  4819. }
  4820. ],
  4821. "time": "2021-09-14T14:02:44+00:00"
  4822. },
  4823. {
  4824. "name": "symfony/polyfill-intl-normalizer",
  4825. "version": "v1.25.0",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4829. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4834. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4835. "shasum": ""
  4836. },
  4837. "require": {
  4838. "php": ">=7.1"
  4839. },
  4840. "suggest": {
  4841. "ext-intl": "For best performance"
  4842. },
  4843. "type": "library",
  4844. "extra": {
  4845. "branch-alias": {
  4846. "dev-main": "1.23-dev"
  4847. },
  4848. "thanks": {
  4849. "name": "symfony/polyfill",
  4850. "url": "https://github.com/symfony/polyfill"
  4851. }
  4852. },
  4853. "autoload": {
  4854. "files": [
  4855. "bootstrap.php"
  4856. ],
  4857. "psr-4": {
  4858. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4859. },
  4860. "classmap": [
  4861. "Resources/stubs"
  4862. ]
  4863. },
  4864. "notification-url": "https://packagist.org/downloads/",
  4865. "license": [
  4866. "MIT"
  4867. ],
  4868. "authors": [
  4869. {
  4870. "name": "Nicolas Grekas",
  4871. "email": "p@tchwork.com"
  4872. },
  4873. {
  4874. "name": "Symfony Community",
  4875. "homepage": "https://symfony.com/contributors"
  4876. }
  4877. ],
  4878. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4879. "homepage": "https://symfony.com",
  4880. "keywords": [
  4881. "compatibility",
  4882. "intl",
  4883. "normalizer",
  4884. "polyfill",
  4885. "portable",
  4886. "shim"
  4887. ],
  4888. "support": {
  4889. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
  4890. },
  4891. "funding": [
  4892. {
  4893. "url": "https://symfony.com/sponsor",
  4894. "type": "custom"
  4895. },
  4896. {
  4897. "url": "https://github.com/fabpot",
  4898. "type": "github"
  4899. },
  4900. {
  4901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4902. "type": "tidelift"
  4903. }
  4904. ],
  4905. "time": "2021-02-19T12:13:01+00:00"
  4906. },
  4907. {
  4908. "name": "symfony/polyfill-mbstring",
  4909. "version": "v1.25.0",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4913. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  4918. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  4919. "shasum": ""
  4920. },
  4921. "require": {
  4922. "php": ">=7.1"
  4923. },
  4924. "provide": {
  4925. "ext-mbstring": "*"
  4926. },
  4927. "suggest": {
  4928. "ext-mbstring": "For best performance"
  4929. },
  4930. "type": "library",
  4931. "extra": {
  4932. "branch-alias": {
  4933. "dev-main": "1.23-dev"
  4934. },
  4935. "thanks": {
  4936. "name": "symfony/polyfill",
  4937. "url": "https://github.com/symfony/polyfill"
  4938. }
  4939. },
  4940. "autoload": {
  4941. "files": [
  4942. "bootstrap.php"
  4943. ],
  4944. "psr-4": {
  4945. "Symfony\\Polyfill\\Mbstring\\": ""
  4946. }
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "MIT"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "Nicolas Grekas",
  4955. "email": "p@tchwork.com"
  4956. },
  4957. {
  4958. "name": "Symfony Community",
  4959. "homepage": "https://symfony.com/contributors"
  4960. }
  4961. ],
  4962. "description": "Symfony polyfill for the Mbstring extension",
  4963. "homepage": "https://symfony.com",
  4964. "keywords": [
  4965. "compatibility",
  4966. "mbstring",
  4967. "polyfill",
  4968. "portable",
  4969. "shim"
  4970. ],
  4971. "support": {
  4972. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  4973. },
  4974. "funding": [
  4975. {
  4976. "url": "https://symfony.com/sponsor",
  4977. "type": "custom"
  4978. },
  4979. {
  4980. "url": "https://github.com/fabpot",
  4981. "type": "github"
  4982. },
  4983. {
  4984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4985. "type": "tidelift"
  4986. }
  4987. ],
  4988. "time": "2021-11-30T18:21:41+00:00"
  4989. },
  4990. {
  4991. "name": "symfony/polyfill-php72",
  4992. "version": "v1.25.0",
  4993. "source": {
  4994. "type": "git",
  4995. "url": "https://github.com/symfony/polyfill-php72.git",
  4996. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4997. },
  4998. "dist": {
  4999. "type": "zip",
  5000. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  5001. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  5002. "shasum": ""
  5003. },
  5004. "require": {
  5005. "php": ">=7.1"
  5006. },
  5007. "type": "library",
  5008. "extra": {
  5009. "branch-alias": {
  5010. "dev-main": "1.23-dev"
  5011. },
  5012. "thanks": {
  5013. "name": "symfony/polyfill",
  5014. "url": "https://github.com/symfony/polyfill"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "files": [
  5019. "bootstrap.php"
  5020. ],
  5021. "psr-4": {
  5022. "Symfony\\Polyfill\\Php72\\": ""
  5023. }
  5024. },
  5025. "notification-url": "https://packagist.org/downloads/",
  5026. "license": [
  5027. "MIT"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "Nicolas Grekas",
  5032. "email": "p@tchwork.com"
  5033. },
  5034. {
  5035. "name": "Symfony Community",
  5036. "homepage": "https://symfony.com/contributors"
  5037. }
  5038. ],
  5039. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5040. "homepage": "https://symfony.com",
  5041. "keywords": [
  5042. "compatibility",
  5043. "polyfill",
  5044. "portable",
  5045. "shim"
  5046. ],
  5047. "support": {
  5048. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://symfony.com/sponsor",
  5053. "type": "custom"
  5054. },
  5055. {
  5056. "url": "https://github.com/fabpot",
  5057. "type": "github"
  5058. },
  5059. {
  5060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5061. "type": "tidelift"
  5062. }
  5063. ],
  5064. "time": "2021-05-27T09:17:38+00:00"
  5065. },
  5066. {
  5067. "name": "symfony/polyfill-php73",
  5068. "version": "v1.25.0",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/symfony/polyfill-php73.git",
  5072. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  5077. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "php": ">=7.1"
  5082. },
  5083. "type": "library",
  5084. "extra": {
  5085. "branch-alias": {
  5086. "dev-main": "1.23-dev"
  5087. },
  5088. "thanks": {
  5089. "name": "symfony/polyfill",
  5090. "url": "https://github.com/symfony/polyfill"
  5091. }
  5092. },
  5093. "autoload": {
  5094. "files": [
  5095. "bootstrap.php"
  5096. ],
  5097. "psr-4": {
  5098. "Symfony\\Polyfill\\Php73\\": ""
  5099. },
  5100. "classmap": [
  5101. "Resources/stubs"
  5102. ]
  5103. },
  5104. "notification-url": "https://packagist.org/downloads/",
  5105. "license": [
  5106. "MIT"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "Nicolas Grekas",
  5111. "email": "p@tchwork.com"
  5112. },
  5113. {
  5114. "name": "Symfony Community",
  5115. "homepage": "https://symfony.com/contributors"
  5116. }
  5117. ],
  5118. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5119. "homepage": "https://symfony.com",
  5120. "keywords": [
  5121. "compatibility",
  5122. "polyfill",
  5123. "portable",
  5124. "shim"
  5125. ],
  5126. "support": {
  5127. "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
  5128. },
  5129. "funding": [
  5130. {
  5131. "url": "https://symfony.com/sponsor",
  5132. "type": "custom"
  5133. },
  5134. {
  5135. "url": "https://github.com/fabpot",
  5136. "type": "github"
  5137. },
  5138. {
  5139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5140. "type": "tidelift"
  5141. }
  5142. ],
  5143. "time": "2021-06-05T21:20:04+00:00"
  5144. },
  5145. {
  5146. "name": "symfony/polyfill-php80",
  5147. "version": "v1.25.0",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/symfony/polyfill-php80.git",
  5151. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  5156. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "php": ">=7.1"
  5161. },
  5162. "type": "library",
  5163. "extra": {
  5164. "branch-alias": {
  5165. "dev-main": "1.23-dev"
  5166. },
  5167. "thanks": {
  5168. "name": "symfony/polyfill",
  5169. "url": "https://github.com/symfony/polyfill"
  5170. }
  5171. },
  5172. "autoload": {
  5173. "files": [
  5174. "bootstrap.php"
  5175. ],
  5176. "psr-4": {
  5177. "Symfony\\Polyfill\\Php80\\": ""
  5178. },
  5179. "classmap": [
  5180. "Resources/stubs"
  5181. ]
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Ion Bazan",
  5190. "email": "ion.bazan@gmail.com"
  5191. },
  5192. {
  5193. "name": "Nicolas Grekas",
  5194. "email": "p@tchwork.com"
  5195. },
  5196. {
  5197. "name": "Symfony Community",
  5198. "homepage": "https://symfony.com/contributors"
  5199. }
  5200. ],
  5201. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5202. "homepage": "https://symfony.com",
  5203. "keywords": [
  5204. "compatibility",
  5205. "polyfill",
  5206. "portable",
  5207. "shim"
  5208. ],
  5209. "support": {
  5210. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  5211. },
  5212. "funding": [
  5213. {
  5214. "url": "https://symfony.com/sponsor",
  5215. "type": "custom"
  5216. },
  5217. {
  5218. "url": "https://github.com/fabpot",
  5219. "type": "github"
  5220. },
  5221. {
  5222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5223. "type": "tidelift"
  5224. }
  5225. ],
  5226. "time": "2022-03-04T08:16:47+00:00"
  5227. },
  5228. {
  5229. "name": "symfony/polyfill-php81",
  5230. "version": "v1.25.0",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://github.com/symfony/polyfill-php81.git",
  5234. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  5239. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  5240. "shasum": ""
  5241. },
  5242. "require": {
  5243. "php": ">=7.1"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "branch-alias": {
  5248. "dev-main": "1.23-dev"
  5249. },
  5250. "thanks": {
  5251. "name": "symfony/polyfill",
  5252. "url": "https://github.com/symfony/polyfill"
  5253. }
  5254. },
  5255. "autoload": {
  5256. "files": [
  5257. "bootstrap.php"
  5258. ],
  5259. "psr-4": {
  5260. "Symfony\\Polyfill\\Php81\\": ""
  5261. },
  5262. "classmap": [
  5263. "Resources/stubs"
  5264. ]
  5265. },
  5266. "notification-url": "https://packagist.org/downloads/",
  5267. "license": [
  5268. "MIT"
  5269. ],
  5270. "authors": [
  5271. {
  5272. "name": "Nicolas Grekas",
  5273. "email": "p@tchwork.com"
  5274. },
  5275. {
  5276. "name": "Symfony Community",
  5277. "homepage": "https://symfony.com/contributors"
  5278. }
  5279. ],
  5280. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5281. "homepage": "https://symfony.com",
  5282. "keywords": [
  5283. "compatibility",
  5284. "polyfill",
  5285. "portable",
  5286. "shim"
  5287. ],
  5288. "support": {
  5289. "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
  5290. },
  5291. "funding": [
  5292. {
  5293. "url": "https://symfony.com/sponsor",
  5294. "type": "custom"
  5295. },
  5296. {
  5297. "url": "https://github.com/fabpot",
  5298. "type": "github"
  5299. },
  5300. {
  5301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5302. "type": "tidelift"
  5303. }
  5304. ],
  5305. "time": "2021-09-13T13:58:11+00:00"
  5306. },
  5307. {
  5308. "name": "symfony/process",
  5309. "version": "v5.4.5",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/symfony/process.git",
  5313. "reference": "95440409896f90a5f85db07a32b517ecec17fa4c"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/symfony/process/zipball/95440409896f90a5f85db07a32b517ecec17fa4c",
  5318. "reference": "95440409896f90a5f85db07a32b517ecec17fa4c",
  5319. "shasum": ""
  5320. },
  5321. "require": {
  5322. "php": ">=7.2.5",
  5323. "symfony/polyfill-php80": "^1.16"
  5324. },
  5325. "type": "library",
  5326. "autoload": {
  5327. "psr-4": {
  5328. "Symfony\\Component\\Process\\": ""
  5329. },
  5330. "exclude-from-classmap": [
  5331. "/Tests/"
  5332. ]
  5333. },
  5334. "notification-url": "https://packagist.org/downloads/",
  5335. "license": [
  5336. "MIT"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Fabien Potencier",
  5341. "email": "fabien@symfony.com"
  5342. },
  5343. {
  5344. "name": "Symfony Community",
  5345. "homepage": "https://symfony.com/contributors"
  5346. }
  5347. ],
  5348. "description": "Executes commands in sub-processes",
  5349. "homepage": "https://symfony.com",
  5350. "support": {
  5351. "source": "https://github.com/symfony/process/tree/v5.4.5"
  5352. },
  5353. "funding": [
  5354. {
  5355. "url": "https://symfony.com/sponsor",
  5356. "type": "custom"
  5357. },
  5358. {
  5359. "url": "https://github.com/fabpot",
  5360. "type": "github"
  5361. },
  5362. {
  5363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5364. "type": "tidelift"
  5365. }
  5366. ],
  5367. "time": "2022-01-30T18:16:22+00:00"
  5368. },
  5369. {
  5370. "name": "symfony/property-access",
  5371. "version": "v5.4.5",
  5372. "source": {
  5373. "type": "git",
  5374. "url": "https://github.com/symfony/property-access.git",
  5375. "reference": "95534d912f61117d3bce2d4456419ee2ee548d7a"
  5376. },
  5377. "dist": {
  5378. "type": "zip",
  5379. "url": "https://api.github.com/repos/symfony/property-access/zipball/95534d912f61117d3bce2d4456419ee2ee548d7a",
  5380. "reference": "95534d912f61117d3bce2d4456419ee2ee548d7a",
  5381. "shasum": ""
  5382. },
  5383. "require": {
  5384. "php": ">=7.2.5",
  5385. "symfony/deprecation-contracts": "^2.1|^3",
  5386. "symfony/polyfill-php80": "^1.16",
  5387. "symfony/property-info": "^5.2|^6.0"
  5388. },
  5389. "require-dev": {
  5390. "symfony/cache": "^4.4|^5.0|^6.0"
  5391. },
  5392. "suggest": {
  5393. "psr/cache-implementation": "To cache access methods."
  5394. },
  5395. "type": "library",
  5396. "autoload": {
  5397. "psr-4": {
  5398. "Symfony\\Component\\PropertyAccess\\": ""
  5399. },
  5400. "exclude-from-classmap": [
  5401. "/Tests/"
  5402. ]
  5403. },
  5404. "notification-url": "https://packagist.org/downloads/",
  5405. "license": [
  5406. "MIT"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Fabien Potencier",
  5411. "email": "fabien@symfony.com"
  5412. },
  5413. {
  5414. "name": "Symfony Community",
  5415. "homepage": "https://symfony.com/contributors"
  5416. }
  5417. ],
  5418. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5419. "homepage": "https://symfony.com",
  5420. "keywords": [
  5421. "access",
  5422. "array",
  5423. "extraction",
  5424. "index",
  5425. "injection",
  5426. "object",
  5427. "property",
  5428. "property path",
  5429. "reflection"
  5430. ],
  5431. "support": {
  5432. "source": "https://github.com/symfony/property-access/tree/v5.4.5"
  5433. },
  5434. "funding": [
  5435. {
  5436. "url": "https://symfony.com/sponsor",
  5437. "type": "custom"
  5438. },
  5439. {
  5440. "url": "https://github.com/fabpot",
  5441. "type": "github"
  5442. },
  5443. {
  5444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5445. "type": "tidelift"
  5446. }
  5447. ],
  5448. "time": "2022-02-04T18:39:09+00:00"
  5449. },
  5450. {
  5451. "name": "symfony/property-info",
  5452. "version": "v5.4.3",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/symfony/property-info.git",
  5456. "reference": "bcc2b6904cbcf16b2e5d618da16117cd8e132f9a"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/symfony/property-info/zipball/bcc2b6904cbcf16b2e5d618da16117cd8e132f9a",
  5461. "reference": "bcc2b6904cbcf16b2e5d618da16117cd8e132f9a",
  5462. "shasum": ""
  5463. },
  5464. "require": {
  5465. "php": ">=7.2.5",
  5466. "symfony/deprecation-contracts": "^2.1|^3",
  5467. "symfony/polyfill-php80": "^1.16",
  5468. "symfony/string": "^5.1|^6.0"
  5469. },
  5470. "conflict": {
  5471. "phpdocumentor/reflection-docblock": "<3.2.2",
  5472. "phpdocumentor/type-resolver": "<1.4.0",
  5473. "symfony/dependency-injection": "<4.4"
  5474. },
  5475. "require-dev": {
  5476. "doctrine/annotations": "^1.10.4",
  5477. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5478. "phpstan/phpdoc-parser": "^1.0",
  5479. "symfony/cache": "^4.4|^5.0|^6.0",
  5480. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5481. "symfony/serializer": "^4.4|^5.0|^6.0"
  5482. },
  5483. "suggest": {
  5484. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5485. "psr/cache-implementation": "To cache results",
  5486. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5487. "symfony/serializer": "To use Serializer metadata"
  5488. },
  5489. "type": "library",
  5490. "autoload": {
  5491. "psr-4": {
  5492. "Symfony\\Component\\PropertyInfo\\": ""
  5493. },
  5494. "exclude-from-classmap": [
  5495. "/Tests/"
  5496. ]
  5497. },
  5498. "notification-url": "https://packagist.org/downloads/",
  5499. "license": [
  5500. "MIT"
  5501. ],
  5502. "authors": [
  5503. {
  5504. "name": "Kévin Dunglas",
  5505. "email": "dunglas@gmail.com"
  5506. },
  5507. {
  5508. "name": "Symfony Community",
  5509. "homepage": "https://symfony.com/contributors"
  5510. }
  5511. ],
  5512. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5513. "homepage": "https://symfony.com",
  5514. "keywords": [
  5515. "doctrine",
  5516. "phpdoc",
  5517. "property",
  5518. "symfony",
  5519. "type",
  5520. "validator"
  5521. ],
  5522. "support": {
  5523. "source": "https://github.com/symfony/property-info/tree/v5.4.3"
  5524. },
  5525. "funding": [
  5526. {
  5527. "url": "https://symfony.com/sponsor",
  5528. "type": "custom"
  5529. },
  5530. {
  5531. "url": "https://github.com/fabpot",
  5532. "type": "github"
  5533. },
  5534. {
  5535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5536. "type": "tidelift"
  5537. }
  5538. ],
  5539. "time": "2022-01-02T09:53:40+00:00"
  5540. },
  5541. {
  5542. "name": "symfony/proxy-manager-bridge",
  5543. "version": "v5.4.3",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  5547. "reference": "efb82e176cd47426193ad047635ba5181dae089f"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/efb82e176cd47426193ad047635ba5181dae089f",
  5552. "reference": "efb82e176cd47426193ad047635ba5181dae089f",
  5553. "shasum": ""
  5554. },
  5555. "require": {
  5556. "friendsofphp/proxy-manager-lts": "^1.0.2",
  5557. "php": ">=7.2.5",
  5558. "symfony/dependency-injection": "^5.0|^6.0",
  5559. "symfony/polyfill-php80": "^1.16"
  5560. },
  5561. "require-dev": {
  5562. "symfony/config": "^4.4|^5.0|^6.0"
  5563. },
  5564. "type": "symfony-bridge",
  5565. "autoload": {
  5566. "psr-4": {
  5567. "Symfony\\Bridge\\ProxyManager\\": ""
  5568. },
  5569. "exclude-from-classmap": [
  5570. "/Tests/"
  5571. ]
  5572. },
  5573. "notification-url": "https://packagist.org/downloads/",
  5574. "license": [
  5575. "MIT"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Fabien Potencier",
  5580. "email": "fabien@symfony.com"
  5581. },
  5582. {
  5583. "name": "Symfony Community",
  5584. "homepage": "https://symfony.com/contributors"
  5585. }
  5586. ],
  5587. "description": "Provides integration for ProxyManager with various Symfony components",
  5588. "homepage": "https://symfony.com",
  5589. "support": {
  5590. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.4.3"
  5591. },
  5592. "funding": [
  5593. {
  5594. "url": "https://symfony.com/sponsor",
  5595. "type": "custom"
  5596. },
  5597. {
  5598. "url": "https://github.com/fabpot",
  5599. "type": "github"
  5600. },
  5601. {
  5602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5603. "type": "tidelift"
  5604. }
  5605. ],
  5606. "time": "2022-01-02T09:53:40+00:00"
  5607. },
  5608. {
  5609. "name": "symfony/routing",
  5610. "version": "v5.4.3",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/symfony/routing.git",
  5614. "reference": "44b29c7a94e867ccde1da604792f11a469958981"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/symfony/routing/zipball/44b29c7a94e867ccde1da604792f11a469958981",
  5619. "reference": "44b29c7a94e867ccde1da604792f11a469958981",
  5620. "shasum": ""
  5621. },
  5622. "require": {
  5623. "php": ">=7.2.5",
  5624. "symfony/deprecation-contracts": "^2.1|^3",
  5625. "symfony/polyfill-php80": "^1.16"
  5626. },
  5627. "conflict": {
  5628. "doctrine/annotations": "<1.12",
  5629. "symfony/config": "<5.3",
  5630. "symfony/dependency-injection": "<4.4",
  5631. "symfony/yaml": "<4.4"
  5632. },
  5633. "require-dev": {
  5634. "doctrine/annotations": "^1.12",
  5635. "psr/log": "^1|^2|^3",
  5636. "symfony/config": "^5.3|^6.0",
  5637. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5638. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5639. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5640. "symfony/yaml": "^4.4|^5.0|^6.0"
  5641. },
  5642. "suggest": {
  5643. "symfony/config": "For using the all-in-one router or any loader",
  5644. "symfony/expression-language": "For using expression matching",
  5645. "symfony/http-foundation": "For using a Symfony Request object",
  5646. "symfony/yaml": "For using the YAML loader"
  5647. },
  5648. "type": "library",
  5649. "autoload": {
  5650. "psr-4": {
  5651. "Symfony\\Component\\Routing\\": ""
  5652. },
  5653. "exclude-from-classmap": [
  5654. "/Tests/"
  5655. ]
  5656. },
  5657. "notification-url": "https://packagist.org/downloads/",
  5658. "license": [
  5659. "MIT"
  5660. ],
  5661. "authors": [
  5662. {
  5663. "name": "Fabien Potencier",
  5664. "email": "fabien@symfony.com"
  5665. },
  5666. {
  5667. "name": "Symfony Community",
  5668. "homepage": "https://symfony.com/contributors"
  5669. }
  5670. ],
  5671. "description": "Maps an HTTP request to a set of configuration variables",
  5672. "homepage": "https://symfony.com",
  5673. "keywords": [
  5674. "router",
  5675. "routing",
  5676. "uri",
  5677. "url"
  5678. ],
  5679. "support": {
  5680. "source": "https://github.com/symfony/routing/tree/v5.4.3"
  5681. },
  5682. "funding": [
  5683. {
  5684. "url": "https://symfony.com/sponsor",
  5685. "type": "custom"
  5686. },
  5687. {
  5688. "url": "https://github.com/fabpot",
  5689. "type": "github"
  5690. },
  5691. {
  5692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5693. "type": "tidelift"
  5694. }
  5695. ],
  5696. "time": "2022-01-02T09:53:40+00:00"
  5697. },
  5698. {
  5699. "name": "symfony/security-bundle",
  5700. "version": "v5.4.5",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/symfony/security-bundle.git",
  5704. "reference": "d6ae2f605fa8e4e0860c1a6574271af2bb4ba16c"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/d6ae2f605fa8e4e0860c1a6574271af2bb4ba16c",
  5709. "reference": "d6ae2f605fa8e4e0860c1a6574271af2bb4ba16c",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "ext-xml": "*",
  5714. "php": ">=7.2.5",
  5715. "symfony/config": "^4.4|^5.0|^6.0",
  5716. "symfony/dependency-injection": "^5.3|^6.0",
  5717. "symfony/deprecation-contracts": "^2.1|^3",
  5718. "symfony/event-dispatcher": "^5.1|^6.0",
  5719. "symfony/http-foundation": "^5.3|^6.0",
  5720. "symfony/http-kernel": "^5.3|^6.0",
  5721. "symfony/password-hasher": "^5.3|^6.0",
  5722. "symfony/polyfill-php80": "^1.16",
  5723. "symfony/security-core": "^5.4|^6.0",
  5724. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5725. "symfony/security-guard": "^5.3",
  5726. "symfony/security-http": "^5.4|^6.0"
  5727. },
  5728. "conflict": {
  5729. "symfony/browser-kit": "<4.4",
  5730. "symfony/console": "<4.4",
  5731. "symfony/framework-bundle": "<4.4",
  5732. "symfony/ldap": "<5.1",
  5733. "symfony/twig-bundle": "<4.4"
  5734. },
  5735. "require-dev": {
  5736. "doctrine/annotations": "^1.10.4",
  5737. "symfony/asset": "^4.4|^5.0|^6.0",
  5738. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  5739. "symfony/console": "^4.4|^5.0|^6.0",
  5740. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5741. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5742. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5743. "symfony/form": "^4.4|^5.0|^6.0",
  5744. "symfony/framework-bundle": "^5.3|^6.0",
  5745. "symfony/ldap": "^5.3|^6.0",
  5746. "symfony/process": "^4.4|^5.0|^6.0",
  5747. "symfony/rate-limiter": "^5.2|^6.0",
  5748. "symfony/serializer": "^4.4|^5.0|^6.0",
  5749. "symfony/translation": "^4.4|^5.0|^6.0",
  5750. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  5751. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  5752. "symfony/validator": "^4.4|^5.0|^6.0",
  5753. "symfony/yaml": "^4.4|^5.0|^6.0",
  5754. "twig/twig": "^2.13|^3.0.4"
  5755. },
  5756. "type": "symfony-bundle",
  5757. "autoload": {
  5758. "psr-4": {
  5759. "Symfony\\Bundle\\SecurityBundle\\": ""
  5760. },
  5761. "exclude-from-classmap": [
  5762. "/Tests/"
  5763. ]
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "MIT"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Fabien Potencier",
  5772. "email": "fabien@symfony.com"
  5773. },
  5774. {
  5775. "name": "Symfony Community",
  5776. "homepage": "https://symfony.com/contributors"
  5777. }
  5778. ],
  5779. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5780. "homepage": "https://symfony.com",
  5781. "support": {
  5782. "source": "https://github.com/symfony/security-bundle/tree/v5.4.5"
  5783. },
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2022-02-18T16:06:09+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/security-core",
  5802. "version": "v5.4.5",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/security-core.git",
  5806. "reference": "11d815ccbff929899a4ec545f9f85185071abd12"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/security-core/zipball/11d815ccbff929899a4ec545f9f85185071abd12",
  5811. "reference": "11d815ccbff929899a4ec545f9f85185071abd12",
  5812. "shasum": ""
  5813. },
  5814. "require": {
  5815. "php": ">=7.2.5",
  5816. "symfony/deprecation-contracts": "^2.1|^3",
  5817. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  5818. "symfony/password-hasher": "^5.3|^6.0",
  5819. "symfony/polyfill-php80": "^1.16",
  5820. "symfony/service-contracts": "^1.1.6|^2|^3"
  5821. },
  5822. "conflict": {
  5823. "symfony/event-dispatcher": "<4.4",
  5824. "symfony/http-foundation": "<5.3",
  5825. "symfony/ldap": "<4.4",
  5826. "symfony/security-guard": "<4.4",
  5827. "symfony/validator": "<5.2"
  5828. },
  5829. "require-dev": {
  5830. "psr/cache": "^1.0|^2.0|^3.0",
  5831. "psr/container": "^1.0|^2.0",
  5832. "psr/log": "^1|^2|^3",
  5833. "symfony/cache": "^4.4|^5.0|^6.0",
  5834. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5835. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5836. "symfony/http-foundation": "^5.3|^6.0",
  5837. "symfony/ldap": "^4.4|^5.0|^6.0",
  5838. "symfony/translation": "^4.4|^5.0|^6.0",
  5839. "symfony/validator": "^5.2|^6.0"
  5840. },
  5841. "suggest": {
  5842. "psr/container-implementation": "To instantiate the Security class",
  5843. "symfony/event-dispatcher": "",
  5844. "symfony/expression-language": "For using the expression voter",
  5845. "symfony/http-foundation": "",
  5846. "symfony/ldap": "For using LDAP integration",
  5847. "symfony/validator": "For using the user password constraint"
  5848. },
  5849. "type": "library",
  5850. "autoload": {
  5851. "psr-4": {
  5852. "Symfony\\Component\\Security\\Core\\": ""
  5853. },
  5854. "exclude-from-classmap": [
  5855. "/Tests/"
  5856. ]
  5857. },
  5858. "notification-url": "https://packagist.org/downloads/",
  5859. "license": [
  5860. "MIT"
  5861. ],
  5862. "authors": [
  5863. {
  5864. "name": "Fabien Potencier",
  5865. "email": "fabien@symfony.com"
  5866. },
  5867. {
  5868. "name": "Symfony Community",
  5869. "homepage": "https://symfony.com/contributors"
  5870. }
  5871. ],
  5872. "description": "Symfony Security Component - Core Library",
  5873. "homepage": "https://symfony.com",
  5874. "support": {
  5875. "source": "https://github.com/symfony/security-core/tree/v5.4.5"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2022-02-18T16:06:09+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/security-csrf",
  5895. "version": "v5.4.3",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/security-csrf.git",
  5899. "reference": "57c1c252ca756289c2b61327e08fb10be3936956"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/57c1c252ca756289c2b61327e08fb10be3936956",
  5904. "reference": "57c1c252ca756289c2b61327e08fb10be3936956",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=7.2.5",
  5909. "symfony/polyfill-php80": "^1.16",
  5910. "symfony/security-core": "^4.4|^5.0|^6.0"
  5911. },
  5912. "conflict": {
  5913. "symfony/http-foundation": "<5.3"
  5914. },
  5915. "require-dev": {
  5916. "symfony/http-foundation": "^5.3|^6.0"
  5917. },
  5918. "suggest": {
  5919. "symfony/http-foundation": "For using the class SessionTokenStorage."
  5920. },
  5921. "type": "library",
  5922. "autoload": {
  5923. "psr-4": {
  5924. "Symfony\\Component\\Security\\Csrf\\": ""
  5925. },
  5926. "exclude-from-classmap": [
  5927. "/Tests/"
  5928. ]
  5929. },
  5930. "notification-url": "https://packagist.org/downloads/",
  5931. "license": [
  5932. "MIT"
  5933. ],
  5934. "authors": [
  5935. {
  5936. "name": "Fabien Potencier",
  5937. "email": "fabien@symfony.com"
  5938. },
  5939. {
  5940. "name": "Symfony Community",
  5941. "homepage": "https://symfony.com/contributors"
  5942. }
  5943. ],
  5944. "description": "Symfony Security Component - CSRF Library",
  5945. "homepage": "https://symfony.com",
  5946. "support": {
  5947. "source": "https://github.com/symfony/security-csrf/tree/v5.4.3"
  5948. },
  5949. "funding": [
  5950. {
  5951. "url": "https://symfony.com/sponsor",
  5952. "type": "custom"
  5953. },
  5954. {
  5955. "url": "https://github.com/fabpot",
  5956. "type": "github"
  5957. },
  5958. {
  5959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5960. "type": "tidelift"
  5961. }
  5962. ],
  5963. "time": "2022-01-02T09:53:40+00:00"
  5964. },
  5965. {
  5966. "name": "symfony/security-guard",
  5967. "version": "v5.4.3",
  5968. "source": {
  5969. "type": "git",
  5970. "url": "https://github.com/symfony/security-guard.git",
  5971. "reference": "3d68d9f8e162f6655eb0a0237b9f333a82a19da9"
  5972. },
  5973. "dist": {
  5974. "type": "zip",
  5975. "url": "https://api.github.com/repos/symfony/security-guard/zipball/3d68d9f8e162f6655eb0a0237b9f333a82a19da9",
  5976. "reference": "3d68d9f8e162f6655eb0a0237b9f333a82a19da9",
  5977. "shasum": ""
  5978. },
  5979. "require": {
  5980. "php": ">=7.2.5",
  5981. "symfony/polyfill-php80": "^1.15",
  5982. "symfony/security-core": "^5.0",
  5983. "symfony/security-http": "^5.3"
  5984. },
  5985. "require-dev": {
  5986. "psr/log": "^1|^2|^3"
  5987. },
  5988. "type": "library",
  5989. "autoload": {
  5990. "psr-4": {
  5991. "Symfony\\Component\\Security\\Guard\\": ""
  5992. },
  5993. "exclude-from-classmap": [
  5994. "/Tests/"
  5995. ]
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Fabien Potencier",
  6004. "email": "fabien@symfony.com"
  6005. },
  6006. {
  6007. "name": "Symfony Community",
  6008. "homepage": "https://symfony.com/contributors"
  6009. }
  6010. ],
  6011. "description": "Symfony Security Component - Guard",
  6012. "homepage": "https://symfony.com",
  6013. "support": {
  6014. "source": "https://github.com/symfony/security-guard/tree/v5.4.3"
  6015. },
  6016. "funding": [
  6017. {
  6018. "url": "https://symfony.com/sponsor",
  6019. "type": "custom"
  6020. },
  6021. {
  6022. "url": "https://github.com/fabpot",
  6023. "type": "github"
  6024. },
  6025. {
  6026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6027. "type": "tidelift"
  6028. }
  6029. ],
  6030. "time": "2022-01-02T09:53:40+00:00"
  6031. },
  6032. {
  6033. "name": "symfony/security-http",
  6034. "version": "v5.4.5",
  6035. "source": {
  6036. "type": "git",
  6037. "url": "https://github.com/symfony/security-http.git",
  6038. "reference": "53d572f06fc438faae3713cc97d186d941919748"
  6039. },
  6040. "dist": {
  6041. "type": "zip",
  6042. "url": "https://api.github.com/repos/symfony/security-http/zipball/53d572f06fc438faae3713cc97d186d941919748",
  6043. "reference": "53d572f06fc438faae3713cc97d186d941919748",
  6044. "shasum": ""
  6045. },
  6046. "require": {
  6047. "php": ">=7.2.5",
  6048. "symfony/deprecation-contracts": "^2.1|^3",
  6049. "symfony/http-foundation": "^5.3|^6.0",
  6050. "symfony/http-kernel": "^5.3|^6.0",
  6051. "symfony/polyfill-mbstring": "~1.0",
  6052. "symfony/polyfill-php80": "^1.16",
  6053. "symfony/property-access": "^4.4|^5.0|^6.0",
  6054. "symfony/security-core": "^5.4|^6.0"
  6055. },
  6056. "conflict": {
  6057. "symfony/event-dispatcher": "<4.3",
  6058. "symfony/security-bundle": "<5.3",
  6059. "symfony/security-csrf": "<4.4"
  6060. },
  6061. "require-dev": {
  6062. "psr/log": "^1|^2|^3",
  6063. "symfony/cache": "^4.4|^5.0|^6.0",
  6064. "symfony/rate-limiter": "^5.2|^6.0",
  6065. "symfony/routing": "^4.4|^5.0|^6.0",
  6066. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6067. "symfony/translation": "^4.4|^5.0|^6.0"
  6068. },
  6069. "suggest": {
  6070. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6071. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6072. },
  6073. "type": "library",
  6074. "autoload": {
  6075. "psr-4": {
  6076. "Symfony\\Component\\Security\\Http\\": ""
  6077. },
  6078. "exclude-from-classmap": [
  6079. "/Tests/"
  6080. ]
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "MIT"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "Fabien Potencier",
  6089. "email": "fabien@symfony.com"
  6090. },
  6091. {
  6092. "name": "Symfony Community",
  6093. "homepage": "https://symfony.com/contributors"
  6094. }
  6095. ],
  6096. "description": "Symfony Security Component - HTTP Integration",
  6097. "homepage": "https://symfony.com",
  6098. "support": {
  6099. "source": "https://github.com/symfony/security-http/tree/v5.4.5"
  6100. },
  6101. "funding": [
  6102. {
  6103. "url": "https://symfony.com/sponsor",
  6104. "type": "custom"
  6105. },
  6106. {
  6107. "url": "https://github.com/fabpot",
  6108. "type": "github"
  6109. },
  6110. {
  6111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6112. "type": "tidelift"
  6113. }
  6114. ],
  6115. "time": "2022-02-17T20:21:36+00:00"
  6116. },
  6117. {
  6118. "name": "symfony/serializer",
  6119. "version": "v5.4.5",
  6120. "source": {
  6121. "type": "git",
  6122. "url": "https://github.com/symfony/serializer.git",
  6123. "reference": "e3ec068106e4cc7d17c45656bd8823788e7dc369"
  6124. },
  6125. "dist": {
  6126. "type": "zip",
  6127. "url": "https://api.github.com/repos/symfony/serializer/zipball/e3ec068106e4cc7d17c45656bd8823788e7dc369",
  6128. "reference": "e3ec068106e4cc7d17c45656bd8823788e7dc369",
  6129. "shasum": ""
  6130. },
  6131. "require": {
  6132. "php": ">=7.2.5",
  6133. "symfony/deprecation-contracts": "^2.1|^3",
  6134. "symfony/polyfill-ctype": "~1.8",
  6135. "symfony/polyfill-php80": "^1.16"
  6136. },
  6137. "conflict": {
  6138. "doctrine/annotations": "<1.12",
  6139. "phpdocumentor/reflection-docblock": "<3.2.2",
  6140. "phpdocumentor/type-resolver": "<1.4.0",
  6141. "symfony/dependency-injection": "<4.4",
  6142. "symfony/property-access": "<5.4",
  6143. "symfony/property-info": "<5.3.13",
  6144. "symfony/uid": "<5.3",
  6145. "symfony/yaml": "<4.4"
  6146. },
  6147. "require-dev": {
  6148. "doctrine/annotations": "^1.12",
  6149. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6150. "symfony/cache": "^4.4|^5.0|^6.0",
  6151. "symfony/config": "^4.4|^5.0|^6.0",
  6152. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6153. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6154. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6155. "symfony/form": "^4.4|^5.0|^6.0",
  6156. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6157. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6158. "symfony/mime": "^4.4|^5.0|^6.0",
  6159. "symfony/property-access": "^5.4|^6.0",
  6160. "symfony/property-info": "^5.3.13|^6.0",
  6161. "symfony/uid": "^5.3|^6.0",
  6162. "symfony/validator": "^4.4|^5.0|^6.0",
  6163. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  6164. "symfony/var-exporter": "^4.4|^5.0|^6.0",
  6165. "symfony/yaml": "^4.4|^5.0|^6.0"
  6166. },
  6167. "suggest": {
  6168. "psr/cache-implementation": "For using the metadata cache.",
  6169. "symfony/config": "For using the XML mapping loader.",
  6170. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6171. "symfony/property-access": "For using the ObjectNormalizer.",
  6172. "symfony/property-info": "To deserialize relations.",
  6173. "symfony/var-exporter": "For using the metadata compiler.",
  6174. "symfony/yaml": "For using the default YAML mapping loader."
  6175. },
  6176. "type": "library",
  6177. "autoload": {
  6178. "psr-4": {
  6179. "Symfony\\Component\\Serializer\\": ""
  6180. },
  6181. "exclude-from-classmap": [
  6182. "/Tests/"
  6183. ]
  6184. },
  6185. "notification-url": "https://packagist.org/downloads/",
  6186. "license": [
  6187. "MIT"
  6188. ],
  6189. "authors": [
  6190. {
  6191. "name": "Fabien Potencier",
  6192. "email": "fabien@symfony.com"
  6193. },
  6194. {
  6195. "name": "Symfony Community",
  6196. "homepage": "https://symfony.com/contributors"
  6197. }
  6198. ],
  6199. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6200. "homepage": "https://symfony.com",
  6201. "support": {
  6202. "source": "https://github.com/symfony/serializer/tree/v5.4.5"
  6203. },
  6204. "funding": [
  6205. {
  6206. "url": "https://symfony.com/sponsor",
  6207. "type": "custom"
  6208. },
  6209. {
  6210. "url": "https://github.com/fabpot",
  6211. "type": "github"
  6212. },
  6213. {
  6214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6215. "type": "tidelift"
  6216. }
  6217. ],
  6218. "time": "2022-02-24T09:30:07+00:00"
  6219. },
  6220. {
  6221. "name": "symfony/service-contracts",
  6222. "version": "v2.5.0",
  6223. "source": {
  6224. "type": "git",
  6225. "url": "https://github.com/symfony/service-contracts.git",
  6226. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  6227. },
  6228. "dist": {
  6229. "type": "zip",
  6230. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  6231. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  6232. "shasum": ""
  6233. },
  6234. "require": {
  6235. "php": ">=7.2.5",
  6236. "psr/container": "^1.1",
  6237. "symfony/deprecation-contracts": "^2.1"
  6238. },
  6239. "conflict": {
  6240. "ext-psr": "<1.1|>=2"
  6241. },
  6242. "suggest": {
  6243. "symfony/service-implementation": ""
  6244. },
  6245. "type": "library",
  6246. "extra": {
  6247. "branch-alias": {
  6248. "dev-main": "2.5-dev"
  6249. },
  6250. "thanks": {
  6251. "name": "symfony/contracts",
  6252. "url": "https://github.com/symfony/contracts"
  6253. }
  6254. },
  6255. "autoload": {
  6256. "psr-4": {
  6257. "Symfony\\Contracts\\Service\\": ""
  6258. }
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "Nicolas Grekas",
  6267. "email": "p@tchwork.com"
  6268. },
  6269. {
  6270. "name": "Symfony Community",
  6271. "homepage": "https://symfony.com/contributors"
  6272. }
  6273. ],
  6274. "description": "Generic abstractions related to writing services",
  6275. "homepage": "https://symfony.com",
  6276. "keywords": [
  6277. "abstractions",
  6278. "contracts",
  6279. "decoupling",
  6280. "interfaces",
  6281. "interoperability",
  6282. "standards"
  6283. ],
  6284. "support": {
  6285. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  6286. },
  6287. "funding": [
  6288. {
  6289. "url": "https://symfony.com/sponsor",
  6290. "type": "custom"
  6291. },
  6292. {
  6293. "url": "https://github.com/fabpot",
  6294. "type": "github"
  6295. },
  6296. {
  6297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6298. "type": "tidelift"
  6299. }
  6300. ],
  6301. "time": "2021-11-04T16:48:04+00:00"
  6302. },
  6303. {
  6304. "name": "symfony/stopwatch",
  6305. "version": "v5.4.5",
  6306. "source": {
  6307. "type": "git",
  6308. "url": "https://github.com/symfony/stopwatch.git",
  6309. "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30"
  6310. },
  6311. "dist": {
  6312. "type": "zip",
  6313. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
  6314. "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
  6315. "shasum": ""
  6316. },
  6317. "require": {
  6318. "php": ">=7.2.5",
  6319. "symfony/service-contracts": "^1|^2|^3"
  6320. },
  6321. "type": "library",
  6322. "autoload": {
  6323. "psr-4": {
  6324. "Symfony\\Component\\Stopwatch\\": ""
  6325. },
  6326. "exclude-from-classmap": [
  6327. "/Tests/"
  6328. ]
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Fabien Potencier",
  6337. "email": "fabien@symfony.com"
  6338. },
  6339. {
  6340. "name": "Symfony Community",
  6341. "homepage": "https://symfony.com/contributors"
  6342. }
  6343. ],
  6344. "description": "Provides a way to profile code",
  6345. "homepage": "https://symfony.com",
  6346. "support": {
  6347. "source": "https://github.com/symfony/stopwatch/tree/v5.4.5"
  6348. },
  6349. "funding": [
  6350. {
  6351. "url": "https://symfony.com/sponsor",
  6352. "type": "custom"
  6353. },
  6354. {
  6355. "url": "https://github.com/fabpot",
  6356. "type": "github"
  6357. },
  6358. {
  6359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6360. "type": "tidelift"
  6361. }
  6362. ],
  6363. "time": "2022-02-18T16:06:09+00:00"
  6364. },
  6365. {
  6366. "name": "symfony/string",
  6367. "version": "v5.4.3",
  6368. "source": {
  6369. "type": "git",
  6370. "url": "https://github.com/symfony/string.git",
  6371. "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10"
  6372. },
  6373. "dist": {
  6374. "type": "zip",
  6375. "url": "https://api.github.com/repos/symfony/string/zipball/92043b7d8383e48104e411bc9434b260dbeb5a10",
  6376. "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10",
  6377. "shasum": ""
  6378. },
  6379. "require": {
  6380. "php": ">=7.2.5",
  6381. "symfony/polyfill-ctype": "~1.8",
  6382. "symfony/polyfill-intl-grapheme": "~1.0",
  6383. "symfony/polyfill-intl-normalizer": "~1.0",
  6384. "symfony/polyfill-mbstring": "~1.0",
  6385. "symfony/polyfill-php80": "~1.15"
  6386. },
  6387. "conflict": {
  6388. "symfony/translation-contracts": ">=3.0"
  6389. },
  6390. "require-dev": {
  6391. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6392. "symfony/http-client": "^4.4|^5.0|^6.0",
  6393. "symfony/translation-contracts": "^1.1|^2",
  6394. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6395. },
  6396. "type": "library",
  6397. "autoload": {
  6398. "files": [
  6399. "Resources/functions.php"
  6400. ],
  6401. "psr-4": {
  6402. "Symfony\\Component\\String\\": ""
  6403. },
  6404. "exclude-from-classmap": [
  6405. "/Tests/"
  6406. ]
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "MIT"
  6411. ],
  6412. "authors": [
  6413. {
  6414. "name": "Nicolas Grekas",
  6415. "email": "p@tchwork.com"
  6416. },
  6417. {
  6418. "name": "Symfony Community",
  6419. "homepage": "https://symfony.com/contributors"
  6420. }
  6421. ],
  6422. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6423. "homepage": "https://symfony.com",
  6424. "keywords": [
  6425. "grapheme",
  6426. "i18n",
  6427. "string",
  6428. "unicode",
  6429. "utf-8",
  6430. "utf8"
  6431. ],
  6432. "support": {
  6433. "source": "https://github.com/symfony/string/tree/v5.4.3"
  6434. },
  6435. "funding": [
  6436. {
  6437. "url": "https://symfony.com/sponsor",
  6438. "type": "custom"
  6439. },
  6440. {
  6441. "url": "https://github.com/fabpot",
  6442. "type": "github"
  6443. },
  6444. {
  6445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6446. "type": "tidelift"
  6447. }
  6448. ],
  6449. "time": "2022-01-02T09:53:40+00:00"
  6450. },
  6451. {
  6452. "name": "symfony/translation",
  6453. "version": "v5.4.5",
  6454. "source": {
  6455. "type": "git",
  6456. "url": "https://github.com/symfony/translation.git",
  6457. "reference": "7e4d52d39e5d86f3f04bef46fa29a1091786bc73"
  6458. },
  6459. "dist": {
  6460. "type": "zip",
  6461. "url": "https://api.github.com/repos/symfony/translation/zipball/7e4d52d39e5d86f3f04bef46fa29a1091786bc73",
  6462. "reference": "7e4d52d39e5d86f3f04bef46fa29a1091786bc73",
  6463. "shasum": ""
  6464. },
  6465. "require": {
  6466. "php": ">=7.2.5",
  6467. "symfony/deprecation-contracts": "^2.1|^3",
  6468. "symfony/polyfill-mbstring": "~1.0",
  6469. "symfony/polyfill-php80": "^1.16",
  6470. "symfony/translation-contracts": "^2.3"
  6471. },
  6472. "conflict": {
  6473. "symfony/config": "<4.4",
  6474. "symfony/console": "<5.3",
  6475. "symfony/dependency-injection": "<5.0",
  6476. "symfony/http-kernel": "<5.0",
  6477. "symfony/twig-bundle": "<5.0",
  6478. "symfony/yaml": "<4.4"
  6479. },
  6480. "provide": {
  6481. "symfony/translation-implementation": "2.3"
  6482. },
  6483. "require-dev": {
  6484. "psr/log": "^1|^2|^3",
  6485. "symfony/config": "^4.4|^5.0|^6.0",
  6486. "symfony/console": "^5.4|^6.0",
  6487. "symfony/dependency-injection": "^5.0|^6.0",
  6488. "symfony/finder": "^4.4|^5.0|^6.0",
  6489. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6490. "symfony/http-kernel": "^5.0|^6.0",
  6491. "symfony/intl": "^4.4|^5.0|^6.0",
  6492. "symfony/polyfill-intl-icu": "^1.21",
  6493. "symfony/service-contracts": "^1.1.2|^2|^3",
  6494. "symfony/yaml": "^4.4|^5.0|^6.0"
  6495. },
  6496. "suggest": {
  6497. "psr/log-implementation": "To use logging capability in translator",
  6498. "symfony/config": "",
  6499. "symfony/yaml": ""
  6500. },
  6501. "type": "library",
  6502. "autoload": {
  6503. "files": [
  6504. "Resources/functions.php"
  6505. ],
  6506. "psr-4": {
  6507. "Symfony\\Component\\Translation\\": ""
  6508. },
  6509. "exclude-from-classmap": [
  6510. "/Tests/"
  6511. ]
  6512. },
  6513. "notification-url": "https://packagist.org/downloads/",
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Fabien Potencier",
  6520. "email": "fabien@symfony.com"
  6521. },
  6522. {
  6523. "name": "Symfony Community",
  6524. "homepage": "https://symfony.com/contributors"
  6525. }
  6526. ],
  6527. "description": "Provides tools to internationalize your application",
  6528. "homepage": "https://symfony.com",
  6529. "support": {
  6530. "source": "https://github.com/symfony/translation/tree/v5.4.5"
  6531. },
  6532. "funding": [
  6533. {
  6534. "url": "https://symfony.com/sponsor",
  6535. "type": "custom"
  6536. },
  6537. {
  6538. "url": "https://github.com/fabpot",
  6539. "type": "github"
  6540. },
  6541. {
  6542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6543. "type": "tidelift"
  6544. }
  6545. ],
  6546. "time": "2022-02-09T15:49:12+00:00"
  6547. },
  6548. {
  6549. "name": "symfony/translation-contracts",
  6550. "version": "v2.5.0",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://github.com/symfony/translation-contracts.git",
  6554. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  6559. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  6560. "shasum": ""
  6561. },
  6562. "require": {
  6563. "php": ">=7.2.5"
  6564. },
  6565. "suggest": {
  6566. "symfony/translation-implementation": ""
  6567. },
  6568. "type": "library",
  6569. "extra": {
  6570. "branch-alias": {
  6571. "dev-main": "2.5-dev"
  6572. },
  6573. "thanks": {
  6574. "name": "symfony/contracts",
  6575. "url": "https://github.com/symfony/contracts"
  6576. }
  6577. },
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Symfony\\Contracts\\Translation\\": ""
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Nicolas Grekas",
  6590. "email": "p@tchwork.com"
  6591. },
  6592. {
  6593. "name": "Symfony Community",
  6594. "homepage": "https://symfony.com/contributors"
  6595. }
  6596. ],
  6597. "description": "Generic abstractions related to translation",
  6598. "homepage": "https://symfony.com",
  6599. "keywords": [
  6600. "abstractions",
  6601. "contracts",
  6602. "decoupling",
  6603. "interfaces",
  6604. "interoperability",
  6605. "standards"
  6606. ],
  6607. "support": {
  6608. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  6609. },
  6610. "funding": [
  6611. {
  6612. "url": "https://symfony.com/sponsor",
  6613. "type": "custom"
  6614. },
  6615. {
  6616. "url": "https://github.com/fabpot",
  6617. "type": "github"
  6618. },
  6619. {
  6620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6621. "type": "tidelift"
  6622. }
  6623. ],
  6624. "time": "2021-08-17T14:20:01+00:00"
  6625. },
  6626. {
  6627. "name": "symfony/twig-bridge",
  6628. "version": "v5.4.5",
  6629. "source": {
  6630. "type": "git",
  6631. "url": "https://github.com/symfony/twig-bridge.git",
  6632. "reference": "648c8694a9470ae4aaf64cbce1b640f5941fd7c9"
  6633. },
  6634. "dist": {
  6635. "type": "zip",
  6636. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/648c8694a9470ae4aaf64cbce1b640f5941fd7c9",
  6637. "reference": "648c8694a9470ae4aaf64cbce1b640f5941fd7c9",
  6638. "shasum": ""
  6639. },
  6640. "require": {
  6641. "php": ">=7.2.5",
  6642. "symfony/polyfill-php80": "^1.16",
  6643. "symfony/translation-contracts": "^1.1|^2|^3",
  6644. "twig/twig": "^2.13|^3.0.4"
  6645. },
  6646. "conflict": {
  6647. "phpdocumentor/reflection-docblock": "<3.2.2",
  6648. "phpdocumentor/type-resolver": "<1.4.0",
  6649. "symfony/console": "<5.3",
  6650. "symfony/form": "<5.3",
  6651. "symfony/http-foundation": "<5.3",
  6652. "symfony/http-kernel": "<4.4",
  6653. "symfony/translation": "<5.2",
  6654. "symfony/workflow": "<5.2"
  6655. },
  6656. "require-dev": {
  6657. "doctrine/annotations": "^1.12",
  6658. "egulias/email-validator": "^2.1.10|^3",
  6659. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6660. "symfony/asset": "^4.4|^5.0|^6.0",
  6661. "symfony/console": "^5.3|^6.0",
  6662. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6663. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6664. "symfony/finder": "^4.4|^5.0|^6.0",
  6665. "symfony/form": "^5.3|^6.0",
  6666. "symfony/http-foundation": "^5.3|^6.0",
  6667. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6668. "symfony/intl": "^4.4|^5.0|^6.0",
  6669. "symfony/mime": "^5.2|^6.0",
  6670. "symfony/polyfill-intl-icu": "~1.0",
  6671. "symfony/property-info": "^4.4|^5.1|^6.0",
  6672. "symfony/routing": "^4.4|^5.0|^6.0",
  6673. "symfony/security-acl": "^2.8|^3.0",
  6674. "symfony/security-core": "^4.4|^5.0|^6.0",
  6675. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6676. "symfony/security-http": "^4.4|^5.0|^6.0",
  6677. "symfony/serializer": "^5.2|^6.0",
  6678. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6679. "symfony/translation": "^5.2|^6.0",
  6680. "symfony/web-link": "^4.4|^5.0|^6.0",
  6681. "symfony/workflow": "^5.2|^6.0",
  6682. "symfony/yaml": "^4.4|^5.0|^6.0",
  6683. "twig/cssinliner-extra": "^2.12|^3",
  6684. "twig/inky-extra": "^2.12|^3",
  6685. "twig/markdown-extra": "^2.12|^3"
  6686. },
  6687. "suggest": {
  6688. "symfony/asset": "For using the AssetExtension",
  6689. "symfony/expression-language": "For using the ExpressionExtension",
  6690. "symfony/finder": "",
  6691. "symfony/form": "For using the FormExtension",
  6692. "symfony/http-kernel": "For using the HttpKernelExtension",
  6693. "symfony/routing": "For using the RoutingExtension",
  6694. "symfony/security-core": "For using the SecurityExtension",
  6695. "symfony/security-csrf": "For using the CsrfExtension",
  6696. "symfony/security-http": "For using the LogoutUrlExtension",
  6697. "symfony/stopwatch": "For using the StopwatchExtension",
  6698. "symfony/translation": "For using the TranslationExtension",
  6699. "symfony/var-dumper": "For using the DumpExtension",
  6700. "symfony/web-link": "For using the WebLinkExtension",
  6701. "symfony/yaml": "For using the YamlExtension"
  6702. },
  6703. "type": "symfony-bridge",
  6704. "autoload": {
  6705. "psr-4": {
  6706. "Symfony\\Bridge\\Twig\\": ""
  6707. },
  6708. "exclude-from-classmap": [
  6709. "/Tests/"
  6710. ]
  6711. },
  6712. "notification-url": "https://packagist.org/downloads/",
  6713. "license": [
  6714. "MIT"
  6715. ],
  6716. "authors": [
  6717. {
  6718. "name": "Fabien Potencier",
  6719. "email": "fabien@symfony.com"
  6720. },
  6721. {
  6722. "name": "Symfony Community",
  6723. "homepage": "https://symfony.com/contributors"
  6724. }
  6725. ],
  6726. "description": "Provides integration for Twig with various Symfony components",
  6727. "homepage": "https://symfony.com",
  6728. "support": {
  6729. "source": "https://github.com/symfony/twig-bridge/tree/v5.4.5"
  6730. },
  6731. "funding": [
  6732. {
  6733. "url": "https://symfony.com/sponsor",
  6734. "type": "custom"
  6735. },
  6736. {
  6737. "url": "https://github.com/fabpot",
  6738. "type": "github"
  6739. },
  6740. {
  6741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6742. "type": "tidelift"
  6743. }
  6744. ],
  6745. "time": "2022-02-09T08:59:58+00:00"
  6746. },
  6747. {
  6748. "name": "symfony/twig-bundle",
  6749. "version": "v5.4.3",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/symfony/twig-bundle.git",
  6753. "reference": "45ae3ee8155f93042a1033b166a7a3ed57b96a92"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/45ae3ee8155f93042a1033b166a7a3ed57b96a92",
  6758. "reference": "45ae3ee8155f93042a1033b166a7a3ed57b96a92",
  6759. "shasum": ""
  6760. },
  6761. "require": {
  6762. "php": ">=7.2.5",
  6763. "symfony/config": "^4.4|^5.0|^6.0",
  6764. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6765. "symfony/http-kernel": "^5.0|^6.0",
  6766. "symfony/polyfill-ctype": "~1.8",
  6767. "symfony/polyfill-php80": "^1.16",
  6768. "symfony/twig-bridge": "^5.3|^6.0",
  6769. "twig/twig": "^2.13|^3.0.4"
  6770. },
  6771. "conflict": {
  6772. "symfony/dependency-injection": "<5.3",
  6773. "symfony/framework-bundle": "<5.0",
  6774. "symfony/service-contracts": ">=3.0",
  6775. "symfony/translation": "<5.0"
  6776. },
  6777. "require-dev": {
  6778. "doctrine/annotations": "^1.10.4",
  6779. "doctrine/cache": "^1.0|^2.0",
  6780. "symfony/asset": "^4.4|^5.0|^6.0",
  6781. "symfony/dependency-injection": "^5.3|^6.0",
  6782. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6783. "symfony/finder": "^4.4|^5.0|^6.0",
  6784. "symfony/form": "^4.4|^5.0|^6.0",
  6785. "symfony/framework-bundle": "^5.0|^6.0",
  6786. "symfony/routing": "^4.4|^5.0|^6.0",
  6787. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6788. "symfony/translation": "^5.0|^6.0",
  6789. "symfony/web-link": "^4.4|^5.0|^6.0",
  6790. "symfony/yaml": "^4.4|^5.0|^6.0"
  6791. },
  6792. "type": "symfony-bundle",
  6793. "autoload": {
  6794. "psr-4": {
  6795. "Symfony\\Bundle\\TwigBundle\\": ""
  6796. },
  6797. "exclude-from-classmap": [
  6798. "/Tests/"
  6799. ]
  6800. },
  6801. "notification-url": "https://packagist.org/downloads/",
  6802. "license": [
  6803. "MIT"
  6804. ],
  6805. "authors": [
  6806. {
  6807. "name": "Fabien Potencier",
  6808. "email": "fabien@symfony.com"
  6809. },
  6810. {
  6811. "name": "Symfony Community",
  6812. "homepage": "https://symfony.com/contributors"
  6813. }
  6814. ],
  6815. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6816. "homepage": "https://symfony.com",
  6817. "support": {
  6818. "source": "https://github.com/symfony/twig-bundle/tree/v5.4.3"
  6819. },
  6820. "funding": [
  6821. {
  6822. "url": "https://symfony.com/sponsor",
  6823. "type": "custom"
  6824. },
  6825. {
  6826. "url": "https://github.com/fabpot",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6831. "type": "tidelift"
  6832. }
  6833. ],
  6834. "time": "2022-01-02T09:53:40+00:00"
  6835. },
  6836. {
  6837. "name": "symfony/validator",
  6838. "version": "v5.4.5",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/symfony/validator.git",
  6842. "reference": "06c3d849fa19a0ece7b6eed240036772c4b5faaf"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/symfony/validator/zipball/06c3d849fa19a0ece7b6eed240036772c4b5faaf",
  6847. "reference": "06c3d849fa19a0ece7b6eed240036772c4b5faaf",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "php": ">=7.2.5",
  6852. "symfony/deprecation-contracts": "^2.1|^3",
  6853. "symfony/polyfill-ctype": "~1.8",
  6854. "symfony/polyfill-mbstring": "~1.0",
  6855. "symfony/polyfill-php73": "~1.0",
  6856. "symfony/polyfill-php80": "^1.16",
  6857. "symfony/polyfill-php81": "^1.22",
  6858. "symfony/translation-contracts": "^1.1|^2|^3"
  6859. },
  6860. "conflict": {
  6861. "doctrine/annotations": "<1.13",
  6862. "doctrine/cache": "<1.11",
  6863. "doctrine/lexer": "<1.1",
  6864. "phpunit/phpunit": "<5.4.3",
  6865. "symfony/dependency-injection": "<4.4",
  6866. "symfony/expression-language": "<5.1",
  6867. "symfony/http-kernel": "<4.4",
  6868. "symfony/intl": "<4.4",
  6869. "symfony/property-info": "<5.3",
  6870. "symfony/translation": "<4.4",
  6871. "symfony/yaml": "<4.4"
  6872. },
  6873. "require-dev": {
  6874. "doctrine/annotations": "^1.13",
  6875. "doctrine/cache": "^1.11|^2.0",
  6876. "egulias/email-validator": "^2.1.10|^3",
  6877. "symfony/cache": "^4.4|^5.0|^6.0",
  6878. "symfony/config": "^4.4|^5.0|^6.0",
  6879. "symfony/console": "^4.4|^5.0|^6.0",
  6880. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6881. "symfony/expression-language": "^5.1|^6.0",
  6882. "symfony/finder": "^4.4|^5.0|^6.0",
  6883. "symfony/http-client": "^4.4|^5.0|^6.0",
  6884. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6885. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6886. "symfony/intl": "^4.4|^5.0|^6.0",
  6887. "symfony/mime": "^4.4|^5.0|^6.0",
  6888. "symfony/property-access": "^4.4|^5.0|^6.0",
  6889. "symfony/property-info": "^5.3|^6.0",
  6890. "symfony/translation": "^4.4|^5.0|^6.0",
  6891. "symfony/yaml": "^4.4|^5.0|^6.0"
  6892. },
  6893. "suggest": {
  6894. "egulias/email-validator": "Strict (RFC compliant) email validation",
  6895. "psr/cache-implementation": "For using the mapping cache.",
  6896. "symfony/config": "",
  6897. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  6898. "symfony/http-foundation": "",
  6899. "symfony/intl": "",
  6900. "symfony/property-access": "For accessing properties within comparison constraints",
  6901. "symfony/property-info": "To automatically add NotNull and Type constraints",
  6902. "symfony/translation": "For translating validation errors.",
  6903. "symfony/yaml": ""
  6904. },
  6905. "type": "library",
  6906. "autoload": {
  6907. "psr-4": {
  6908. "Symfony\\Component\\Validator\\": ""
  6909. },
  6910. "exclude-from-classmap": [
  6911. "/Tests/"
  6912. ]
  6913. },
  6914. "notification-url": "https://packagist.org/downloads/",
  6915. "license": [
  6916. "MIT"
  6917. ],
  6918. "authors": [
  6919. {
  6920. "name": "Fabien Potencier",
  6921. "email": "fabien@symfony.com"
  6922. },
  6923. {
  6924. "name": "Symfony Community",
  6925. "homepage": "https://symfony.com/contributors"
  6926. }
  6927. ],
  6928. "description": "Provides tools to validate values",
  6929. "homepage": "https://symfony.com",
  6930. "support": {
  6931. "source": "https://github.com/symfony/validator/tree/v5.4.5"
  6932. },
  6933. "funding": [
  6934. {
  6935. "url": "https://symfony.com/sponsor",
  6936. "type": "custom"
  6937. },
  6938. {
  6939. "url": "https://github.com/fabpot",
  6940. "type": "github"
  6941. },
  6942. {
  6943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6944. "type": "tidelift"
  6945. }
  6946. ],
  6947. "time": "2022-02-25T08:05:40+00:00"
  6948. },
  6949. {
  6950. "name": "symfony/var-dumper",
  6951. "version": "v5.4.5",
  6952. "source": {
  6953. "type": "git",
  6954. "url": "https://github.com/symfony/var-dumper.git",
  6955. "reference": "6efddb1cf6af5270b21c48c6103e81f920c220f0"
  6956. },
  6957. "dist": {
  6958. "type": "zip",
  6959. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6efddb1cf6af5270b21c48c6103e81f920c220f0",
  6960. "reference": "6efddb1cf6af5270b21c48c6103e81f920c220f0",
  6961. "shasum": ""
  6962. },
  6963. "require": {
  6964. "php": ">=7.2.5",
  6965. "symfony/polyfill-mbstring": "~1.0",
  6966. "symfony/polyfill-php80": "^1.16"
  6967. },
  6968. "conflict": {
  6969. "phpunit/phpunit": "<5.4.3",
  6970. "symfony/console": "<4.4"
  6971. },
  6972. "require-dev": {
  6973. "ext-iconv": "*",
  6974. "symfony/console": "^4.4|^5.0|^6.0",
  6975. "symfony/process": "^4.4|^5.0|^6.0",
  6976. "symfony/uid": "^5.1|^6.0",
  6977. "twig/twig": "^2.13|^3.0.4"
  6978. },
  6979. "suggest": {
  6980. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6981. "ext-intl": "To show region name in time zone dump",
  6982. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6983. },
  6984. "bin": [
  6985. "Resources/bin/var-dump-server"
  6986. ],
  6987. "type": "library",
  6988. "autoload": {
  6989. "files": [
  6990. "Resources/functions/dump.php"
  6991. ],
  6992. "psr-4": {
  6993. "Symfony\\Component\\VarDumper\\": ""
  6994. },
  6995. "exclude-from-classmap": [
  6996. "/Tests/"
  6997. ]
  6998. },
  6999. "notification-url": "https://packagist.org/downloads/",
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Nicolas Grekas",
  7006. "email": "p@tchwork.com"
  7007. },
  7008. {
  7009. "name": "Symfony Community",
  7010. "homepage": "https://symfony.com/contributors"
  7011. }
  7012. ],
  7013. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7014. "homepage": "https://symfony.com",
  7015. "keywords": [
  7016. "debug",
  7017. "dump"
  7018. ],
  7019. "support": {
  7020. "source": "https://github.com/symfony/var-dumper/tree/v5.4.5"
  7021. },
  7022. "funding": [
  7023. {
  7024. "url": "https://symfony.com/sponsor",
  7025. "type": "custom"
  7026. },
  7027. {
  7028. "url": "https://github.com/fabpot",
  7029. "type": "github"
  7030. },
  7031. {
  7032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7033. "type": "tidelift"
  7034. }
  7035. ],
  7036. "time": "2022-02-21T15:00:19+00:00"
  7037. },
  7038. {
  7039. "name": "symfony/var-exporter",
  7040. "version": "v5.4.3",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://github.com/symfony/var-exporter.git",
  7044. "reference": "b199936b7365be36663532e547812d3abb10234a"
  7045. },
  7046. "dist": {
  7047. "type": "zip",
  7048. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b199936b7365be36663532e547812d3abb10234a",
  7049. "reference": "b199936b7365be36663532e547812d3abb10234a",
  7050. "shasum": ""
  7051. },
  7052. "require": {
  7053. "php": ">=7.2.5",
  7054. "symfony/polyfill-php80": "^1.16"
  7055. },
  7056. "require-dev": {
  7057. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7058. },
  7059. "type": "library",
  7060. "autoload": {
  7061. "psr-4": {
  7062. "Symfony\\Component\\VarExporter\\": ""
  7063. },
  7064. "exclude-from-classmap": [
  7065. "/Tests/"
  7066. ]
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Nicolas Grekas",
  7075. "email": "p@tchwork.com"
  7076. },
  7077. {
  7078. "name": "Symfony Community",
  7079. "homepage": "https://symfony.com/contributors"
  7080. }
  7081. ],
  7082. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7083. "homepage": "https://symfony.com",
  7084. "keywords": [
  7085. "clone",
  7086. "construct",
  7087. "export",
  7088. "hydrate",
  7089. "instantiate",
  7090. "serialize"
  7091. ],
  7092. "support": {
  7093. "source": "https://github.com/symfony/var-exporter/tree/v5.4.3"
  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": "2022-01-02T09:53:40+00:00"
  7110. },
  7111. {
  7112. "name": "symfony/web-link",
  7113. "version": "v5.4.3",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/symfony/web-link.git",
  7117. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/symfony/web-link/zipball/8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7122. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "php": ">=7.2.5",
  7127. "psr/link": "^1.0",
  7128. "symfony/polyfill-php80": "^1.16"
  7129. },
  7130. "conflict": {
  7131. "symfony/http-kernel": "<5.3"
  7132. },
  7133. "provide": {
  7134. "psr/link-implementation": "1.0"
  7135. },
  7136. "require-dev": {
  7137. "symfony/http-kernel": "^5.3|^6.0"
  7138. },
  7139. "suggest": {
  7140. "symfony/http-kernel": ""
  7141. },
  7142. "type": "library",
  7143. "autoload": {
  7144. "psr-4": {
  7145. "Symfony\\Component\\WebLink\\": ""
  7146. },
  7147. "exclude-from-classmap": [
  7148. "/Tests/"
  7149. ]
  7150. },
  7151. "notification-url": "https://packagist.org/downloads/",
  7152. "license": [
  7153. "MIT"
  7154. ],
  7155. "authors": [
  7156. {
  7157. "name": "Kévin Dunglas",
  7158. "email": "dunglas@gmail.com"
  7159. },
  7160. {
  7161. "name": "Symfony Community",
  7162. "homepage": "https://symfony.com/contributors"
  7163. }
  7164. ],
  7165. "description": "Manages links between resources",
  7166. "homepage": "https://symfony.com",
  7167. "keywords": [
  7168. "dns-prefetch",
  7169. "http",
  7170. "http2",
  7171. "link",
  7172. "performance",
  7173. "prefetch",
  7174. "preload",
  7175. "prerender",
  7176. "psr13",
  7177. "push"
  7178. ],
  7179. "support": {
  7180. "source": "https://github.com/symfony/web-link/tree/v5.4.3"
  7181. },
  7182. "funding": [
  7183. {
  7184. "url": "https://symfony.com/sponsor",
  7185. "type": "custom"
  7186. },
  7187. {
  7188. "url": "https://github.com/fabpot",
  7189. "type": "github"
  7190. },
  7191. {
  7192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7193. "type": "tidelift"
  7194. }
  7195. ],
  7196. "time": "2022-01-02T09:53:40+00:00"
  7197. },
  7198. {
  7199. "name": "symfony/webpack-encore-bundle",
  7200. "version": "v1.14.0",
  7201. "source": {
  7202. "type": "git",
  7203. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7204. "reference": "1729c314574f32e49f9660a0cee870f7e603864f"
  7205. },
  7206. "dist": {
  7207. "type": "zip",
  7208. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/1729c314574f32e49f9660a0cee870f7e603864f",
  7209. "reference": "1729c314574f32e49f9660a0cee870f7e603864f",
  7210. "shasum": ""
  7211. },
  7212. "require": {
  7213. "php": ">=7.1.3",
  7214. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7215. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7216. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7217. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7218. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7219. },
  7220. "require-dev": {
  7221. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7222. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7223. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7224. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7225. },
  7226. "type": "symfony-bundle",
  7227. "extra": {
  7228. "thanks": {
  7229. "name": "symfony/webpack-encore",
  7230. "url": "https://github.com/symfony/webpack-encore"
  7231. }
  7232. },
  7233. "autoload": {
  7234. "psr-4": {
  7235. "Symfony\\WebpackEncoreBundle\\": "src"
  7236. }
  7237. },
  7238. "notification-url": "https://packagist.org/downloads/",
  7239. "license": [
  7240. "MIT"
  7241. ],
  7242. "authors": [
  7243. {
  7244. "name": "Symfony Community",
  7245. "homepage": "https://symfony.com/contributors"
  7246. }
  7247. ],
  7248. "description": "Integration with your Symfony app & Webpack Encore!",
  7249. "support": {
  7250. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7251. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.14.0"
  7252. },
  7253. "funding": [
  7254. {
  7255. "url": "https://symfony.com/sponsor",
  7256. "type": "custom"
  7257. },
  7258. {
  7259. "url": "https://github.com/fabpot",
  7260. "type": "github"
  7261. },
  7262. {
  7263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7264. "type": "tidelift"
  7265. }
  7266. ],
  7267. "time": "2022-02-14T15:06:55+00:00"
  7268. },
  7269. {
  7270. "name": "symfony/yaml",
  7271. "version": "v5.4.3",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/symfony/yaml.git",
  7275. "reference": "e80f87d2c9495966768310fc531b487ce64237a2"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/symfony/yaml/zipball/e80f87d2c9495966768310fc531b487ce64237a2",
  7280. "reference": "e80f87d2c9495966768310fc531b487ce64237a2",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": ">=7.2.5",
  7285. "symfony/deprecation-contracts": "^2.1|^3",
  7286. "symfony/polyfill-ctype": "^1.8"
  7287. },
  7288. "conflict": {
  7289. "symfony/console": "<5.3"
  7290. },
  7291. "require-dev": {
  7292. "symfony/console": "^5.3|^6.0"
  7293. },
  7294. "suggest": {
  7295. "symfony/console": "For validating YAML files using the lint command"
  7296. },
  7297. "bin": [
  7298. "Resources/bin/yaml-lint"
  7299. ],
  7300. "type": "library",
  7301. "autoload": {
  7302. "psr-4": {
  7303. "Symfony\\Component\\Yaml\\": ""
  7304. },
  7305. "exclude-from-classmap": [
  7306. "/Tests/"
  7307. ]
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "MIT"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Fabien Potencier",
  7316. "email": "fabien@symfony.com"
  7317. },
  7318. {
  7319. "name": "Symfony Community",
  7320. "homepage": "https://symfony.com/contributors"
  7321. }
  7322. ],
  7323. "description": "Loads and dumps YAML files",
  7324. "homepage": "https://symfony.com",
  7325. "support": {
  7326. "source": "https://github.com/symfony/yaml/tree/v5.4.3"
  7327. },
  7328. "funding": [
  7329. {
  7330. "url": "https://symfony.com/sponsor",
  7331. "type": "custom"
  7332. },
  7333. {
  7334. "url": "https://github.com/fabpot",
  7335. "type": "github"
  7336. },
  7337. {
  7338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7339. "type": "tidelift"
  7340. }
  7341. ],
  7342. "time": "2022-01-26T16:32:32+00:00"
  7343. },
  7344. {
  7345. "name": "twig/twig",
  7346. "version": "v3.3.8",
  7347. "source": {
  7348. "type": "git",
  7349. "url": "https://github.com/twigphp/Twig.git",
  7350. "reference": "972d8604a92b7054828b539f2febb0211dd5945c"
  7351. },
  7352. "dist": {
  7353. "type": "zip",
  7354. "url": "https://api.github.com/repos/twigphp/Twig/zipball/972d8604a92b7054828b539f2febb0211dd5945c",
  7355. "reference": "972d8604a92b7054828b539f2febb0211dd5945c",
  7356. "shasum": ""
  7357. },
  7358. "require": {
  7359. "php": ">=7.2.5",
  7360. "symfony/polyfill-ctype": "^1.8",
  7361. "symfony/polyfill-mbstring": "^1.3"
  7362. },
  7363. "require-dev": {
  7364. "psr/container": "^1.0",
  7365. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7366. },
  7367. "type": "library",
  7368. "extra": {
  7369. "branch-alias": {
  7370. "dev-master": "3.3-dev"
  7371. }
  7372. },
  7373. "autoload": {
  7374. "psr-4": {
  7375. "Twig\\": "src/"
  7376. }
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "BSD-3-Clause"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Fabien Potencier",
  7385. "email": "fabien@symfony.com",
  7386. "homepage": "http://fabien.potencier.org",
  7387. "role": "Lead Developer"
  7388. },
  7389. {
  7390. "name": "Twig Team",
  7391. "role": "Contributors"
  7392. },
  7393. {
  7394. "name": "Armin Ronacher",
  7395. "email": "armin.ronacher@active-4.com",
  7396. "role": "Project Founder"
  7397. }
  7398. ],
  7399. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7400. "homepage": "https://twig.symfony.com",
  7401. "keywords": [
  7402. "templating"
  7403. ],
  7404. "support": {
  7405. "issues": "https://github.com/twigphp/Twig/issues",
  7406. "source": "https://github.com/twigphp/Twig/tree/v3.3.8"
  7407. },
  7408. "funding": [
  7409. {
  7410. "url": "https://github.com/fabpot",
  7411. "type": "github"
  7412. },
  7413. {
  7414. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7415. "type": "tidelift"
  7416. }
  7417. ],
  7418. "time": "2022-02-04T06:59:48+00:00"
  7419. },
  7420. {
  7421. "name": "webmozart/assert",
  7422. "version": "1.10.0",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/webmozarts/assert.git",
  7426. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7431. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": "^7.2 || ^8.0",
  7436. "symfony/polyfill-ctype": "^1.8"
  7437. },
  7438. "conflict": {
  7439. "phpstan/phpstan": "<0.12.20",
  7440. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7441. },
  7442. "require-dev": {
  7443. "phpunit/phpunit": "^8.5.13"
  7444. },
  7445. "type": "library",
  7446. "extra": {
  7447. "branch-alias": {
  7448. "dev-master": "1.10-dev"
  7449. }
  7450. },
  7451. "autoload": {
  7452. "psr-4": {
  7453. "Webmozart\\Assert\\": "src/"
  7454. }
  7455. },
  7456. "notification-url": "https://packagist.org/downloads/",
  7457. "license": [
  7458. "MIT"
  7459. ],
  7460. "authors": [
  7461. {
  7462. "name": "Bernhard Schussek",
  7463. "email": "bschussek@gmail.com"
  7464. }
  7465. ],
  7466. "description": "Assertions to validate method input/output with nice error messages.",
  7467. "keywords": [
  7468. "assert",
  7469. "check",
  7470. "validate"
  7471. ],
  7472. "support": {
  7473. "issues": "https://github.com/webmozarts/assert/issues",
  7474. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  7475. },
  7476. "time": "2021-03-09T10:59:23+00:00"
  7477. }
  7478. ],
  7479. "packages-dev": [
  7480. {
  7481. "name": "myclabs/deep-copy",
  7482. "version": "1.11.0",
  7483. "source": {
  7484. "type": "git",
  7485. "url": "https://github.com/myclabs/DeepCopy.git",
  7486. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7487. },
  7488. "dist": {
  7489. "type": "zip",
  7490. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7491. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7492. "shasum": ""
  7493. },
  7494. "require": {
  7495. "php": "^7.1 || ^8.0"
  7496. },
  7497. "conflict": {
  7498. "doctrine/collections": "<1.6.8",
  7499. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7500. },
  7501. "require-dev": {
  7502. "doctrine/collections": "^1.6.8",
  7503. "doctrine/common": "^2.13.3 || ^3.2.2",
  7504. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7505. },
  7506. "type": "library",
  7507. "autoload": {
  7508. "files": [
  7509. "src/DeepCopy/deep_copy.php"
  7510. ],
  7511. "psr-4": {
  7512. "DeepCopy\\": "src/DeepCopy/"
  7513. }
  7514. },
  7515. "notification-url": "https://packagist.org/downloads/",
  7516. "license": [
  7517. "MIT"
  7518. ],
  7519. "description": "Create deep copies (clones) of your objects",
  7520. "keywords": [
  7521. "clone",
  7522. "copy",
  7523. "duplicate",
  7524. "object",
  7525. "object graph"
  7526. ],
  7527. "support": {
  7528. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7529. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  7530. },
  7531. "funding": [
  7532. {
  7533. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7534. "type": "tidelift"
  7535. }
  7536. ],
  7537. "time": "2022-03-03T13:19:32+00:00"
  7538. },
  7539. {
  7540. "name": "nikic/php-parser",
  7541. "version": "v4.13.2",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/nikic/PHP-Parser.git",
  7545. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  7550. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  7551. "shasum": ""
  7552. },
  7553. "require": {
  7554. "ext-tokenizer": "*",
  7555. "php": ">=7.0"
  7556. },
  7557. "require-dev": {
  7558. "ircmaxell/php-yacc": "^0.0.7",
  7559. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7560. },
  7561. "bin": [
  7562. "bin/php-parse"
  7563. ],
  7564. "type": "library",
  7565. "extra": {
  7566. "branch-alias": {
  7567. "dev-master": "4.9-dev"
  7568. }
  7569. },
  7570. "autoload": {
  7571. "psr-4": {
  7572. "PhpParser\\": "lib/PhpParser"
  7573. }
  7574. },
  7575. "notification-url": "https://packagist.org/downloads/",
  7576. "license": [
  7577. "BSD-3-Clause"
  7578. ],
  7579. "authors": [
  7580. {
  7581. "name": "Nikita Popov"
  7582. }
  7583. ],
  7584. "description": "A PHP parser written in PHP",
  7585. "keywords": [
  7586. "parser",
  7587. "php"
  7588. ],
  7589. "support": {
  7590. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7591. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  7592. },
  7593. "time": "2021-11-30T19:35:32+00:00"
  7594. },
  7595. {
  7596. "name": "phar-io/manifest",
  7597. "version": "2.0.3",
  7598. "source": {
  7599. "type": "git",
  7600. "url": "https://github.com/phar-io/manifest.git",
  7601. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7602. },
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7606. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7607. "shasum": ""
  7608. },
  7609. "require": {
  7610. "ext-dom": "*",
  7611. "ext-phar": "*",
  7612. "ext-xmlwriter": "*",
  7613. "phar-io/version": "^3.0.1",
  7614. "php": "^7.2 || ^8.0"
  7615. },
  7616. "type": "library",
  7617. "extra": {
  7618. "branch-alias": {
  7619. "dev-master": "2.0.x-dev"
  7620. }
  7621. },
  7622. "autoload": {
  7623. "classmap": [
  7624. "src/"
  7625. ]
  7626. },
  7627. "notification-url": "https://packagist.org/downloads/",
  7628. "license": [
  7629. "BSD-3-Clause"
  7630. ],
  7631. "authors": [
  7632. {
  7633. "name": "Arne Blankerts",
  7634. "email": "arne@blankerts.de",
  7635. "role": "Developer"
  7636. },
  7637. {
  7638. "name": "Sebastian Heuer",
  7639. "email": "sebastian@phpeople.de",
  7640. "role": "Developer"
  7641. },
  7642. {
  7643. "name": "Sebastian Bergmann",
  7644. "email": "sebastian@phpunit.de",
  7645. "role": "Developer"
  7646. }
  7647. ],
  7648. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7649. "support": {
  7650. "issues": "https://github.com/phar-io/manifest/issues",
  7651. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7652. },
  7653. "time": "2021-07-20T11:28:43+00:00"
  7654. },
  7655. {
  7656. "name": "phar-io/version",
  7657. "version": "3.2.1",
  7658. "source": {
  7659. "type": "git",
  7660. "url": "https://github.com/phar-io/version.git",
  7661. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7662. },
  7663. "dist": {
  7664. "type": "zip",
  7665. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7666. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7667. "shasum": ""
  7668. },
  7669. "require": {
  7670. "php": "^7.2 || ^8.0"
  7671. },
  7672. "type": "library",
  7673. "autoload": {
  7674. "classmap": [
  7675. "src/"
  7676. ]
  7677. },
  7678. "notification-url": "https://packagist.org/downloads/",
  7679. "license": [
  7680. "BSD-3-Clause"
  7681. ],
  7682. "authors": [
  7683. {
  7684. "name": "Arne Blankerts",
  7685. "email": "arne@blankerts.de",
  7686. "role": "Developer"
  7687. },
  7688. {
  7689. "name": "Sebastian Heuer",
  7690. "email": "sebastian@phpeople.de",
  7691. "role": "Developer"
  7692. },
  7693. {
  7694. "name": "Sebastian Bergmann",
  7695. "email": "sebastian@phpunit.de",
  7696. "role": "Developer"
  7697. }
  7698. ],
  7699. "description": "Library for handling version information and constraints",
  7700. "support": {
  7701. "issues": "https://github.com/phar-io/version/issues",
  7702. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7703. },
  7704. "time": "2022-02-21T01:04:05+00:00"
  7705. },
  7706. {
  7707. "name": "phpspec/prophecy",
  7708. "version": "v1.15.0",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/phpspec/prophecy.git",
  7712. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7717. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7718. "shasum": ""
  7719. },
  7720. "require": {
  7721. "doctrine/instantiator": "^1.2",
  7722. "php": "^7.2 || ~8.0, <8.2",
  7723. "phpdocumentor/reflection-docblock": "^5.2",
  7724. "sebastian/comparator": "^3.0 || ^4.0",
  7725. "sebastian/recursion-context": "^3.0 || ^4.0"
  7726. },
  7727. "require-dev": {
  7728. "phpspec/phpspec": "^6.0 || ^7.0",
  7729. "phpunit/phpunit": "^8.0 || ^9.0"
  7730. },
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-master": "1.x-dev"
  7735. }
  7736. },
  7737. "autoload": {
  7738. "psr-4": {
  7739. "Prophecy\\": "src/Prophecy"
  7740. }
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Konstantin Kudryashov",
  7749. "email": "ever.zet@gmail.com",
  7750. "homepage": "http://everzet.com"
  7751. },
  7752. {
  7753. "name": "Marcello Duarte",
  7754. "email": "marcello.duarte@gmail.com"
  7755. }
  7756. ],
  7757. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7758. "homepage": "https://github.com/phpspec/prophecy",
  7759. "keywords": [
  7760. "Double",
  7761. "Dummy",
  7762. "fake",
  7763. "mock",
  7764. "spy",
  7765. "stub"
  7766. ],
  7767. "support": {
  7768. "issues": "https://github.com/phpspec/prophecy/issues",
  7769. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  7770. },
  7771. "time": "2021-12-08T12:19:24+00:00"
  7772. },
  7773. {
  7774. "name": "phpunit/php-code-coverage",
  7775. "version": "9.2.14",
  7776. "source": {
  7777. "type": "git",
  7778. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7779. "reference": "9f4d60b6afe5546421462b76cd4e633ebc364ab4"
  7780. },
  7781. "dist": {
  7782. "type": "zip",
  7783. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f4d60b6afe5546421462b76cd4e633ebc364ab4",
  7784. "reference": "9f4d60b6afe5546421462b76cd4e633ebc364ab4",
  7785. "shasum": ""
  7786. },
  7787. "require": {
  7788. "ext-dom": "*",
  7789. "ext-libxml": "*",
  7790. "ext-xmlwriter": "*",
  7791. "nikic/php-parser": "^4.13.0",
  7792. "php": ">=7.3",
  7793. "phpunit/php-file-iterator": "^3.0.3",
  7794. "phpunit/php-text-template": "^2.0.2",
  7795. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7796. "sebastian/complexity": "^2.0",
  7797. "sebastian/environment": "^5.1.2",
  7798. "sebastian/lines-of-code": "^1.0.3",
  7799. "sebastian/version": "^3.0.1",
  7800. "theseer/tokenizer": "^1.2.0"
  7801. },
  7802. "require-dev": {
  7803. "phpunit/phpunit": "^9.3"
  7804. },
  7805. "suggest": {
  7806. "ext-pcov": "*",
  7807. "ext-xdebug": "*"
  7808. },
  7809. "type": "library",
  7810. "extra": {
  7811. "branch-alias": {
  7812. "dev-master": "9.2-dev"
  7813. }
  7814. },
  7815. "autoload": {
  7816. "classmap": [
  7817. "src/"
  7818. ]
  7819. },
  7820. "notification-url": "https://packagist.org/downloads/",
  7821. "license": [
  7822. "BSD-3-Clause"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Sebastian Bergmann",
  7827. "email": "sebastian@phpunit.de",
  7828. "role": "lead"
  7829. }
  7830. ],
  7831. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7832. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7833. "keywords": [
  7834. "coverage",
  7835. "testing",
  7836. "xunit"
  7837. ],
  7838. "support": {
  7839. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7840. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.14"
  7841. },
  7842. "funding": [
  7843. {
  7844. "url": "https://github.com/sebastianbergmann",
  7845. "type": "github"
  7846. }
  7847. ],
  7848. "time": "2022-02-28T12:38:02+00:00"
  7849. },
  7850. {
  7851. "name": "phpunit/php-file-iterator",
  7852. "version": "3.0.6",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7856. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7861. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7862. "shasum": ""
  7863. },
  7864. "require": {
  7865. "php": ">=7.3"
  7866. },
  7867. "require-dev": {
  7868. "phpunit/phpunit": "^9.3"
  7869. },
  7870. "type": "library",
  7871. "extra": {
  7872. "branch-alias": {
  7873. "dev-master": "3.0-dev"
  7874. }
  7875. },
  7876. "autoload": {
  7877. "classmap": [
  7878. "src/"
  7879. ]
  7880. },
  7881. "notification-url": "https://packagist.org/downloads/",
  7882. "license": [
  7883. "BSD-3-Clause"
  7884. ],
  7885. "authors": [
  7886. {
  7887. "name": "Sebastian Bergmann",
  7888. "email": "sebastian@phpunit.de",
  7889. "role": "lead"
  7890. }
  7891. ],
  7892. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7893. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7894. "keywords": [
  7895. "filesystem",
  7896. "iterator"
  7897. ],
  7898. "support": {
  7899. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7900. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7901. },
  7902. "funding": [
  7903. {
  7904. "url": "https://github.com/sebastianbergmann",
  7905. "type": "github"
  7906. }
  7907. ],
  7908. "time": "2021-12-02T12:48:52+00:00"
  7909. },
  7910. {
  7911. "name": "phpunit/php-invoker",
  7912. "version": "3.1.1",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7916. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7921. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7922. "shasum": ""
  7923. },
  7924. "require": {
  7925. "php": ">=7.3"
  7926. },
  7927. "require-dev": {
  7928. "ext-pcntl": "*",
  7929. "phpunit/phpunit": "^9.3"
  7930. },
  7931. "suggest": {
  7932. "ext-pcntl": "*"
  7933. },
  7934. "type": "library",
  7935. "extra": {
  7936. "branch-alias": {
  7937. "dev-master": "3.1-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "classmap": [
  7942. "src/"
  7943. ]
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "BSD-3-Clause"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "Sebastian Bergmann",
  7952. "email": "sebastian@phpunit.de",
  7953. "role": "lead"
  7954. }
  7955. ],
  7956. "description": "Invoke callables with a timeout",
  7957. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7958. "keywords": [
  7959. "process"
  7960. ],
  7961. "support": {
  7962. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7963. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7964. },
  7965. "funding": [
  7966. {
  7967. "url": "https://github.com/sebastianbergmann",
  7968. "type": "github"
  7969. }
  7970. ],
  7971. "time": "2020-09-28T05:58:55+00:00"
  7972. },
  7973. {
  7974. "name": "phpunit/php-text-template",
  7975. "version": "2.0.4",
  7976. "source": {
  7977. "type": "git",
  7978. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7979. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7980. },
  7981. "dist": {
  7982. "type": "zip",
  7983. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7984. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7985. "shasum": ""
  7986. },
  7987. "require": {
  7988. "php": ">=7.3"
  7989. },
  7990. "require-dev": {
  7991. "phpunit/phpunit": "^9.3"
  7992. },
  7993. "type": "library",
  7994. "extra": {
  7995. "branch-alias": {
  7996. "dev-master": "2.0-dev"
  7997. }
  7998. },
  7999. "autoload": {
  8000. "classmap": [
  8001. "src/"
  8002. ]
  8003. },
  8004. "notification-url": "https://packagist.org/downloads/",
  8005. "license": [
  8006. "BSD-3-Clause"
  8007. ],
  8008. "authors": [
  8009. {
  8010. "name": "Sebastian Bergmann",
  8011. "email": "sebastian@phpunit.de",
  8012. "role": "lead"
  8013. }
  8014. ],
  8015. "description": "Simple template engine.",
  8016. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8017. "keywords": [
  8018. "template"
  8019. ],
  8020. "support": {
  8021. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8022. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8023. },
  8024. "funding": [
  8025. {
  8026. "url": "https://github.com/sebastianbergmann",
  8027. "type": "github"
  8028. }
  8029. ],
  8030. "time": "2020-10-26T05:33:50+00:00"
  8031. },
  8032. {
  8033. "name": "phpunit/php-timer",
  8034. "version": "5.0.3",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8038. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8043. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8044. "shasum": ""
  8045. },
  8046. "require": {
  8047. "php": ">=7.3"
  8048. },
  8049. "require-dev": {
  8050. "phpunit/phpunit": "^9.3"
  8051. },
  8052. "type": "library",
  8053. "extra": {
  8054. "branch-alias": {
  8055. "dev-master": "5.0-dev"
  8056. }
  8057. },
  8058. "autoload": {
  8059. "classmap": [
  8060. "src/"
  8061. ]
  8062. },
  8063. "notification-url": "https://packagist.org/downloads/",
  8064. "license": [
  8065. "BSD-3-Clause"
  8066. ],
  8067. "authors": [
  8068. {
  8069. "name": "Sebastian Bergmann",
  8070. "email": "sebastian@phpunit.de",
  8071. "role": "lead"
  8072. }
  8073. ],
  8074. "description": "Utility class for timing",
  8075. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8076. "keywords": [
  8077. "timer"
  8078. ],
  8079. "support": {
  8080. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8081. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8082. },
  8083. "funding": [
  8084. {
  8085. "url": "https://github.com/sebastianbergmann",
  8086. "type": "github"
  8087. }
  8088. ],
  8089. "time": "2020-10-26T13:16:10+00:00"
  8090. },
  8091. {
  8092. "name": "phpunit/phpunit",
  8093. "version": "9.5.16",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8097. "reference": "5ff8c545a50226c569310a35f4fa89d79f1ddfdc"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5ff8c545a50226c569310a35f4fa89d79f1ddfdc",
  8102. "reference": "5ff8c545a50226c569310a35f4fa89d79f1ddfdc",
  8103. "shasum": ""
  8104. },
  8105. "require": {
  8106. "doctrine/instantiator": "^1.3.1",
  8107. "ext-dom": "*",
  8108. "ext-json": "*",
  8109. "ext-libxml": "*",
  8110. "ext-mbstring": "*",
  8111. "ext-xml": "*",
  8112. "ext-xmlwriter": "*",
  8113. "myclabs/deep-copy": "^1.10.1",
  8114. "phar-io/manifest": "^2.0.3",
  8115. "phar-io/version": "^3.0.2",
  8116. "php": ">=7.3",
  8117. "phpspec/prophecy": "^1.12.1",
  8118. "phpunit/php-code-coverage": "^9.2.13",
  8119. "phpunit/php-file-iterator": "^3.0.5",
  8120. "phpunit/php-invoker": "^3.1.1",
  8121. "phpunit/php-text-template": "^2.0.3",
  8122. "phpunit/php-timer": "^5.0.2",
  8123. "sebastian/cli-parser": "^1.0.1",
  8124. "sebastian/code-unit": "^1.0.6",
  8125. "sebastian/comparator": "^4.0.5",
  8126. "sebastian/diff": "^4.0.3",
  8127. "sebastian/environment": "^5.1.3",
  8128. "sebastian/exporter": "^4.0.3",
  8129. "sebastian/global-state": "^5.0.1",
  8130. "sebastian/object-enumerator": "^4.0.3",
  8131. "sebastian/resource-operations": "^3.0.3",
  8132. "sebastian/type": "^2.3.4",
  8133. "sebastian/version": "^3.0.2"
  8134. },
  8135. "require-dev": {
  8136. "ext-pdo": "*",
  8137. "phpspec/prophecy-phpunit": "^2.0.1"
  8138. },
  8139. "suggest": {
  8140. "ext-soap": "*",
  8141. "ext-xdebug": "*"
  8142. },
  8143. "bin": [
  8144. "phpunit"
  8145. ],
  8146. "type": "library",
  8147. "extra": {
  8148. "branch-alias": {
  8149. "dev-master": "9.5-dev"
  8150. }
  8151. },
  8152. "autoload": {
  8153. "files": [
  8154. "src/Framework/Assert/Functions.php"
  8155. ],
  8156. "classmap": [
  8157. "src/"
  8158. ]
  8159. },
  8160. "notification-url": "https://packagist.org/downloads/",
  8161. "license": [
  8162. "BSD-3-Clause"
  8163. ],
  8164. "authors": [
  8165. {
  8166. "name": "Sebastian Bergmann",
  8167. "email": "sebastian@phpunit.de",
  8168. "role": "lead"
  8169. }
  8170. ],
  8171. "description": "The PHP Unit Testing framework.",
  8172. "homepage": "https://phpunit.de/",
  8173. "keywords": [
  8174. "phpunit",
  8175. "testing",
  8176. "xunit"
  8177. ],
  8178. "support": {
  8179. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8180. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.16"
  8181. },
  8182. "funding": [
  8183. {
  8184. "url": "https://phpunit.de/sponsors.html",
  8185. "type": "custom"
  8186. },
  8187. {
  8188. "url": "https://github.com/sebastianbergmann",
  8189. "type": "github"
  8190. }
  8191. ],
  8192. "time": "2022-02-23T17:10:58+00:00"
  8193. },
  8194. {
  8195. "name": "sebastian/cli-parser",
  8196. "version": "1.0.1",
  8197. "source": {
  8198. "type": "git",
  8199. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8200. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8201. },
  8202. "dist": {
  8203. "type": "zip",
  8204. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8205. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8206. "shasum": ""
  8207. },
  8208. "require": {
  8209. "php": ">=7.3"
  8210. },
  8211. "require-dev": {
  8212. "phpunit/phpunit": "^9.3"
  8213. },
  8214. "type": "library",
  8215. "extra": {
  8216. "branch-alias": {
  8217. "dev-master": "1.0-dev"
  8218. }
  8219. },
  8220. "autoload": {
  8221. "classmap": [
  8222. "src/"
  8223. ]
  8224. },
  8225. "notification-url": "https://packagist.org/downloads/",
  8226. "license": [
  8227. "BSD-3-Clause"
  8228. ],
  8229. "authors": [
  8230. {
  8231. "name": "Sebastian Bergmann",
  8232. "email": "sebastian@phpunit.de",
  8233. "role": "lead"
  8234. }
  8235. ],
  8236. "description": "Library for parsing CLI options",
  8237. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8238. "support": {
  8239. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8240. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8241. },
  8242. "funding": [
  8243. {
  8244. "url": "https://github.com/sebastianbergmann",
  8245. "type": "github"
  8246. }
  8247. ],
  8248. "time": "2020-09-28T06:08:49+00:00"
  8249. },
  8250. {
  8251. "name": "sebastian/code-unit",
  8252. "version": "1.0.8",
  8253. "source": {
  8254. "type": "git",
  8255. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8256. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8257. },
  8258. "dist": {
  8259. "type": "zip",
  8260. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8261. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8262. "shasum": ""
  8263. },
  8264. "require": {
  8265. "php": ">=7.3"
  8266. },
  8267. "require-dev": {
  8268. "phpunit/phpunit": "^9.3"
  8269. },
  8270. "type": "library",
  8271. "extra": {
  8272. "branch-alias": {
  8273. "dev-master": "1.0-dev"
  8274. }
  8275. },
  8276. "autoload": {
  8277. "classmap": [
  8278. "src/"
  8279. ]
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "BSD-3-Clause"
  8284. ],
  8285. "authors": [
  8286. {
  8287. "name": "Sebastian Bergmann",
  8288. "email": "sebastian@phpunit.de",
  8289. "role": "lead"
  8290. }
  8291. ],
  8292. "description": "Collection of value objects that represent the PHP code units",
  8293. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8294. "support": {
  8295. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8296. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8297. },
  8298. "funding": [
  8299. {
  8300. "url": "https://github.com/sebastianbergmann",
  8301. "type": "github"
  8302. }
  8303. ],
  8304. "time": "2020-10-26T13:08:54+00:00"
  8305. },
  8306. {
  8307. "name": "sebastian/code-unit-reverse-lookup",
  8308. "version": "2.0.3",
  8309. "source": {
  8310. "type": "git",
  8311. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8312. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8313. },
  8314. "dist": {
  8315. "type": "zip",
  8316. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8317. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8318. "shasum": ""
  8319. },
  8320. "require": {
  8321. "php": ">=7.3"
  8322. },
  8323. "require-dev": {
  8324. "phpunit/phpunit": "^9.3"
  8325. },
  8326. "type": "library",
  8327. "extra": {
  8328. "branch-alias": {
  8329. "dev-master": "2.0-dev"
  8330. }
  8331. },
  8332. "autoload": {
  8333. "classmap": [
  8334. "src/"
  8335. ]
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "BSD-3-Clause"
  8340. ],
  8341. "authors": [
  8342. {
  8343. "name": "Sebastian Bergmann",
  8344. "email": "sebastian@phpunit.de"
  8345. }
  8346. ],
  8347. "description": "Looks up which function or method a line of code belongs to",
  8348. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8349. "support": {
  8350. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8351. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8352. },
  8353. "funding": [
  8354. {
  8355. "url": "https://github.com/sebastianbergmann",
  8356. "type": "github"
  8357. }
  8358. ],
  8359. "time": "2020-09-28T05:30:19+00:00"
  8360. },
  8361. {
  8362. "name": "sebastian/comparator",
  8363. "version": "4.0.6",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/sebastianbergmann/comparator.git",
  8367. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  8372. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  8373. "shasum": ""
  8374. },
  8375. "require": {
  8376. "php": ">=7.3",
  8377. "sebastian/diff": "^4.0",
  8378. "sebastian/exporter": "^4.0"
  8379. },
  8380. "require-dev": {
  8381. "phpunit/phpunit": "^9.3"
  8382. },
  8383. "type": "library",
  8384. "extra": {
  8385. "branch-alias": {
  8386. "dev-master": "4.0-dev"
  8387. }
  8388. },
  8389. "autoload": {
  8390. "classmap": [
  8391. "src/"
  8392. ]
  8393. },
  8394. "notification-url": "https://packagist.org/downloads/",
  8395. "license": [
  8396. "BSD-3-Clause"
  8397. ],
  8398. "authors": [
  8399. {
  8400. "name": "Sebastian Bergmann",
  8401. "email": "sebastian@phpunit.de"
  8402. },
  8403. {
  8404. "name": "Jeff Welch",
  8405. "email": "whatthejeff@gmail.com"
  8406. },
  8407. {
  8408. "name": "Volker Dusch",
  8409. "email": "github@wallbash.com"
  8410. },
  8411. {
  8412. "name": "Bernhard Schussek",
  8413. "email": "bschussek@2bepublished.at"
  8414. }
  8415. ],
  8416. "description": "Provides the functionality to compare PHP values for equality",
  8417. "homepage": "https://github.com/sebastianbergmann/comparator",
  8418. "keywords": [
  8419. "comparator",
  8420. "compare",
  8421. "equality"
  8422. ],
  8423. "support": {
  8424. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8425. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  8426. },
  8427. "funding": [
  8428. {
  8429. "url": "https://github.com/sebastianbergmann",
  8430. "type": "github"
  8431. }
  8432. ],
  8433. "time": "2020-10-26T15:49:45+00:00"
  8434. },
  8435. {
  8436. "name": "sebastian/complexity",
  8437. "version": "2.0.2",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/sebastianbergmann/complexity.git",
  8441. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8446. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8447. "shasum": ""
  8448. },
  8449. "require": {
  8450. "nikic/php-parser": "^4.7",
  8451. "php": ">=7.3"
  8452. },
  8453. "require-dev": {
  8454. "phpunit/phpunit": "^9.3"
  8455. },
  8456. "type": "library",
  8457. "extra": {
  8458. "branch-alias": {
  8459. "dev-master": "2.0-dev"
  8460. }
  8461. },
  8462. "autoload": {
  8463. "classmap": [
  8464. "src/"
  8465. ]
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "BSD-3-Clause"
  8470. ],
  8471. "authors": [
  8472. {
  8473. "name": "Sebastian Bergmann",
  8474. "email": "sebastian@phpunit.de",
  8475. "role": "lead"
  8476. }
  8477. ],
  8478. "description": "Library for calculating the complexity of PHP code units",
  8479. "homepage": "https://github.com/sebastianbergmann/complexity",
  8480. "support": {
  8481. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8482. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8483. },
  8484. "funding": [
  8485. {
  8486. "url": "https://github.com/sebastianbergmann",
  8487. "type": "github"
  8488. }
  8489. ],
  8490. "time": "2020-10-26T15:52:27+00:00"
  8491. },
  8492. {
  8493. "name": "sebastian/diff",
  8494. "version": "4.0.4",
  8495. "source": {
  8496. "type": "git",
  8497. "url": "https://github.com/sebastianbergmann/diff.git",
  8498. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8499. },
  8500. "dist": {
  8501. "type": "zip",
  8502. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8503. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8504. "shasum": ""
  8505. },
  8506. "require": {
  8507. "php": ">=7.3"
  8508. },
  8509. "require-dev": {
  8510. "phpunit/phpunit": "^9.3",
  8511. "symfony/process": "^4.2 || ^5"
  8512. },
  8513. "type": "library",
  8514. "extra": {
  8515. "branch-alias": {
  8516. "dev-master": "4.0-dev"
  8517. }
  8518. },
  8519. "autoload": {
  8520. "classmap": [
  8521. "src/"
  8522. ]
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "BSD-3-Clause"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Sebastian Bergmann",
  8531. "email": "sebastian@phpunit.de"
  8532. },
  8533. {
  8534. "name": "Kore Nordmann",
  8535. "email": "mail@kore-nordmann.de"
  8536. }
  8537. ],
  8538. "description": "Diff implementation",
  8539. "homepage": "https://github.com/sebastianbergmann/diff",
  8540. "keywords": [
  8541. "diff",
  8542. "udiff",
  8543. "unidiff",
  8544. "unified diff"
  8545. ],
  8546. "support": {
  8547. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8548. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  8549. },
  8550. "funding": [
  8551. {
  8552. "url": "https://github.com/sebastianbergmann",
  8553. "type": "github"
  8554. }
  8555. ],
  8556. "time": "2020-10-26T13:10:38+00:00"
  8557. },
  8558. {
  8559. "name": "sebastian/environment",
  8560. "version": "5.1.3",
  8561. "source": {
  8562. "type": "git",
  8563. "url": "https://github.com/sebastianbergmann/environment.git",
  8564. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  8565. },
  8566. "dist": {
  8567. "type": "zip",
  8568. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  8569. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  8570. "shasum": ""
  8571. },
  8572. "require": {
  8573. "php": ">=7.3"
  8574. },
  8575. "require-dev": {
  8576. "phpunit/phpunit": "^9.3"
  8577. },
  8578. "suggest": {
  8579. "ext-posix": "*"
  8580. },
  8581. "type": "library",
  8582. "extra": {
  8583. "branch-alias": {
  8584. "dev-master": "5.1-dev"
  8585. }
  8586. },
  8587. "autoload": {
  8588. "classmap": [
  8589. "src/"
  8590. ]
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "BSD-3-Clause"
  8595. ],
  8596. "authors": [
  8597. {
  8598. "name": "Sebastian Bergmann",
  8599. "email": "sebastian@phpunit.de"
  8600. }
  8601. ],
  8602. "description": "Provides functionality to handle HHVM/PHP environments",
  8603. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8604. "keywords": [
  8605. "Xdebug",
  8606. "environment",
  8607. "hhvm"
  8608. ],
  8609. "support": {
  8610. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8611. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  8612. },
  8613. "funding": [
  8614. {
  8615. "url": "https://github.com/sebastianbergmann",
  8616. "type": "github"
  8617. }
  8618. ],
  8619. "time": "2020-09-28T05:52:38+00:00"
  8620. },
  8621. {
  8622. "name": "sebastian/exporter",
  8623. "version": "4.0.4",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/sebastianbergmann/exporter.git",
  8627. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  8632. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  8633. "shasum": ""
  8634. },
  8635. "require": {
  8636. "php": ">=7.3",
  8637. "sebastian/recursion-context": "^4.0"
  8638. },
  8639. "require-dev": {
  8640. "ext-mbstring": "*",
  8641. "phpunit/phpunit": "^9.3"
  8642. },
  8643. "type": "library",
  8644. "extra": {
  8645. "branch-alias": {
  8646. "dev-master": "4.0-dev"
  8647. }
  8648. },
  8649. "autoload": {
  8650. "classmap": [
  8651. "src/"
  8652. ]
  8653. },
  8654. "notification-url": "https://packagist.org/downloads/",
  8655. "license": [
  8656. "BSD-3-Clause"
  8657. ],
  8658. "authors": [
  8659. {
  8660. "name": "Sebastian Bergmann",
  8661. "email": "sebastian@phpunit.de"
  8662. },
  8663. {
  8664. "name": "Jeff Welch",
  8665. "email": "whatthejeff@gmail.com"
  8666. },
  8667. {
  8668. "name": "Volker Dusch",
  8669. "email": "github@wallbash.com"
  8670. },
  8671. {
  8672. "name": "Adam Harvey",
  8673. "email": "aharvey@php.net"
  8674. },
  8675. {
  8676. "name": "Bernhard Schussek",
  8677. "email": "bschussek@gmail.com"
  8678. }
  8679. ],
  8680. "description": "Provides the functionality to export PHP variables for visualization",
  8681. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8682. "keywords": [
  8683. "export",
  8684. "exporter"
  8685. ],
  8686. "support": {
  8687. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8688. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  8689. },
  8690. "funding": [
  8691. {
  8692. "url": "https://github.com/sebastianbergmann",
  8693. "type": "github"
  8694. }
  8695. ],
  8696. "time": "2021-11-11T14:18:36+00:00"
  8697. },
  8698. {
  8699. "name": "sebastian/global-state",
  8700. "version": "5.0.5",
  8701. "source": {
  8702. "type": "git",
  8703. "url": "https://github.com/sebastianbergmann/global-state.git",
  8704. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  8705. },
  8706. "dist": {
  8707. "type": "zip",
  8708. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8709. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8710. "shasum": ""
  8711. },
  8712. "require": {
  8713. "php": ">=7.3",
  8714. "sebastian/object-reflector": "^2.0",
  8715. "sebastian/recursion-context": "^4.0"
  8716. },
  8717. "require-dev": {
  8718. "ext-dom": "*",
  8719. "phpunit/phpunit": "^9.3"
  8720. },
  8721. "suggest": {
  8722. "ext-uopz": "*"
  8723. },
  8724. "type": "library",
  8725. "extra": {
  8726. "branch-alias": {
  8727. "dev-master": "5.0-dev"
  8728. }
  8729. },
  8730. "autoload": {
  8731. "classmap": [
  8732. "src/"
  8733. ]
  8734. },
  8735. "notification-url": "https://packagist.org/downloads/",
  8736. "license": [
  8737. "BSD-3-Clause"
  8738. ],
  8739. "authors": [
  8740. {
  8741. "name": "Sebastian Bergmann",
  8742. "email": "sebastian@phpunit.de"
  8743. }
  8744. ],
  8745. "description": "Snapshotting of global state",
  8746. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8747. "keywords": [
  8748. "global state"
  8749. ],
  8750. "support": {
  8751. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8752. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  8753. },
  8754. "funding": [
  8755. {
  8756. "url": "https://github.com/sebastianbergmann",
  8757. "type": "github"
  8758. }
  8759. ],
  8760. "time": "2022-02-14T08:28:10+00:00"
  8761. },
  8762. {
  8763. "name": "sebastian/lines-of-code",
  8764. "version": "1.0.3",
  8765. "source": {
  8766. "type": "git",
  8767. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8768. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  8769. },
  8770. "dist": {
  8771. "type": "zip",
  8772. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8773. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8774. "shasum": ""
  8775. },
  8776. "require": {
  8777. "nikic/php-parser": "^4.6",
  8778. "php": ">=7.3"
  8779. },
  8780. "require-dev": {
  8781. "phpunit/phpunit": "^9.3"
  8782. },
  8783. "type": "library",
  8784. "extra": {
  8785. "branch-alias": {
  8786. "dev-master": "1.0-dev"
  8787. }
  8788. },
  8789. "autoload": {
  8790. "classmap": [
  8791. "src/"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "BSD-3-Clause"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Sebastian Bergmann",
  8801. "email": "sebastian@phpunit.de",
  8802. "role": "lead"
  8803. }
  8804. ],
  8805. "description": "Library for counting the lines of code in PHP source code",
  8806. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8807. "support": {
  8808. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8809. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  8810. },
  8811. "funding": [
  8812. {
  8813. "url": "https://github.com/sebastianbergmann",
  8814. "type": "github"
  8815. }
  8816. ],
  8817. "time": "2020-11-28T06:42:11+00:00"
  8818. },
  8819. {
  8820. "name": "sebastian/object-enumerator",
  8821. "version": "4.0.4",
  8822. "source": {
  8823. "type": "git",
  8824. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8825. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8826. },
  8827. "dist": {
  8828. "type": "zip",
  8829. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8830. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8831. "shasum": ""
  8832. },
  8833. "require": {
  8834. "php": ">=7.3",
  8835. "sebastian/object-reflector": "^2.0",
  8836. "sebastian/recursion-context": "^4.0"
  8837. },
  8838. "require-dev": {
  8839. "phpunit/phpunit": "^9.3"
  8840. },
  8841. "type": "library",
  8842. "extra": {
  8843. "branch-alias": {
  8844. "dev-master": "4.0-dev"
  8845. }
  8846. },
  8847. "autoload": {
  8848. "classmap": [
  8849. "src/"
  8850. ]
  8851. },
  8852. "notification-url": "https://packagist.org/downloads/",
  8853. "license": [
  8854. "BSD-3-Clause"
  8855. ],
  8856. "authors": [
  8857. {
  8858. "name": "Sebastian Bergmann",
  8859. "email": "sebastian@phpunit.de"
  8860. }
  8861. ],
  8862. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8863. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8864. "support": {
  8865. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8866. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8867. },
  8868. "funding": [
  8869. {
  8870. "url": "https://github.com/sebastianbergmann",
  8871. "type": "github"
  8872. }
  8873. ],
  8874. "time": "2020-10-26T13:12:34+00:00"
  8875. },
  8876. {
  8877. "name": "sebastian/object-reflector",
  8878. "version": "2.0.4",
  8879. "source": {
  8880. "type": "git",
  8881. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8882. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8883. },
  8884. "dist": {
  8885. "type": "zip",
  8886. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8887. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8888. "shasum": ""
  8889. },
  8890. "require": {
  8891. "php": ">=7.3"
  8892. },
  8893. "require-dev": {
  8894. "phpunit/phpunit": "^9.3"
  8895. },
  8896. "type": "library",
  8897. "extra": {
  8898. "branch-alias": {
  8899. "dev-master": "2.0-dev"
  8900. }
  8901. },
  8902. "autoload": {
  8903. "classmap": [
  8904. "src/"
  8905. ]
  8906. },
  8907. "notification-url": "https://packagist.org/downloads/",
  8908. "license": [
  8909. "BSD-3-Clause"
  8910. ],
  8911. "authors": [
  8912. {
  8913. "name": "Sebastian Bergmann",
  8914. "email": "sebastian@phpunit.de"
  8915. }
  8916. ],
  8917. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8918. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8919. "support": {
  8920. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8921. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  8922. },
  8923. "funding": [
  8924. {
  8925. "url": "https://github.com/sebastianbergmann",
  8926. "type": "github"
  8927. }
  8928. ],
  8929. "time": "2020-10-26T13:14:26+00:00"
  8930. },
  8931. {
  8932. "name": "sebastian/recursion-context",
  8933. "version": "4.0.4",
  8934. "source": {
  8935. "type": "git",
  8936. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8937. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  8938. },
  8939. "dist": {
  8940. "type": "zip",
  8941. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  8942. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  8943. "shasum": ""
  8944. },
  8945. "require": {
  8946. "php": ">=7.3"
  8947. },
  8948. "require-dev": {
  8949. "phpunit/phpunit": "^9.3"
  8950. },
  8951. "type": "library",
  8952. "extra": {
  8953. "branch-alias": {
  8954. "dev-master": "4.0-dev"
  8955. }
  8956. },
  8957. "autoload": {
  8958. "classmap": [
  8959. "src/"
  8960. ]
  8961. },
  8962. "notification-url": "https://packagist.org/downloads/",
  8963. "license": [
  8964. "BSD-3-Clause"
  8965. ],
  8966. "authors": [
  8967. {
  8968. "name": "Sebastian Bergmann",
  8969. "email": "sebastian@phpunit.de"
  8970. },
  8971. {
  8972. "name": "Jeff Welch",
  8973. "email": "whatthejeff@gmail.com"
  8974. },
  8975. {
  8976. "name": "Adam Harvey",
  8977. "email": "aharvey@php.net"
  8978. }
  8979. ],
  8980. "description": "Provides functionality to recursively process PHP variables",
  8981. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8982. "support": {
  8983. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8984. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  8985. },
  8986. "funding": [
  8987. {
  8988. "url": "https://github.com/sebastianbergmann",
  8989. "type": "github"
  8990. }
  8991. ],
  8992. "time": "2020-10-26T13:17:30+00:00"
  8993. },
  8994. {
  8995. "name": "sebastian/resource-operations",
  8996. "version": "3.0.3",
  8997. "source": {
  8998. "type": "git",
  8999. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9000. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9001. },
  9002. "dist": {
  9003. "type": "zip",
  9004. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9005. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9006. "shasum": ""
  9007. },
  9008. "require": {
  9009. "php": ">=7.3"
  9010. },
  9011. "require-dev": {
  9012. "phpunit/phpunit": "^9.0"
  9013. },
  9014. "type": "library",
  9015. "extra": {
  9016. "branch-alias": {
  9017. "dev-master": "3.0-dev"
  9018. }
  9019. },
  9020. "autoload": {
  9021. "classmap": [
  9022. "src/"
  9023. ]
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "BSD-3-Clause"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Sebastian Bergmann",
  9032. "email": "sebastian@phpunit.de"
  9033. }
  9034. ],
  9035. "description": "Provides a list of PHP built-in functions that operate on resources",
  9036. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9037. "support": {
  9038. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9039. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9040. },
  9041. "funding": [
  9042. {
  9043. "url": "https://github.com/sebastianbergmann",
  9044. "type": "github"
  9045. }
  9046. ],
  9047. "time": "2020-09-28T06:45:17+00:00"
  9048. },
  9049. {
  9050. "name": "sebastian/type",
  9051. "version": "2.3.4",
  9052. "source": {
  9053. "type": "git",
  9054. "url": "https://github.com/sebastianbergmann/type.git",
  9055. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  9056. },
  9057. "dist": {
  9058. "type": "zip",
  9059. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  9060. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  9061. "shasum": ""
  9062. },
  9063. "require": {
  9064. "php": ">=7.3"
  9065. },
  9066. "require-dev": {
  9067. "phpunit/phpunit": "^9.3"
  9068. },
  9069. "type": "library",
  9070. "extra": {
  9071. "branch-alias": {
  9072. "dev-master": "2.3-dev"
  9073. }
  9074. },
  9075. "autoload": {
  9076. "classmap": [
  9077. "src/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "BSD-3-Clause"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Sebastian Bergmann",
  9087. "email": "sebastian@phpunit.de",
  9088. "role": "lead"
  9089. }
  9090. ],
  9091. "description": "Collection of value objects that represent the types of the PHP type system",
  9092. "homepage": "https://github.com/sebastianbergmann/type",
  9093. "support": {
  9094. "issues": "https://github.com/sebastianbergmann/type/issues",
  9095. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  9096. },
  9097. "funding": [
  9098. {
  9099. "url": "https://github.com/sebastianbergmann",
  9100. "type": "github"
  9101. }
  9102. ],
  9103. "time": "2021-06-15T12:49:02+00:00"
  9104. },
  9105. {
  9106. "name": "sebastian/version",
  9107. "version": "3.0.2",
  9108. "source": {
  9109. "type": "git",
  9110. "url": "https://github.com/sebastianbergmann/version.git",
  9111. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9112. },
  9113. "dist": {
  9114. "type": "zip",
  9115. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9116. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9117. "shasum": ""
  9118. },
  9119. "require": {
  9120. "php": ">=7.3"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "3.0-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "classmap": [
  9130. "src/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Sebastian Bergmann",
  9140. "email": "sebastian@phpunit.de",
  9141. "role": "lead"
  9142. }
  9143. ],
  9144. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9145. "homepage": "https://github.com/sebastianbergmann/version",
  9146. "support": {
  9147. "issues": "https://github.com/sebastianbergmann/version/issues",
  9148. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://github.com/sebastianbergmann",
  9153. "type": "github"
  9154. }
  9155. ],
  9156. "time": "2020-09-28T06:39:44+00:00"
  9157. },
  9158. {
  9159. "name": "symfony/browser-kit",
  9160. "version": "v5.4.3",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/symfony/browser-kit.git",
  9164. "reference": "18e73179c6a33d520de1b644941eba108dd811ad"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/18e73179c6a33d520de1b644941eba108dd811ad",
  9169. "reference": "18e73179c6a33d520de1b644941eba108dd811ad",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "php": ">=7.2.5",
  9174. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  9175. "symfony/polyfill-php80": "^1.16"
  9176. },
  9177. "require-dev": {
  9178. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9179. "symfony/http-client": "^4.4|^5.0|^6.0",
  9180. "symfony/mime": "^4.4|^5.0|^6.0",
  9181. "symfony/process": "^4.4|^5.0|^6.0"
  9182. },
  9183. "suggest": {
  9184. "symfony/process": ""
  9185. },
  9186. "type": "library",
  9187. "autoload": {
  9188. "psr-4": {
  9189. "Symfony\\Component\\BrowserKit\\": ""
  9190. },
  9191. "exclude-from-classmap": [
  9192. "/Tests/"
  9193. ]
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "MIT"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Fabien Potencier",
  9202. "email": "fabien@symfony.com"
  9203. },
  9204. {
  9205. "name": "Symfony Community",
  9206. "homepage": "https://symfony.com/contributors"
  9207. }
  9208. ],
  9209. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9210. "homepage": "https://symfony.com",
  9211. "support": {
  9212. "source": "https://github.com/symfony/browser-kit/tree/v5.4.3"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://symfony.com/sponsor",
  9217. "type": "custom"
  9218. },
  9219. {
  9220. "url": "https://github.com/fabpot",
  9221. "type": "github"
  9222. },
  9223. {
  9224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9225. "type": "tidelift"
  9226. }
  9227. ],
  9228. "time": "2022-01-02T09:53:40+00:00"
  9229. },
  9230. {
  9231. "name": "symfony/css-selector",
  9232. "version": "v5.4.3",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/symfony/css-selector.git",
  9236. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  9241. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  9242. "shasum": ""
  9243. },
  9244. "require": {
  9245. "php": ">=7.2.5",
  9246. "symfony/polyfill-php80": "^1.16"
  9247. },
  9248. "type": "library",
  9249. "autoload": {
  9250. "psr-4": {
  9251. "Symfony\\Component\\CssSelector\\": ""
  9252. },
  9253. "exclude-from-classmap": [
  9254. "/Tests/"
  9255. ]
  9256. },
  9257. "notification-url": "https://packagist.org/downloads/",
  9258. "license": [
  9259. "MIT"
  9260. ],
  9261. "authors": [
  9262. {
  9263. "name": "Fabien Potencier",
  9264. "email": "fabien@symfony.com"
  9265. },
  9266. {
  9267. "name": "Jean-François Simon",
  9268. "email": "jeanfrancois.simon@sensiolabs.com"
  9269. },
  9270. {
  9271. "name": "Symfony Community",
  9272. "homepage": "https://symfony.com/contributors"
  9273. }
  9274. ],
  9275. "description": "Converts CSS selectors to XPath expressions",
  9276. "homepage": "https://symfony.com",
  9277. "support": {
  9278. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  9279. },
  9280. "funding": [
  9281. {
  9282. "url": "https://symfony.com/sponsor",
  9283. "type": "custom"
  9284. },
  9285. {
  9286. "url": "https://github.com/fabpot",
  9287. "type": "github"
  9288. },
  9289. {
  9290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9291. "type": "tidelift"
  9292. }
  9293. ],
  9294. "time": "2022-01-02T09:53:40+00:00"
  9295. },
  9296. {
  9297. "name": "symfony/debug-bundle",
  9298. "version": "v5.4.3",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/symfony/debug-bundle.git",
  9302. "reference": "6f508169752ed2c0d0d8a6641c4cca39a8f1dfcb"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/6f508169752ed2c0d0d8a6641c4cca39a8f1dfcb",
  9307. "reference": "6f508169752ed2c0d0d8a6641c4cca39a8f1dfcb",
  9308. "shasum": ""
  9309. },
  9310. "require": {
  9311. "ext-xml": "*",
  9312. "php": ">=7.2.5",
  9313. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9314. "symfony/polyfill-php80": "^1.16",
  9315. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  9316. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  9317. },
  9318. "conflict": {
  9319. "symfony/config": "<4.4",
  9320. "symfony/dependency-injection": "<5.2"
  9321. },
  9322. "require-dev": {
  9323. "symfony/config": "^4.4|^5.0|^6.0",
  9324. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9325. "symfony/web-profiler-bundle": "^4.4|^5.0|^6.0"
  9326. },
  9327. "suggest": {
  9328. "symfony/config": "For service container configuration",
  9329. "symfony/dependency-injection": "For using as a service from the container"
  9330. },
  9331. "type": "symfony-bundle",
  9332. "autoload": {
  9333. "psr-4": {
  9334. "Symfony\\Bundle\\DebugBundle\\": ""
  9335. },
  9336. "exclude-from-classmap": [
  9337. "/Tests/"
  9338. ]
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "MIT"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "Fabien Potencier",
  9347. "email": "fabien@symfony.com"
  9348. },
  9349. {
  9350. "name": "Symfony Community",
  9351. "homepage": "https://symfony.com/contributors"
  9352. }
  9353. ],
  9354. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9355. "homepage": "https://symfony.com",
  9356. "support": {
  9357. "source": "https://github.com/symfony/debug-bundle/tree/v5.4.3"
  9358. },
  9359. "funding": [
  9360. {
  9361. "url": "https://symfony.com/sponsor",
  9362. "type": "custom"
  9363. },
  9364. {
  9365. "url": "https://github.com/fabpot",
  9366. "type": "github"
  9367. },
  9368. {
  9369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9370. "type": "tidelift"
  9371. }
  9372. ],
  9373. "time": "2022-01-02T09:53:40+00:00"
  9374. },
  9375. {
  9376. "name": "symfony/dom-crawler",
  9377. "version": "v5.4.5",
  9378. "source": {
  9379. "type": "git",
  9380. "url": "https://github.com/symfony/dom-crawler.git",
  9381. "reference": "50777f44e7dc37e16959ca65041df2acd6a65775"
  9382. },
  9383. "dist": {
  9384. "type": "zip",
  9385. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/50777f44e7dc37e16959ca65041df2acd6a65775",
  9386. "reference": "50777f44e7dc37e16959ca65041df2acd6a65775",
  9387. "shasum": ""
  9388. },
  9389. "require": {
  9390. "php": ">=7.2.5",
  9391. "symfony/deprecation-contracts": "^2.1|^3",
  9392. "symfony/polyfill-ctype": "~1.8",
  9393. "symfony/polyfill-mbstring": "~1.0",
  9394. "symfony/polyfill-php80": "^1.16"
  9395. },
  9396. "conflict": {
  9397. "masterminds/html5": "<2.6"
  9398. },
  9399. "require-dev": {
  9400. "masterminds/html5": "^2.6",
  9401. "symfony/css-selector": "^4.4|^5.0|^6.0"
  9402. },
  9403. "suggest": {
  9404. "symfony/css-selector": ""
  9405. },
  9406. "type": "library",
  9407. "autoload": {
  9408. "psr-4": {
  9409. "Symfony\\Component\\DomCrawler\\": ""
  9410. },
  9411. "exclude-from-classmap": [
  9412. "/Tests/"
  9413. ]
  9414. },
  9415. "notification-url": "https://packagist.org/downloads/",
  9416. "license": [
  9417. "MIT"
  9418. ],
  9419. "authors": [
  9420. {
  9421. "name": "Fabien Potencier",
  9422. "email": "fabien@symfony.com"
  9423. },
  9424. {
  9425. "name": "Symfony Community",
  9426. "homepage": "https://symfony.com/contributors"
  9427. }
  9428. ],
  9429. "description": "Eases DOM navigation for HTML and XML documents",
  9430. "homepage": "https://symfony.com",
  9431. "support": {
  9432. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.5"
  9433. },
  9434. "funding": [
  9435. {
  9436. "url": "https://symfony.com/sponsor",
  9437. "type": "custom"
  9438. },
  9439. {
  9440. "url": "https://github.com/fabpot",
  9441. "type": "github"
  9442. },
  9443. {
  9444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9445. "type": "tidelift"
  9446. }
  9447. ],
  9448. "time": "2022-01-31T16:08:03+00:00"
  9449. },
  9450. {
  9451. "name": "symfony/maker-bundle",
  9452. "version": "v1.38.0",
  9453. "source": {
  9454. "type": "git",
  9455. "url": "https://github.com/symfony/maker-bundle.git",
  9456. "reference": "143024ab0e426285d3d9b7f6a3ce51e12a9d8ec5"
  9457. },
  9458. "dist": {
  9459. "type": "zip",
  9460. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/143024ab0e426285d3d9b7f6a3ce51e12a9d8ec5",
  9461. "reference": "143024ab0e426285d3d9b7f6a3ce51e12a9d8ec5",
  9462. "shasum": ""
  9463. },
  9464. "require": {
  9465. "doctrine/inflector": "^1.2|^2.0",
  9466. "nikic/php-parser": "^4.11",
  9467. "php": ">=7.1.3",
  9468. "symfony/config": "^4.4|^5.0|^6.0",
  9469. "symfony/console": "^4.4|^5.0|^6.0",
  9470. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9471. "symfony/deprecation-contracts": "^2.2|^3",
  9472. "symfony/filesystem": "^4.4|^5.0|^6.0",
  9473. "symfony/finder": "^4.4|^5.0|^6.0",
  9474. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  9475. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  9476. },
  9477. "require-dev": {
  9478. "composer/semver": "^3.0",
  9479. "doctrine/doctrine-bundle": "^1.12.3|^2.0",
  9480. "doctrine/orm": "^2.3",
  9481. "symfony/http-client": "^4.4|^5.0|^6.0",
  9482. "symfony/phpunit-bridge": "^4.4|^5.0|^6.0",
  9483. "symfony/polyfill-php80": "^1.16.0",
  9484. "symfony/process": "^4.4|^5.0|^6.0",
  9485. "symfony/security-core": "^4.4|^5.0|^6.0",
  9486. "symfony/yaml": "^4.4|^5.0|^6.0",
  9487. "twig/twig": "^2.0|^3.0"
  9488. },
  9489. "type": "symfony-bundle",
  9490. "extra": {
  9491. "branch-alias": {
  9492. "dev-main": "1.0-dev"
  9493. }
  9494. },
  9495. "autoload": {
  9496. "psr-4": {
  9497. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9498. }
  9499. },
  9500. "notification-url": "https://packagist.org/downloads/",
  9501. "license": [
  9502. "MIT"
  9503. ],
  9504. "authors": [
  9505. {
  9506. "name": "Symfony Community",
  9507. "homepage": "https://symfony.com/contributors"
  9508. }
  9509. ],
  9510. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9511. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9512. "keywords": [
  9513. "code generator",
  9514. "generator",
  9515. "scaffold",
  9516. "scaffolding"
  9517. ],
  9518. "support": {
  9519. "issues": "https://github.com/symfony/maker-bundle/issues",
  9520. "source": "https://github.com/symfony/maker-bundle/tree/v1.38.0"
  9521. },
  9522. "funding": [
  9523. {
  9524. "url": "https://symfony.com/sponsor",
  9525. "type": "custom"
  9526. },
  9527. {
  9528. "url": "https://github.com/fabpot",
  9529. "type": "github"
  9530. },
  9531. {
  9532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9533. "type": "tidelift"
  9534. }
  9535. ],
  9536. "time": "2022-02-24T21:06:51+00:00"
  9537. },
  9538. {
  9539. "name": "symfony/phpunit-bridge",
  9540. "version": "v5.4.3",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/symfony/phpunit-bridge.git",
  9544. "reference": "216b07b05644607c81afd89a208e52641c1ce6b8"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/216b07b05644607c81afd89a208e52641c1ce6b8",
  9549. "reference": "216b07b05644607c81afd89a208e52641c1ce6b8",
  9550. "shasum": ""
  9551. },
  9552. "require": {
  9553. "php": ">=7.1.3",
  9554. "symfony/deprecation-contracts": "^2.1|^3"
  9555. },
  9556. "conflict": {
  9557. "phpunit/phpunit": "<7.5|9.1.2"
  9558. },
  9559. "require-dev": {
  9560. "symfony/error-handler": "^4.4|^5.0|^6.0"
  9561. },
  9562. "suggest": {
  9563. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9564. },
  9565. "bin": [
  9566. "bin/simple-phpunit"
  9567. ],
  9568. "type": "symfony-bridge",
  9569. "extra": {
  9570. "thanks": {
  9571. "name": "phpunit/phpunit",
  9572. "url": "https://github.com/sebastianbergmann/phpunit"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "files": [
  9577. "bootstrap.php"
  9578. ],
  9579. "psr-4": {
  9580. "Symfony\\Bridge\\PhpUnit\\": ""
  9581. },
  9582. "exclude-from-classmap": [
  9583. "/Tests/"
  9584. ]
  9585. },
  9586. "notification-url": "https://packagist.org/downloads/",
  9587. "license": [
  9588. "MIT"
  9589. ],
  9590. "authors": [
  9591. {
  9592. "name": "Nicolas Grekas",
  9593. "email": "p@tchwork.com"
  9594. },
  9595. {
  9596. "name": "Symfony Community",
  9597. "homepage": "https://symfony.com/contributors"
  9598. }
  9599. ],
  9600. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9601. "homepage": "https://symfony.com",
  9602. "support": {
  9603. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.3"
  9604. },
  9605. "funding": [
  9606. {
  9607. "url": "https://symfony.com/sponsor",
  9608. "type": "custom"
  9609. },
  9610. {
  9611. "url": "https://github.com/fabpot",
  9612. "type": "github"
  9613. },
  9614. {
  9615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9616. "type": "tidelift"
  9617. }
  9618. ],
  9619. "time": "2022-01-26T16:28:35+00:00"
  9620. },
  9621. {
  9622. "name": "symfony/web-profiler-bundle",
  9623. "version": "v5.4.5",
  9624. "source": {
  9625. "type": "git",
  9626. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9627. "reference": "3759b0781bb7f9c5041b6efddb89b8d7d91ee25e"
  9628. },
  9629. "dist": {
  9630. "type": "zip",
  9631. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3759b0781bb7f9c5041b6efddb89b8d7d91ee25e",
  9632. "reference": "3759b0781bb7f9c5041b6efddb89b8d7d91ee25e",
  9633. "shasum": ""
  9634. },
  9635. "require": {
  9636. "php": ">=7.2.5",
  9637. "symfony/config": "^4.4|^5.0|^6.0",
  9638. "symfony/framework-bundle": "^5.3|^6.0",
  9639. "symfony/http-kernel": "^5.3|^6.0",
  9640. "symfony/polyfill-php80": "^1.16",
  9641. "symfony/routing": "^4.4|^5.0|^6.0",
  9642. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  9643. "twig/twig": "^2.13|^3.0.4"
  9644. },
  9645. "conflict": {
  9646. "symfony/dependency-injection": "<5.2",
  9647. "symfony/form": "<4.4",
  9648. "symfony/mailer": "<5.4",
  9649. "symfony/messenger": "<4.4"
  9650. },
  9651. "require-dev": {
  9652. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  9653. "symfony/console": "^4.4|^5.0|^6.0",
  9654. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9655. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  9656. },
  9657. "type": "symfony-bundle",
  9658. "autoload": {
  9659. "psr-4": {
  9660. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9661. },
  9662. "exclude-from-classmap": [
  9663. "/Tests/"
  9664. ]
  9665. },
  9666. "notification-url": "https://packagist.org/downloads/",
  9667. "license": [
  9668. "MIT"
  9669. ],
  9670. "authors": [
  9671. {
  9672. "name": "Fabien Potencier",
  9673. "email": "fabien@symfony.com"
  9674. },
  9675. {
  9676. "name": "Symfony Community",
  9677. "homepage": "https://symfony.com/contributors"
  9678. }
  9679. ],
  9680. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9681. "homepage": "https://symfony.com",
  9682. "support": {
  9683. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.4.5"
  9684. },
  9685. "funding": [
  9686. {
  9687. "url": "https://symfony.com/sponsor",
  9688. "type": "custom"
  9689. },
  9690. {
  9691. "url": "https://github.com/fabpot",
  9692. "type": "github"
  9693. },
  9694. {
  9695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9696. "type": "tidelift"
  9697. }
  9698. ],
  9699. "time": "2022-02-25T16:17:01+00:00"
  9700. },
  9701. {
  9702. "name": "theseer/tokenizer",
  9703. "version": "1.2.1",
  9704. "source": {
  9705. "type": "git",
  9706. "url": "https://github.com/theseer/tokenizer.git",
  9707. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9708. },
  9709. "dist": {
  9710. "type": "zip",
  9711. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9712. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9713. "shasum": ""
  9714. },
  9715. "require": {
  9716. "ext-dom": "*",
  9717. "ext-tokenizer": "*",
  9718. "ext-xmlwriter": "*",
  9719. "php": "^7.2 || ^8.0"
  9720. },
  9721. "type": "library",
  9722. "autoload": {
  9723. "classmap": [
  9724. "src/"
  9725. ]
  9726. },
  9727. "notification-url": "https://packagist.org/downloads/",
  9728. "license": [
  9729. "BSD-3-Clause"
  9730. ],
  9731. "authors": [
  9732. {
  9733. "name": "Arne Blankerts",
  9734. "email": "arne@blankerts.de",
  9735. "role": "Developer"
  9736. }
  9737. ],
  9738. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9739. "support": {
  9740. "issues": "https://github.com/theseer/tokenizer/issues",
  9741. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://github.com/theseer",
  9746. "type": "github"
  9747. }
  9748. ],
  9749. "time": "2021-07-28T10:34:58+00:00"
  9750. }
  9751. ],
  9752. "aliases": [],
  9753. "minimum-stability": "stable",
  9754. "stability-flags": [],
  9755. "prefer-stable": false,
  9756. "prefer-lowest": false,
  9757. "platform": {
  9758. "php": "^7.3",
  9759. "ext-ctype": "*",
  9760. "ext-iconv": "*"
  9761. },
  9762. "platform-dev": [],
  9763. "platform-overrides": {
  9764. "php": "7.3"
  9765. },
  9766. "plugin-api-version": "2.2.0"
  9767. }