composer.lock 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564
  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": "13c7a148fab0426e376ece2525cd13ac",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  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.5"
  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": "2022-01-17T14:14:24+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  93. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  154. },
  155. "time": "2022-10-27T11:44:00+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  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": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.1.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
  337. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^10.0",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^4.22"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.1.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%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2022-12-27T23:41:38+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "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.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.6.4",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
  514. "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "12.0.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2022.3",
  530. "phpstan/phpstan": "1.10.14",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.7",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "squizlabs/php_codesniffer": "3.7.2",
  535. "symfony/cache": "^5.4|^6.0",
  536. "symfony/console": "^4.4|^5.4|^6.0",
  537. "vimeo/psalm": "4.30.0"
  538. },
  539. "suggest": {
  540. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  541. },
  542. "bin": [
  543. "bin/doctrine-dbal"
  544. ],
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "Doctrine\\DBAL\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Guilherme Blanco",
  558. "email": "guilhermeblanco@gmail.com"
  559. },
  560. {
  561. "name": "Roman Borschel",
  562. "email": "roman@code-factory.org"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Jonathan Wage",
  570. "email": "jonwage@gmail.com"
  571. }
  572. ],
  573. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  574. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  575. "keywords": [
  576. "abstraction",
  577. "database",
  578. "db2",
  579. "dbal",
  580. "mariadb",
  581. "mssql",
  582. "mysql",
  583. "oci8",
  584. "oracle",
  585. "pdo",
  586. "pgsql",
  587. "postgresql",
  588. "queryobject",
  589. "sasql",
  590. "sql",
  591. "sqlite",
  592. "sqlserver",
  593. "sqlsrv"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/dbal/issues",
  597. "source": "https://github.com/doctrine/dbal/tree/3.6.4"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2023-06-15T07:40:12+00:00"
  614. },
  615. {
  616. "name": "doctrine/deprecations",
  617. "version": "v1.1.1",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/deprecations.git",
  621. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  626. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  627. "shasum": ""
  628. },
  629. "require": {
  630. "php": "^7.1 || ^8.0"
  631. },
  632. "require-dev": {
  633. "doctrine/coding-standard": "^9",
  634. "phpstan/phpstan": "1.4.10 || 1.10.15",
  635. "phpstan/phpstan-phpunit": "^1.0",
  636. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  637. "psalm/plugin-phpunit": "0.18.4",
  638. "psr/log": "^1 || ^2 || ^3",
  639. "vimeo/psalm": "4.30.0 || 5.12.0"
  640. },
  641. "suggest": {
  642. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  643. },
  644. "type": "library",
  645. "autoload": {
  646. "psr-4": {
  647. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "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.",
  655. "homepage": "https://www.doctrine-project.org/",
  656. "support": {
  657. "issues": "https://github.com/doctrine/deprecations/issues",
  658. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  659. },
  660. "time": "2023-06-03T09:27:29+00:00"
  661. },
  662. {
  663. "name": "doctrine/doctrine-bundle",
  664. "version": "2.10.1",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/doctrine/DoctrineBundle.git",
  668. "reference": "f9d59c90b6f525dfc2a2064a695cb56e0ab40311"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/f9d59c90b6f525dfc2a2064a695cb56e0ab40311",
  673. "reference": "f9d59c90b6f525dfc2a2064a695cb56e0ab40311",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "doctrine/cache": "^1.11 || ^2.0",
  678. "doctrine/dbal": "^3.6.0",
  679. "doctrine/persistence": "^2.2 || ^3",
  680. "doctrine/sql-formatter": "^1.0.1",
  681. "php": "^7.4 || ^8.0",
  682. "symfony/cache": "^5.4 || ^6.0",
  683. "symfony/config": "^5.4 || ^6.0",
  684. "symfony/console": "^5.4 || ^6.0",
  685. "symfony/dependency-injection": "^5.4 || ^6.0",
  686. "symfony/deprecation-contracts": "^2.1 || ^3",
  687. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7",
  688. "symfony/framework-bundle": "^5.4 || ^6.0",
  689. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  690. },
  691. "conflict": {
  692. "doctrine/annotations": ">=3.0",
  693. "doctrine/orm": "<2.11 || >=3.0",
  694. "twig/twig": "<1.34 || >=2.0 <2.4"
  695. },
  696. "require-dev": {
  697. "doctrine/annotations": "^1 || ^2",
  698. "doctrine/coding-standard": "^9.0",
  699. "doctrine/deprecations": "^1.0",
  700. "doctrine/orm": "^2.11 || ^3.0",
  701. "friendsofphp/proxy-manager-lts": "^1.0",
  702. "phpunit/phpunit": "^9.5.26 || ^10.0",
  703. "psalm/plugin-phpunit": "^0.18.4",
  704. "psalm/plugin-symfony": "^4",
  705. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  706. "symfony/phpunit-bridge": "^6.1",
  707. "symfony/property-info": "^5.4 || ^6.0",
  708. "symfony/proxy-manager-bridge": "^5.4 || ^6.0",
  709. "symfony/security-bundle": "^5.4 || ^6.0",
  710. "symfony/twig-bridge": "^5.4 || ^6.0",
  711. "symfony/validator": "^5.4 || ^6.0",
  712. "symfony/web-profiler-bundle": "^5.4 || ^6.0",
  713. "symfony/yaml": "^5.4 || ^6.0",
  714. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  715. "vimeo/psalm": "^4.30"
  716. },
  717. "suggest": {
  718. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  719. "ext-pdo": "*",
  720. "symfony/web-profiler-bundle": "To use the data collector."
  721. },
  722. "type": "symfony-bundle",
  723. "autoload": {
  724. "psr-4": {
  725. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  726. }
  727. },
  728. "notification-url": "https://packagist.org/downloads/",
  729. "license": [
  730. "MIT"
  731. ],
  732. "authors": [
  733. {
  734. "name": "Fabien Potencier",
  735. "email": "fabien@symfony.com"
  736. },
  737. {
  738. "name": "Benjamin Eberlei",
  739. "email": "kontakt@beberlei.de"
  740. },
  741. {
  742. "name": "Symfony Community",
  743. "homepage": "https://symfony.com/contributors"
  744. },
  745. {
  746. "name": "Doctrine Project",
  747. "homepage": "https://www.doctrine-project.org/"
  748. }
  749. ],
  750. "description": "Symfony DoctrineBundle",
  751. "homepage": "https://www.doctrine-project.org",
  752. "keywords": [
  753. "database",
  754. "dbal",
  755. "orm",
  756. "persistence"
  757. ],
  758. "support": {
  759. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  760. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.10.1"
  761. },
  762. "funding": [
  763. {
  764. "url": "https://www.doctrine-project.org/sponsorship.html",
  765. "type": "custom"
  766. },
  767. {
  768. "url": "https://www.patreon.com/phpdoctrine",
  769. "type": "patreon"
  770. },
  771. {
  772. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  773. "type": "tidelift"
  774. }
  775. ],
  776. "time": "2023-06-28T07:47:41+00:00"
  777. },
  778. {
  779. "name": "doctrine/doctrine-migrations-bundle",
  780. "version": "3.2.4",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  784. "reference": "94e6b0fe1a50901d52f59dbb9b4b0737718b2c1e"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/94e6b0fe1a50901d52f59dbb9b4b0737718b2c1e",
  789. "reference": "94e6b0fe1a50901d52f59dbb9b4b0737718b2c1e",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "doctrine/doctrine-bundle": "~1.0|~2.0",
  794. "doctrine/migrations": "^3.2",
  795. "php": "^7.2|^8.0",
  796. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  797. },
  798. "require-dev": {
  799. "doctrine/coding-standard": "^9",
  800. "doctrine/orm": "^2.6",
  801. "doctrine/persistence": "^1.3||^2.0",
  802. "phpstan/phpstan": "^1.4",
  803. "phpstan/phpstan-deprecation-rules": "^1",
  804. "phpstan/phpstan-phpunit": "^1",
  805. "phpstan/phpstan-strict-rules": "^1.1",
  806. "phpunit/phpunit": "^8.5|^9.5",
  807. "vimeo/psalm": "^4.22"
  808. },
  809. "type": "symfony-bundle",
  810. "autoload": {
  811. "psr-4": {
  812. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  813. },
  814. "exclude-from-classmap": [
  815. "/Tests/"
  816. ]
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Fabien Potencier",
  825. "email": "fabien@symfony.com"
  826. },
  827. {
  828. "name": "Doctrine Project",
  829. "homepage": "https://www.doctrine-project.org"
  830. },
  831. {
  832. "name": "Symfony Community",
  833. "homepage": "https://symfony.com/contributors"
  834. }
  835. ],
  836. "description": "Symfony DoctrineMigrationsBundle",
  837. "homepage": "https://www.doctrine-project.org",
  838. "keywords": [
  839. "dbal",
  840. "migrations",
  841. "schema"
  842. ],
  843. "support": {
  844. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  845. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.4"
  846. },
  847. "funding": [
  848. {
  849. "url": "https://www.doctrine-project.org/sponsorship.html",
  850. "type": "custom"
  851. },
  852. {
  853. "url": "https://www.patreon.com/phpdoctrine",
  854. "type": "patreon"
  855. },
  856. {
  857. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  858. "type": "tidelift"
  859. }
  860. ],
  861. "time": "2023-06-02T08:19:26+00:00"
  862. },
  863. {
  864. "name": "doctrine/event-manager",
  865. "version": "2.0.0",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/doctrine/event-manager.git",
  869. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  874. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "php": "^8.1"
  879. },
  880. "conflict": {
  881. "doctrine/common": "<2.9"
  882. },
  883. "require-dev": {
  884. "doctrine/coding-standard": "^10",
  885. "phpstan/phpstan": "^1.8.8",
  886. "phpunit/phpunit": "^9.5",
  887. "vimeo/psalm": "^4.28"
  888. },
  889. "type": "library",
  890. "autoload": {
  891. "psr-4": {
  892. "Doctrine\\Common\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Guilherme Blanco",
  902. "email": "guilhermeblanco@gmail.com"
  903. },
  904. {
  905. "name": "Roman Borschel",
  906. "email": "roman@code-factory.org"
  907. },
  908. {
  909. "name": "Benjamin Eberlei",
  910. "email": "kontakt@beberlei.de"
  911. },
  912. {
  913. "name": "Jonathan Wage",
  914. "email": "jonwage@gmail.com"
  915. },
  916. {
  917. "name": "Johannes Schmitt",
  918. "email": "schmittjoh@gmail.com"
  919. },
  920. {
  921. "name": "Marco Pivetta",
  922. "email": "ocramius@gmail.com"
  923. }
  924. ],
  925. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  926. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  927. "keywords": [
  928. "event",
  929. "event dispatcher",
  930. "event manager",
  931. "event system",
  932. "events"
  933. ],
  934. "support": {
  935. "issues": "https://github.com/doctrine/event-manager/issues",
  936. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  937. },
  938. "funding": [
  939. {
  940. "url": "https://www.doctrine-project.org/sponsorship.html",
  941. "type": "custom"
  942. },
  943. {
  944. "url": "https://www.patreon.com/phpdoctrine",
  945. "type": "patreon"
  946. },
  947. {
  948. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  949. "type": "tidelift"
  950. }
  951. ],
  952. "time": "2022-10-12T20:59:15+00:00"
  953. },
  954. {
  955. "name": "doctrine/inflector",
  956. "version": "2.0.8",
  957. "source": {
  958. "type": "git",
  959. "url": "https://github.com/doctrine/inflector.git",
  960. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  961. },
  962. "dist": {
  963. "type": "zip",
  964. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  965. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  966. "shasum": ""
  967. },
  968. "require": {
  969. "php": "^7.2 || ^8.0"
  970. },
  971. "require-dev": {
  972. "doctrine/coding-standard": "^11.0",
  973. "phpstan/phpstan": "^1.8",
  974. "phpstan/phpstan-phpunit": "^1.1",
  975. "phpstan/phpstan-strict-rules": "^1.3",
  976. "phpunit/phpunit": "^8.5 || ^9.5",
  977. "vimeo/psalm": "^4.25 || ^5.4"
  978. },
  979. "type": "library",
  980. "autoload": {
  981. "psr-4": {
  982. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  983. }
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Guilherme Blanco",
  992. "email": "guilhermeblanco@gmail.com"
  993. },
  994. {
  995. "name": "Roman Borschel",
  996. "email": "roman@code-factory.org"
  997. },
  998. {
  999. "name": "Benjamin Eberlei",
  1000. "email": "kontakt@beberlei.de"
  1001. },
  1002. {
  1003. "name": "Jonathan Wage",
  1004. "email": "jonwage@gmail.com"
  1005. },
  1006. {
  1007. "name": "Johannes Schmitt",
  1008. "email": "schmittjoh@gmail.com"
  1009. }
  1010. ],
  1011. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1012. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1013. "keywords": [
  1014. "inflection",
  1015. "inflector",
  1016. "lowercase",
  1017. "manipulation",
  1018. "php",
  1019. "plural",
  1020. "singular",
  1021. "strings",
  1022. "uppercase",
  1023. "words"
  1024. ],
  1025. "support": {
  1026. "issues": "https://github.com/doctrine/inflector/issues",
  1027. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1028. },
  1029. "funding": [
  1030. {
  1031. "url": "https://www.doctrine-project.org/sponsorship.html",
  1032. "type": "custom"
  1033. },
  1034. {
  1035. "url": "https://www.patreon.com/phpdoctrine",
  1036. "type": "patreon"
  1037. },
  1038. {
  1039. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1040. "type": "tidelift"
  1041. }
  1042. ],
  1043. "time": "2023-06-16T13:40:37+00:00"
  1044. },
  1045. {
  1046. "name": "doctrine/instantiator",
  1047. "version": "2.0.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/doctrine/instantiator.git",
  1051. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1056. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "php": "^8.1"
  1061. },
  1062. "require-dev": {
  1063. "doctrine/coding-standard": "^11",
  1064. "ext-pdo": "*",
  1065. "ext-phar": "*",
  1066. "phpbench/phpbench": "^1.2",
  1067. "phpstan/phpstan": "^1.9.4",
  1068. "phpstan/phpstan-phpunit": "^1.3",
  1069. "phpunit/phpunit": "^9.5.27",
  1070. "vimeo/psalm": "^5.4"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Marco Pivetta",
  1085. "email": "ocramius@gmail.com",
  1086. "homepage": "https://ocramius.github.io/"
  1087. }
  1088. ],
  1089. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1090. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1091. "keywords": [
  1092. "constructor",
  1093. "instantiate"
  1094. ],
  1095. "support": {
  1096. "issues": "https://github.com/doctrine/instantiator/issues",
  1097. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1098. },
  1099. "funding": [
  1100. {
  1101. "url": "https://www.doctrine-project.org/sponsorship.html",
  1102. "type": "custom"
  1103. },
  1104. {
  1105. "url": "https://www.patreon.com/phpdoctrine",
  1106. "type": "patreon"
  1107. },
  1108. {
  1109. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1110. "type": "tidelift"
  1111. }
  1112. ],
  1113. "time": "2022-12-30T00:23:10+00:00"
  1114. },
  1115. {
  1116. "name": "doctrine/lexer",
  1117. "version": "2.1.0",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/doctrine/lexer.git",
  1121. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1126. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1127. "shasum": ""
  1128. },
  1129. "require": {
  1130. "doctrine/deprecations": "^1.0",
  1131. "php": "^7.1 || ^8.0"
  1132. },
  1133. "require-dev": {
  1134. "doctrine/coding-standard": "^9 || ^10",
  1135. "phpstan/phpstan": "^1.3",
  1136. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1137. "psalm/plugin-phpunit": "^0.18.3",
  1138. "vimeo/psalm": "^4.11 || ^5.0"
  1139. },
  1140. "type": "library",
  1141. "autoload": {
  1142. "psr-4": {
  1143. "Doctrine\\Common\\Lexer\\": "src"
  1144. }
  1145. },
  1146. "notification-url": "https://packagist.org/downloads/",
  1147. "license": [
  1148. "MIT"
  1149. ],
  1150. "authors": [
  1151. {
  1152. "name": "Guilherme Blanco",
  1153. "email": "guilhermeblanco@gmail.com"
  1154. },
  1155. {
  1156. "name": "Roman Borschel",
  1157. "email": "roman@code-factory.org"
  1158. },
  1159. {
  1160. "name": "Johannes Schmitt",
  1161. "email": "schmittjoh@gmail.com"
  1162. }
  1163. ],
  1164. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1165. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1166. "keywords": [
  1167. "annotations",
  1168. "docblock",
  1169. "lexer",
  1170. "parser",
  1171. "php"
  1172. ],
  1173. "support": {
  1174. "issues": "https://github.com/doctrine/lexer/issues",
  1175. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://www.doctrine-project.org/sponsorship.html",
  1180. "type": "custom"
  1181. },
  1182. {
  1183. "url": "https://www.patreon.com/phpdoctrine",
  1184. "type": "patreon"
  1185. },
  1186. {
  1187. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1188. "type": "tidelift"
  1189. }
  1190. ],
  1191. "time": "2022-12-14T08:49:07+00:00"
  1192. },
  1193. {
  1194. "name": "doctrine/migrations",
  1195. "version": "3.6.0",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/doctrine/migrations.git",
  1199. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1204. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1205. "shasum": ""
  1206. },
  1207. "require": {
  1208. "composer-runtime-api": "^2",
  1209. "doctrine/dbal": "^3.5.1",
  1210. "doctrine/deprecations": "^0.5.3 || ^1",
  1211. "doctrine/event-manager": "^1.2 || ^2.0",
  1212. "php": "^8.1",
  1213. "psr/log": "^1.1.3 || ^2 || ^3",
  1214. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1215. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0",
  1216. "symfony/var-exporter": "^6.2"
  1217. },
  1218. "conflict": {
  1219. "doctrine/orm": "<2.12"
  1220. },
  1221. "require-dev": {
  1222. "doctrine/coding-standard": "^9",
  1223. "doctrine/orm": "^2.13",
  1224. "doctrine/persistence": "^2 || ^3",
  1225. "doctrine/sql-formatter": "^1.0",
  1226. "ext-pdo_sqlite": "*",
  1227. "phpstan/phpstan": "^1.5",
  1228. "phpstan/phpstan-deprecation-rules": "^1",
  1229. "phpstan/phpstan-phpunit": "^1.1",
  1230. "phpstan/phpstan-strict-rules": "^1.1",
  1231. "phpstan/phpstan-symfony": "^1.1",
  1232. "phpunit/phpunit": "^9.5.24",
  1233. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1234. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1235. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1236. },
  1237. "suggest": {
  1238. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1239. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1240. },
  1241. "bin": [
  1242. "bin/doctrine-migrations"
  1243. ],
  1244. "type": "library",
  1245. "autoload": {
  1246. "psr-4": {
  1247. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1248. }
  1249. },
  1250. "notification-url": "https://packagist.org/downloads/",
  1251. "license": [
  1252. "MIT"
  1253. ],
  1254. "authors": [
  1255. {
  1256. "name": "Benjamin Eberlei",
  1257. "email": "kontakt@beberlei.de"
  1258. },
  1259. {
  1260. "name": "Jonathan Wage",
  1261. "email": "jonwage@gmail.com"
  1262. },
  1263. {
  1264. "name": "Michael Simonson",
  1265. "email": "contact@mikesimonson.com"
  1266. }
  1267. ],
  1268. "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.",
  1269. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1270. "keywords": [
  1271. "database",
  1272. "dbal",
  1273. "migrations"
  1274. ],
  1275. "support": {
  1276. "issues": "https://github.com/doctrine/migrations/issues",
  1277. "source": "https://github.com/doctrine/migrations/tree/3.6.0"
  1278. },
  1279. "funding": [
  1280. {
  1281. "url": "https://www.doctrine-project.org/sponsorship.html",
  1282. "type": "custom"
  1283. },
  1284. {
  1285. "url": "https://www.patreon.com/phpdoctrine",
  1286. "type": "patreon"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2023-02-15T18:49:46+00:00"
  1294. },
  1295. {
  1296. "name": "doctrine/orm",
  1297. "version": "2.15.3",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/doctrine/orm.git",
  1301. "reference": "4c3bd208018c26498e5f682aaad45fa00ea307d5"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/doctrine/orm/zipball/4c3bd208018c26498e5f682aaad45fa00ea307d5",
  1306. "reference": "4c3bd208018c26498e5f682aaad45fa00ea307d5",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "composer-runtime-api": "^2",
  1311. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1312. "doctrine/collections": "^1.5 || ^2.1",
  1313. "doctrine/common": "^3.0.3",
  1314. "doctrine/dbal": "^2.13.1 || ^3.2",
  1315. "doctrine/deprecations": "^0.5.3 || ^1",
  1316. "doctrine/event-manager": "^1.2 || ^2",
  1317. "doctrine/inflector": "^1.4 || ^2.0",
  1318. "doctrine/instantiator": "^1.3 || ^2",
  1319. "doctrine/lexer": "^2",
  1320. "doctrine/persistence": "^2.4 || ^3",
  1321. "ext-ctype": "*",
  1322. "php": "^7.1 || ^8.0",
  1323. "psr/cache": "^1 || ^2 || ^3",
  1324. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  1325. "symfony/polyfill-php72": "^1.23",
  1326. "symfony/polyfill-php80": "^1.16"
  1327. },
  1328. "conflict": {
  1329. "doctrine/annotations": "<1.13 || >= 3.0"
  1330. },
  1331. "require-dev": {
  1332. "doctrine/annotations": "^1.13 || ^2",
  1333. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  1334. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1335. "phpstan/phpstan": "~1.4.10 || 1.10.18",
  1336. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1337. "psr/log": "^1 || ^2 || ^3",
  1338. "squizlabs/php_codesniffer": "3.7.2",
  1339. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1340. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2",
  1341. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1342. "vimeo/psalm": "4.30.0 || 5.12.0"
  1343. },
  1344. "suggest": {
  1345. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1346. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1347. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1348. },
  1349. "bin": [
  1350. "bin/doctrine"
  1351. ],
  1352. "type": "library",
  1353. "autoload": {
  1354. "psr-4": {
  1355. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1356. }
  1357. },
  1358. "notification-url": "https://packagist.org/downloads/",
  1359. "license": [
  1360. "MIT"
  1361. ],
  1362. "authors": [
  1363. {
  1364. "name": "Guilherme Blanco",
  1365. "email": "guilhermeblanco@gmail.com"
  1366. },
  1367. {
  1368. "name": "Roman Borschel",
  1369. "email": "roman@code-factory.org"
  1370. },
  1371. {
  1372. "name": "Benjamin Eberlei",
  1373. "email": "kontakt@beberlei.de"
  1374. },
  1375. {
  1376. "name": "Jonathan Wage",
  1377. "email": "jonwage@gmail.com"
  1378. },
  1379. {
  1380. "name": "Marco Pivetta",
  1381. "email": "ocramius@gmail.com"
  1382. }
  1383. ],
  1384. "description": "Object-Relational-Mapper for PHP",
  1385. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1386. "keywords": [
  1387. "database",
  1388. "orm"
  1389. ],
  1390. "support": {
  1391. "issues": "https://github.com/doctrine/orm/issues",
  1392. "source": "https://github.com/doctrine/orm/tree/2.15.3"
  1393. },
  1394. "time": "2023-06-22T12:36:06+00:00"
  1395. },
  1396. {
  1397. "name": "doctrine/persistence",
  1398. "version": "3.2.0",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/doctrine/persistence.git",
  1402. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1407. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "doctrine/event-manager": "^1 || ^2",
  1412. "php": "^7.2 || ^8.0",
  1413. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1414. },
  1415. "conflict": {
  1416. "doctrine/common": "<2.10"
  1417. },
  1418. "require-dev": {
  1419. "composer/package-versions-deprecated": "^1.11",
  1420. "doctrine/coding-standard": "^11",
  1421. "doctrine/common": "^3.0",
  1422. "phpstan/phpstan": "1.9.4",
  1423. "phpstan/phpstan-phpunit": "^1",
  1424. "phpstan/phpstan-strict-rules": "^1.1",
  1425. "phpunit/phpunit": "^8.5 || ^9.5",
  1426. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1427. "vimeo/psalm": "4.30.0 || 5.3.0"
  1428. },
  1429. "type": "library",
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Doctrine\\Persistence\\": "src/Persistence"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Guilherme Blanco",
  1442. "email": "guilhermeblanco@gmail.com"
  1443. },
  1444. {
  1445. "name": "Roman Borschel",
  1446. "email": "roman@code-factory.org"
  1447. },
  1448. {
  1449. "name": "Benjamin Eberlei",
  1450. "email": "kontakt@beberlei.de"
  1451. },
  1452. {
  1453. "name": "Jonathan Wage",
  1454. "email": "jonwage@gmail.com"
  1455. },
  1456. {
  1457. "name": "Johannes Schmitt",
  1458. "email": "schmittjoh@gmail.com"
  1459. },
  1460. {
  1461. "name": "Marco Pivetta",
  1462. "email": "ocramius@gmail.com"
  1463. }
  1464. ],
  1465. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1466. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1467. "keywords": [
  1468. "mapper",
  1469. "object",
  1470. "odm",
  1471. "orm",
  1472. "persistence"
  1473. ],
  1474. "support": {
  1475. "issues": "https://github.com/doctrine/persistence/issues",
  1476. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1477. },
  1478. "funding": [
  1479. {
  1480. "url": "https://www.doctrine-project.org/sponsorship.html",
  1481. "type": "custom"
  1482. },
  1483. {
  1484. "url": "https://www.patreon.com/phpdoctrine",
  1485. "type": "patreon"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "time": "2023-05-17T18:32:04+00:00"
  1493. },
  1494. {
  1495. "name": "doctrine/sql-formatter",
  1496. "version": "1.1.3",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/doctrine/sql-formatter.git",
  1500. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1505. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": "^7.1 || ^8.0"
  1510. },
  1511. "require-dev": {
  1512. "bamarni/composer-bin-plugin": "^1.4"
  1513. },
  1514. "bin": [
  1515. "bin/sql-formatter"
  1516. ],
  1517. "type": "library",
  1518. "autoload": {
  1519. "psr-4": {
  1520. "Doctrine\\SqlFormatter\\": "src"
  1521. }
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Jeremy Dorn",
  1530. "email": "jeremy@jeremydorn.com",
  1531. "homepage": "https://jeremydorn.com/"
  1532. }
  1533. ],
  1534. "description": "a PHP SQL highlighting library",
  1535. "homepage": "https://github.com/doctrine/sql-formatter/",
  1536. "keywords": [
  1537. "highlight",
  1538. "sql"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1542. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1543. },
  1544. "time": "2022-05-23T21:33:49+00:00"
  1545. },
  1546. {
  1547. "name": "egulias/email-validator",
  1548. "version": "4.0.1",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/egulias/EmailValidator.git",
  1552. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1557. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "doctrine/lexer": "^2.0 || ^3.0",
  1562. "php": ">=8.1",
  1563. "symfony/polyfill-intl-idn": "^1.26"
  1564. },
  1565. "require-dev": {
  1566. "phpunit/phpunit": "^9.5.27",
  1567. "vimeo/psalm": "^4.30"
  1568. },
  1569. "suggest": {
  1570. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "4.0.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "psr-4": {
  1580. "Egulias\\EmailValidator\\": "src"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Eduardo Gulias Davis"
  1590. }
  1591. ],
  1592. "description": "A library for validating emails against several RFCs",
  1593. "homepage": "https://github.com/egulias/EmailValidator",
  1594. "keywords": [
  1595. "email",
  1596. "emailvalidation",
  1597. "emailvalidator",
  1598. "validation",
  1599. "validator"
  1600. ],
  1601. "support": {
  1602. "issues": "https://github.com/egulias/EmailValidator/issues",
  1603. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1604. },
  1605. "funding": [
  1606. {
  1607. "url": "https://github.com/egulias",
  1608. "type": "github"
  1609. }
  1610. ],
  1611. "time": "2023-01-14T14:17:03+00:00"
  1612. },
  1613. {
  1614. "name": "friendsofphp/proxy-manager-lts",
  1615. "version": "v1.0.16",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1619. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1624. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "laminas/laminas-code": "~3.4.1|^4.0",
  1629. "php": ">=7.1",
  1630. "symfony/filesystem": "^4.4.17|^5.0|^6.0|^7.0"
  1631. },
  1632. "conflict": {
  1633. "laminas/laminas-stdlib": "<3.2.1",
  1634. "zendframework/zend-stdlib": "<3.2.1"
  1635. },
  1636. "replace": {
  1637. "ocramius/proxy-manager": "^2.1"
  1638. },
  1639. "require-dev": {
  1640. "ext-phar": "*",
  1641. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
  1642. },
  1643. "type": "library",
  1644. "extra": {
  1645. "thanks": {
  1646. "name": "ocramius/proxy-manager",
  1647. "url": "https://github.com/Ocramius/ProxyManager"
  1648. }
  1649. },
  1650. "autoload": {
  1651. "psr-4": {
  1652. "ProxyManager\\": "src/ProxyManager"
  1653. }
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "MIT"
  1658. ],
  1659. "authors": [
  1660. {
  1661. "name": "Marco Pivetta",
  1662. "email": "ocramius@gmail.com",
  1663. "homepage": "https://ocramius.github.io/"
  1664. },
  1665. {
  1666. "name": "Nicolas Grekas",
  1667. "email": "p@tchwork.com"
  1668. }
  1669. ],
  1670. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1671. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1672. "keywords": [
  1673. "aop",
  1674. "lazy loading",
  1675. "proxy",
  1676. "proxy pattern",
  1677. "service proxies"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1681. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.16"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://github.com/Ocramius",
  1686. "type": "github"
  1687. },
  1688. {
  1689. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1690. "type": "tidelift"
  1691. }
  1692. ],
  1693. "time": "2023-05-24T07:17:17+00:00"
  1694. },
  1695. {
  1696. "name": "laminas/laminas-code",
  1697. "version": "4.11.0",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/laminas/laminas-code.git",
  1701. "reference": "169123b3ede20a9193480c53de2a8194f8c073ec"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/169123b3ede20a9193480c53de2a8194f8c073ec",
  1706. "reference": "169123b3ede20a9193480c53de2a8194f8c073ec",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "php": "~8.1.0 || ~8.2.0"
  1711. },
  1712. "require-dev": {
  1713. "doctrine/annotations": "^2.0.0",
  1714. "ext-phar": "*",
  1715. "laminas/laminas-coding-standard": "^2.3.0",
  1716. "laminas/laminas-stdlib": "^3.6.1",
  1717. "phpunit/phpunit": "^10.0.9",
  1718. "psalm/plugin-phpunit": "^0.18.4",
  1719. "vimeo/psalm": "^5.7.1"
  1720. },
  1721. "suggest": {
  1722. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1723. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1724. },
  1725. "type": "library",
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Laminas\\Code\\": "src/"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1736. "homepage": "https://laminas.dev",
  1737. "keywords": [
  1738. "code",
  1739. "laminas",
  1740. "laminasframework"
  1741. ],
  1742. "support": {
  1743. "chat": "https://laminas.dev/chat",
  1744. "docs": "https://docs.laminas.dev/laminas-code/",
  1745. "forum": "https://discourse.laminas.dev",
  1746. "issues": "https://github.com/laminas/laminas-code/issues",
  1747. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1748. "source": "https://github.com/laminas/laminas-code"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1753. "type": "community_bridge"
  1754. }
  1755. ],
  1756. "time": "2023-05-14T12:05:38+00:00"
  1757. },
  1758. {
  1759. "name": "league/commonmark",
  1760. "version": "2.4.0",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/thephpleague/commonmark.git",
  1764. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1769. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "ext-mbstring": "*",
  1774. "league/config": "^1.1.1",
  1775. "php": "^7.4 || ^8.0",
  1776. "psr/event-dispatcher": "^1.0",
  1777. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1778. "symfony/polyfill-php80": "^1.16"
  1779. },
  1780. "require-dev": {
  1781. "cebe/markdown": "^1.0",
  1782. "commonmark/cmark": "0.30.0",
  1783. "commonmark/commonmark.js": "0.30.0",
  1784. "composer/package-versions-deprecated": "^1.8",
  1785. "embed/embed": "^4.4",
  1786. "erusev/parsedown": "^1.0",
  1787. "ext-json": "*",
  1788. "github/gfm": "0.29.0",
  1789. "michelf/php-markdown": "^1.4 || ^2.0",
  1790. "nyholm/psr7": "^1.5",
  1791. "phpstan/phpstan": "^1.8.2",
  1792. "phpunit/phpunit": "^9.5.21",
  1793. "scrutinizer/ocular": "^1.8.1",
  1794. "symfony/finder": "^5.3 | ^6.0",
  1795. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1796. "unleashedtech/php-coding-standard": "^3.1.1",
  1797. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1798. },
  1799. "suggest": {
  1800. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1801. },
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-main": "2.5-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "psr-4": {
  1810. "League\\CommonMark\\": "src"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "BSD-3-Clause"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Colin O'Dell",
  1820. "email": "colinodell@gmail.com",
  1821. "homepage": "https://www.colinodell.com",
  1822. "role": "Lead Developer"
  1823. }
  1824. ],
  1825. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1826. "homepage": "https://commonmark.thephpleague.com",
  1827. "keywords": [
  1828. "commonmark",
  1829. "flavored",
  1830. "gfm",
  1831. "github",
  1832. "github-flavored",
  1833. "markdown",
  1834. "md",
  1835. "parser"
  1836. ],
  1837. "support": {
  1838. "docs": "https://commonmark.thephpleague.com/",
  1839. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1840. "issues": "https://github.com/thephpleague/commonmark/issues",
  1841. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1842. "source": "https://github.com/thephpleague/commonmark"
  1843. },
  1844. "funding": [
  1845. {
  1846. "url": "https://www.colinodell.com/sponsor",
  1847. "type": "custom"
  1848. },
  1849. {
  1850. "url": "https://www.paypal.me/colinpodell/10.00",
  1851. "type": "custom"
  1852. },
  1853. {
  1854. "url": "https://github.com/colinodell",
  1855. "type": "github"
  1856. },
  1857. {
  1858. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1859. "type": "tidelift"
  1860. }
  1861. ],
  1862. "time": "2023-03-24T15:16:10+00:00"
  1863. },
  1864. {
  1865. "name": "league/config",
  1866. "version": "v1.2.0",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/thephpleague/config.git",
  1870. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1875. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1876. "shasum": ""
  1877. },
  1878. "require": {
  1879. "dflydev/dot-access-data": "^3.0.1",
  1880. "nette/schema": "^1.2",
  1881. "php": "^7.4 || ^8.0"
  1882. },
  1883. "require-dev": {
  1884. "phpstan/phpstan": "^1.8.2",
  1885. "phpunit/phpunit": "^9.5.5",
  1886. "scrutinizer/ocular": "^1.8.1",
  1887. "unleashedtech/php-coding-standard": "^3.1",
  1888. "vimeo/psalm": "^4.7.3"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "branch-alias": {
  1893. "dev-main": "1.2-dev"
  1894. }
  1895. },
  1896. "autoload": {
  1897. "psr-4": {
  1898. "League\\Config\\": "src"
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "BSD-3-Clause"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "Colin O'Dell",
  1908. "email": "colinodell@gmail.com",
  1909. "homepage": "https://www.colinodell.com",
  1910. "role": "Lead Developer"
  1911. }
  1912. ],
  1913. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1914. "homepage": "https://config.thephpleague.com",
  1915. "keywords": [
  1916. "array",
  1917. "config",
  1918. "configuration",
  1919. "dot",
  1920. "dot-access",
  1921. "nested",
  1922. "schema"
  1923. ],
  1924. "support": {
  1925. "docs": "https://config.thephpleague.com/",
  1926. "issues": "https://github.com/thephpleague/config/issues",
  1927. "rss": "https://github.com/thephpleague/config/releases.atom",
  1928. "source": "https://github.com/thephpleague/config"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://www.colinodell.com/sponsor",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://www.paypal.me/colinpodell/10.00",
  1937. "type": "custom"
  1938. },
  1939. {
  1940. "url": "https://github.com/colinodell",
  1941. "type": "github"
  1942. }
  1943. ],
  1944. "time": "2022-12-11T20:36:23+00:00"
  1945. },
  1946. {
  1947. "name": "league/uri",
  1948. "version": "6.8.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/thephpleague/uri.git",
  1952. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1957. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "ext-json": "*",
  1962. "league/uri-interfaces": "^2.3",
  1963. "php": "^8.1",
  1964. "psr/http-message": "^1.0.1"
  1965. },
  1966. "conflict": {
  1967. "league/uri-schemes": "^1.0"
  1968. },
  1969. "require-dev": {
  1970. "friendsofphp/php-cs-fixer": "^v3.9.5",
  1971. "nyholm/psr7": "^1.5.1",
  1972. "php-http/psr7-integration-tests": "^1.1.1",
  1973. "phpbench/phpbench": "^1.2.6",
  1974. "phpstan/phpstan": "^1.8.5",
  1975. "phpstan/phpstan-deprecation-rules": "^1.0",
  1976. "phpstan/phpstan-phpunit": "^1.1.1",
  1977. "phpstan/phpstan-strict-rules": "^1.4.3",
  1978. "phpunit/phpunit": "^9.5.24",
  1979. "psr/http-factory": "^1.0.1"
  1980. },
  1981. "suggest": {
  1982. "ext-fileinfo": "Needed to create Data URI from a filepath",
  1983. "ext-intl": "Needed to improve host validation",
  1984. "league/uri-components": "Needed to easily manipulate URI objects",
  1985. "psr/http-factory": "Needed to use the URI factory"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "6.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "League\\Uri\\": "src"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Ignace Nyamagana Butera",
  2005. "email": "nyamsprod@gmail.com",
  2006. "homepage": "https://nyamsprod.com"
  2007. }
  2008. ],
  2009. "description": "URI manipulation library",
  2010. "homepage": "https://uri.thephpleague.com",
  2011. "keywords": [
  2012. "data-uri",
  2013. "file-uri",
  2014. "ftp",
  2015. "hostname",
  2016. "http",
  2017. "https",
  2018. "middleware",
  2019. "parse_str",
  2020. "parse_url",
  2021. "psr-7",
  2022. "query-string",
  2023. "querystring",
  2024. "rfc3986",
  2025. "rfc3987",
  2026. "rfc6570",
  2027. "uri",
  2028. "uri-template",
  2029. "url",
  2030. "ws"
  2031. ],
  2032. "support": {
  2033. "docs": "https://uri.thephpleague.com",
  2034. "forum": "https://thephpleague.slack.com",
  2035. "issues": "https://github.com/thephpleague/uri/issues",
  2036. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2037. },
  2038. "funding": [
  2039. {
  2040. "url": "https://github.com/sponsors/nyamsprod",
  2041. "type": "github"
  2042. }
  2043. ],
  2044. "time": "2022-09-13T19:58:47+00:00"
  2045. },
  2046. {
  2047. "name": "league/uri-interfaces",
  2048. "version": "2.3.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2052. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2057. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "ext-json": "*",
  2062. "php": "^7.2 || ^8.0"
  2063. },
  2064. "require-dev": {
  2065. "friendsofphp/php-cs-fixer": "^2.19",
  2066. "phpstan/phpstan": "^0.12.90",
  2067. "phpstan/phpstan-phpunit": "^0.12.19",
  2068. "phpstan/phpstan-strict-rules": "^0.12.9",
  2069. "phpunit/phpunit": "^8.5.15 || ^9.5"
  2070. },
  2071. "suggest": {
  2072. "ext-intl": "to use the IDNA feature",
  2073. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  2074. },
  2075. "type": "library",
  2076. "extra": {
  2077. "branch-alias": {
  2078. "dev-master": "2.x-dev"
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "League\\Uri\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Ignace Nyamagana Butera",
  2093. "email": "nyamsprod@gmail.com",
  2094. "homepage": "https://nyamsprod.com"
  2095. }
  2096. ],
  2097. "description": "Common interface for URI representation",
  2098. "homepage": "http://github.com/thephpleague/uri-interfaces",
  2099. "keywords": [
  2100. "rfc3986",
  2101. "rfc3987",
  2102. "uri",
  2103. "url"
  2104. ],
  2105. "support": {
  2106. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  2107. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  2108. },
  2109. "funding": [
  2110. {
  2111. "url": "https://github.com/sponsors/nyamsprod",
  2112. "type": "github"
  2113. }
  2114. ],
  2115. "time": "2021-06-28T04:27:21+00:00"
  2116. },
  2117. {
  2118. "name": "masterminds/html5",
  2119. "version": "2.8.0",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://github.com/Masterminds/html5-php.git",
  2123. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2128. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2129. "shasum": ""
  2130. },
  2131. "require": {
  2132. "ext-dom": "*",
  2133. "php": ">=5.3.0"
  2134. },
  2135. "require-dev": {
  2136. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2137. },
  2138. "type": "library",
  2139. "extra": {
  2140. "branch-alias": {
  2141. "dev-master": "2.7-dev"
  2142. }
  2143. },
  2144. "autoload": {
  2145. "psr-4": {
  2146. "Masterminds\\": "src"
  2147. }
  2148. },
  2149. "notification-url": "https://packagist.org/downloads/",
  2150. "license": [
  2151. "MIT"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Matt Butcher",
  2156. "email": "technosophos@gmail.com"
  2157. },
  2158. {
  2159. "name": "Matt Farina",
  2160. "email": "matt@mattfarina.com"
  2161. },
  2162. {
  2163. "name": "Asmir Mustafic",
  2164. "email": "goetas@gmail.com"
  2165. }
  2166. ],
  2167. "description": "An HTML5 parser and serializer.",
  2168. "homepage": "http://masterminds.github.io/html5-php",
  2169. "keywords": [
  2170. "HTML5",
  2171. "dom",
  2172. "html",
  2173. "parser",
  2174. "querypath",
  2175. "serializer",
  2176. "xml"
  2177. ],
  2178. "support": {
  2179. "issues": "https://github.com/Masterminds/html5-php/issues",
  2180. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  2181. },
  2182. "time": "2023-04-26T07:27:39+00:00"
  2183. },
  2184. {
  2185. "name": "monolog/monolog",
  2186. "version": "3.4.0",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/Seldaek/monolog.git",
  2190. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  2195. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "php": ">=8.1",
  2200. "psr/log": "^2.0 || ^3.0"
  2201. },
  2202. "provide": {
  2203. "psr/log-implementation": "3.0.0"
  2204. },
  2205. "require-dev": {
  2206. "aws/aws-sdk-php": "^3.0",
  2207. "doctrine/couchdb": "~1.0@dev",
  2208. "elasticsearch/elasticsearch": "^7 || ^8",
  2209. "ext-json": "*",
  2210. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2211. "guzzlehttp/guzzle": "^7.4.5",
  2212. "guzzlehttp/psr7": "^2.2",
  2213. "mongodb/mongodb": "^1.8",
  2214. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2215. "phpstan/phpstan": "^1.9",
  2216. "phpstan/phpstan-deprecation-rules": "^1.0",
  2217. "phpstan/phpstan-strict-rules": "^1.4",
  2218. "phpunit/phpunit": "^10.1",
  2219. "predis/predis": "^1.1 || ^2",
  2220. "ruflin/elastica": "^7",
  2221. "symfony/mailer": "^5.4 || ^6",
  2222. "symfony/mime": "^5.4 || ^6"
  2223. },
  2224. "suggest": {
  2225. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2226. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2227. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2228. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2229. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2230. "ext-mbstring": "Allow to work properly with unicode symbols",
  2231. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2232. "ext-openssl": "Required to send log messages using SSL",
  2233. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2234. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2235. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2236. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2237. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2238. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2239. },
  2240. "type": "library",
  2241. "extra": {
  2242. "branch-alias": {
  2243. "dev-main": "3.x-dev"
  2244. }
  2245. },
  2246. "autoload": {
  2247. "psr-4": {
  2248. "Monolog\\": "src/Monolog"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Jordi Boggiano",
  2258. "email": "j.boggiano@seld.be",
  2259. "homepage": "https://seld.be"
  2260. }
  2261. ],
  2262. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2263. "homepage": "https://github.com/Seldaek/monolog",
  2264. "keywords": [
  2265. "log",
  2266. "logging",
  2267. "psr-3"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/Seldaek/monolog/issues",
  2271. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  2272. },
  2273. "funding": [
  2274. {
  2275. "url": "https://github.com/Seldaek",
  2276. "type": "github"
  2277. },
  2278. {
  2279. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2280. "type": "tidelift"
  2281. }
  2282. ],
  2283. "time": "2023-06-21T08:46:11+00:00"
  2284. },
  2285. {
  2286. "name": "nette/schema",
  2287. "version": "v1.2.3",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://github.com/nette/schema.git",
  2291. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2296. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2297. "shasum": ""
  2298. },
  2299. "require": {
  2300. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2301. "php": ">=7.1 <8.3"
  2302. },
  2303. "require-dev": {
  2304. "nette/tester": "^2.3 || ^2.4",
  2305. "phpstan/phpstan-nette": "^1.0",
  2306. "tracy/tracy": "^2.7"
  2307. },
  2308. "type": "library",
  2309. "extra": {
  2310. "branch-alias": {
  2311. "dev-master": "1.2-dev"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "classmap": [
  2316. "src/"
  2317. ]
  2318. },
  2319. "notification-url": "https://packagist.org/downloads/",
  2320. "license": [
  2321. "BSD-3-Clause",
  2322. "GPL-2.0-only",
  2323. "GPL-3.0-only"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "David Grudl",
  2328. "homepage": "https://davidgrudl.com"
  2329. },
  2330. {
  2331. "name": "Nette Community",
  2332. "homepage": "https://nette.org/contributors"
  2333. }
  2334. ],
  2335. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2336. "homepage": "https://nette.org",
  2337. "keywords": [
  2338. "config",
  2339. "nette"
  2340. ],
  2341. "support": {
  2342. "issues": "https://github.com/nette/schema/issues",
  2343. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2344. },
  2345. "time": "2022-10-13T01:24:26+00:00"
  2346. },
  2347. {
  2348. "name": "nette/utils",
  2349. "version": "v4.0.0",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/nette/utils.git",
  2353. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2358. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "php": ">=8.0 <8.3"
  2363. },
  2364. "conflict": {
  2365. "nette/finder": "<3",
  2366. "nette/schema": "<1.2.2"
  2367. },
  2368. "require-dev": {
  2369. "jetbrains/phpstorm-attributes": "dev-master",
  2370. "nette/tester": "^2.4",
  2371. "phpstan/phpstan": "^1.0",
  2372. "tracy/tracy": "^2.9"
  2373. },
  2374. "suggest": {
  2375. "ext-gd": "to use Image",
  2376. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2377. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2378. "ext-json": "to use Nette\\Utils\\Json",
  2379. "ext-mbstring": "to use Strings::lower() etc...",
  2380. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2381. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "4.0-dev"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "classmap": [
  2391. "src/"
  2392. ]
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "BSD-3-Clause",
  2397. "GPL-2.0-only",
  2398. "GPL-3.0-only"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "David Grudl",
  2403. "homepage": "https://davidgrudl.com"
  2404. },
  2405. {
  2406. "name": "Nette Community",
  2407. "homepage": "https://nette.org/contributors"
  2408. }
  2409. ],
  2410. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2411. "homepage": "https://nette.org",
  2412. "keywords": [
  2413. "array",
  2414. "core",
  2415. "datetime",
  2416. "images",
  2417. "json",
  2418. "nette",
  2419. "paginator",
  2420. "password",
  2421. "slugify",
  2422. "string",
  2423. "unicode",
  2424. "utf-8",
  2425. "utility",
  2426. "validation"
  2427. ],
  2428. "support": {
  2429. "issues": "https://github.com/nette/utils/issues",
  2430. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2431. },
  2432. "time": "2023-02-02T10:41:53+00:00"
  2433. },
  2434. {
  2435. "name": "phpdocumentor/reflection-common",
  2436. "version": "2.2.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2440. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2445. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "php": "^7.2 || ^8.0"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-2.x": "2.x-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "psr-4": {
  2459. "phpDocumentor\\Reflection\\": "src/"
  2460. }
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "MIT"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "Jaap van Otterdijk",
  2469. "email": "opensource@ijaap.nl"
  2470. }
  2471. ],
  2472. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2473. "homepage": "http://www.phpdoc.org",
  2474. "keywords": [
  2475. "FQSEN",
  2476. "phpDocumentor",
  2477. "phpdoc",
  2478. "reflection",
  2479. "static analysis"
  2480. ],
  2481. "support": {
  2482. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2483. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2484. },
  2485. "time": "2020-06-27T09:03:43+00:00"
  2486. },
  2487. {
  2488. "name": "phpdocumentor/reflection-docblock",
  2489. "version": "5.3.0",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2493. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2498. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2499. "shasum": ""
  2500. },
  2501. "require": {
  2502. "ext-filter": "*",
  2503. "php": "^7.2 || ^8.0",
  2504. "phpdocumentor/reflection-common": "^2.2",
  2505. "phpdocumentor/type-resolver": "^1.3",
  2506. "webmozart/assert": "^1.9.1"
  2507. },
  2508. "require-dev": {
  2509. "mockery/mockery": "~1.3.2",
  2510. "psalm/phar": "^4.8"
  2511. },
  2512. "type": "library",
  2513. "extra": {
  2514. "branch-alias": {
  2515. "dev-master": "5.x-dev"
  2516. }
  2517. },
  2518. "autoload": {
  2519. "psr-4": {
  2520. "phpDocumentor\\Reflection\\": "src"
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "Mike van Riel",
  2530. "email": "me@mikevanriel.com"
  2531. },
  2532. {
  2533. "name": "Jaap van Otterdijk",
  2534. "email": "account@ijaap.nl"
  2535. }
  2536. ],
  2537. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2538. "support": {
  2539. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2540. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2541. },
  2542. "time": "2021-10-19T17:43:47+00:00"
  2543. },
  2544. {
  2545. "name": "phpdocumentor/type-resolver",
  2546. "version": "1.7.2",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2550. "reference": "b2fe4d22a5426f38e014855322200b97b5362c0d"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b2fe4d22a5426f38e014855322200b97b5362c0d",
  2555. "reference": "b2fe4d22a5426f38e014855322200b97b5362c0d",
  2556. "shasum": ""
  2557. },
  2558. "require": {
  2559. "doctrine/deprecations": "^1.0",
  2560. "php": "^7.4 || ^8.0",
  2561. "phpdocumentor/reflection-common": "^2.0",
  2562. "phpstan/phpdoc-parser": "^1.13"
  2563. },
  2564. "require-dev": {
  2565. "ext-tokenizer": "*",
  2566. "phpbench/phpbench": "^1.2",
  2567. "phpstan/extension-installer": "^1.1",
  2568. "phpstan/phpstan": "^1.8",
  2569. "phpstan/phpstan-phpunit": "^1.1",
  2570. "phpunit/phpunit": "^9.5",
  2571. "rector/rector": "^0.13.9",
  2572. "vimeo/psalm": "^4.25"
  2573. },
  2574. "type": "library",
  2575. "extra": {
  2576. "branch-alias": {
  2577. "dev-1.x": "1.x-dev"
  2578. }
  2579. },
  2580. "autoload": {
  2581. "psr-4": {
  2582. "phpDocumentor\\Reflection\\": "src"
  2583. }
  2584. },
  2585. "notification-url": "https://packagist.org/downloads/",
  2586. "license": [
  2587. "MIT"
  2588. ],
  2589. "authors": [
  2590. {
  2591. "name": "Mike van Riel",
  2592. "email": "me@mikevanriel.com"
  2593. }
  2594. ],
  2595. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2596. "support": {
  2597. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2598. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.2"
  2599. },
  2600. "time": "2023-05-30T18:13:47+00:00"
  2601. },
  2602. {
  2603. "name": "phpstan/phpdoc-parser",
  2604. "version": "1.22.1",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2608. "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/65c39594fbd8c67abfc68bb323f86447bab79cc0",
  2613. "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "php": "^7.2 || ^8.0"
  2618. },
  2619. "require-dev": {
  2620. "doctrine/annotations": "^2.0",
  2621. "nikic/php-parser": "^4.15",
  2622. "php-parallel-lint/php-parallel-lint": "^1.2",
  2623. "phpstan/extension-installer": "^1.0",
  2624. "phpstan/phpstan": "^1.5",
  2625. "phpstan/phpstan-phpunit": "^1.1",
  2626. "phpstan/phpstan-strict-rules": "^1.0",
  2627. "phpunit/phpunit": "^9.5",
  2628. "symfony/process": "^5.2"
  2629. },
  2630. "type": "library",
  2631. "autoload": {
  2632. "psr-4": {
  2633. "PHPStan\\PhpDocParser\\": [
  2634. "src/"
  2635. ]
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2643. "support": {
  2644. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2645. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.22.1"
  2646. },
  2647. "time": "2023-06-29T20:46:06+00:00"
  2648. },
  2649. {
  2650. "name": "psr/cache",
  2651. "version": "3.0.0",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://github.com/php-fig/cache.git",
  2655. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2660. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2661. "shasum": ""
  2662. },
  2663. "require": {
  2664. "php": ">=8.0.0"
  2665. },
  2666. "type": "library",
  2667. "extra": {
  2668. "branch-alias": {
  2669. "dev-master": "1.0.x-dev"
  2670. }
  2671. },
  2672. "autoload": {
  2673. "psr-4": {
  2674. "Psr\\Cache\\": "src/"
  2675. }
  2676. },
  2677. "notification-url": "https://packagist.org/downloads/",
  2678. "license": [
  2679. "MIT"
  2680. ],
  2681. "authors": [
  2682. {
  2683. "name": "PHP-FIG",
  2684. "homepage": "https://www.php-fig.org/"
  2685. }
  2686. ],
  2687. "description": "Common interface for caching libraries",
  2688. "keywords": [
  2689. "cache",
  2690. "psr",
  2691. "psr-6"
  2692. ],
  2693. "support": {
  2694. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2695. },
  2696. "time": "2021-02-03T23:26:27+00:00"
  2697. },
  2698. {
  2699. "name": "psr/clock",
  2700. "version": "1.0.0",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://github.com/php-fig/clock.git",
  2704. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2709. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2710. "shasum": ""
  2711. },
  2712. "require": {
  2713. "php": "^7.0 || ^8.0"
  2714. },
  2715. "type": "library",
  2716. "autoload": {
  2717. "psr-4": {
  2718. "Psr\\Clock\\": "src/"
  2719. }
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "PHP-FIG",
  2728. "homepage": "https://www.php-fig.org/"
  2729. }
  2730. ],
  2731. "description": "Common interface for reading the clock.",
  2732. "homepage": "https://github.com/php-fig/clock",
  2733. "keywords": [
  2734. "clock",
  2735. "now",
  2736. "psr",
  2737. "psr-20",
  2738. "time"
  2739. ],
  2740. "support": {
  2741. "issues": "https://github.com/php-fig/clock/issues",
  2742. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2743. },
  2744. "time": "2022-11-25T14:36:26+00:00"
  2745. },
  2746. {
  2747. "name": "psr/container",
  2748. "version": "2.0.2",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/php-fig/container.git",
  2752. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2757. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "php": ">=7.4.0"
  2762. },
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-master": "2.0.x-dev"
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Psr\\Container\\": "src/"
  2772. }
  2773. },
  2774. "notification-url": "https://packagist.org/downloads/",
  2775. "license": [
  2776. "MIT"
  2777. ],
  2778. "authors": [
  2779. {
  2780. "name": "PHP-FIG",
  2781. "homepage": "https://www.php-fig.org/"
  2782. }
  2783. ],
  2784. "description": "Common Container Interface (PHP FIG PSR-11)",
  2785. "homepage": "https://github.com/php-fig/container",
  2786. "keywords": [
  2787. "PSR-11",
  2788. "container",
  2789. "container-interface",
  2790. "container-interop",
  2791. "psr"
  2792. ],
  2793. "support": {
  2794. "issues": "https://github.com/php-fig/container/issues",
  2795. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2796. },
  2797. "time": "2021-11-05T16:47:00+00:00"
  2798. },
  2799. {
  2800. "name": "psr/event-dispatcher",
  2801. "version": "1.0.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://github.com/php-fig/event-dispatcher.git",
  2805. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2810. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2811. "shasum": ""
  2812. },
  2813. "require": {
  2814. "php": ">=7.2.0"
  2815. },
  2816. "type": "library",
  2817. "extra": {
  2818. "branch-alias": {
  2819. "dev-master": "1.0.x-dev"
  2820. }
  2821. },
  2822. "autoload": {
  2823. "psr-4": {
  2824. "Psr\\EventDispatcher\\": "src/"
  2825. }
  2826. },
  2827. "notification-url": "https://packagist.org/downloads/",
  2828. "license": [
  2829. "MIT"
  2830. ],
  2831. "authors": [
  2832. {
  2833. "name": "PHP-FIG",
  2834. "homepage": "http://www.php-fig.org/"
  2835. }
  2836. ],
  2837. "description": "Standard interfaces for event handling.",
  2838. "keywords": [
  2839. "events",
  2840. "psr",
  2841. "psr-14"
  2842. ],
  2843. "support": {
  2844. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2845. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2846. },
  2847. "time": "2019-01-08T18:20:26+00:00"
  2848. },
  2849. {
  2850. "name": "psr/http-message",
  2851. "version": "1.1",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/php-fig/http-message.git",
  2855. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2860. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2861. "shasum": ""
  2862. },
  2863. "require": {
  2864. "php": "^7.2 || ^8.0"
  2865. },
  2866. "type": "library",
  2867. "extra": {
  2868. "branch-alias": {
  2869. "dev-master": "1.1.x-dev"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Psr\\Http\\Message\\": "src/"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "PHP-FIG",
  2884. "homepage": "http://www.php-fig.org/"
  2885. }
  2886. ],
  2887. "description": "Common interface for HTTP messages",
  2888. "homepage": "https://github.com/php-fig/http-message",
  2889. "keywords": [
  2890. "http",
  2891. "http-message",
  2892. "psr",
  2893. "psr-7",
  2894. "request",
  2895. "response"
  2896. ],
  2897. "support": {
  2898. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2899. },
  2900. "time": "2023-04-04T09:50:52+00:00"
  2901. },
  2902. {
  2903. "name": "psr/link",
  2904. "version": "2.0.1",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/php-fig/link.git",
  2908. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2913. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "php": ">=8.0.0"
  2918. },
  2919. "suggest": {
  2920. "fig/link-util": "Provides some useful PSR-13 utilities"
  2921. },
  2922. "type": "library",
  2923. "extra": {
  2924. "branch-alias": {
  2925. "dev-master": "2.0.x-dev"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Psr\\Link\\": "src/"
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "PHP-FIG",
  2940. "homepage": "http://www.php-fig.org/"
  2941. }
  2942. ],
  2943. "description": "Common interfaces for HTTP links",
  2944. "homepage": "https://github.com/php-fig/link",
  2945. "keywords": [
  2946. "http",
  2947. "http-link",
  2948. "link",
  2949. "psr",
  2950. "psr-13",
  2951. "rest"
  2952. ],
  2953. "support": {
  2954. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2955. },
  2956. "time": "2021-03-11T23:00:27+00:00"
  2957. },
  2958. {
  2959. "name": "psr/log",
  2960. "version": "3.0.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/php-fig/log.git",
  2964. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2969. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "php": ">=8.0.0"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-master": "3.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Psr\\Log\\": "src"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "PHP-FIG",
  2993. "homepage": "https://www.php-fig.org/"
  2994. }
  2995. ],
  2996. "description": "Common interface for logging libraries",
  2997. "homepage": "https://github.com/php-fig/log",
  2998. "keywords": [
  2999. "log",
  3000. "psr",
  3001. "psr-3"
  3002. ],
  3003. "support": {
  3004. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3005. },
  3006. "time": "2021-07-14T16:46:02+00:00"
  3007. },
  3008. {
  3009. "name": "symfony/apache-pack",
  3010. "version": "v1.0.1",
  3011. "source": {
  3012. "type": "git",
  3013. "url": "https://github.com/symfony/apache-pack.git",
  3014. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3015. },
  3016. "dist": {
  3017. "type": "zip",
  3018. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3019. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3020. "shasum": ""
  3021. },
  3022. "type": "symfony-pack",
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "description": "A pack for Apache support in Symfony",
  3028. "support": {
  3029. "issues": "https://github.com/symfony/apache-pack/issues",
  3030. "source": "https://github.com/symfony/apache-pack/tree/master"
  3031. },
  3032. "time": "2017-12-12T01:46:35+00:00"
  3033. },
  3034. {
  3035. "name": "symfony/asset",
  3036. "version": "v6.3.0",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/symfony/asset.git",
  3040. "reference": "b77a4cc8e266b7e0db688de740f9ee7253aa411c"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/symfony/asset/zipball/b77a4cc8e266b7e0db688de740f9ee7253aa411c",
  3045. "reference": "b77a4cc8e266b7e0db688de740f9ee7253aa411c",
  3046. "shasum": ""
  3047. },
  3048. "require": {
  3049. "php": ">=8.1"
  3050. },
  3051. "conflict": {
  3052. "symfony/http-foundation": "<5.4"
  3053. },
  3054. "require-dev": {
  3055. "symfony/http-client": "^5.4|^6.0",
  3056. "symfony/http-foundation": "^5.4|^6.0",
  3057. "symfony/http-kernel": "^5.4|^6.0"
  3058. },
  3059. "type": "library",
  3060. "autoload": {
  3061. "psr-4": {
  3062. "Symfony\\Component\\Asset\\": ""
  3063. },
  3064. "exclude-from-classmap": [
  3065. "/Tests/"
  3066. ]
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "Fabien Potencier",
  3075. "email": "fabien@symfony.com"
  3076. },
  3077. {
  3078. "name": "Symfony Community",
  3079. "homepage": "https://symfony.com/contributors"
  3080. }
  3081. ],
  3082. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3083. "homepage": "https://symfony.com",
  3084. "support": {
  3085. "source": "https://github.com/symfony/asset/tree/v6.3.0"
  3086. },
  3087. "funding": [
  3088. {
  3089. "url": "https://symfony.com/sponsor",
  3090. "type": "custom"
  3091. },
  3092. {
  3093. "url": "https://github.com/fabpot",
  3094. "type": "github"
  3095. },
  3096. {
  3097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3098. "type": "tidelift"
  3099. }
  3100. ],
  3101. "time": "2023-04-21T14:41:17+00:00"
  3102. },
  3103. {
  3104. "name": "symfony/cache",
  3105. "version": "v6.3.1",
  3106. "source": {
  3107. "type": "git",
  3108. "url": "https://github.com/symfony/cache.git",
  3109. "reference": "52cff7608ef6e38376ac11bd1fbb0a220107f066"
  3110. },
  3111. "dist": {
  3112. "type": "zip",
  3113. "url": "https://api.github.com/repos/symfony/cache/zipball/52cff7608ef6e38376ac11bd1fbb0a220107f066",
  3114. "reference": "52cff7608ef6e38376ac11bd1fbb0a220107f066",
  3115. "shasum": ""
  3116. },
  3117. "require": {
  3118. "php": ">=8.1",
  3119. "psr/cache": "^2.0|^3.0",
  3120. "psr/log": "^1.1|^2|^3",
  3121. "symfony/cache-contracts": "^2.5|^3",
  3122. "symfony/service-contracts": "^2.5|^3",
  3123. "symfony/var-exporter": "^6.2.10"
  3124. },
  3125. "conflict": {
  3126. "doctrine/dbal": "<2.13.1",
  3127. "symfony/dependency-injection": "<5.4",
  3128. "symfony/http-kernel": "<5.4",
  3129. "symfony/var-dumper": "<5.4"
  3130. },
  3131. "provide": {
  3132. "psr/cache-implementation": "2.0|3.0",
  3133. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3134. "symfony/cache-implementation": "1.1|2.0|3.0"
  3135. },
  3136. "require-dev": {
  3137. "cache/integration-tests": "dev-master",
  3138. "doctrine/dbal": "^2.13.1|^3.0",
  3139. "predis/predis": "^1.1|^2.0",
  3140. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3141. "symfony/config": "^5.4|^6.0",
  3142. "symfony/dependency-injection": "^5.4|^6.0",
  3143. "symfony/filesystem": "^5.4|^6.0",
  3144. "symfony/http-kernel": "^5.4|^6.0",
  3145. "symfony/messenger": "^5.4|^6.0",
  3146. "symfony/var-dumper": "^5.4|^6.0"
  3147. },
  3148. "type": "library",
  3149. "autoload": {
  3150. "psr-4": {
  3151. "Symfony\\Component\\Cache\\": ""
  3152. },
  3153. "classmap": [
  3154. "Traits/ValueWrapper.php"
  3155. ],
  3156. "exclude-from-classmap": [
  3157. "/Tests/"
  3158. ]
  3159. },
  3160. "notification-url": "https://packagist.org/downloads/",
  3161. "license": [
  3162. "MIT"
  3163. ],
  3164. "authors": [
  3165. {
  3166. "name": "Nicolas Grekas",
  3167. "email": "p@tchwork.com"
  3168. },
  3169. {
  3170. "name": "Symfony Community",
  3171. "homepage": "https://symfony.com/contributors"
  3172. }
  3173. ],
  3174. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3175. "homepage": "https://symfony.com",
  3176. "keywords": [
  3177. "caching",
  3178. "psr6"
  3179. ],
  3180. "support": {
  3181. "source": "https://github.com/symfony/cache/tree/v6.3.1"
  3182. },
  3183. "funding": [
  3184. {
  3185. "url": "https://symfony.com/sponsor",
  3186. "type": "custom"
  3187. },
  3188. {
  3189. "url": "https://github.com/fabpot",
  3190. "type": "github"
  3191. },
  3192. {
  3193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3194. "type": "tidelift"
  3195. }
  3196. ],
  3197. "time": "2023-06-24T11:51:27+00:00"
  3198. },
  3199. {
  3200. "name": "symfony/cache-contracts",
  3201. "version": "v3.3.0",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/symfony/cache-contracts.git",
  3205. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  3210. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  3211. "shasum": ""
  3212. },
  3213. "require": {
  3214. "php": ">=8.1",
  3215. "psr/cache": "^3.0"
  3216. },
  3217. "type": "library",
  3218. "extra": {
  3219. "branch-alias": {
  3220. "dev-main": "3.4-dev"
  3221. },
  3222. "thanks": {
  3223. "name": "symfony/contracts",
  3224. "url": "https://github.com/symfony/contracts"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "psr-4": {
  3229. "Symfony\\Contracts\\Cache\\": ""
  3230. }
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "MIT"
  3235. ],
  3236. "authors": [
  3237. {
  3238. "name": "Nicolas Grekas",
  3239. "email": "p@tchwork.com"
  3240. },
  3241. {
  3242. "name": "Symfony Community",
  3243. "homepage": "https://symfony.com/contributors"
  3244. }
  3245. ],
  3246. "description": "Generic abstractions related to caching",
  3247. "homepage": "https://symfony.com",
  3248. "keywords": [
  3249. "abstractions",
  3250. "contracts",
  3251. "decoupling",
  3252. "interfaces",
  3253. "interoperability",
  3254. "standards"
  3255. ],
  3256. "support": {
  3257. "source": "https://github.com/symfony/cache-contracts/tree/v3.3.0"
  3258. },
  3259. "funding": [
  3260. {
  3261. "url": "https://symfony.com/sponsor",
  3262. "type": "custom"
  3263. },
  3264. {
  3265. "url": "https://github.com/fabpot",
  3266. "type": "github"
  3267. },
  3268. {
  3269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3270. "type": "tidelift"
  3271. }
  3272. ],
  3273. "time": "2023-05-23T14:45:45+00:00"
  3274. },
  3275. {
  3276. "name": "symfony/clock",
  3277. "version": "v6.3.1",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://github.com/symfony/clock.git",
  3281. "reference": "2c72817f85cbdd0ae4e49643514a889004934296"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://api.github.com/repos/symfony/clock/zipball/2c72817f85cbdd0ae4e49643514a889004934296",
  3286. "reference": "2c72817f85cbdd0ae4e49643514a889004934296",
  3287. "shasum": ""
  3288. },
  3289. "require": {
  3290. "php": ">=8.1",
  3291. "psr/clock": "^1.0"
  3292. },
  3293. "provide": {
  3294. "psr/clock-implementation": "1.0"
  3295. },
  3296. "type": "library",
  3297. "autoload": {
  3298. "files": [
  3299. "Resources/now.php"
  3300. ],
  3301. "psr-4": {
  3302. "Symfony\\Component\\Clock\\": ""
  3303. },
  3304. "exclude-from-classmap": [
  3305. "/Tests/"
  3306. ]
  3307. },
  3308. "notification-url": "https://packagist.org/downloads/",
  3309. "license": [
  3310. "MIT"
  3311. ],
  3312. "authors": [
  3313. {
  3314. "name": "Nicolas Grekas",
  3315. "email": "p@tchwork.com"
  3316. },
  3317. {
  3318. "name": "Symfony Community",
  3319. "homepage": "https://symfony.com/contributors"
  3320. }
  3321. ],
  3322. "description": "Decouples applications from the system clock",
  3323. "homepage": "https://symfony.com",
  3324. "keywords": [
  3325. "clock",
  3326. "psr20",
  3327. "time"
  3328. ],
  3329. "support": {
  3330. "source": "https://github.com/symfony/clock/tree/v6.3.1"
  3331. },
  3332. "funding": [
  3333. {
  3334. "url": "https://symfony.com/sponsor",
  3335. "type": "custom"
  3336. },
  3337. {
  3338. "url": "https://github.com/fabpot",
  3339. "type": "github"
  3340. },
  3341. {
  3342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3343. "type": "tidelift"
  3344. }
  3345. ],
  3346. "time": "2023-06-08T23:46:55+00:00"
  3347. },
  3348. {
  3349. "name": "symfony/config",
  3350. "version": "v6.3.0",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/symfony/config.git",
  3354. "reference": "a5e00dec161b08c946a2c16eed02adbeedf827ae"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/symfony/config/zipball/a5e00dec161b08c946a2c16eed02adbeedf827ae",
  3359. "reference": "a5e00dec161b08c946a2c16eed02adbeedf827ae",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "php": ">=8.1",
  3364. "symfony/deprecation-contracts": "^2.5|^3",
  3365. "symfony/filesystem": "^5.4|^6.0",
  3366. "symfony/polyfill-ctype": "~1.8"
  3367. },
  3368. "conflict": {
  3369. "symfony/finder": "<5.4",
  3370. "symfony/service-contracts": "<2.5"
  3371. },
  3372. "require-dev": {
  3373. "symfony/event-dispatcher": "^5.4|^6.0",
  3374. "symfony/finder": "^5.4|^6.0",
  3375. "symfony/messenger": "^5.4|^6.0",
  3376. "symfony/service-contracts": "^2.5|^3",
  3377. "symfony/yaml": "^5.4|^6.0"
  3378. },
  3379. "type": "library",
  3380. "autoload": {
  3381. "psr-4": {
  3382. "Symfony\\Component\\Config\\": ""
  3383. },
  3384. "exclude-from-classmap": [
  3385. "/Tests/"
  3386. ]
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "MIT"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Fabien Potencier",
  3395. "email": "fabien@symfony.com"
  3396. },
  3397. {
  3398. "name": "Symfony Community",
  3399. "homepage": "https://symfony.com/contributors"
  3400. }
  3401. ],
  3402. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3403. "homepage": "https://symfony.com",
  3404. "support": {
  3405. "source": "https://github.com/symfony/config/tree/v6.3.0"
  3406. },
  3407. "funding": [
  3408. {
  3409. "url": "https://symfony.com/sponsor",
  3410. "type": "custom"
  3411. },
  3412. {
  3413. "url": "https://github.com/fabpot",
  3414. "type": "github"
  3415. },
  3416. {
  3417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3418. "type": "tidelift"
  3419. }
  3420. ],
  3421. "time": "2023-04-25T10:46:17+00:00"
  3422. },
  3423. {
  3424. "name": "symfony/console",
  3425. "version": "v6.3.0",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/symfony/console.git",
  3429. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  3434. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": ">=8.1",
  3439. "symfony/deprecation-contracts": "^2.5|^3",
  3440. "symfony/polyfill-mbstring": "~1.0",
  3441. "symfony/service-contracts": "^2.5|^3",
  3442. "symfony/string": "^5.4|^6.0"
  3443. },
  3444. "conflict": {
  3445. "symfony/dependency-injection": "<5.4",
  3446. "symfony/dotenv": "<5.4",
  3447. "symfony/event-dispatcher": "<5.4",
  3448. "symfony/lock": "<5.4",
  3449. "symfony/process": "<5.4"
  3450. },
  3451. "provide": {
  3452. "psr/log-implementation": "1.0|2.0|3.0"
  3453. },
  3454. "require-dev": {
  3455. "psr/log": "^1|^2|^3",
  3456. "symfony/config": "^5.4|^6.0",
  3457. "symfony/dependency-injection": "^5.4|^6.0",
  3458. "symfony/event-dispatcher": "^5.4|^6.0",
  3459. "symfony/lock": "^5.4|^6.0",
  3460. "symfony/process": "^5.4|^6.0",
  3461. "symfony/var-dumper": "^5.4|^6.0"
  3462. },
  3463. "type": "library",
  3464. "autoload": {
  3465. "psr-4": {
  3466. "Symfony\\Component\\Console\\": ""
  3467. },
  3468. "exclude-from-classmap": [
  3469. "/Tests/"
  3470. ]
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "Fabien Potencier",
  3479. "email": "fabien@symfony.com"
  3480. },
  3481. {
  3482. "name": "Symfony Community",
  3483. "homepage": "https://symfony.com/contributors"
  3484. }
  3485. ],
  3486. "description": "Eases the creation of beautiful and testable command line interfaces",
  3487. "homepage": "https://symfony.com",
  3488. "keywords": [
  3489. "cli",
  3490. "command-line",
  3491. "console",
  3492. "terminal"
  3493. ],
  3494. "support": {
  3495. "source": "https://github.com/symfony/console/tree/v6.3.0"
  3496. },
  3497. "funding": [
  3498. {
  3499. "url": "https://symfony.com/sponsor",
  3500. "type": "custom"
  3501. },
  3502. {
  3503. "url": "https://github.com/fabpot",
  3504. "type": "github"
  3505. },
  3506. {
  3507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3508. "type": "tidelift"
  3509. }
  3510. ],
  3511. "time": "2023-05-29T12:49:39+00:00"
  3512. },
  3513. {
  3514. "name": "symfony/dependency-injection",
  3515. "version": "v6.3.1",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://github.com/symfony/dependency-injection.git",
  3519. "reference": "7abf242af21f196b65f20ab00ff251fdf3889b8d"
  3520. },
  3521. "dist": {
  3522. "type": "zip",
  3523. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/7abf242af21f196b65f20ab00ff251fdf3889b8d",
  3524. "reference": "7abf242af21f196b65f20ab00ff251fdf3889b8d",
  3525. "shasum": ""
  3526. },
  3527. "require": {
  3528. "php": ">=8.1",
  3529. "psr/container": "^1.1|^2.0",
  3530. "symfony/deprecation-contracts": "^2.5|^3",
  3531. "symfony/service-contracts": "^2.5|^3.0",
  3532. "symfony/var-exporter": "^6.2.10"
  3533. },
  3534. "conflict": {
  3535. "ext-psr": "<1.1|>=2",
  3536. "symfony/config": "<6.1",
  3537. "symfony/finder": "<5.4",
  3538. "symfony/proxy-manager-bridge": "<6.3",
  3539. "symfony/yaml": "<5.4"
  3540. },
  3541. "provide": {
  3542. "psr/container-implementation": "1.1|2.0",
  3543. "symfony/service-implementation": "1.1|2.0|3.0"
  3544. },
  3545. "require-dev": {
  3546. "symfony/config": "^6.1",
  3547. "symfony/expression-language": "^5.4|^6.0",
  3548. "symfony/yaml": "^5.4|^6.0"
  3549. },
  3550. "type": "library",
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Symfony\\Component\\DependencyInjection\\": ""
  3554. },
  3555. "exclude-from-classmap": [
  3556. "/Tests/"
  3557. ]
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "MIT"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "Fabien Potencier",
  3566. "email": "fabien@symfony.com"
  3567. },
  3568. {
  3569. "name": "Symfony Community",
  3570. "homepage": "https://symfony.com/contributors"
  3571. }
  3572. ],
  3573. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3574. "homepage": "https://symfony.com",
  3575. "support": {
  3576. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.1"
  3577. },
  3578. "funding": [
  3579. {
  3580. "url": "https://symfony.com/sponsor",
  3581. "type": "custom"
  3582. },
  3583. {
  3584. "url": "https://github.com/fabpot",
  3585. "type": "github"
  3586. },
  3587. {
  3588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3589. "type": "tidelift"
  3590. }
  3591. ],
  3592. "time": "2023-06-24T11:51:27+00:00"
  3593. },
  3594. {
  3595. "name": "symfony/deprecation-contracts",
  3596. "version": "v3.3.0",
  3597. "source": {
  3598. "type": "git",
  3599. "url": "https://github.com/symfony/deprecation-contracts.git",
  3600. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  3601. },
  3602. "dist": {
  3603. "type": "zip",
  3604. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  3605. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  3606. "shasum": ""
  3607. },
  3608. "require": {
  3609. "php": ">=8.1"
  3610. },
  3611. "type": "library",
  3612. "extra": {
  3613. "branch-alias": {
  3614. "dev-main": "3.4-dev"
  3615. },
  3616. "thanks": {
  3617. "name": "symfony/contracts",
  3618. "url": "https://github.com/symfony/contracts"
  3619. }
  3620. },
  3621. "autoload": {
  3622. "files": [
  3623. "function.php"
  3624. ]
  3625. },
  3626. "notification-url": "https://packagist.org/downloads/",
  3627. "license": [
  3628. "MIT"
  3629. ],
  3630. "authors": [
  3631. {
  3632. "name": "Nicolas Grekas",
  3633. "email": "p@tchwork.com"
  3634. },
  3635. {
  3636. "name": "Symfony Community",
  3637. "homepage": "https://symfony.com/contributors"
  3638. }
  3639. ],
  3640. "description": "A generic function and convention to trigger deprecation notices",
  3641. "homepage": "https://symfony.com",
  3642. "support": {
  3643. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  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": "2023-05-23T14:45:45+00:00"
  3660. },
  3661. {
  3662. "name": "symfony/doctrine-bridge",
  3663. "version": "v6.3.1",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/symfony/doctrine-bridge.git",
  3667. "reference": "594263c7d2677022a16e4f39d20070463ba03888"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/594263c7d2677022a16e4f39d20070463ba03888",
  3672. "reference": "594263c7d2677022a16e4f39d20070463ba03888",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "doctrine/event-manager": "^1.2|^2",
  3677. "doctrine/persistence": "^2|^3",
  3678. "php": ">=8.1",
  3679. "symfony/deprecation-contracts": "^2.5|^3",
  3680. "symfony/polyfill-ctype": "~1.8",
  3681. "symfony/polyfill-mbstring": "~1.0",
  3682. "symfony/service-contracts": "^2.5|^3"
  3683. },
  3684. "conflict": {
  3685. "doctrine/annotations": "<1.13.1",
  3686. "doctrine/dbal": "<2.13.1",
  3687. "doctrine/lexer": "<1.1",
  3688. "doctrine/orm": "<2.12",
  3689. "symfony/cache": "<5.4",
  3690. "symfony/dependency-injection": "<6.2",
  3691. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3692. "symfony/http-foundation": "<6.3",
  3693. "symfony/http-kernel": "<6.2",
  3694. "symfony/lock": "<6.3",
  3695. "symfony/messenger": "<5.4",
  3696. "symfony/property-info": "<5.4",
  3697. "symfony/security-bundle": "<5.4",
  3698. "symfony/security-core": "<6.0",
  3699. "symfony/validator": "<5.4.25|>=6,<6.2.12|>=6.3,<6.3.1"
  3700. },
  3701. "require-dev": {
  3702. "doctrine/annotations": "^1.13.1|^2",
  3703. "doctrine/collections": "^1.0|^2.0",
  3704. "doctrine/data-fixtures": "^1.1",
  3705. "doctrine/dbal": "^2.13.1|^3.0",
  3706. "doctrine/orm": "^2.12",
  3707. "psr/log": "^1|^2|^3",
  3708. "symfony/cache": "^5.4|^6.0",
  3709. "symfony/config": "^5.4|^6.0",
  3710. "symfony/dependency-injection": "^6.2",
  3711. "symfony/doctrine-messenger": "^5.4|^6.0",
  3712. "symfony/expression-language": "^5.4|^6.0",
  3713. "symfony/form": "^5.4.21|^6.2.7",
  3714. "symfony/http-kernel": "^6.3",
  3715. "symfony/lock": "^6.3",
  3716. "symfony/messenger": "^5.4|^6.0",
  3717. "symfony/property-access": "^5.4|^6.0",
  3718. "symfony/property-info": "^5.4|^6.0",
  3719. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3720. "symfony/security-core": "^6.0",
  3721. "symfony/stopwatch": "^5.4|^6.0",
  3722. "symfony/translation": "^5.4|^6.0",
  3723. "symfony/uid": "^5.4|^6.0",
  3724. "symfony/validator": "^5.4.25|~6.2.12|^6.3.1",
  3725. "symfony/var-dumper": "^5.4|^6.0"
  3726. },
  3727. "type": "symfony-bridge",
  3728. "autoload": {
  3729. "psr-4": {
  3730. "Symfony\\Bridge\\Doctrine\\": ""
  3731. },
  3732. "exclude-from-classmap": [
  3733. "/Tests/"
  3734. ]
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "Fabien Potencier",
  3743. "email": "fabien@symfony.com"
  3744. },
  3745. {
  3746. "name": "Symfony Community",
  3747. "homepage": "https://symfony.com/contributors"
  3748. }
  3749. ],
  3750. "description": "Provides integration for Doctrine with various Symfony components",
  3751. "homepage": "https://symfony.com",
  3752. "support": {
  3753. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.3.1"
  3754. },
  3755. "funding": [
  3756. {
  3757. "url": "https://symfony.com/sponsor",
  3758. "type": "custom"
  3759. },
  3760. {
  3761. "url": "https://github.com/fabpot",
  3762. "type": "github"
  3763. },
  3764. {
  3765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3766. "type": "tidelift"
  3767. }
  3768. ],
  3769. "time": "2023-06-18T20:33:34+00:00"
  3770. },
  3771. {
  3772. "name": "symfony/dotenv",
  3773. "version": "v6.3.0",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/symfony/dotenv.git",
  3777. "reference": "ceadb434fe2a6763a03d2d110441745834f3dd1e"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/symfony/dotenv/zipball/ceadb434fe2a6763a03d2d110441745834f3dd1e",
  3782. "reference": "ceadb434fe2a6763a03d2d110441745834f3dd1e",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "php": ">=8.1"
  3787. },
  3788. "conflict": {
  3789. "symfony/console": "<5.4",
  3790. "symfony/process": "<5.4"
  3791. },
  3792. "require-dev": {
  3793. "symfony/console": "^5.4|^6.0",
  3794. "symfony/process": "^5.4|^6.0"
  3795. },
  3796. "type": "library",
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Symfony\\Component\\Dotenv\\": ""
  3800. },
  3801. "exclude-from-classmap": [
  3802. "/Tests/"
  3803. ]
  3804. },
  3805. "notification-url": "https://packagist.org/downloads/",
  3806. "license": [
  3807. "MIT"
  3808. ],
  3809. "authors": [
  3810. {
  3811. "name": "Fabien Potencier",
  3812. "email": "fabien@symfony.com"
  3813. },
  3814. {
  3815. "name": "Symfony Community",
  3816. "homepage": "https://symfony.com/contributors"
  3817. }
  3818. ],
  3819. "description": "Registers environment variables from a .env file",
  3820. "homepage": "https://symfony.com",
  3821. "keywords": [
  3822. "dotenv",
  3823. "env",
  3824. "environment"
  3825. ],
  3826. "support": {
  3827. "source": "https://github.com/symfony/dotenv/tree/v6.3.0"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://symfony.com/sponsor",
  3832. "type": "custom"
  3833. },
  3834. {
  3835. "url": "https://github.com/fabpot",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2023-04-21T14:41:17+00:00"
  3844. },
  3845. {
  3846. "name": "symfony/error-handler",
  3847. "version": "v6.3.0",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/symfony/error-handler.git",
  3851. "reference": "99d2d814a6351461af350ead4d963bd67451236f"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f",
  3856. "reference": "99d2d814a6351461af350ead4d963bd67451236f",
  3857. "shasum": ""
  3858. },
  3859. "require": {
  3860. "php": ">=8.1",
  3861. "psr/log": "^1|^2|^3",
  3862. "symfony/var-dumper": "^5.4|^6.0"
  3863. },
  3864. "conflict": {
  3865. "symfony/deprecation-contracts": "<2.5"
  3866. },
  3867. "require-dev": {
  3868. "symfony/deprecation-contracts": "^2.5|^3",
  3869. "symfony/http-kernel": "^5.4|^6.0",
  3870. "symfony/serializer": "^5.4|^6.0"
  3871. },
  3872. "bin": [
  3873. "Resources/bin/patch-type-declarations"
  3874. ],
  3875. "type": "library",
  3876. "autoload": {
  3877. "psr-4": {
  3878. "Symfony\\Component\\ErrorHandler\\": ""
  3879. },
  3880. "exclude-from-classmap": [
  3881. "/Tests/"
  3882. ]
  3883. },
  3884. "notification-url": "https://packagist.org/downloads/",
  3885. "license": [
  3886. "MIT"
  3887. ],
  3888. "authors": [
  3889. {
  3890. "name": "Fabien Potencier",
  3891. "email": "fabien@symfony.com"
  3892. },
  3893. {
  3894. "name": "Symfony Community",
  3895. "homepage": "https://symfony.com/contributors"
  3896. }
  3897. ],
  3898. "description": "Provides tools to manage errors and ease debugging PHP code",
  3899. "homepage": "https://symfony.com",
  3900. "support": {
  3901. "source": "https://github.com/symfony/error-handler/tree/v6.3.0"
  3902. },
  3903. "funding": [
  3904. {
  3905. "url": "https://symfony.com/sponsor",
  3906. "type": "custom"
  3907. },
  3908. {
  3909. "url": "https://github.com/fabpot",
  3910. "type": "github"
  3911. },
  3912. {
  3913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3914. "type": "tidelift"
  3915. }
  3916. ],
  3917. "time": "2023-05-10T12:03:13+00:00"
  3918. },
  3919. {
  3920. "name": "symfony/event-dispatcher",
  3921. "version": "v6.3.0",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://github.com/symfony/event-dispatcher.git",
  3925. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  3930. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  3931. "shasum": ""
  3932. },
  3933. "require": {
  3934. "php": ">=8.1",
  3935. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3936. },
  3937. "conflict": {
  3938. "symfony/dependency-injection": "<5.4",
  3939. "symfony/service-contracts": "<2.5"
  3940. },
  3941. "provide": {
  3942. "psr/event-dispatcher-implementation": "1.0",
  3943. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3944. },
  3945. "require-dev": {
  3946. "psr/log": "^1|^2|^3",
  3947. "symfony/config": "^5.4|^6.0",
  3948. "symfony/dependency-injection": "^5.4|^6.0",
  3949. "symfony/error-handler": "^5.4|^6.0",
  3950. "symfony/expression-language": "^5.4|^6.0",
  3951. "symfony/http-foundation": "^5.4|^6.0",
  3952. "symfony/service-contracts": "^2.5|^3",
  3953. "symfony/stopwatch": "^5.4|^6.0"
  3954. },
  3955. "type": "library",
  3956. "autoload": {
  3957. "psr-4": {
  3958. "Symfony\\Component\\EventDispatcher\\": ""
  3959. },
  3960. "exclude-from-classmap": [
  3961. "/Tests/"
  3962. ]
  3963. },
  3964. "notification-url": "https://packagist.org/downloads/",
  3965. "license": [
  3966. "MIT"
  3967. ],
  3968. "authors": [
  3969. {
  3970. "name": "Fabien Potencier",
  3971. "email": "fabien@symfony.com"
  3972. },
  3973. {
  3974. "name": "Symfony Community",
  3975. "homepage": "https://symfony.com/contributors"
  3976. }
  3977. ],
  3978. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3979. "homepage": "https://symfony.com",
  3980. "support": {
  3981. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0"
  3982. },
  3983. "funding": [
  3984. {
  3985. "url": "https://symfony.com/sponsor",
  3986. "type": "custom"
  3987. },
  3988. {
  3989. "url": "https://github.com/fabpot",
  3990. "type": "github"
  3991. },
  3992. {
  3993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3994. "type": "tidelift"
  3995. }
  3996. ],
  3997. "time": "2023-04-21T14:41:17+00:00"
  3998. },
  3999. {
  4000. "name": "symfony/event-dispatcher-contracts",
  4001. "version": "v3.3.0",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4005. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  4010. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  4011. "shasum": ""
  4012. },
  4013. "require": {
  4014. "php": ">=8.1",
  4015. "psr/event-dispatcher": "^1"
  4016. },
  4017. "type": "library",
  4018. "extra": {
  4019. "branch-alias": {
  4020. "dev-main": "3.4-dev"
  4021. },
  4022. "thanks": {
  4023. "name": "symfony/contracts",
  4024. "url": "https://github.com/symfony/contracts"
  4025. }
  4026. },
  4027. "autoload": {
  4028. "psr-4": {
  4029. "Symfony\\Contracts\\EventDispatcher\\": ""
  4030. }
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "MIT"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "Nicolas Grekas",
  4039. "email": "p@tchwork.com"
  4040. },
  4041. {
  4042. "name": "Symfony Community",
  4043. "homepage": "https://symfony.com/contributors"
  4044. }
  4045. ],
  4046. "description": "Generic abstractions related to dispatching event",
  4047. "homepage": "https://symfony.com",
  4048. "keywords": [
  4049. "abstractions",
  4050. "contracts",
  4051. "decoupling",
  4052. "interfaces",
  4053. "interoperability",
  4054. "standards"
  4055. ],
  4056. "support": {
  4057. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  4058. },
  4059. "funding": [
  4060. {
  4061. "url": "https://symfony.com/sponsor",
  4062. "type": "custom"
  4063. },
  4064. {
  4065. "url": "https://github.com/fabpot",
  4066. "type": "github"
  4067. },
  4068. {
  4069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4070. "type": "tidelift"
  4071. }
  4072. ],
  4073. "time": "2023-05-23T14:45:45+00:00"
  4074. },
  4075. {
  4076. "name": "symfony/expression-language",
  4077. "version": "v6.3.0",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/symfony/expression-language.git",
  4081. "reference": "6d560c4c80e7e328708efd923f93ad67e6a0c1c0"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/symfony/expression-language/zipball/6d560c4c80e7e328708efd923f93ad67e6a0c1c0",
  4086. "reference": "6d560c4c80e7e328708efd923f93ad67e6a0c1c0",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "php": ">=8.1",
  4091. "symfony/cache": "^5.4|^6.0",
  4092. "symfony/deprecation-contracts": "^2.5|^3",
  4093. "symfony/service-contracts": "^2.5|^3"
  4094. },
  4095. "type": "library",
  4096. "autoload": {
  4097. "psr-4": {
  4098. "Symfony\\Component\\ExpressionLanguage\\": ""
  4099. },
  4100. "exclude-from-classmap": [
  4101. "/Tests/"
  4102. ]
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "MIT"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "Fabien Potencier",
  4111. "email": "fabien@symfony.com"
  4112. },
  4113. {
  4114. "name": "Symfony Community",
  4115. "homepage": "https://symfony.com/contributors"
  4116. }
  4117. ],
  4118. "description": "Provides an engine that can compile and evaluate expressions",
  4119. "homepage": "https://symfony.com",
  4120. "support": {
  4121. "source": "https://github.com/symfony/expression-language/tree/v6.3.0"
  4122. },
  4123. "funding": [
  4124. {
  4125. "url": "https://symfony.com/sponsor",
  4126. "type": "custom"
  4127. },
  4128. {
  4129. "url": "https://github.com/fabpot",
  4130. "type": "github"
  4131. },
  4132. {
  4133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4134. "type": "tidelift"
  4135. }
  4136. ],
  4137. "time": "2023-04-28T16:05:33+00:00"
  4138. },
  4139. {
  4140. "name": "symfony/filesystem",
  4141. "version": "v6.3.1",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/symfony/filesystem.git",
  4145. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  4150. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  4151. "shasum": ""
  4152. },
  4153. "require": {
  4154. "php": ">=8.1",
  4155. "symfony/polyfill-ctype": "~1.8",
  4156. "symfony/polyfill-mbstring": "~1.8"
  4157. },
  4158. "type": "library",
  4159. "autoload": {
  4160. "psr-4": {
  4161. "Symfony\\Component\\Filesystem\\": ""
  4162. },
  4163. "exclude-from-classmap": [
  4164. "/Tests/"
  4165. ]
  4166. },
  4167. "notification-url": "https://packagist.org/downloads/",
  4168. "license": [
  4169. "MIT"
  4170. ],
  4171. "authors": [
  4172. {
  4173. "name": "Fabien Potencier",
  4174. "email": "fabien@symfony.com"
  4175. },
  4176. {
  4177. "name": "Symfony Community",
  4178. "homepage": "https://symfony.com/contributors"
  4179. }
  4180. ],
  4181. "description": "Provides basic utilities for the filesystem",
  4182. "homepage": "https://symfony.com",
  4183. "support": {
  4184. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  4185. },
  4186. "funding": [
  4187. {
  4188. "url": "https://symfony.com/sponsor",
  4189. "type": "custom"
  4190. },
  4191. {
  4192. "url": "https://github.com/fabpot",
  4193. "type": "github"
  4194. },
  4195. {
  4196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4197. "type": "tidelift"
  4198. }
  4199. ],
  4200. "time": "2023-06-01T08:30:39+00:00"
  4201. },
  4202. {
  4203. "name": "symfony/finder",
  4204. "version": "v6.3.0",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/symfony/finder.git",
  4208. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  4213. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  4214. "shasum": ""
  4215. },
  4216. "require": {
  4217. "php": ">=8.1"
  4218. },
  4219. "require-dev": {
  4220. "symfony/filesystem": "^6.0"
  4221. },
  4222. "type": "library",
  4223. "autoload": {
  4224. "psr-4": {
  4225. "Symfony\\Component\\Finder\\": ""
  4226. },
  4227. "exclude-from-classmap": [
  4228. "/Tests/"
  4229. ]
  4230. },
  4231. "notification-url": "https://packagist.org/downloads/",
  4232. "license": [
  4233. "MIT"
  4234. ],
  4235. "authors": [
  4236. {
  4237. "name": "Fabien Potencier",
  4238. "email": "fabien@symfony.com"
  4239. },
  4240. {
  4241. "name": "Symfony Community",
  4242. "homepage": "https://symfony.com/contributors"
  4243. }
  4244. ],
  4245. "description": "Finds files and directories via an intuitive fluent interface",
  4246. "homepage": "https://symfony.com",
  4247. "support": {
  4248. "source": "https://github.com/symfony/finder/tree/v6.3.0"
  4249. },
  4250. "funding": [
  4251. {
  4252. "url": "https://symfony.com/sponsor",
  4253. "type": "custom"
  4254. },
  4255. {
  4256. "url": "https://github.com/fabpot",
  4257. "type": "github"
  4258. },
  4259. {
  4260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4261. "type": "tidelift"
  4262. }
  4263. ],
  4264. "time": "2023-04-02T01:25:41+00:00"
  4265. },
  4266. {
  4267. "name": "symfony/flex",
  4268. "version": "v2.3.1",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://github.com/symfony/flex.git",
  4272. "reference": "3c9c3424efdafe33e0e3cfb5e87e50b34711fedf"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://api.github.com/repos/symfony/flex/zipball/3c9c3424efdafe33e0e3cfb5e87e50b34711fedf",
  4277. "reference": "3c9c3424efdafe33e0e3cfb5e87e50b34711fedf",
  4278. "shasum": ""
  4279. },
  4280. "require": {
  4281. "composer-plugin-api": "^2.1",
  4282. "php": ">=8.0"
  4283. },
  4284. "require-dev": {
  4285. "composer/composer": "^2.1",
  4286. "symfony/dotenv": "^5.4|^6.0",
  4287. "symfony/filesystem": "^5.4|^6.0",
  4288. "symfony/phpunit-bridge": "^5.4|^6.0",
  4289. "symfony/process": "^5.4|^6.0"
  4290. },
  4291. "type": "composer-plugin",
  4292. "extra": {
  4293. "class": "Symfony\\Flex\\Flex"
  4294. },
  4295. "autoload": {
  4296. "psr-4": {
  4297. "Symfony\\Flex\\": "src"
  4298. }
  4299. },
  4300. "notification-url": "https://packagist.org/downloads/",
  4301. "license": [
  4302. "MIT"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "Fabien Potencier",
  4307. "email": "fabien.potencier@gmail.com"
  4308. }
  4309. ],
  4310. "description": "Composer plugin for Symfony",
  4311. "support": {
  4312. "issues": "https://github.com/symfony/flex/issues",
  4313. "source": "https://github.com/symfony/flex/tree/v2.3.1"
  4314. },
  4315. "funding": [
  4316. {
  4317. "url": "https://symfony.com/sponsor",
  4318. "type": "custom"
  4319. },
  4320. {
  4321. "url": "https://github.com/fabpot",
  4322. "type": "github"
  4323. },
  4324. {
  4325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4326. "type": "tidelift"
  4327. }
  4328. ],
  4329. "time": "2023-05-27T07:38:25+00:00"
  4330. },
  4331. {
  4332. "name": "symfony/form",
  4333. "version": "v6.3.0",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/symfony/form.git",
  4337. "reference": "59e7c5afef32b9ff735e83e5fc74d63044833a2b"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/symfony/form/zipball/59e7c5afef32b9ff735e83e5fc74d63044833a2b",
  4342. "reference": "59e7c5afef32b9ff735e83e5fc74d63044833a2b",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "php": ">=8.1",
  4347. "symfony/deprecation-contracts": "^2.5|^3",
  4348. "symfony/event-dispatcher": "^5.4|^6.0",
  4349. "symfony/options-resolver": "^5.4|^6.0",
  4350. "symfony/polyfill-ctype": "~1.8",
  4351. "symfony/polyfill-intl-icu": "^1.21",
  4352. "symfony/polyfill-mbstring": "~1.0",
  4353. "symfony/property-access": "^5.4|^6.0",
  4354. "symfony/service-contracts": "^2.5|^3"
  4355. },
  4356. "conflict": {
  4357. "symfony/console": "<5.4",
  4358. "symfony/dependency-injection": "<5.4",
  4359. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4360. "symfony/error-handler": "<5.4",
  4361. "symfony/framework-bundle": "<5.4",
  4362. "symfony/http-kernel": "<5.4",
  4363. "symfony/translation": "<5.4",
  4364. "symfony/translation-contracts": "<2.5",
  4365. "symfony/twig-bridge": "<6.3"
  4366. },
  4367. "require-dev": {
  4368. "doctrine/collections": "^1.0|^2.0",
  4369. "symfony/config": "^5.4|^6.0",
  4370. "symfony/console": "^5.4|^6.0",
  4371. "symfony/dependency-injection": "^5.4|^6.0",
  4372. "symfony/expression-language": "^5.4|^6.0",
  4373. "symfony/html-sanitizer": "^6.1",
  4374. "symfony/http-foundation": "^5.4|^6.0",
  4375. "symfony/http-kernel": "^5.4|^6.0",
  4376. "symfony/intl": "^5.4|^6.0",
  4377. "symfony/security-core": "^6.2",
  4378. "symfony/security-csrf": "^5.4|^6.0",
  4379. "symfony/translation": "^5.4|^6.0",
  4380. "symfony/uid": "^5.4|^6.0",
  4381. "symfony/validator": "^5.4|^6.0",
  4382. "symfony/var-dumper": "^5.4|^6.0"
  4383. },
  4384. "type": "library",
  4385. "autoload": {
  4386. "psr-4": {
  4387. "Symfony\\Component\\Form\\": ""
  4388. },
  4389. "exclude-from-classmap": [
  4390. "/Tests/"
  4391. ]
  4392. },
  4393. "notification-url": "https://packagist.org/downloads/",
  4394. "license": [
  4395. "MIT"
  4396. ],
  4397. "authors": [
  4398. {
  4399. "name": "Fabien Potencier",
  4400. "email": "fabien@symfony.com"
  4401. },
  4402. {
  4403. "name": "Symfony Community",
  4404. "homepage": "https://symfony.com/contributors"
  4405. }
  4406. ],
  4407. "description": "Allows to easily create, process and reuse HTML forms",
  4408. "homepage": "https://symfony.com",
  4409. "support": {
  4410. "source": "https://github.com/symfony/form/tree/v6.3.0"
  4411. },
  4412. "funding": [
  4413. {
  4414. "url": "https://symfony.com/sponsor",
  4415. "type": "custom"
  4416. },
  4417. {
  4418. "url": "https://github.com/fabpot",
  4419. "type": "github"
  4420. },
  4421. {
  4422. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4423. "type": "tidelift"
  4424. }
  4425. ],
  4426. "time": "2023-05-25T13:09:35+00:00"
  4427. },
  4428. {
  4429. "name": "symfony/framework-bundle",
  4430. "version": "v6.3.1",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://github.com/symfony/framework-bundle.git",
  4434. "reference": "42b0707efba17ca7c6af7373cb1b1a1b4f24f772"
  4435. },
  4436. "dist": {
  4437. "type": "zip",
  4438. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/42b0707efba17ca7c6af7373cb1b1a1b4f24f772",
  4439. "reference": "42b0707efba17ca7c6af7373cb1b1a1b4f24f772",
  4440. "shasum": ""
  4441. },
  4442. "require": {
  4443. "composer-runtime-api": ">=2.1",
  4444. "ext-xml": "*",
  4445. "php": ">=8.1",
  4446. "symfony/cache": "^5.4|^6.0",
  4447. "symfony/config": "^6.1",
  4448. "symfony/dependency-injection": "^6.3.1",
  4449. "symfony/deprecation-contracts": "^2.5|^3",
  4450. "symfony/error-handler": "^6.1",
  4451. "symfony/event-dispatcher": "^5.4|^6.0",
  4452. "symfony/filesystem": "^5.4|^6.0",
  4453. "symfony/finder": "^5.4|^6.0",
  4454. "symfony/http-foundation": "^6.3",
  4455. "symfony/http-kernel": "^6.3",
  4456. "symfony/polyfill-mbstring": "~1.0",
  4457. "symfony/routing": "^5.4|^6.0"
  4458. },
  4459. "conflict": {
  4460. "doctrine/annotations": "<1.13.1",
  4461. "doctrine/persistence": "<1.3",
  4462. "phpdocumentor/reflection-docblock": "<3.2.2",
  4463. "phpdocumentor/type-resolver": "<1.4.0",
  4464. "symfony/asset": "<5.4",
  4465. "symfony/clock": "<6.3",
  4466. "symfony/console": "<5.4",
  4467. "symfony/dom-crawler": "<6.3",
  4468. "symfony/dotenv": "<5.4",
  4469. "symfony/form": "<5.4",
  4470. "symfony/http-client": "<6.3",
  4471. "symfony/lock": "<5.4",
  4472. "symfony/mailer": "<5.4",
  4473. "symfony/messenger": "<6.3",
  4474. "symfony/mime": "<6.2",
  4475. "symfony/property-access": "<5.4",
  4476. "symfony/property-info": "<5.4",
  4477. "symfony/security-core": "<5.4",
  4478. "symfony/security-csrf": "<5.4",
  4479. "symfony/serializer": "<6.3",
  4480. "symfony/stopwatch": "<5.4",
  4481. "symfony/translation": "<6.2.8",
  4482. "symfony/twig-bridge": "<5.4",
  4483. "symfony/twig-bundle": "<5.4",
  4484. "symfony/validator": "<6.3",
  4485. "symfony/web-profiler-bundle": "<5.4",
  4486. "symfony/workflow": "<5.4"
  4487. },
  4488. "require-dev": {
  4489. "doctrine/annotations": "^1.13.1|^2",
  4490. "doctrine/persistence": "^1.3|^2|^3",
  4491. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4492. "symfony/asset": "^5.4|^6.0",
  4493. "symfony/asset-mapper": "^6.3",
  4494. "symfony/browser-kit": "^5.4|^6.0",
  4495. "symfony/clock": "^6.2",
  4496. "symfony/console": "^5.4.9|^6.0.9",
  4497. "symfony/css-selector": "^5.4|^6.0",
  4498. "symfony/dom-crawler": "^6.3",
  4499. "symfony/dotenv": "^5.4|^6.0",
  4500. "symfony/expression-language": "^5.4|^6.0",
  4501. "symfony/form": "^5.4|^6.0",
  4502. "symfony/html-sanitizer": "^6.1",
  4503. "symfony/http-client": "^6.3",
  4504. "symfony/lock": "^5.4|^6.0",
  4505. "symfony/mailer": "^5.4|^6.0",
  4506. "symfony/messenger": "^6.3",
  4507. "symfony/mime": "^6.2",
  4508. "symfony/notifier": "^5.4|^6.0",
  4509. "symfony/polyfill-intl-icu": "~1.0",
  4510. "symfony/process": "^5.4|^6.0",
  4511. "symfony/property-info": "^5.4|^6.0",
  4512. "symfony/rate-limiter": "^5.4|^6.0",
  4513. "symfony/scheduler": "^6.3",
  4514. "symfony/security-bundle": "^5.4|^6.0",
  4515. "symfony/semaphore": "^5.4|^6.0",
  4516. "symfony/serializer": "^6.3",
  4517. "symfony/stopwatch": "^5.4|^6.0",
  4518. "symfony/string": "^5.4|^6.0",
  4519. "symfony/translation": "^6.2.8",
  4520. "symfony/twig-bundle": "^5.4|^6.0",
  4521. "symfony/uid": "^5.4|^6.0",
  4522. "symfony/validator": "^6.3",
  4523. "symfony/web-link": "^5.4|^6.0",
  4524. "symfony/workflow": "^5.4|^6.0",
  4525. "symfony/yaml": "^5.4|^6.0",
  4526. "twig/twig": "^2.10|^3.0"
  4527. },
  4528. "type": "symfony-bundle",
  4529. "autoload": {
  4530. "psr-4": {
  4531. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4532. },
  4533. "exclude-from-classmap": [
  4534. "/Tests/"
  4535. ]
  4536. },
  4537. "notification-url": "https://packagist.org/downloads/",
  4538. "license": [
  4539. "MIT"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Fabien Potencier",
  4544. "email": "fabien@symfony.com"
  4545. },
  4546. {
  4547. "name": "Symfony Community",
  4548. "homepage": "https://symfony.com/contributors"
  4549. }
  4550. ],
  4551. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4552. "homepage": "https://symfony.com",
  4553. "support": {
  4554. "source": "https://github.com/symfony/framework-bundle/tree/v6.3.1"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://symfony.com/sponsor",
  4559. "type": "custom"
  4560. },
  4561. {
  4562. "url": "https://github.com/fabpot",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2023-06-24T09:59:31+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/html-sanitizer",
  4574. "version": "v6.3.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/html-sanitizer.git",
  4578. "reference": "eae9b0a9ad7a2ed1963f819547d59ff99ad9e0fd"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/eae9b0a9ad7a2ed1963f819547d59ff99ad9e0fd",
  4583. "reference": "eae9b0a9ad7a2ed1963f819547d59ff99ad9e0fd",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "ext-dom": "*",
  4588. "league/uri": "^6.5",
  4589. "masterminds/html5": "^2.7.2",
  4590. "php": ">=8.1"
  4591. },
  4592. "type": "library",
  4593. "autoload": {
  4594. "psr-4": {
  4595. "Symfony\\Component\\HtmlSanitizer\\": ""
  4596. },
  4597. "exclude-from-classmap": [
  4598. "/Tests/"
  4599. ]
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "MIT"
  4604. ],
  4605. "authors": [
  4606. {
  4607. "name": "Titouan Galopin",
  4608. "email": "galopintitouan@gmail.com"
  4609. },
  4610. {
  4611. "name": "Symfony Community",
  4612. "homepage": "https://symfony.com/contributors"
  4613. }
  4614. ],
  4615. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4616. "homepage": "https://symfony.com",
  4617. "keywords": [
  4618. "Purifier",
  4619. "html",
  4620. "sanitizer"
  4621. ],
  4622. "support": {
  4623. "source": "https://github.com/symfony/html-sanitizer/tree/v6.3.0"
  4624. },
  4625. "funding": [
  4626. {
  4627. "url": "https://symfony.com/sponsor",
  4628. "type": "custom"
  4629. },
  4630. {
  4631. "url": "https://github.com/fabpot",
  4632. "type": "github"
  4633. },
  4634. {
  4635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4636. "type": "tidelift"
  4637. }
  4638. ],
  4639. "time": "2023-02-14T09:04:20+00:00"
  4640. },
  4641. {
  4642. "name": "symfony/http-client",
  4643. "version": "v6.3.1",
  4644. "source": {
  4645. "type": "git",
  4646. "url": "https://github.com/symfony/http-client.git",
  4647. "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123"
  4648. },
  4649. "dist": {
  4650. "type": "zip",
  4651. "url": "https://api.github.com/repos/symfony/http-client/zipball/1c828a06aef2f5eeba42026dfc532d4fc5406123",
  4652. "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123",
  4653. "shasum": ""
  4654. },
  4655. "require": {
  4656. "php": ">=8.1",
  4657. "psr/log": "^1|^2|^3",
  4658. "symfony/deprecation-contracts": "^2.5|^3",
  4659. "symfony/http-client-contracts": "^3",
  4660. "symfony/service-contracts": "^2.5|^3"
  4661. },
  4662. "conflict": {
  4663. "php-http/discovery": "<1.15",
  4664. "symfony/http-foundation": "<6.3"
  4665. },
  4666. "provide": {
  4667. "php-http/async-client-implementation": "*",
  4668. "php-http/client-implementation": "*",
  4669. "psr/http-client-implementation": "1.0",
  4670. "symfony/http-client-implementation": "3.0"
  4671. },
  4672. "require-dev": {
  4673. "amphp/amp": "^2.5",
  4674. "amphp/http-client": "^4.2.1",
  4675. "amphp/http-tunnel": "^1.0",
  4676. "amphp/socket": "^1.1",
  4677. "guzzlehttp/promises": "^1.4",
  4678. "nyholm/psr7": "^1.0",
  4679. "php-http/httplug": "^1.0|^2.0",
  4680. "psr/http-client": "^1.0",
  4681. "symfony/dependency-injection": "^5.4|^6.0",
  4682. "symfony/http-kernel": "^5.4|^6.0",
  4683. "symfony/process": "^5.4|^6.0",
  4684. "symfony/stopwatch": "^5.4|^6.0"
  4685. },
  4686. "type": "library",
  4687. "autoload": {
  4688. "psr-4": {
  4689. "Symfony\\Component\\HttpClient\\": ""
  4690. },
  4691. "exclude-from-classmap": [
  4692. "/Tests/"
  4693. ]
  4694. },
  4695. "notification-url": "https://packagist.org/downloads/",
  4696. "license": [
  4697. "MIT"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "Nicolas Grekas",
  4702. "email": "p@tchwork.com"
  4703. },
  4704. {
  4705. "name": "Symfony Community",
  4706. "homepage": "https://symfony.com/contributors"
  4707. }
  4708. ],
  4709. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4710. "homepage": "https://symfony.com",
  4711. "keywords": [
  4712. "http"
  4713. ],
  4714. "support": {
  4715. "source": "https://github.com/symfony/http-client/tree/v6.3.1"
  4716. },
  4717. "funding": [
  4718. {
  4719. "url": "https://symfony.com/sponsor",
  4720. "type": "custom"
  4721. },
  4722. {
  4723. "url": "https://github.com/fabpot",
  4724. "type": "github"
  4725. },
  4726. {
  4727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4728. "type": "tidelift"
  4729. }
  4730. ],
  4731. "time": "2023-06-24T11:51:27+00:00"
  4732. },
  4733. {
  4734. "name": "symfony/http-client-contracts",
  4735. "version": "v3.3.0",
  4736. "source": {
  4737. "type": "git",
  4738. "url": "https://github.com/symfony/http-client-contracts.git",
  4739. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
  4740. },
  4741. "dist": {
  4742. "type": "zip",
  4743. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
  4744. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
  4745. "shasum": ""
  4746. },
  4747. "require": {
  4748. "php": ">=8.1"
  4749. },
  4750. "type": "library",
  4751. "extra": {
  4752. "branch-alias": {
  4753. "dev-main": "3.4-dev"
  4754. },
  4755. "thanks": {
  4756. "name": "symfony/contracts",
  4757. "url": "https://github.com/symfony/contracts"
  4758. }
  4759. },
  4760. "autoload": {
  4761. "psr-4": {
  4762. "Symfony\\Contracts\\HttpClient\\": ""
  4763. },
  4764. "exclude-from-classmap": [
  4765. "/Test/"
  4766. ]
  4767. },
  4768. "notification-url": "https://packagist.org/downloads/",
  4769. "license": [
  4770. "MIT"
  4771. ],
  4772. "authors": [
  4773. {
  4774. "name": "Nicolas Grekas",
  4775. "email": "p@tchwork.com"
  4776. },
  4777. {
  4778. "name": "Symfony Community",
  4779. "homepage": "https://symfony.com/contributors"
  4780. }
  4781. ],
  4782. "description": "Generic abstractions related to HTTP clients",
  4783. "homepage": "https://symfony.com",
  4784. "keywords": [
  4785. "abstractions",
  4786. "contracts",
  4787. "decoupling",
  4788. "interfaces",
  4789. "interoperability",
  4790. "standards"
  4791. ],
  4792. "support": {
  4793. "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
  4794. },
  4795. "funding": [
  4796. {
  4797. "url": "https://symfony.com/sponsor",
  4798. "type": "custom"
  4799. },
  4800. {
  4801. "url": "https://github.com/fabpot",
  4802. "type": "github"
  4803. },
  4804. {
  4805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4806. "type": "tidelift"
  4807. }
  4808. ],
  4809. "time": "2023-05-23T14:45:45+00:00"
  4810. },
  4811. {
  4812. "name": "symfony/http-foundation",
  4813. "version": "v6.3.1",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/symfony/http-foundation.git",
  4817. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  4822. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  4823. "shasum": ""
  4824. },
  4825. "require": {
  4826. "php": ">=8.1",
  4827. "symfony/deprecation-contracts": "^2.5|^3",
  4828. "symfony/polyfill-mbstring": "~1.1",
  4829. "symfony/polyfill-php83": "^1.27"
  4830. },
  4831. "conflict": {
  4832. "symfony/cache": "<6.2"
  4833. },
  4834. "require-dev": {
  4835. "doctrine/dbal": "^2.13.1|^3.0",
  4836. "predis/predis": "^1.1|^2.0",
  4837. "symfony/cache": "^5.4|^6.0",
  4838. "symfony/dependency-injection": "^5.4|^6.0",
  4839. "symfony/expression-language": "^5.4|^6.0",
  4840. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4841. "symfony/mime": "^5.4|^6.0",
  4842. "symfony/rate-limiter": "^5.2|^6.0"
  4843. },
  4844. "type": "library",
  4845. "autoload": {
  4846. "psr-4": {
  4847. "Symfony\\Component\\HttpFoundation\\": ""
  4848. },
  4849. "exclude-from-classmap": [
  4850. "/Tests/"
  4851. ]
  4852. },
  4853. "notification-url": "https://packagist.org/downloads/",
  4854. "license": [
  4855. "MIT"
  4856. ],
  4857. "authors": [
  4858. {
  4859. "name": "Fabien Potencier",
  4860. "email": "fabien@symfony.com"
  4861. },
  4862. {
  4863. "name": "Symfony Community",
  4864. "homepage": "https://symfony.com/contributors"
  4865. }
  4866. ],
  4867. "description": "Defines an object-oriented layer for the HTTP specification",
  4868. "homepage": "https://symfony.com",
  4869. "support": {
  4870. "source": "https://github.com/symfony/http-foundation/tree/v6.3.1"
  4871. },
  4872. "funding": [
  4873. {
  4874. "url": "https://symfony.com/sponsor",
  4875. "type": "custom"
  4876. },
  4877. {
  4878. "url": "https://github.com/fabpot",
  4879. "type": "github"
  4880. },
  4881. {
  4882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4883. "type": "tidelift"
  4884. }
  4885. ],
  4886. "time": "2023-06-24T11:51:27+00:00"
  4887. },
  4888. {
  4889. "name": "symfony/http-kernel",
  4890. "version": "v6.3.1",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/symfony/http-kernel.git",
  4894. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  4899. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "php": ">=8.1",
  4904. "psr/log": "^1|^2|^3",
  4905. "symfony/deprecation-contracts": "^2.5|^3",
  4906. "symfony/error-handler": "^6.3",
  4907. "symfony/event-dispatcher": "^5.4|^6.0",
  4908. "symfony/http-foundation": "^6.2.7",
  4909. "symfony/polyfill-ctype": "^1.8"
  4910. },
  4911. "conflict": {
  4912. "symfony/browser-kit": "<5.4",
  4913. "symfony/cache": "<5.4",
  4914. "symfony/config": "<6.1",
  4915. "symfony/console": "<5.4",
  4916. "symfony/dependency-injection": "<6.3",
  4917. "symfony/doctrine-bridge": "<5.4",
  4918. "symfony/form": "<5.4",
  4919. "symfony/http-client": "<5.4",
  4920. "symfony/http-client-contracts": "<2.5",
  4921. "symfony/mailer": "<5.4",
  4922. "symfony/messenger": "<5.4",
  4923. "symfony/translation": "<5.4",
  4924. "symfony/translation-contracts": "<2.5",
  4925. "symfony/twig-bridge": "<5.4",
  4926. "symfony/validator": "<5.4",
  4927. "symfony/var-dumper": "<6.3",
  4928. "twig/twig": "<2.13"
  4929. },
  4930. "provide": {
  4931. "psr/log-implementation": "1.0|2.0|3.0"
  4932. },
  4933. "require-dev": {
  4934. "psr/cache": "^1.0|^2.0|^3.0",
  4935. "symfony/browser-kit": "^5.4|^6.0",
  4936. "symfony/clock": "^6.2",
  4937. "symfony/config": "^6.1",
  4938. "symfony/console": "^5.4|^6.0",
  4939. "symfony/css-selector": "^5.4|^6.0",
  4940. "symfony/dependency-injection": "^6.3",
  4941. "symfony/dom-crawler": "^5.4|^6.0",
  4942. "symfony/expression-language": "^5.4|^6.0",
  4943. "symfony/finder": "^5.4|^6.0",
  4944. "symfony/http-client-contracts": "^2.5|^3",
  4945. "symfony/process": "^5.4|^6.0",
  4946. "symfony/property-access": "^5.4.5|^6.0.5",
  4947. "symfony/routing": "^5.4|^6.0",
  4948. "symfony/serializer": "^6.3",
  4949. "symfony/stopwatch": "^5.4|^6.0",
  4950. "symfony/translation": "^5.4|^6.0",
  4951. "symfony/translation-contracts": "^2.5|^3",
  4952. "symfony/uid": "^5.4|^6.0",
  4953. "symfony/validator": "^6.3",
  4954. "symfony/var-exporter": "^6.2",
  4955. "twig/twig": "^2.13|^3.0.4"
  4956. },
  4957. "type": "library",
  4958. "autoload": {
  4959. "psr-4": {
  4960. "Symfony\\Component\\HttpKernel\\": ""
  4961. },
  4962. "exclude-from-classmap": [
  4963. "/Tests/"
  4964. ]
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "MIT"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Fabien Potencier",
  4973. "email": "fabien@symfony.com"
  4974. },
  4975. {
  4976. "name": "Symfony Community",
  4977. "homepage": "https://symfony.com/contributors"
  4978. }
  4979. ],
  4980. "description": "Provides a structured process for converting a Request into a Response",
  4981. "homepage": "https://symfony.com",
  4982. "support": {
  4983. "source": "https://github.com/symfony/http-kernel/tree/v6.3.1"
  4984. },
  4985. "funding": [
  4986. {
  4987. "url": "https://symfony.com/sponsor",
  4988. "type": "custom"
  4989. },
  4990. {
  4991. "url": "https://github.com/fabpot",
  4992. "type": "github"
  4993. },
  4994. {
  4995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4996. "type": "tidelift"
  4997. }
  4998. ],
  4999. "time": "2023-06-26T06:07:32+00:00"
  5000. },
  5001. {
  5002. "name": "symfony/mailer",
  5003. "version": "v6.3.0",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/symfony/mailer.git",
  5007. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  5012. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "egulias/email-validator": "^2.1.10|^3|^4",
  5017. "php": ">=8.1",
  5018. "psr/event-dispatcher": "^1",
  5019. "psr/log": "^1|^2|^3",
  5020. "symfony/event-dispatcher": "^5.4|^6.0",
  5021. "symfony/mime": "^6.2",
  5022. "symfony/service-contracts": "^2.5|^3"
  5023. },
  5024. "conflict": {
  5025. "symfony/http-client-contracts": "<2.5",
  5026. "symfony/http-kernel": "<5.4",
  5027. "symfony/messenger": "<6.2",
  5028. "symfony/mime": "<6.2",
  5029. "symfony/twig-bridge": "<6.2.1"
  5030. },
  5031. "require-dev": {
  5032. "symfony/console": "^5.4|^6.0",
  5033. "symfony/http-client": "^5.4|^6.0",
  5034. "symfony/messenger": "^6.2",
  5035. "symfony/twig-bridge": "^6.2"
  5036. },
  5037. "type": "library",
  5038. "autoload": {
  5039. "psr-4": {
  5040. "Symfony\\Component\\Mailer\\": ""
  5041. },
  5042. "exclude-from-classmap": [
  5043. "/Tests/"
  5044. ]
  5045. },
  5046. "notification-url": "https://packagist.org/downloads/",
  5047. "license": [
  5048. "MIT"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Fabien Potencier",
  5053. "email": "fabien@symfony.com"
  5054. },
  5055. {
  5056. "name": "Symfony Community",
  5057. "homepage": "https://symfony.com/contributors"
  5058. }
  5059. ],
  5060. "description": "Helps sending emails",
  5061. "homepage": "https://symfony.com",
  5062. "support": {
  5063. "source": "https://github.com/symfony/mailer/tree/v6.3.0"
  5064. },
  5065. "funding": [
  5066. {
  5067. "url": "https://symfony.com/sponsor",
  5068. "type": "custom"
  5069. },
  5070. {
  5071. "url": "https://github.com/fabpot",
  5072. "type": "github"
  5073. },
  5074. {
  5075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5076. "type": "tidelift"
  5077. }
  5078. ],
  5079. "time": "2023-05-29T12:49:39+00:00"
  5080. },
  5081. {
  5082. "name": "symfony/mime",
  5083. "version": "v6.3.0",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/symfony/mime.git",
  5087. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  5092. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  5093. "shasum": ""
  5094. },
  5095. "require": {
  5096. "php": ">=8.1",
  5097. "symfony/polyfill-intl-idn": "^1.10",
  5098. "symfony/polyfill-mbstring": "^1.0"
  5099. },
  5100. "conflict": {
  5101. "egulias/email-validator": "~3.0.0",
  5102. "phpdocumentor/reflection-docblock": "<3.2.2",
  5103. "phpdocumentor/type-resolver": "<1.4.0",
  5104. "symfony/mailer": "<5.4",
  5105. "symfony/serializer": "<6.2"
  5106. },
  5107. "require-dev": {
  5108. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5109. "league/html-to-markdown": "^5.0",
  5110. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5111. "symfony/dependency-injection": "^5.4|^6.0",
  5112. "symfony/property-access": "^5.4|^6.0",
  5113. "symfony/property-info": "^5.4|^6.0",
  5114. "symfony/serializer": "^6.2"
  5115. },
  5116. "type": "library",
  5117. "autoload": {
  5118. "psr-4": {
  5119. "Symfony\\Component\\Mime\\": ""
  5120. },
  5121. "exclude-from-classmap": [
  5122. "/Tests/"
  5123. ]
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "MIT"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Fabien Potencier",
  5132. "email": "fabien@symfony.com"
  5133. },
  5134. {
  5135. "name": "Symfony Community",
  5136. "homepage": "https://symfony.com/contributors"
  5137. }
  5138. ],
  5139. "description": "Allows manipulating MIME messages",
  5140. "homepage": "https://symfony.com",
  5141. "keywords": [
  5142. "mime",
  5143. "mime-type"
  5144. ],
  5145. "support": {
  5146. "source": "https://github.com/symfony/mime/tree/v6.3.0"
  5147. },
  5148. "funding": [
  5149. {
  5150. "url": "https://symfony.com/sponsor",
  5151. "type": "custom"
  5152. },
  5153. {
  5154. "url": "https://github.com/fabpot",
  5155. "type": "github"
  5156. },
  5157. {
  5158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5159. "type": "tidelift"
  5160. }
  5161. ],
  5162. "time": "2023-04-28T15:57:00+00:00"
  5163. },
  5164. {
  5165. "name": "symfony/monolog-bridge",
  5166. "version": "v6.3.1",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://github.com/symfony/monolog-bridge.git",
  5170. "reference": "04b04b8e465e0fa84940e5609b6796a8b4e51bf1"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/04b04b8e465e0fa84940e5609b6796a8b4e51bf1",
  5175. "reference": "04b04b8e465e0fa84940e5609b6796a8b4e51bf1",
  5176. "shasum": ""
  5177. },
  5178. "require": {
  5179. "monolog/monolog": "^1.25.1|^2|^3",
  5180. "php": ">=8.1",
  5181. "symfony/http-kernel": "^5.4|^6.0",
  5182. "symfony/service-contracts": "^2.5|^3"
  5183. },
  5184. "conflict": {
  5185. "symfony/console": "<5.4",
  5186. "symfony/http-foundation": "<5.4",
  5187. "symfony/security-core": "<6.0"
  5188. },
  5189. "require-dev": {
  5190. "symfony/console": "^5.4|^6.0",
  5191. "symfony/http-client": "^5.4|^6.0",
  5192. "symfony/mailer": "^5.4|^6.0",
  5193. "symfony/messenger": "^5.4|^6.0",
  5194. "symfony/mime": "^5.4|^6.0",
  5195. "symfony/security-core": "^6.0",
  5196. "symfony/var-dumper": "^5.4|^6.0"
  5197. },
  5198. "type": "symfony-bridge",
  5199. "autoload": {
  5200. "psr-4": {
  5201. "Symfony\\Bridge\\Monolog\\": ""
  5202. },
  5203. "exclude-from-classmap": [
  5204. "/Tests/"
  5205. ]
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "MIT"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Fabien Potencier",
  5214. "email": "fabien@symfony.com"
  5215. },
  5216. {
  5217. "name": "Symfony Community",
  5218. "homepage": "https://symfony.com/contributors"
  5219. }
  5220. ],
  5221. "description": "Provides integration for Monolog with various Symfony components",
  5222. "homepage": "https://symfony.com",
  5223. "support": {
  5224. "source": "https://github.com/symfony/monolog-bridge/tree/v6.3.1"
  5225. },
  5226. "funding": [
  5227. {
  5228. "url": "https://symfony.com/sponsor",
  5229. "type": "custom"
  5230. },
  5231. {
  5232. "url": "https://github.com/fabpot",
  5233. "type": "github"
  5234. },
  5235. {
  5236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5237. "type": "tidelift"
  5238. }
  5239. ],
  5240. "time": "2023-06-08T11:13:32+00:00"
  5241. },
  5242. {
  5243. "name": "symfony/monolog-bundle",
  5244. "version": "v3.8.0",
  5245. "source": {
  5246. "type": "git",
  5247. "url": "https://github.com/symfony/monolog-bundle.git",
  5248. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  5249. },
  5250. "dist": {
  5251. "type": "zip",
  5252. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5253. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5254. "shasum": ""
  5255. },
  5256. "require": {
  5257. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  5258. "php": ">=7.1.3",
  5259. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  5260. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  5261. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  5262. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  5263. },
  5264. "require-dev": {
  5265. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  5266. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  5267. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  5268. },
  5269. "type": "symfony-bundle",
  5270. "extra": {
  5271. "branch-alias": {
  5272. "dev-master": "3.x-dev"
  5273. }
  5274. },
  5275. "autoload": {
  5276. "psr-4": {
  5277. "Symfony\\Bundle\\MonologBundle\\": ""
  5278. },
  5279. "exclude-from-classmap": [
  5280. "/Tests/"
  5281. ]
  5282. },
  5283. "notification-url": "https://packagist.org/downloads/",
  5284. "license": [
  5285. "MIT"
  5286. ],
  5287. "authors": [
  5288. {
  5289. "name": "Fabien Potencier",
  5290. "email": "fabien@symfony.com"
  5291. },
  5292. {
  5293. "name": "Symfony Community",
  5294. "homepage": "https://symfony.com/contributors"
  5295. }
  5296. ],
  5297. "description": "Symfony MonologBundle",
  5298. "homepage": "https://symfony.com",
  5299. "keywords": [
  5300. "log",
  5301. "logging"
  5302. ],
  5303. "support": {
  5304. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5305. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  5306. },
  5307. "funding": [
  5308. {
  5309. "url": "https://symfony.com/sponsor",
  5310. "type": "custom"
  5311. },
  5312. {
  5313. "url": "https://github.com/fabpot",
  5314. "type": "github"
  5315. },
  5316. {
  5317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5318. "type": "tidelift"
  5319. }
  5320. ],
  5321. "time": "2022-05-10T14:24:36+00:00"
  5322. },
  5323. {
  5324. "name": "symfony/options-resolver",
  5325. "version": "v6.3.0",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/symfony/options-resolver.git",
  5329. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a10f19f5198d589d5c33333cffe98dc9820332dd",
  5334. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd",
  5335. "shasum": ""
  5336. },
  5337. "require": {
  5338. "php": ">=8.1",
  5339. "symfony/deprecation-contracts": "^2.5|^3"
  5340. },
  5341. "type": "library",
  5342. "autoload": {
  5343. "psr-4": {
  5344. "Symfony\\Component\\OptionsResolver\\": ""
  5345. },
  5346. "exclude-from-classmap": [
  5347. "/Tests/"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Fabien Potencier",
  5357. "email": "fabien@symfony.com"
  5358. },
  5359. {
  5360. "name": "Symfony Community",
  5361. "homepage": "https://symfony.com/contributors"
  5362. }
  5363. ],
  5364. "description": "Provides an improved replacement for the array_replace PHP function",
  5365. "homepage": "https://symfony.com",
  5366. "keywords": [
  5367. "config",
  5368. "configuration",
  5369. "options"
  5370. ],
  5371. "support": {
  5372. "source": "https://github.com/symfony/options-resolver/tree/v6.3.0"
  5373. },
  5374. "funding": [
  5375. {
  5376. "url": "https://symfony.com/sponsor",
  5377. "type": "custom"
  5378. },
  5379. {
  5380. "url": "https://github.com/fabpot",
  5381. "type": "github"
  5382. },
  5383. {
  5384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5385. "type": "tidelift"
  5386. }
  5387. ],
  5388. "time": "2023-05-12T14:21:09+00:00"
  5389. },
  5390. {
  5391. "name": "symfony/password-hasher",
  5392. "version": "v6.3.0",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://github.com/symfony/password-hasher.git",
  5396. "reference": "d23ad221989e6b8278d050cabfd7b569eee84590"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/d23ad221989e6b8278d050cabfd7b569eee84590",
  5401. "reference": "d23ad221989e6b8278d050cabfd7b569eee84590",
  5402. "shasum": ""
  5403. },
  5404. "require": {
  5405. "php": ">=8.1"
  5406. },
  5407. "conflict": {
  5408. "symfony/security-core": "<5.4"
  5409. },
  5410. "require-dev": {
  5411. "symfony/console": "^5.4|^6.0",
  5412. "symfony/security-core": "^5.4|^6.0"
  5413. },
  5414. "type": "library",
  5415. "autoload": {
  5416. "psr-4": {
  5417. "Symfony\\Component\\PasswordHasher\\": ""
  5418. },
  5419. "exclude-from-classmap": [
  5420. "/Tests/"
  5421. ]
  5422. },
  5423. "notification-url": "https://packagist.org/downloads/",
  5424. "license": [
  5425. "MIT"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Robin Chalas",
  5430. "email": "robin.chalas@gmail.com"
  5431. },
  5432. {
  5433. "name": "Symfony Community",
  5434. "homepage": "https://symfony.com/contributors"
  5435. }
  5436. ],
  5437. "description": "Provides password hashing utilities",
  5438. "homepage": "https://symfony.com",
  5439. "keywords": [
  5440. "hashing",
  5441. "password"
  5442. ],
  5443. "support": {
  5444. "source": "https://github.com/symfony/password-hasher/tree/v6.3.0"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://symfony.com/sponsor",
  5449. "type": "custom"
  5450. },
  5451. {
  5452. "url": "https://github.com/fabpot",
  5453. "type": "github"
  5454. },
  5455. {
  5456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5457. "type": "tidelift"
  5458. }
  5459. ],
  5460. "time": "2023-02-14T09:04:20+00:00"
  5461. },
  5462. {
  5463. "name": "symfony/polyfill-intl-grapheme",
  5464. "version": "v1.27.0",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5468. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5473. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "php": ">=7.1"
  5478. },
  5479. "suggest": {
  5480. "ext-intl": "For best performance"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-main": "1.27-dev"
  5486. },
  5487. "thanks": {
  5488. "name": "symfony/polyfill",
  5489. "url": "https://github.com/symfony/polyfill"
  5490. }
  5491. },
  5492. "autoload": {
  5493. "files": [
  5494. "bootstrap.php"
  5495. ],
  5496. "psr-4": {
  5497. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Nicolas Grekas",
  5507. "email": "p@tchwork.com"
  5508. },
  5509. {
  5510. "name": "Symfony Community",
  5511. "homepage": "https://symfony.com/contributors"
  5512. }
  5513. ],
  5514. "description": "Symfony polyfill for intl's grapheme_* functions",
  5515. "homepage": "https://symfony.com",
  5516. "keywords": [
  5517. "compatibility",
  5518. "grapheme",
  5519. "intl",
  5520. "polyfill",
  5521. "portable",
  5522. "shim"
  5523. ],
  5524. "support": {
  5525. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5526. },
  5527. "funding": [
  5528. {
  5529. "url": "https://symfony.com/sponsor",
  5530. "type": "custom"
  5531. },
  5532. {
  5533. "url": "https://github.com/fabpot",
  5534. "type": "github"
  5535. },
  5536. {
  5537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5538. "type": "tidelift"
  5539. }
  5540. ],
  5541. "time": "2022-11-03T14:55:06+00:00"
  5542. },
  5543. {
  5544. "name": "symfony/polyfill-intl-icu",
  5545. "version": "v1.27.0",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5549. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5550. },
  5551. "dist": {
  5552. "type": "zip",
  5553. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5554. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5555. "shasum": ""
  5556. },
  5557. "require": {
  5558. "php": ">=7.1"
  5559. },
  5560. "suggest": {
  5561. "ext-intl": "For best performance and support of other locales than \"en\""
  5562. },
  5563. "type": "library",
  5564. "extra": {
  5565. "branch-alias": {
  5566. "dev-main": "1.27-dev"
  5567. },
  5568. "thanks": {
  5569. "name": "symfony/polyfill",
  5570. "url": "https://github.com/symfony/polyfill"
  5571. }
  5572. },
  5573. "autoload": {
  5574. "files": [
  5575. "bootstrap.php"
  5576. ],
  5577. "psr-4": {
  5578. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5579. },
  5580. "classmap": [
  5581. "Resources/stubs"
  5582. ],
  5583. "exclude-from-classmap": [
  5584. "/Tests/"
  5585. ]
  5586. },
  5587. "notification-url": "https://packagist.org/downloads/",
  5588. "license": [
  5589. "MIT"
  5590. ],
  5591. "authors": [
  5592. {
  5593. "name": "Nicolas Grekas",
  5594. "email": "p@tchwork.com"
  5595. },
  5596. {
  5597. "name": "Symfony Community",
  5598. "homepage": "https://symfony.com/contributors"
  5599. }
  5600. ],
  5601. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5602. "homepage": "https://symfony.com",
  5603. "keywords": [
  5604. "compatibility",
  5605. "icu",
  5606. "intl",
  5607. "polyfill",
  5608. "portable",
  5609. "shim"
  5610. ],
  5611. "support": {
  5612. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5613. },
  5614. "funding": [
  5615. {
  5616. "url": "https://symfony.com/sponsor",
  5617. "type": "custom"
  5618. },
  5619. {
  5620. "url": "https://github.com/fabpot",
  5621. "type": "github"
  5622. },
  5623. {
  5624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5625. "type": "tidelift"
  5626. }
  5627. ],
  5628. "time": "2022-11-03T14:55:06+00:00"
  5629. },
  5630. {
  5631. "name": "symfony/polyfill-intl-idn",
  5632. "version": "v1.27.0",
  5633. "source": {
  5634. "type": "git",
  5635. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5636. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5637. },
  5638. "dist": {
  5639. "type": "zip",
  5640. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5641. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5642. "shasum": ""
  5643. },
  5644. "require": {
  5645. "php": ">=7.1",
  5646. "symfony/polyfill-intl-normalizer": "^1.10",
  5647. "symfony/polyfill-php72": "^1.10"
  5648. },
  5649. "suggest": {
  5650. "ext-intl": "For best performance"
  5651. },
  5652. "type": "library",
  5653. "extra": {
  5654. "branch-alias": {
  5655. "dev-main": "1.27-dev"
  5656. },
  5657. "thanks": {
  5658. "name": "symfony/polyfill",
  5659. "url": "https://github.com/symfony/polyfill"
  5660. }
  5661. },
  5662. "autoload": {
  5663. "files": [
  5664. "bootstrap.php"
  5665. ],
  5666. "psr-4": {
  5667. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5668. }
  5669. },
  5670. "notification-url": "https://packagist.org/downloads/",
  5671. "license": [
  5672. "MIT"
  5673. ],
  5674. "authors": [
  5675. {
  5676. "name": "Laurent Bassin",
  5677. "email": "laurent@bassin.info"
  5678. },
  5679. {
  5680. "name": "Trevor Rowbotham",
  5681. "email": "trevor.rowbotham@pm.me"
  5682. },
  5683. {
  5684. "name": "Symfony Community",
  5685. "homepage": "https://symfony.com/contributors"
  5686. }
  5687. ],
  5688. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5689. "homepage": "https://symfony.com",
  5690. "keywords": [
  5691. "compatibility",
  5692. "idn",
  5693. "intl",
  5694. "polyfill",
  5695. "portable",
  5696. "shim"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5700. },
  5701. "funding": [
  5702. {
  5703. "url": "https://symfony.com/sponsor",
  5704. "type": "custom"
  5705. },
  5706. {
  5707. "url": "https://github.com/fabpot",
  5708. "type": "github"
  5709. },
  5710. {
  5711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5712. "type": "tidelift"
  5713. }
  5714. ],
  5715. "time": "2022-11-03T14:55:06+00:00"
  5716. },
  5717. {
  5718. "name": "symfony/polyfill-intl-normalizer",
  5719. "version": "v1.27.0",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5723. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5728. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "php": ">=7.1"
  5733. },
  5734. "suggest": {
  5735. "ext-intl": "For best performance"
  5736. },
  5737. "type": "library",
  5738. "extra": {
  5739. "branch-alias": {
  5740. "dev-main": "1.27-dev"
  5741. },
  5742. "thanks": {
  5743. "name": "symfony/polyfill",
  5744. "url": "https://github.com/symfony/polyfill"
  5745. }
  5746. },
  5747. "autoload": {
  5748. "files": [
  5749. "bootstrap.php"
  5750. ],
  5751. "psr-4": {
  5752. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5753. },
  5754. "classmap": [
  5755. "Resources/stubs"
  5756. ]
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "Nicolas Grekas",
  5765. "email": "p@tchwork.com"
  5766. },
  5767. {
  5768. "name": "Symfony Community",
  5769. "homepage": "https://symfony.com/contributors"
  5770. }
  5771. ],
  5772. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5773. "homepage": "https://symfony.com",
  5774. "keywords": [
  5775. "compatibility",
  5776. "intl",
  5777. "normalizer",
  5778. "polyfill",
  5779. "portable",
  5780. "shim"
  5781. ],
  5782. "support": {
  5783. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://symfony.com/sponsor",
  5788. "type": "custom"
  5789. },
  5790. {
  5791. "url": "https://github.com/fabpot",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5796. "type": "tidelift"
  5797. }
  5798. ],
  5799. "time": "2022-11-03T14:55:06+00:00"
  5800. },
  5801. {
  5802. "name": "symfony/polyfill-mbstring",
  5803. "version": "v1.27.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5807. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5812. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": ">=7.1"
  5817. },
  5818. "provide": {
  5819. "ext-mbstring": "*"
  5820. },
  5821. "suggest": {
  5822. "ext-mbstring": "For best performance"
  5823. },
  5824. "type": "library",
  5825. "extra": {
  5826. "branch-alias": {
  5827. "dev-main": "1.27-dev"
  5828. },
  5829. "thanks": {
  5830. "name": "symfony/polyfill",
  5831. "url": "https://github.com/symfony/polyfill"
  5832. }
  5833. },
  5834. "autoload": {
  5835. "files": [
  5836. "bootstrap.php"
  5837. ],
  5838. "psr-4": {
  5839. "Symfony\\Polyfill\\Mbstring\\": ""
  5840. }
  5841. },
  5842. "notification-url": "https://packagist.org/downloads/",
  5843. "license": [
  5844. "MIT"
  5845. ],
  5846. "authors": [
  5847. {
  5848. "name": "Nicolas Grekas",
  5849. "email": "p@tchwork.com"
  5850. },
  5851. {
  5852. "name": "Symfony Community",
  5853. "homepage": "https://symfony.com/contributors"
  5854. }
  5855. ],
  5856. "description": "Symfony polyfill for the Mbstring extension",
  5857. "homepage": "https://symfony.com",
  5858. "keywords": [
  5859. "compatibility",
  5860. "mbstring",
  5861. "polyfill",
  5862. "portable",
  5863. "shim"
  5864. ],
  5865. "support": {
  5866. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5867. },
  5868. "funding": [
  5869. {
  5870. "url": "https://symfony.com/sponsor",
  5871. "type": "custom"
  5872. },
  5873. {
  5874. "url": "https://github.com/fabpot",
  5875. "type": "github"
  5876. },
  5877. {
  5878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5879. "type": "tidelift"
  5880. }
  5881. ],
  5882. "time": "2022-11-03T14:55:06+00:00"
  5883. },
  5884. {
  5885. "name": "symfony/polyfill-php72",
  5886. "version": "v1.27.0",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/symfony/polyfill-php72.git",
  5890. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5895. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "php": ">=7.1"
  5900. },
  5901. "type": "library",
  5902. "extra": {
  5903. "branch-alias": {
  5904. "dev-main": "1.27-dev"
  5905. },
  5906. "thanks": {
  5907. "name": "symfony/polyfill",
  5908. "url": "https://github.com/symfony/polyfill"
  5909. }
  5910. },
  5911. "autoload": {
  5912. "files": [
  5913. "bootstrap.php"
  5914. ],
  5915. "psr-4": {
  5916. "Symfony\\Polyfill\\Php72\\": ""
  5917. }
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "MIT"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "Nicolas Grekas",
  5926. "email": "p@tchwork.com"
  5927. },
  5928. {
  5929. "name": "Symfony Community",
  5930. "homepage": "https://symfony.com/contributors"
  5931. }
  5932. ],
  5933. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5934. "homepage": "https://symfony.com",
  5935. "keywords": [
  5936. "compatibility",
  5937. "polyfill",
  5938. "portable",
  5939. "shim"
  5940. ],
  5941. "support": {
  5942. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5943. },
  5944. "funding": [
  5945. {
  5946. "url": "https://symfony.com/sponsor",
  5947. "type": "custom"
  5948. },
  5949. {
  5950. "url": "https://github.com/fabpot",
  5951. "type": "github"
  5952. },
  5953. {
  5954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5955. "type": "tidelift"
  5956. }
  5957. ],
  5958. "time": "2022-11-03T14:55:06+00:00"
  5959. },
  5960. {
  5961. "name": "symfony/polyfill-php80",
  5962. "version": "v1.27.0",
  5963. "source": {
  5964. "type": "git",
  5965. "url": "https://github.com/symfony/polyfill-php80.git",
  5966. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5967. },
  5968. "dist": {
  5969. "type": "zip",
  5970. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5971. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5972. "shasum": ""
  5973. },
  5974. "require": {
  5975. "php": ">=7.1"
  5976. },
  5977. "type": "library",
  5978. "extra": {
  5979. "branch-alias": {
  5980. "dev-main": "1.27-dev"
  5981. },
  5982. "thanks": {
  5983. "name": "symfony/polyfill",
  5984. "url": "https://github.com/symfony/polyfill"
  5985. }
  5986. },
  5987. "autoload": {
  5988. "files": [
  5989. "bootstrap.php"
  5990. ],
  5991. "psr-4": {
  5992. "Symfony\\Polyfill\\Php80\\": ""
  5993. },
  5994. "classmap": [
  5995. "Resources/stubs"
  5996. ]
  5997. },
  5998. "notification-url": "https://packagist.org/downloads/",
  5999. "license": [
  6000. "MIT"
  6001. ],
  6002. "authors": [
  6003. {
  6004. "name": "Ion Bazan",
  6005. "email": "ion.bazan@gmail.com"
  6006. },
  6007. {
  6008. "name": "Nicolas Grekas",
  6009. "email": "p@tchwork.com"
  6010. },
  6011. {
  6012. "name": "Symfony Community",
  6013. "homepage": "https://symfony.com/contributors"
  6014. }
  6015. ],
  6016. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6017. "homepage": "https://symfony.com",
  6018. "keywords": [
  6019. "compatibility",
  6020. "polyfill",
  6021. "portable",
  6022. "shim"
  6023. ],
  6024. "support": {
  6025. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6026. },
  6027. "funding": [
  6028. {
  6029. "url": "https://symfony.com/sponsor",
  6030. "type": "custom"
  6031. },
  6032. {
  6033. "url": "https://github.com/fabpot",
  6034. "type": "github"
  6035. },
  6036. {
  6037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6038. "type": "tidelift"
  6039. }
  6040. ],
  6041. "time": "2022-11-03T14:55:06+00:00"
  6042. },
  6043. {
  6044. "name": "symfony/polyfill-php83",
  6045. "version": "v1.27.0",
  6046. "source": {
  6047. "type": "git",
  6048. "url": "https://github.com/symfony/polyfill-php83.git",
  6049. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  6050. },
  6051. "dist": {
  6052. "type": "zip",
  6053. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  6054. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  6055. "shasum": ""
  6056. },
  6057. "require": {
  6058. "php": ">=7.1",
  6059. "symfony/polyfill-php80": "^1.14"
  6060. },
  6061. "type": "library",
  6062. "extra": {
  6063. "branch-alias": {
  6064. "dev-main": "1.27-dev"
  6065. },
  6066. "thanks": {
  6067. "name": "symfony/polyfill",
  6068. "url": "https://github.com/symfony/polyfill"
  6069. }
  6070. },
  6071. "autoload": {
  6072. "files": [
  6073. "bootstrap.php"
  6074. ],
  6075. "psr-4": {
  6076. "Symfony\\Polyfill\\Php83\\": ""
  6077. }
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Nicolas Grekas",
  6086. "email": "p@tchwork.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6094. "homepage": "https://symfony.com",
  6095. "keywords": [
  6096. "compatibility",
  6097. "polyfill",
  6098. "portable",
  6099. "shim"
  6100. ],
  6101. "support": {
  6102. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  6103. },
  6104. "funding": [
  6105. {
  6106. "url": "https://symfony.com/sponsor",
  6107. "type": "custom"
  6108. },
  6109. {
  6110. "url": "https://github.com/fabpot",
  6111. "type": "github"
  6112. },
  6113. {
  6114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6115. "type": "tidelift"
  6116. }
  6117. ],
  6118. "time": "2022-11-03T14:55:06+00:00"
  6119. },
  6120. {
  6121. "name": "symfony/process",
  6122. "version": "v6.3.0",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://github.com/symfony/process.git",
  6126. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  6131. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  6132. "shasum": ""
  6133. },
  6134. "require": {
  6135. "php": ">=8.1"
  6136. },
  6137. "type": "library",
  6138. "autoload": {
  6139. "psr-4": {
  6140. "Symfony\\Component\\Process\\": ""
  6141. },
  6142. "exclude-from-classmap": [
  6143. "/Tests/"
  6144. ]
  6145. },
  6146. "notification-url": "https://packagist.org/downloads/",
  6147. "license": [
  6148. "MIT"
  6149. ],
  6150. "authors": [
  6151. {
  6152. "name": "Fabien Potencier",
  6153. "email": "fabien@symfony.com"
  6154. },
  6155. {
  6156. "name": "Symfony Community",
  6157. "homepage": "https://symfony.com/contributors"
  6158. }
  6159. ],
  6160. "description": "Executes commands in sub-processes",
  6161. "homepage": "https://symfony.com",
  6162. "support": {
  6163. "source": "https://github.com/symfony/process/tree/v6.3.0"
  6164. },
  6165. "funding": [
  6166. {
  6167. "url": "https://symfony.com/sponsor",
  6168. "type": "custom"
  6169. },
  6170. {
  6171. "url": "https://github.com/fabpot",
  6172. "type": "github"
  6173. },
  6174. {
  6175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6176. "type": "tidelift"
  6177. }
  6178. ],
  6179. "time": "2023-05-19T08:06:44+00:00"
  6180. },
  6181. {
  6182. "name": "symfony/property-access",
  6183. "version": "v6.3.0",
  6184. "source": {
  6185. "type": "git",
  6186. "url": "https://github.com/symfony/property-access.git",
  6187. "reference": "db9358571ce63f09c439c2fee6c12e5b090b69ac"
  6188. },
  6189. "dist": {
  6190. "type": "zip",
  6191. "url": "https://api.github.com/repos/symfony/property-access/zipball/db9358571ce63f09c439c2fee6c12e5b090b69ac",
  6192. "reference": "db9358571ce63f09c439c2fee6c12e5b090b69ac",
  6193. "shasum": ""
  6194. },
  6195. "require": {
  6196. "php": ">=8.1",
  6197. "symfony/deprecation-contracts": "^2.5|^3",
  6198. "symfony/property-info": "^5.4|^6.0"
  6199. },
  6200. "require-dev": {
  6201. "symfony/cache": "^5.4|^6.0"
  6202. },
  6203. "type": "library",
  6204. "autoload": {
  6205. "psr-4": {
  6206. "Symfony\\Component\\PropertyAccess\\": ""
  6207. },
  6208. "exclude-from-classmap": [
  6209. "/Tests/"
  6210. ]
  6211. },
  6212. "notification-url": "https://packagist.org/downloads/",
  6213. "license": [
  6214. "MIT"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "Fabien Potencier",
  6219. "email": "fabien@symfony.com"
  6220. },
  6221. {
  6222. "name": "Symfony Community",
  6223. "homepage": "https://symfony.com/contributors"
  6224. }
  6225. ],
  6226. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6227. "homepage": "https://symfony.com",
  6228. "keywords": [
  6229. "access",
  6230. "array",
  6231. "extraction",
  6232. "index",
  6233. "injection",
  6234. "object",
  6235. "property",
  6236. "property-path",
  6237. "reflection"
  6238. ],
  6239. "support": {
  6240. "source": "https://github.com/symfony/property-access/tree/v6.3.0"
  6241. },
  6242. "funding": [
  6243. {
  6244. "url": "https://symfony.com/sponsor",
  6245. "type": "custom"
  6246. },
  6247. {
  6248. "url": "https://github.com/fabpot",
  6249. "type": "github"
  6250. },
  6251. {
  6252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6253. "type": "tidelift"
  6254. }
  6255. ],
  6256. "time": "2023-05-19T08:06:44+00:00"
  6257. },
  6258. {
  6259. "name": "symfony/property-info",
  6260. "version": "v6.3.0",
  6261. "source": {
  6262. "type": "git",
  6263. "url": "https://github.com/symfony/property-info.git",
  6264. "reference": "7f3a03716112269741fe2a809f8f791a371d1fcd"
  6265. },
  6266. "dist": {
  6267. "type": "zip",
  6268. "url": "https://api.github.com/repos/symfony/property-info/zipball/7f3a03716112269741fe2a809f8f791a371d1fcd",
  6269. "reference": "7f3a03716112269741fe2a809f8f791a371d1fcd",
  6270. "shasum": ""
  6271. },
  6272. "require": {
  6273. "php": ">=8.1",
  6274. "symfony/string": "^5.4|^6.0"
  6275. },
  6276. "conflict": {
  6277. "phpdocumentor/reflection-docblock": "<5.2",
  6278. "phpdocumentor/type-resolver": "<1.5.1",
  6279. "symfony/dependency-injection": "<5.4"
  6280. },
  6281. "require-dev": {
  6282. "doctrine/annotations": "^1.10.4|^2",
  6283. "phpdocumentor/reflection-docblock": "^5.2",
  6284. "phpstan/phpdoc-parser": "^1.0",
  6285. "symfony/cache": "^5.4|^6.0",
  6286. "symfony/dependency-injection": "^5.4|^6.0",
  6287. "symfony/serializer": "^5.4|^6.0"
  6288. },
  6289. "type": "library",
  6290. "autoload": {
  6291. "psr-4": {
  6292. "Symfony\\Component\\PropertyInfo\\": ""
  6293. },
  6294. "exclude-from-classmap": [
  6295. "/Tests/"
  6296. ]
  6297. },
  6298. "notification-url": "https://packagist.org/downloads/",
  6299. "license": [
  6300. "MIT"
  6301. ],
  6302. "authors": [
  6303. {
  6304. "name": "Kévin Dunglas",
  6305. "email": "dunglas@gmail.com"
  6306. },
  6307. {
  6308. "name": "Symfony Community",
  6309. "homepage": "https://symfony.com/contributors"
  6310. }
  6311. ],
  6312. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6313. "homepage": "https://symfony.com",
  6314. "keywords": [
  6315. "doctrine",
  6316. "phpdoc",
  6317. "property",
  6318. "symfony",
  6319. "type",
  6320. "validator"
  6321. ],
  6322. "support": {
  6323. "source": "https://github.com/symfony/property-info/tree/v6.3.0"
  6324. },
  6325. "funding": [
  6326. {
  6327. "url": "https://symfony.com/sponsor",
  6328. "type": "custom"
  6329. },
  6330. {
  6331. "url": "https://github.com/fabpot",
  6332. "type": "github"
  6333. },
  6334. {
  6335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6336. "type": "tidelift"
  6337. }
  6338. ],
  6339. "time": "2023-05-19T08:06:44+00:00"
  6340. },
  6341. {
  6342. "name": "symfony/proxy-manager-bridge",
  6343. "version": "v6.3.0",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6347. "reference": "7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39",
  6352. "reference": "7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39",
  6353. "shasum": ""
  6354. },
  6355. "require": {
  6356. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6357. "php": ">=8.1",
  6358. "symfony/dependency-injection": "^6.3",
  6359. "symfony/deprecation-contracts": "^2.5|^3"
  6360. },
  6361. "require-dev": {
  6362. "symfony/config": "^6.1"
  6363. },
  6364. "type": "symfony-bridge",
  6365. "autoload": {
  6366. "psr-4": {
  6367. "Symfony\\Bridge\\ProxyManager\\": ""
  6368. },
  6369. "exclude-from-classmap": [
  6370. "/Tests/"
  6371. ]
  6372. },
  6373. "notification-url": "https://packagist.org/downloads/",
  6374. "license": [
  6375. "MIT"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "Fabien Potencier",
  6380. "email": "fabien@symfony.com"
  6381. },
  6382. {
  6383. "name": "Symfony Community",
  6384. "homepage": "https://symfony.com/contributors"
  6385. }
  6386. ],
  6387. "description": "Provides integration for ProxyManager with various Symfony components",
  6388. "homepage": "https://symfony.com",
  6389. "support": {
  6390. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.3.0"
  6391. },
  6392. "funding": [
  6393. {
  6394. "url": "https://symfony.com/sponsor",
  6395. "type": "custom"
  6396. },
  6397. {
  6398. "url": "https://github.com/fabpot",
  6399. "type": "github"
  6400. },
  6401. {
  6402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6403. "type": "tidelift"
  6404. }
  6405. ],
  6406. "time": "2023-05-26T07:49:33+00:00"
  6407. },
  6408. {
  6409. "name": "symfony/routing",
  6410. "version": "v6.3.1",
  6411. "source": {
  6412. "type": "git",
  6413. "url": "https://github.com/symfony/routing.git",
  6414. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5"
  6415. },
  6416. "dist": {
  6417. "type": "zip",
  6418. "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  6419. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  6420. "shasum": ""
  6421. },
  6422. "require": {
  6423. "php": ">=8.1"
  6424. },
  6425. "conflict": {
  6426. "doctrine/annotations": "<1.12",
  6427. "symfony/config": "<6.2",
  6428. "symfony/dependency-injection": "<5.4",
  6429. "symfony/yaml": "<5.4"
  6430. },
  6431. "require-dev": {
  6432. "doctrine/annotations": "^1.12|^2",
  6433. "psr/log": "^1|^2|^3",
  6434. "symfony/config": "^6.2",
  6435. "symfony/dependency-injection": "^5.4|^6.0",
  6436. "symfony/expression-language": "^5.4|^6.0",
  6437. "symfony/http-foundation": "^5.4|^6.0",
  6438. "symfony/yaml": "^5.4|^6.0"
  6439. },
  6440. "type": "library",
  6441. "autoload": {
  6442. "psr-4": {
  6443. "Symfony\\Component\\Routing\\": ""
  6444. },
  6445. "exclude-from-classmap": [
  6446. "/Tests/"
  6447. ]
  6448. },
  6449. "notification-url": "https://packagist.org/downloads/",
  6450. "license": [
  6451. "MIT"
  6452. ],
  6453. "authors": [
  6454. {
  6455. "name": "Fabien Potencier",
  6456. "email": "fabien@symfony.com"
  6457. },
  6458. {
  6459. "name": "Symfony Community",
  6460. "homepage": "https://symfony.com/contributors"
  6461. }
  6462. ],
  6463. "description": "Maps an HTTP request to a set of configuration variables",
  6464. "homepage": "https://symfony.com",
  6465. "keywords": [
  6466. "router",
  6467. "routing",
  6468. "uri",
  6469. "url"
  6470. ],
  6471. "support": {
  6472. "source": "https://github.com/symfony/routing/tree/v6.3.1"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://symfony.com/sponsor",
  6477. "type": "custom"
  6478. },
  6479. {
  6480. "url": "https://github.com/fabpot",
  6481. "type": "github"
  6482. },
  6483. {
  6484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6485. "type": "tidelift"
  6486. }
  6487. ],
  6488. "time": "2023-06-05T15:30:22+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/runtime",
  6492. "version": "v6.3.1",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/runtime.git",
  6496. "reference": "8e83b5d8e0ace903e1a91dedfe08a84ed2a54b0d"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/runtime/zipball/8e83b5d8e0ace903e1a91dedfe08a84ed2a54b0d",
  6501. "reference": "8e83b5d8e0ace903e1a91dedfe08a84ed2a54b0d",
  6502. "shasum": ""
  6503. },
  6504. "require": {
  6505. "composer-plugin-api": "^1.0|^2.0",
  6506. "php": ">=8.1"
  6507. },
  6508. "conflict": {
  6509. "symfony/dotenv": "<5.4"
  6510. },
  6511. "require-dev": {
  6512. "composer/composer": "^1.0.2|^2.0",
  6513. "symfony/console": "^5.4.9|^6.0.9",
  6514. "symfony/dotenv": "^5.4|^6.0",
  6515. "symfony/http-foundation": "^5.4|^6.0",
  6516. "symfony/http-kernel": "^5.4|^6.0"
  6517. },
  6518. "type": "composer-plugin",
  6519. "extra": {
  6520. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6521. },
  6522. "autoload": {
  6523. "psr-4": {
  6524. "Symfony\\Component\\Runtime\\": "",
  6525. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6526. },
  6527. "exclude-from-classmap": [
  6528. "/Tests/"
  6529. ]
  6530. },
  6531. "notification-url": "https://packagist.org/downloads/",
  6532. "license": [
  6533. "MIT"
  6534. ],
  6535. "authors": [
  6536. {
  6537. "name": "Nicolas Grekas",
  6538. "email": "p@tchwork.com"
  6539. },
  6540. {
  6541. "name": "Symfony Community",
  6542. "homepage": "https://symfony.com/contributors"
  6543. }
  6544. ],
  6545. "description": "Enables decoupling PHP applications from global state",
  6546. "homepage": "https://symfony.com",
  6547. "keywords": [
  6548. "runtime"
  6549. ],
  6550. "support": {
  6551. "source": "https://github.com/symfony/runtime/tree/v6.3.1"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2023-06-21T12:08:28+00:00"
  6568. },
  6569. {
  6570. "name": "symfony/security-bundle",
  6571. "version": "v6.3.1",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/symfony/security-bundle.git",
  6575. "reference": "f4fe79d7ebafd406e1a6f646839bfbbed641d8b2"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/f4fe79d7ebafd406e1a6f646839bfbbed641d8b2",
  6580. "reference": "f4fe79d7ebafd406e1a6f646839bfbbed641d8b2",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "composer-runtime-api": ">=2.1",
  6585. "ext-xml": "*",
  6586. "php": ">=8.1",
  6587. "symfony/clock": "^6.3",
  6588. "symfony/config": "^6.1",
  6589. "symfony/dependency-injection": "^6.2",
  6590. "symfony/event-dispatcher": "^5.4|^6.0",
  6591. "symfony/http-foundation": "^6.2",
  6592. "symfony/http-kernel": "^6.2",
  6593. "symfony/password-hasher": "^5.4|^6.0",
  6594. "symfony/security-core": "^6.2",
  6595. "symfony/security-csrf": "^5.4|^6.0",
  6596. "symfony/security-http": "^6.3"
  6597. },
  6598. "conflict": {
  6599. "symfony/browser-kit": "<5.4",
  6600. "symfony/console": "<5.4",
  6601. "symfony/framework-bundle": "<6.3",
  6602. "symfony/http-client": "<5.4",
  6603. "symfony/ldap": "<5.4",
  6604. "symfony/twig-bundle": "<5.4"
  6605. },
  6606. "require-dev": {
  6607. "doctrine/annotations": "^1.10.4|^2",
  6608. "symfony/asset": "^5.4|^6.0",
  6609. "symfony/browser-kit": "^5.4|^6.0",
  6610. "symfony/console": "^5.4|^6.0",
  6611. "symfony/css-selector": "^5.4|^6.0",
  6612. "symfony/dom-crawler": "^5.4|^6.0",
  6613. "symfony/expression-language": "^5.4|^6.0",
  6614. "symfony/form": "^5.4|^6.0",
  6615. "symfony/framework-bundle": "^6.3",
  6616. "symfony/http-client": "^5.4|^6.0",
  6617. "symfony/ldap": "^5.4|^6.0",
  6618. "symfony/process": "^5.4|^6.0",
  6619. "symfony/rate-limiter": "^5.4|^6.0",
  6620. "symfony/serializer": "^5.4|^6.0",
  6621. "symfony/translation": "^5.4|^6.0",
  6622. "symfony/twig-bridge": "^5.4|^6.0",
  6623. "symfony/twig-bundle": "^5.4|^6.0",
  6624. "symfony/validator": "^5.4|^6.0",
  6625. "symfony/yaml": "^5.4|^6.0",
  6626. "twig/twig": "^2.13|^3.0.4",
  6627. "web-token/jwt-checker": "^3.1",
  6628. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  6629. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  6630. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  6631. "web-token/jwt-signature-algorithm-none": "^3.1",
  6632. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  6633. },
  6634. "type": "symfony-bundle",
  6635. "autoload": {
  6636. "psr-4": {
  6637. "Symfony\\Bundle\\SecurityBundle\\": ""
  6638. },
  6639. "exclude-from-classmap": [
  6640. "/Tests/"
  6641. ]
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "MIT"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "Fabien Potencier",
  6650. "email": "fabien@symfony.com"
  6651. },
  6652. {
  6653. "name": "Symfony Community",
  6654. "homepage": "https://symfony.com/contributors"
  6655. }
  6656. ],
  6657. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6658. "homepage": "https://symfony.com",
  6659. "support": {
  6660. "source": "https://github.com/symfony/security-bundle/tree/v6.3.1"
  6661. },
  6662. "funding": [
  6663. {
  6664. "url": "https://symfony.com/sponsor",
  6665. "type": "custom"
  6666. },
  6667. {
  6668. "url": "https://github.com/fabpot",
  6669. "type": "github"
  6670. },
  6671. {
  6672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6673. "type": "tidelift"
  6674. }
  6675. ],
  6676. "time": "2023-06-21T12:08:28+00:00"
  6677. },
  6678. {
  6679. "name": "symfony/security-core",
  6680. "version": "v6.3.0",
  6681. "source": {
  6682. "type": "git",
  6683. "url": "https://github.com/symfony/security-core.git",
  6684. "reference": "9cb74232e978be1440d2bb7daf91eb40a9363890"
  6685. },
  6686. "dist": {
  6687. "type": "zip",
  6688. "url": "https://api.github.com/repos/symfony/security-core/zipball/9cb74232e978be1440d2bb7daf91eb40a9363890",
  6689. "reference": "9cb74232e978be1440d2bb7daf91eb40a9363890",
  6690. "shasum": ""
  6691. },
  6692. "require": {
  6693. "php": ">=8.1",
  6694. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6695. "symfony/password-hasher": "^5.4|^6.0",
  6696. "symfony/service-contracts": "^2.5|^3"
  6697. },
  6698. "conflict": {
  6699. "symfony/event-dispatcher": "<5.4",
  6700. "symfony/http-foundation": "<5.4",
  6701. "symfony/ldap": "<5.4",
  6702. "symfony/security-guard": "<5.4",
  6703. "symfony/validator": "<5.4"
  6704. },
  6705. "require-dev": {
  6706. "psr/cache": "^1.0|^2.0|^3.0",
  6707. "psr/container": "^1.1|^2.0",
  6708. "psr/log": "^1|^2|^3",
  6709. "symfony/cache": "^5.4|^6.0",
  6710. "symfony/event-dispatcher": "^5.4|^6.0",
  6711. "symfony/expression-language": "^5.4|^6.0",
  6712. "symfony/http-foundation": "^5.4|^6.0",
  6713. "symfony/ldap": "^5.4|^6.0",
  6714. "symfony/string": "^5.4|^6.0",
  6715. "symfony/translation": "^5.4|^6.0",
  6716. "symfony/validator": "^5.4|^6.0"
  6717. },
  6718. "type": "library",
  6719. "autoload": {
  6720. "psr-4": {
  6721. "Symfony\\Component\\Security\\Core\\": ""
  6722. },
  6723. "exclude-from-classmap": [
  6724. "/Tests/"
  6725. ]
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Fabien Potencier",
  6734. "email": "fabien@symfony.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Symfony Security Component - Core Library",
  6742. "homepage": "https://symfony.com",
  6743. "support": {
  6744. "source": "https://github.com/symfony/security-core/tree/v6.3.0"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://symfony.com/sponsor",
  6749. "type": "custom"
  6750. },
  6751. {
  6752. "url": "https://github.com/fabpot",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6757. "type": "tidelift"
  6758. }
  6759. ],
  6760. "time": "2023-04-28T15:57:00+00:00"
  6761. },
  6762. {
  6763. "name": "symfony/security-csrf",
  6764. "version": "v6.3.0",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/symfony/security-csrf.git",
  6768. "reference": "1f505c9060bde692eb37718c78a91d95d9abeeec"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/1f505c9060bde692eb37718c78a91d95d9abeeec",
  6773. "reference": "1f505c9060bde692eb37718c78a91d95d9abeeec",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "php": ">=8.1",
  6778. "symfony/security-core": "^5.4|^6.0"
  6779. },
  6780. "conflict": {
  6781. "symfony/http-foundation": "<5.4"
  6782. },
  6783. "require-dev": {
  6784. "symfony/http-foundation": "^5.4|^6.0"
  6785. },
  6786. "type": "library",
  6787. "autoload": {
  6788. "psr-4": {
  6789. "Symfony\\Component\\Security\\Csrf\\": ""
  6790. },
  6791. "exclude-from-classmap": [
  6792. "/Tests/"
  6793. ]
  6794. },
  6795. "notification-url": "https://packagist.org/downloads/",
  6796. "license": [
  6797. "MIT"
  6798. ],
  6799. "authors": [
  6800. {
  6801. "name": "Fabien Potencier",
  6802. "email": "fabien@symfony.com"
  6803. },
  6804. {
  6805. "name": "Symfony Community",
  6806. "homepage": "https://symfony.com/contributors"
  6807. }
  6808. ],
  6809. "description": "Symfony Security Component - CSRF Library",
  6810. "homepage": "https://symfony.com",
  6811. "support": {
  6812. "source": "https://github.com/symfony/security-csrf/tree/v6.3.0"
  6813. },
  6814. "funding": [
  6815. {
  6816. "url": "https://symfony.com/sponsor",
  6817. "type": "custom"
  6818. },
  6819. {
  6820. "url": "https://github.com/fabpot",
  6821. "type": "github"
  6822. },
  6823. {
  6824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6825. "type": "tidelift"
  6826. }
  6827. ],
  6828. "time": "2023-04-21T14:41:17+00:00"
  6829. },
  6830. {
  6831. "name": "symfony/security-http",
  6832. "version": "v6.3.1",
  6833. "source": {
  6834. "type": "git",
  6835. "url": "https://github.com/symfony/security-http.git",
  6836. "reference": "36d2bdd09c33f63014dc65f164a77ff099d256c6"
  6837. },
  6838. "dist": {
  6839. "type": "zip",
  6840. "url": "https://api.github.com/repos/symfony/security-http/zipball/36d2bdd09c33f63014dc65f164a77ff099d256c6",
  6841. "reference": "36d2bdd09c33f63014dc65f164a77ff099d256c6",
  6842. "shasum": ""
  6843. },
  6844. "require": {
  6845. "php": ">=8.1",
  6846. "symfony/deprecation-contracts": "^2.5|^3",
  6847. "symfony/http-foundation": "^5.4|^6.0",
  6848. "symfony/http-kernel": "^6.3",
  6849. "symfony/polyfill-mbstring": "~1.0",
  6850. "symfony/property-access": "^5.4|^6.0",
  6851. "symfony/security-core": "^6.3"
  6852. },
  6853. "conflict": {
  6854. "symfony/clock": "<6.3",
  6855. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6856. "symfony/http-client-contracts": "<3.0",
  6857. "symfony/security-bundle": "<5.4",
  6858. "symfony/security-csrf": "<5.4"
  6859. },
  6860. "require-dev": {
  6861. "psr/log": "^1|^2|^3",
  6862. "symfony/cache": "^5.4|^6.0",
  6863. "symfony/clock": "^6.3",
  6864. "symfony/expression-language": "^5.4|^6.0",
  6865. "symfony/http-client-contracts": "^3.0",
  6866. "symfony/rate-limiter": "^5.4|^6.0",
  6867. "symfony/routing": "^5.4|^6.0",
  6868. "symfony/security-csrf": "^5.4|^6.0",
  6869. "symfony/translation": "^5.4|^6.0",
  6870. "web-token/jwt-checker": "^3.1",
  6871. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6872. },
  6873. "type": "library",
  6874. "autoload": {
  6875. "psr-4": {
  6876. "Symfony\\Component\\Security\\Http\\": ""
  6877. },
  6878. "exclude-from-classmap": [
  6879. "/Tests/"
  6880. ]
  6881. },
  6882. "notification-url": "https://packagist.org/downloads/",
  6883. "license": [
  6884. "MIT"
  6885. ],
  6886. "authors": [
  6887. {
  6888. "name": "Fabien Potencier",
  6889. "email": "fabien@symfony.com"
  6890. },
  6891. {
  6892. "name": "Symfony Community",
  6893. "homepage": "https://symfony.com/contributors"
  6894. }
  6895. ],
  6896. "description": "Symfony Security Component - HTTP Integration",
  6897. "homepage": "https://symfony.com",
  6898. "support": {
  6899. "source": "https://github.com/symfony/security-http/tree/v6.3.1"
  6900. },
  6901. "funding": [
  6902. {
  6903. "url": "https://symfony.com/sponsor",
  6904. "type": "custom"
  6905. },
  6906. {
  6907. "url": "https://github.com/fabpot",
  6908. "type": "github"
  6909. },
  6910. {
  6911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6912. "type": "tidelift"
  6913. }
  6914. ],
  6915. "time": "2023-06-18T15:50:12+00:00"
  6916. },
  6917. {
  6918. "name": "symfony/serializer",
  6919. "version": "v6.3.1",
  6920. "source": {
  6921. "type": "git",
  6922. "url": "https://github.com/symfony/serializer.git",
  6923. "reference": "1d238ee3180bc047f8ab713bfb73848d553f4407"
  6924. },
  6925. "dist": {
  6926. "type": "zip",
  6927. "url": "https://api.github.com/repos/symfony/serializer/zipball/1d238ee3180bc047f8ab713bfb73848d553f4407",
  6928. "reference": "1d238ee3180bc047f8ab713bfb73848d553f4407",
  6929. "shasum": ""
  6930. },
  6931. "require": {
  6932. "php": ">=8.1",
  6933. "symfony/polyfill-ctype": "~1.8"
  6934. },
  6935. "conflict": {
  6936. "doctrine/annotations": "<1.12",
  6937. "phpdocumentor/reflection-docblock": "<3.2.2",
  6938. "phpdocumentor/type-resolver": "<1.4.0",
  6939. "symfony/dependency-injection": "<5.4",
  6940. "symfony/property-access": "<5.4",
  6941. "symfony/property-info": "<5.4",
  6942. "symfony/uid": "<5.4",
  6943. "symfony/yaml": "<5.4"
  6944. },
  6945. "require-dev": {
  6946. "doctrine/annotations": "^1.12|^2",
  6947. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6948. "symfony/cache": "^5.4|^6.0",
  6949. "symfony/config": "^5.4|^6.0",
  6950. "symfony/console": "^5.4|^6.0",
  6951. "symfony/dependency-injection": "^5.4|^6.0",
  6952. "symfony/error-handler": "^5.4|^6.0",
  6953. "symfony/filesystem": "^5.4|^6.0",
  6954. "symfony/form": "^5.4|^6.0",
  6955. "symfony/http-foundation": "^5.4|^6.0",
  6956. "symfony/http-kernel": "^5.4|^6.0",
  6957. "symfony/mime": "^5.4|^6.0",
  6958. "symfony/property-access": "^5.4|^6.0",
  6959. "symfony/property-info": "^5.4|^6.0",
  6960. "symfony/uid": "^5.4|^6.0",
  6961. "symfony/validator": "^5.4|^6.0",
  6962. "symfony/var-dumper": "^5.4|^6.0",
  6963. "symfony/var-exporter": "^5.4|^6.0",
  6964. "symfony/yaml": "^5.4|^6.0"
  6965. },
  6966. "type": "library",
  6967. "autoload": {
  6968. "psr-4": {
  6969. "Symfony\\Component\\Serializer\\": ""
  6970. },
  6971. "exclude-from-classmap": [
  6972. "/Tests/"
  6973. ]
  6974. },
  6975. "notification-url": "https://packagist.org/downloads/",
  6976. "license": [
  6977. "MIT"
  6978. ],
  6979. "authors": [
  6980. {
  6981. "name": "Fabien Potencier",
  6982. "email": "fabien@symfony.com"
  6983. },
  6984. {
  6985. "name": "Symfony Community",
  6986. "homepage": "https://symfony.com/contributors"
  6987. }
  6988. ],
  6989. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6990. "homepage": "https://symfony.com",
  6991. "support": {
  6992. "source": "https://github.com/symfony/serializer/tree/v6.3.1"
  6993. },
  6994. "funding": [
  6995. {
  6996. "url": "https://symfony.com/sponsor",
  6997. "type": "custom"
  6998. },
  6999. {
  7000. "url": "https://github.com/fabpot",
  7001. "type": "github"
  7002. },
  7003. {
  7004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7005. "type": "tidelift"
  7006. }
  7007. ],
  7008. "time": "2023-06-21T19:54:33+00:00"
  7009. },
  7010. {
  7011. "name": "symfony/service-contracts",
  7012. "version": "v3.3.0",
  7013. "source": {
  7014. "type": "git",
  7015. "url": "https://github.com/symfony/service-contracts.git",
  7016. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7017. },
  7018. "dist": {
  7019. "type": "zip",
  7020. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7021. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7022. "shasum": ""
  7023. },
  7024. "require": {
  7025. "php": ">=8.1",
  7026. "psr/container": "^2.0"
  7027. },
  7028. "conflict": {
  7029. "ext-psr": "<1.1|>=2"
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "branch-alias": {
  7034. "dev-main": "3.4-dev"
  7035. },
  7036. "thanks": {
  7037. "name": "symfony/contracts",
  7038. "url": "https://github.com/symfony/contracts"
  7039. }
  7040. },
  7041. "autoload": {
  7042. "psr-4": {
  7043. "Symfony\\Contracts\\Service\\": ""
  7044. },
  7045. "exclude-from-classmap": [
  7046. "/Test/"
  7047. ]
  7048. },
  7049. "notification-url": "https://packagist.org/downloads/",
  7050. "license": [
  7051. "MIT"
  7052. ],
  7053. "authors": [
  7054. {
  7055. "name": "Nicolas Grekas",
  7056. "email": "p@tchwork.com"
  7057. },
  7058. {
  7059. "name": "Symfony Community",
  7060. "homepage": "https://symfony.com/contributors"
  7061. }
  7062. ],
  7063. "description": "Generic abstractions related to writing services",
  7064. "homepage": "https://symfony.com",
  7065. "keywords": [
  7066. "abstractions",
  7067. "contracts",
  7068. "decoupling",
  7069. "interfaces",
  7070. "interoperability",
  7071. "standards"
  7072. ],
  7073. "support": {
  7074. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7075. },
  7076. "funding": [
  7077. {
  7078. "url": "https://symfony.com/sponsor",
  7079. "type": "custom"
  7080. },
  7081. {
  7082. "url": "https://github.com/fabpot",
  7083. "type": "github"
  7084. },
  7085. {
  7086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7087. "type": "tidelift"
  7088. }
  7089. ],
  7090. "time": "2023-05-23T14:45:45+00:00"
  7091. },
  7092. {
  7093. "name": "symfony/stopwatch",
  7094. "version": "v6.3.0",
  7095. "source": {
  7096. "type": "git",
  7097. "url": "https://github.com/symfony/stopwatch.git",
  7098. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2"
  7099. },
  7100. "dist": {
  7101. "type": "zip",
  7102. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7103. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7104. "shasum": ""
  7105. },
  7106. "require": {
  7107. "php": ">=8.1",
  7108. "symfony/service-contracts": "^2.5|^3"
  7109. },
  7110. "type": "library",
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Symfony\\Component\\Stopwatch\\": ""
  7114. },
  7115. "exclude-from-classmap": [
  7116. "/Tests/"
  7117. ]
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "license": [
  7121. "MIT"
  7122. ],
  7123. "authors": [
  7124. {
  7125. "name": "Fabien Potencier",
  7126. "email": "fabien@symfony.com"
  7127. },
  7128. {
  7129. "name": "Symfony Community",
  7130. "homepage": "https://symfony.com/contributors"
  7131. }
  7132. ],
  7133. "description": "Provides a way to profile code",
  7134. "homepage": "https://symfony.com",
  7135. "support": {
  7136. "source": "https://github.com/symfony/stopwatch/tree/v6.3.0"
  7137. },
  7138. "funding": [
  7139. {
  7140. "url": "https://symfony.com/sponsor",
  7141. "type": "custom"
  7142. },
  7143. {
  7144. "url": "https://github.com/fabpot",
  7145. "type": "github"
  7146. },
  7147. {
  7148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7149. "type": "tidelift"
  7150. }
  7151. ],
  7152. "time": "2023-02-16T10:14:28+00:00"
  7153. },
  7154. {
  7155. "name": "symfony/string",
  7156. "version": "v6.3.0",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://github.com/symfony/string.git",
  7160. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  7165. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  7166. "shasum": ""
  7167. },
  7168. "require": {
  7169. "php": ">=8.1",
  7170. "symfony/polyfill-ctype": "~1.8",
  7171. "symfony/polyfill-intl-grapheme": "~1.0",
  7172. "symfony/polyfill-intl-normalizer": "~1.0",
  7173. "symfony/polyfill-mbstring": "~1.0"
  7174. },
  7175. "conflict": {
  7176. "symfony/translation-contracts": "<2.5"
  7177. },
  7178. "require-dev": {
  7179. "symfony/error-handler": "^5.4|^6.0",
  7180. "symfony/http-client": "^5.4|^6.0",
  7181. "symfony/intl": "^6.2",
  7182. "symfony/translation-contracts": "^2.5|^3.0",
  7183. "symfony/var-exporter": "^5.4|^6.0"
  7184. },
  7185. "type": "library",
  7186. "autoload": {
  7187. "files": [
  7188. "Resources/functions.php"
  7189. ],
  7190. "psr-4": {
  7191. "Symfony\\Component\\String\\": ""
  7192. },
  7193. "exclude-from-classmap": [
  7194. "/Tests/"
  7195. ]
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Nicolas Grekas",
  7204. "email": "p@tchwork.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7212. "homepage": "https://symfony.com",
  7213. "keywords": [
  7214. "grapheme",
  7215. "i18n",
  7216. "string",
  7217. "unicode",
  7218. "utf-8",
  7219. "utf8"
  7220. ],
  7221. "support": {
  7222. "source": "https://github.com/symfony/string/tree/v6.3.0"
  7223. },
  7224. "funding": [
  7225. {
  7226. "url": "https://symfony.com/sponsor",
  7227. "type": "custom"
  7228. },
  7229. {
  7230. "url": "https://github.com/fabpot",
  7231. "type": "github"
  7232. },
  7233. {
  7234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7235. "type": "tidelift"
  7236. }
  7237. ],
  7238. "time": "2023-03-21T21:06:29+00:00"
  7239. },
  7240. {
  7241. "name": "symfony/translation",
  7242. "version": "v6.3.0",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://github.com/symfony/translation.git",
  7246. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
  7251. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
  7252. "shasum": ""
  7253. },
  7254. "require": {
  7255. "php": ">=8.1",
  7256. "symfony/polyfill-mbstring": "~1.0",
  7257. "symfony/translation-contracts": "^2.5|^3.0"
  7258. },
  7259. "conflict": {
  7260. "symfony/config": "<5.4",
  7261. "symfony/console": "<5.4",
  7262. "symfony/dependency-injection": "<5.4",
  7263. "symfony/http-client-contracts": "<2.5",
  7264. "symfony/http-kernel": "<5.4",
  7265. "symfony/service-contracts": "<2.5",
  7266. "symfony/twig-bundle": "<5.4",
  7267. "symfony/yaml": "<5.4"
  7268. },
  7269. "provide": {
  7270. "symfony/translation-implementation": "2.3|3.0"
  7271. },
  7272. "require-dev": {
  7273. "nikic/php-parser": "^4.13",
  7274. "psr/log": "^1|^2|^3",
  7275. "symfony/config": "^5.4|^6.0",
  7276. "symfony/console": "^5.4|^6.0",
  7277. "symfony/dependency-injection": "^5.4|^6.0",
  7278. "symfony/finder": "^5.4|^6.0",
  7279. "symfony/http-client-contracts": "^2.5|^3.0",
  7280. "symfony/http-kernel": "^5.4|^6.0",
  7281. "symfony/intl": "^5.4|^6.0",
  7282. "symfony/polyfill-intl-icu": "^1.21",
  7283. "symfony/routing": "^5.4|^6.0",
  7284. "symfony/service-contracts": "^2.5|^3",
  7285. "symfony/yaml": "^5.4|^6.0"
  7286. },
  7287. "type": "library",
  7288. "autoload": {
  7289. "files": [
  7290. "Resources/functions.php"
  7291. ],
  7292. "psr-4": {
  7293. "Symfony\\Component\\Translation\\": ""
  7294. },
  7295. "exclude-from-classmap": [
  7296. "/Tests/"
  7297. ]
  7298. },
  7299. "notification-url": "https://packagist.org/downloads/",
  7300. "license": [
  7301. "MIT"
  7302. ],
  7303. "authors": [
  7304. {
  7305. "name": "Fabien Potencier",
  7306. "email": "fabien@symfony.com"
  7307. },
  7308. {
  7309. "name": "Symfony Community",
  7310. "homepage": "https://symfony.com/contributors"
  7311. }
  7312. ],
  7313. "description": "Provides tools to internationalize your application",
  7314. "homepage": "https://symfony.com",
  7315. "support": {
  7316. "source": "https://github.com/symfony/translation/tree/v6.3.0"
  7317. },
  7318. "funding": [
  7319. {
  7320. "url": "https://symfony.com/sponsor",
  7321. "type": "custom"
  7322. },
  7323. {
  7324. "url": "https://github.com/fabpot",
  7325. "type": "github"
  7326. },
  7327. {
  7328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7329. "type": "tidelift"
  7330. }
  7331. ],
  7332. "time": "2023-05-19T12:46:45+00:00"
  7333. },
  7334. {
  7335. "name": "symfony/translation-contracts",
  7336. "version": "v3.3.0",
  7337. "source": {
  7338. "type": "git",
  7339. "url": "https://github.com/symfony/translation-contracts.git",
  7340. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  7341. },
  7342. "dist": {
  7343. "type": "zip",
  7344. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  7345. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  7346. "shasum": ""
  7347. },
  7348. "require": {
  7349. "php": ">=8.1"
  7350. },
  7351. "type": "library",
  7352. "extra": {
  7353. "branch-alias": {
  7354. "dev-main": "3.4-dev"
  7355. },
  7356. "thanks": {
  7357. "name": "symfony/contracts",
  7358. "url": "https://github.com/symfony/contracts"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "psr-4": {
  7363. "Symfony\\Contracts\\Translation\\": ""
  7364. },
  7365. "exclude-from-classmap": [
  7366. "/Test/"
  7367. ]
  7368. },
  7369. "notification-url": "https://packagist.org/downloads/",
  7370. "license": [
  7371. "MIT"
  7372. ],
  7373. "authors": [
  7374. {
  7375. "name": "Nicolas Grekas",
  7376. "email": "p@tchwork.com"
  7377. },
  7378. {
  7379. "name": "Symfony Community",
  7380. "homepage": "https://symfony.com/contributors"
  7381. }
  7382. ],
  7383. "description": "Generic abstractions related to translation",
  7384. "homepage": "https://symfony.com",
  7385. "keywords": [
  7386. "abstractions",
  7387. "contracts",
  7388. "decoupling",
  7389. "interfaces",
  7390. "interoperability",
  7391. "standards"
  7392. ],
  7393. "support": {
  7394. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2023-05-30T17:17:10+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/twig-bridge",
  7414. "version": "v6.3.0",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/twig-bridge.git",
  7418. "reference": "67a33c71062d7d931fe9a8cb7be79cca986a6c09"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/67a33c71062d7d931fe9a8cb7be79cca986a6c09",
  7423. "reference": "67a33c71062d7d931fe9a8cb7be79cca986a6c09",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "php": ">=8.1",
  7428. "symfony/translation-contracts": "^2.5|^3",
  7429. "twig/twig": "^2.13|^3.0.4"
  7430. },
  7431. "conflict": {
  7432. "phpdocumentor/reflection-docblock": "<3.2.2",
  7433. "phpdocumentor/type-resolver": "<1.4.0",
  7434. "symfony/console": "<5.4",
  7435. "symfony/form": "<6.3",
  7436. "symfony/http-foundation": "<5.4",
  7437. "symfony/http-kernel": "<6.2",
  7438. "symfony/mime": "<6.2",
  7439. "symfony/translation": "<5.4",
  7440. "symfony/workflow": "<5.4"
  7441. },
  7442. "require-dev": {
  7443. "doctrine/annotations": "^1.12|^2",
  7444. "egulias/email-validator": "^2.1.10|^3|^4",
  7445. "league/html-to-markdown": "^5.0",
  7446. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7447. "symfony/asset": "^5.4|^6.0",
  7448. "symfony/asset-mapper": "^6.3",
  7449. "symfony/console": "^5.4|^6.0",
  7450. "symfony/dependency-injection": "^5.4|^6.0",
  7451. "symfony/expression-language": "^5.4|^6.0",
  7452. "symfony/finder": "^5.4|^6.0",
  7453. "symfony/form": "^6.3",
  7454. "symfony/html-sanitizer": "^6.1",
  7455. "symfony/http-foundation": "^5.4|^6.0",
  7456. "symfony/http-kernel": "^6.2",
  7457. "symfony/intl": "^5.4|^6.0",
  7458. "symfony/mime": "^6.2",
  7459. "symfony/polyfill-intl-icu": "~1.0",
  7460. "symfony/property-info": "^5.4|^6.0",
  7461. "symfony/routing": "^5.4|^6.0",
  7462. "symfony/security-acl": "^2.8|^3.0",
  7463. "symfony/security-core": "^5.4|^6.0",
  7464. "symfony/security-csrf": "^5.4|^6.0",
  7465. "symfony/security-http": "^5.4|^6.0",
  7466. "symfony/serializer": "^6.2",
  7467. "symfony/stopwatch": "^5.4|^6.0",
  7468. "symfony/translation": "^6.1",
  7469. "symfony/web-link": "^5.4|^6.0",
  7470. "symfony/workflow": "^5.4|^6.0",
  7471. "symfony/yaml": "^5.4|^6.0",
  7472. "twig/cssinliner-extra": "^2.12|^3",
  7473. "twig/inky-extra": "^2.12|^3",
  7474. "twig/markdown-extra": "^2.12|^3"
  7475. },
  7476. "type": "symfony-bridge",
  7477. "autoload": {
  7478. "psr-4": {
  7479. "Symfony\\Bridge\\Twig\\": ""
  7480. },
  7481. "exclude-from-classmap": [
  7482. "/Tests/"
  7483. ]
  7484. },
  7485. "notification-url": "https://packagist.org/downloads/",
  7486. "license": [
  7487. "MIT"
  7488. ],
  7489. "authors": [
  7490. {
  7491. "name": "Fabien Potencier",
  7492. "email": "fabien@symfony.com"
  7493. },
  7494. {
  7495. "name": "Symfony Community",
  7496. "homepage": "https://symfony.com/contributors"
  7497. }
  7498. ],
  7499. "description": "Provides integration for Twig with various Symfony components",
  7500. "homepage": "https://symfony.com",
  7501. "support": {
  7502. "source": "https://github.com/symfony/twig-bridge/tree/v6.3.0"
  7503. },
  7504. "funding": [
  7505. {
  7506. "url": "https://symfony.com/sponsor",
  7507. "type": "custom"
  7508. },
  7509. {
  7510. "url": "https://github.com/fabpot",
  7511. "type": "github"
  7512. },
  7513. {
  7514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7515. "type": "tidelift"
  7516. }
  7517. ],
  7518. "time": "2023-05-29T13:12:36+00:00"
  7519. },
  7520. {
  7521. "name": "symfony/twig-bundle",
  7522. "version": "v6.3.0",
  7523. "source": {
  7524. "type": "git",
  7525. "url": "https://github.com/symfony/twig-bundle.git",
  7526. "reference": "d0cd4d1675c0582d27c2e8bb0dc27c0303d8e3ea"
  7527. },
  7528. "dist": {
  7529. "type": "zip",
  7530. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d0cd4d1675c0582d27c2e8bb0dc27c0303d8e3ea",
  7531. "reference": "d0cd4d1675c0582d27c2e8bb0dc27c0303d8e3ea",
  7532. "shasum": ""
  7533. },
  7534. "require": {
  7535. "composer-runtime-api": ">=2.1",
  7536. "php": ">=8.1",
  7537. "symfony/config": "^6.1",
  7538. "symfony/dependency-injection": "^6.1",
  7539. "symfony/http-foundation": "^5.4|^6.0",
  7540. "symfony/http-kernel": "^6.2",
  7541. "symfony/twig-bridge": "^6.3",
  7542. "twig/twig": "^2.13|^3.0.4"
  7543. },
  7544. "conflict": {
  7545. "symfony/framework-bundle": "<5.4",
  7546. "symfony/translation": "<5.4"
  7547. },
  7548. "require-dev": {
  7549. "doctrine/annotations": "^1.10.4|^2",
  7550. "symfony/asset": "^5.4|^6.0",
  7551. "symfony/expression-language": "^5.4|^6.0",
  7552. "symfony/finder": "^5.4|^6.0",
  7553. "symfony/form": "^5.4|^6.0",
  7554. "symfony/framework-bundle": "^5.4|^6.0",
  7555. "symfony/routing": "^5.4|^6.0",
  7556. "symfony/stopwatch": "^5.4|^6.0",
  7557. "symfony/translation": "^5.4|^6.0",
  7558. "symfony/web-link": "^5.4|^6.0",
  7559. "symfony/yaml": "^5.4|^6.0"
  7560. },
  7561. "type": "symfony-bundle",
  7562. "autoload": {
  7563. "psr-4": {
  7564. "Symfony\\Bundle\\TwigBundle\\": ""
  7565. },
  7566. "exclude-from-classmap": [
  7567. "/Tests/"
  7568. ]
  7569. },
  7570. "notification-url": "https://packagist.org/downloads/",
  7571. "license": [
  7572. "MIT"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "Fabien Potencier",
  7577. "email": "fabien@symfony.com"
  7578. },
  7579. {
  7580. "name": "Symfony Community",
  7581. "homepage": "https://symfony.com/contributors"
  7582. }
  7583. ],
  7584. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7585. "homepage": "https://symfony.com",
  7586. "support": {
  7587. "source": "https://github.com/symfony/twig-bundle/tree/v6.3.0"
  7588. },
  7589. "funding": [
  7590. {
  7591. "url": "https://symfony.com/sponsor",
  7592. "type": "custom"
  7593. },
  7594. {
  7595. "url": "https://github.com/fabpot",
  7596. "type": "github"
  7597. },
  7598. {
  7599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7600. "type": "tidelift"
  7601. }
  7602. ],
  7603. "time": "2023-05-06T09:53:41+00:00"
  7604. },
  7605. {
  7606. "name": "symfony/validator",
  7607. "version": "v6.3.1",
  7608. "source": {
  7609. "type": "git",
  7610. "url": "https://github.com/symfony/validator.git",
  7611. "reference": "1b71f43c62ee867ab08195ba6039a1bc3e6654dc"
  7612. },
  7613. "dist": {
  7614. "type": "zip",
  7615. "url": "https://api.github.com/repos/symfony/validator/zipball/1b71f43c62ee867ab08195ba6039a1bc3e6654dc",
  7616. "reference": "1b71f43c62ee867ab08195ba6039a1bc3e6654dc",
  7617. "shasum": ""
  7618. },
  7619. "require": {
  7620. "php": ">=8.1",
  7621. "symfony/deprecation-contracts": "^2.5|^3",
  7622. "symfony/polyfill-ctype": "~1.8",
  7623. "symfony/polyfill-mbstring": "~1.0",
  7624. "symfony/polyfill-php83": "^1.27",
  7625. "symfony/translation-contracts": "^2.5|^3"
  7626. },
  7627. "conflict": {
  7628. "doctrine/annotations": "<1.13",
  7629. "doctrine/lexer": "<1.1",
  7630. "symfony/dependency-injection": "<5.4",
  7631. "symfony/expression-language": "<5.4",
  7632. "symfony/http-kernel": "<5.4",
  7633. "symfony/intl": "<5.4",
  7634. "symfony/property-info": "<5.4",
  7635. "symfony/translation": "<5.4",
  7636. "symfony/yaml": "<5.4"
  7637. },
  7638. "require-dev": {
  7639. "doctrine/annotations": "^1.13|^2",
  7640. "egulias/email-validator": "^2.1.10|^3|^4",
  7641. "symfony/cache": "^5.4|^6.0",
  7642. "symfony/config": "^5.4|^6.0",
  7643. "symfony/console": "^5.4|^6.0",
  7644. "symfony/dependency-injection": "^5.4|^6.0",
  7645. "symfony/expression-language": "^5.4|^6.0",
  7646. "symfony/finder": "^5.4|^6.0",
  7647. "symfony/http-client": "^5.4|^6.0",
  7648. "symfony/http-foundation": "^5.4|^6.0",
  7649. "symfony/http-kernel": "^5.4|^6.0",
  7650. "symfony/intl": "^5.4|^6.0",
  7651. "symfony/mime": "^5.4|^6.0",
  7652. "symfony/property-access": "^5.4|^6.0",
  7653. "symfony/property-info": "^5.4|^6.0",
  7654. "symfony/translation": "^5.4|^6.0",
  7655. "symfony/yaml": "^5.4|^6.0"
  7656. },
  7657. "type": "library",
  7658. "autoload": {
  7659. "psr-4": {
  7660. "Symfony\\Component\\Validator\\": ""
  7661. },
  7662. "exclude-from-classmap": [
  7663. "/Tests/"
  7664. ]
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "MIT"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Fabien Potencier",
  7673. "email": "fabien@symfony.com"
  7674. },
  7675. {
  7676. "name": "Symfony Community",
  7677. "homepage": "https://symfony.com/contributors"
  7678. }
  7679. ],
  7680. "description": "Provides tools to validate values",
  7681. "homepage": "https://symfony.com",
  7682. "support": {
  7683. "source": "https://github.com/symfony/validator/tree/v6.3.1"
  7684. },
  7685. "funding": [
  7686. {
  7687. "url": "https://symfony.com/sponsor",
  7688. "type": "custom"
  7689. },
  7690. {
  7691. "url": "https://github.com/fabpot",
  7692. "type": "github"
  7693. },
  7694. {
  7695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7696. "type": "tidelift"
  7697. }
  7698. ],
  7699. "time": "2023-06-21T12:08:28+00:00"
  7700. },
  7701. {
  7702. "name": "symfony/var-dumper",
  7703. "version": "v6.3.1",
  7704. "source": {
  7705. "type": "git",
  7706. "url": "https://github.com/symfony/var-dumper.git",
  7707. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515"
  7708. },
  7709. "dist": {
  7710. "type": "zip",
  7711. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515",
  7712. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515",
  7713. "shasum": ""
  7714. },
  7715. "require": {
  7716. "php": ">=8.1",
  7717. "symfony/polyfill-mbstring": "~1.0"
  7718. },
  7719. "conflict": {
  7720. "symfony/console": "<5.4"
  7721. },
  7722. "require-dev": {
  7723. "ext-iconv": "*",
  7724. "symfony/console": "^5.4|^6.0",
  7725. "symfony/process": "^5.4|^6.0",
  7726. "symfony/uid": "^5.4|^6.0",
  7727. "twig/twig": "^2.13|^3.0.4"
  7728. },
  7729. "bin": [
  7730. "Resources/bin/var-dump-server"
  7731. ],
  7732. "type": "library",
  7733. "autoload": {
  7734. "files": [
  7735. "Resources/functions/dump.php"
  7736. ],
  7737. "psr-4": {
  7738. "Symfony\\Component\\VarDumper\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/"
  7742. ]
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Nicolas Grekas",
  7751. "email": "p@tchwork.com"
  7752. },
  7753. {
  7754. "name": "Symfony Community",
  7755. "homepage": "https://symfony.com/contributors"
  7756. }
  7757. ],
  7758. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7759. "homepage": "https://symfony.com",
  7760. "keywords": [
  7761. "debug",
  7762. "dump"
  7763. ],
  7764. "support": {
  7765. "source": "https://github.com/symfony/var-dumper/tree/v6.3.1"
  7766. },
  7767. "funding": [
  7768. {
  7769. "url": "https://symfony.com/sponsor",
  7770. "type": "custom"
  7771. },
  7772. {
  7773. "url": "https://github.com/fabpot",
  7774. "type": "github"
  7775. },
  7776. {
  7777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7778. "type": "tidelift"
  7779. }
  7780. ],
  7781. "time": "2023-06-21T12:08:28+00:00"
  7782. },
  7783. {
  7784. "name": "symfony/var-exporter",
  7785. "version": "v6.3.0",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/symfony/var-exporter.git",
  7789. "reference": "db5416d04269f2827d8c54331ba4cfa42620d350"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/db5416d04269f2827d8c54331ba4cfa42620d350",
  7794. "reference": "db5416d04269f2827d8c54331ba4cfa42620d350",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=8.1"
  7799. },
  7800. "require-dev": {
  7801. "symfony/var-dumper": "^5.4|^6.0"
  7802. },
  7803. "type": "library",
  7804. "autoload": {
  7805. "psr-4": {
  7806. "Symfony\\Component\\VarExporter\\": ""
  7807. },
  7808. "exclude-from-classmap": [
  7809. "/Tests/"
  7810. ]
  7811. },
  7812. "notification-url": "https://packagist.org/downloads/",
  7813. "license": [
  7814. "MIT"
  7815. ],
  7816. "authors": [
  7817. {
  7818. "name": "Nicolas Grekas",
  7819. "email": "p@tchwork.com"
  7820. },
  7821. {
  7822. "name": "Symfony Community",
  7823. "homepage": "https://symfony.com/contributors"
  7824. }
  7825. ],
  7826. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7827. "homepage": "https://symfony.com",
  7828. "keywords": [
  7829. "clone",
  7830. "construct",
  7831. "export",
  7832. "hydrate",
  7833. "instantiate",
  7834. "lazy-loading",
  7835. "proxy",
  7836. "serialize"
  7837. ],
  7838. "support": {
  7839. "source": "https://github.com/symfony/var-exporter/tree/v6.3.0"
  7840. },
  7841. "funding": [
  7842. {
  7843. "url": "https://symfony.com/sponsor",
  7844. "type": "custom"
  7845. },
  7846. {
  7847. "url": "https://github.com/fabpot",
  7848. "type": "github"
  7849. },
  7850. {
  7851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7852. "type": "tidelift"
  7853. }
  7854. ],
  7855. "time": "2023-04-21T08:48:44+00:00"
  7856. },
  7857. {
  7858. "name": "symfony/web-link",
  7859. "version": "v6.3.0",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/symfony/web-link.git",
  7863. "reference": "0989ca617d0703cdca501a245f10e194ff22315b"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/symfony/web-link/zipball/0989ca617d0703cdca501a245f10e194ff22315b",
  7868. "reference": "0989ca617d0703cdca501a245f10e194ff22315b",
  7869. "shasum": ""
  7870. },
  7871. "require": {
  7872. "php": ">=8.1",
  7873. "psr/link": "^1.1|^2.0"
  7874. },
  7875. "conflict": {
  7876. "symfony/http-kernel": "<5.4"
  7877. },
  7878. "provide": {
  7879. "psr/link-implementation": "1.0|2.0"
  7880. },
  7881. "require-dev": {
  7882. "symfony/http-kernel": "^5.4|^6.0"
  7883. },
  7884. "type": "library",
  7885. "autoload": {
  7886. "psr-4": {
  7887. "Symfony\\Component\\WebLink\\": ""
  7888. },
  7889. "exclude-from-classmap": [
  7890. "/Tests/"
  7891. ]
  7892. },
  7893. "notification-url": "https://packagist.org/downloads/",
  7894. "license": [
  7895. "MIT"
  7896. ],
  7897. "authors": [
  7898. {
  7899. "name": "Kévin Dunglas",
  7900. "email": "dunglas@gmail.com"
  7901. },
  7902. {
  7903. "name": "Symfony Community",
  7904. "homepage": "https://symfony.com/contributors"
  7905. }
  7906. ],
  7907. "description": "Manages links between resources",
  7908. "homepage": "https://symfony.com",
  7909. "keywords": [
  7910. "dns-prefetch",
  7911. "http",
  7912. "http2",
  7913. "link",
  7914. "performance",
  7915. "prefetch",
  7916. "preload",
  7917. "prerender",
  7918. "psr13",
  7919. "push"
  7920. ],
  7921. "support": {
  7922. "source": "https://github.com/symfony/web-link/tree/v6.3.0"
  7923. },
  7924. "funding": [
  7925. {
  7926. "url": "https://symfony.com/sponsor",
  7927. "type": "custom"
  7928. },
  7929. {
  7930. "url": "https://github.com/fabpot",
  7931. "type": "github"
  7932. },
  7933. {
  7934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7935. "type": "tidelift"
  7936. }
  7937. ],
  7938. "time": "2023-04-21T14:41:17+00:00"
  7939. },
  7940. {
  7941. "name": "symfony/webpack-encore-bundle",
  7942. "version": "v1.17.1",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7946. "reference": "7e3b6f69bcfcbb40ecfe83ad7a77e44316d26573"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/7e3b6f69bcfcbb40ecfe83ad7a77e44316d26573",
  7951. "reference": "7e3b6f69bcfcbb40ecfe83ad7a77e44316d26573",
  7952. "shasum": ""
  7953. },
  7954. "require": {
  7955. "php": ">=7.1.3",
  7956. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7957. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7958. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7959. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7960. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7961. "symfony/polyfill-php80": "^1.25.0",
  7962. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7963. },
  7964. "require-dev": {
  7965. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7966. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7967. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7968. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7969. },
  7970. "type": "symfony-bundle",
  7971. "extra": {
  7972. "thanks": {
  7973. "name": "symfony/webpack-encore",
  7974. "url": "https://github.com/symfony/webpack-encore"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "psr-4": {
  7979. "Symfony\\WebpackEncoreBundle\\": "src"
  7980. }
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "MIT"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Symfony Community",
  7989. "homepage": "https://symfony.com/contributors"
  7990. }
  7991. ],
  7992. "description": "Integration with your Symfony app & Webpack Encore!",
  7993. "support": {
  7994. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7995. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.17.1"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://symfony.com/sponsor",
  8000. "type": "custom"
  8001. },
  8002. {
  8003. "url": "https://github.com/fabpot",
  8004. "type": "github"
  8005. },
  8006. {
  8007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8008. "type": "tidelift"
  8009. }
  8010. ],
  8011. "time": "2023-05-29T00:18:01+00:00"
  8012. },
  8013. {
  8014. "name": "symfony/yaml",
  8015. "version": "v6.3.0",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://github.com/symfony/yaml.git",
  8019. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  8024. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  8025. "shasum": ""
  8026. },
  8027. "require": {
  8028. "php": ">=8.1",
  8029. "symfony/polyfill-ctype": "^1.8"
  8030. },
  8031. "conflict": {
  8032. "symfony/console": "<5.4"
  8033. },
  8034. "require-dev": {
  8035. "symfony/console": "^5.4|^6.0"
  8036. },
  8037. "bin": [
  8038. "Resources/bin/yaml-lint"
  8039. ],
  8040. "type": "library",
  8041. "autoload": {
  8042. "psr-4": {
  8043. "Symfony\\Component\\Yaml\\": ""
  8044. },
  8045. "exclude-from-classmap": [
  8046. "/Tests/"
  8047. ]
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "MIT"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "Fabien Potencier",
  8056. "email": "fabien@symfony.com"
  8057. },
  8058. {
  8059. "name": "Symfony Community",
  8060. "homepage": "https://symfony.com/contributors"
  8061. }
  8062. ],
  8063. "description": "Loads and dumps YAML files",
  8064. "homepage": "https://symfony.com",
  8065. "support": {
  8066. "source": "https://github.com/symfony/yaml/tree/v6.3.0"
  8067. },
  8068. "funding": [
  8069. {
  8070. "url": "https://symfony.com/sponsor",
  8071. "type": "custom"
  8072. },
  8073. {
  8074. "url": "https://github.com/fabpot",
  8075. "type": "github"
  8076. },
  8077. {
  8078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8079. "type": "tidelift"
  8080. }
  8081. ],
  8082. "time": "2023-04-28T13:28:14+00:00"
  8083. },
  8084. {
  8085. "name": "twig/extra-bundle",
  8086. "version": "v3.6.1",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8090. "reference": "802cc2dd46ec88285d6c7fa85c26ab7f2cd5bc49"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/802cc2dd46ec88285d6c7fa85c26ab7f2cd5bc49",
  8095. "reference": "802cc2dd46ec88285d6c7fa85c26ab7f2cd5bc49",
  8096. "shasum": ""
  8097. },
  8098. "require": {
  8099. "php": ">=7.2.5",
  8100. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  8101. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  8102. "twig/twig": "^2.7|^3.0"
  8103. },
  8104. "require-dev": {
  8105. "league/commonmark": "^1.0|^2.0",
  8106. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  8107. "twig/cache-extra": "^3.0",
  8108. "twig/cssinliner-extra": "^2.12|^3.0",
  8109. "twig/html-extra": "^2.12|^3.0",
  8110. "twig/inky-extra": "^2.12|^3.0",
  8111. "twig/intl-extra": "^2.12|^3.0",
  8112. "twig/markdown-extra": "^2.12|^3.0",
  8113. "twig/string-extra": "^2.12|^3.0"
  8114. },
  8115. "type": "symfony-bundle",
  8116. "autoload": {
  8117. "psr-4": {
  8118. "Twig\\Extra\\TwigExtraBundle\\": ""
  8119. },
  8120. "exclude-from-classmap": [
  8121. "/Tests/"
  8122. ]
  8123. },
  8124. "notification-url": "https://packagist.org/downloads/",
  8125. "license": [
  8126. "MIT"
  8127. ],
  8128. "authors": [
  8129. {
  8130. "name": "Fabien Potencier",
  8131. "email": "fabien@symfony.com",
  8132. "homepage": "http://fabien.potencier.org",
  8133. "role": "Lead Developer"
  8134. }
  8135. ],
  8136. "description": "A Symfony bundle for extra Twig extensions",
  8137. "homepage": "https://twig.symfony.com",
  8138. "keywords": [
  8139. "bundle",
  8140. "extra",
  8141. "twig"
  8142. ],
  8143. "support": {
  8144. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.6.1"
  8145. },
  8146. "funding": [
  8147. {
  8148. "url": "https://github.com/fabpot",
  8149. "type": "github"
  8150. },
  8151. {
  8152. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8153. "type": "tidelift"
  8154. }
  8155. ],
  8156. "time": "2023-05-06T11:11:46+00:00"
  8157. },
  8158. {
  8159. "name": "twig/markdown-extra",
  8160. "version": "v3.6.0",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/twigphp/markdown-extra.git",
  8164. "reference": "8f1179e279cea6ef14066a4560b859df58acd5d8"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/8f1179e279cea6ef14066a4560b859df58acd5d8",
  8169. "reference": "8f1179e279cea6ef14066a4560b859df58acd5d8",
  8170. "shasum": ""
  8171. },
  8172. "require": {
  8173. "php": ">=7.1.3",
  8174. "twig/twig": "^2.7|^3.0"
  8175. },
  8176. "require-dev": {
  8177. "erusev/parsedown": "^1.7",
  8178. "league/commonmark": "^1.0|^2.0",
  8179. "league/html-to-markdown": "^4.8|^5.0",
  8180. "michelf/php-markdown": "^1.8|^2.0",
  8181. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8182. },
  8183. "type": "library",
  8184. "autoload": {
  8185. "psr-4": {
  8186. "Twig\\Extra\\Markdown\\": ""
  8187. },
  8188. "exclude-from-classmap": [
  8189. "/Tests/"
  8190. ]
  8191. },
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "MIT"
  8195. ],
  8196. "authors": [
  8197. {
  8198. "name": "Fabien Potencier",
  8199. "email": "fabien@symfony.com",
  8200. "homepage": "http://fabien.potencier.org",
  8201. "role": "Lead Developer"
  8202. }
  8203. ],
  8204. "description": "A Twig extension for Markdown",
  8205. "homepage": "https://twig.symfony.com",
  8206. "keywords": [
  8207. "html",
  8208. "markdown",
  8209. "twig"
  8210. ],
  8211. "support": {
  8212. "source": "https://github.com/twigphp/markdown-extra/tree/v3.6.0"
  8213. },
  8214. "funding": [
  8215. {
  8216. "url": "https://github.com/fabpot",
  8217. "type": "github"
  8218. },
  8219. {
  8220. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8221. "type": "tidelift"
  8222. }
  8223. ],
  8224. "time": "2023-02-09T06:45:16+00:00"
  8225. },
  8226. {
  8227. "name": "twig/twig",
  8228. "version": "v3.6.1",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/twigphp/Twig.git",
  8232. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  8237. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": ">=7.2.5",
  8242. "symfony/polyfill-ctype": "^1.8",
  8243. "symfony/polyfill-mbstring": "^1.3"
  8244. },
  8245. "require-dev": {
  8246. "psr/container": "^1.0|^2.0",
  8247. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8248. },
  8249. "type": "library",
  8250. "autoload": {
  8251. "psr-4": {
  8252. "Twig\\": "src/"
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "BSD-3-Clause"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Fabien Potencier",
  8262. "email": "fabien@symfony.com",
  8263. "homepage": "http://fabien.potencier.org",
  8264. "role": "Lead Developer"
  8265. },
  8266. {
  8267. "name": "Twig Team",
  8268. "role": "Contributors"
  8269. },
  8270. {
  8271. "name": "Armin Ronacher",
  8272. "email": "armin.ronacher@active-4.com",
  8273. "role": "Project Founder"
  8274. }
  8275. ],
  8276. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8277. "homepage": "https://twig.symfony.com",
  8278. "keywords": [
  8279. "templating"
  8280. ],
  8281. "support": {
  8282. "issues": "https://github.com/twigphp/Twig/issues",
  8283. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  8284. },
  8285. "funding": [
  8286. {
  8287. "url": "https://github.com/fabpot",
  8288. "type": "github"
  8289. },
  8290. {
  8291. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8292. "type": "tidelift"
  8293. }
  8294. ],
  8295. "time": "2023-06-08T12:52:13+00:00"
  8296. },
  8297. {
  8298. "name": "webmozart/assert",
  8299. "version": "1.11.0",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/webmozarts/assert.git",
  8303. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8308. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8309. "shasum": ""
  8310. },
  8311. "require": {
  8312. "ext-ctype": "*",
  8313. "php": "^7.2 || ^8.0"
  8314. },
  8315. "conflict": {
  8316. "phpstan/phpstan": "<0.12.20",
  8317. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8318. },
  8319. "require-dev": {
  8320. "phpunit/phpunit": "^8.5.13"
  8321. },
  8322. "type": "library",
  8323. "extra": {
  8324. "branch-alias": {
  8325. "dev-master": "1.10-dev"
  8326. }
  8327. },
  8328. "autoload": {
  8329. "psr-4": {
  8330. "Webmozart\\Assert\\": "src/"
  8331. }
  8332. },
  8333. "notification-url": "https://packagist.org/downloads/",
  8334. "license": [
  8335. "MIT"
  8336. ],
  8337. "authors": [
  8338. {
  8339. "name": "Bernhard Schussek",
  8340. "email": "bschussek@gmail.com"
  8341. }
  8342. ],
  8343. "description": "Assertions to validate method input/output with nice error messages.",
  8344. "keywords": [
  8345. "assert",
  8346. "check",
  8347. "validate"
  8348. ],
  8349. "support": {
  8350. "issues": "https://github.com/webmozarts/assert/issues",
  8351. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8352. },
  8353. "time": "2022-06-03T18:03:27+00:00"
  8354. }
  8355. ],
  8356. "packages-dev": [
  8357. {
  8358. "name": "myclabs/deep-copy",
  8359. "version": "1.11.1",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/myclabs/DeepCopy.git",
  8363. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8368. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8369. "shasum": ""
  8370. },
  8371. "require": {
  8372. "php": "^7.1 || ^8.0"
  8373. },
  8374. "conflict": {
  8375. "doctrine/collections": "<1.6.8",
  8376. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8377. },
  8378. "require-dev": {
  8379. "doctrine/collections": "^1.6.8",
  8380. "doctrine/common": "^2.13.3 || ^3.2.2",
  8381. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8382. },
  8383. "type": "library",
  8384. "autoload": {
  8385. "files": [
  8386. "src/DeepCopy/deep_copy.php"
  8387. ],
  8388. "psr-4": {
  8389. "DeepCopy\\": "src/DeepCopy/"
  8390. }
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "MIT"
  8395. ],
  8396. "description": "Create deep copies (clones) of your objects",
  8397. "keywords": [
  8398. "clone",
  8399. "copy",
  8400. "duplicate",
  8401. "object",
  8402. "object graph"
  8403. ],
  8404. "support": {
  8405. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8406. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8407. },
  8408. "funding": [
  8409. {
  8410. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8411. "type": "tidelift"
  8412. }
  8413. ],
  8414. "time": "2023-03-08T13:26:56+00:00"
  8415. },
  8416. {
  8417. "name": "nikic/php-parser",
  8418. "version": "v4.16.0",
  8419. "source": {
  8420. "type": "git",
  8421. "url": "https://github.com/nikic/PHP-Parser.git",
  8422. "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
  8423. },
  8424. "dist": {
  8425. "type": "zip",
  8426. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
  8427. "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
  8428. "shasum": ""
  8429. },
  8430. "require": {
  8431. "ext-tokenizer": "*",
  8432. "php": ">=7.0"
  8433. },
  8434. "require-dev": {
  8435. "ircmaxell/php-yacc": "^0.0.7",
  8436. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8437. },
  8438. "bin": [
  8439. "bin/php-parse"
  8440. ],
  8441. "type": "library",
  8442. "extra": {
  8443. "branch-alias": {
  8444. "dev-master": "4.9-dev"
  8445. }
  8446. },
  8447. "autoload": {
  8448. "psr-4": {
  8449. "PhpParser\\": "lib/PhpParser"
  8450. }
  8451. },
  8452. "notification-url": "https://packagist.org/downloads/",
  8453. "license": [
  8454. "BSD-3-Clause"
  8455. ],
  8456. "authors": [
  8457. {
  8458. "name": "Nikita Popov"
  8459. }
  8460. ],
  8461. "description": "A PHP parser written in PHP",
  8462. "keywords": [
  8463. "parser",
  8464. "php"
  8465. ],
  8466. "support": {
  8467. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8468. "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
  8469. },
  8470. "time": "2023-06-25T14:52:30+00:00"
  8471. },
  8472. {
  8473. "name": "phar-io/manifest",
  8474. "version": "2.0.3",
  8475. "source": {
  8476. "type": "git",
  8477. "url": "https://github.com/phar-io/manifest.git",
  8478. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8479. },
  8480. "dist": {
  8481. "type": "zip",
  8482. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8483. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8484. "shasum": ""
  8485. },
  8486. "require": {
  8487. "ext-dom": "*",
  8488. "ext-phar": "*",
  8489. "ext-xmlwriter": "*",
  8490. "phar-io/version": "^3.0.1",
  8491. "php": "^7.2 || ^8.0"
  8492. },
  8493. "type": "library",
  8494. "extra": {
  8495. "branch-alias": {
  8496. "dev-master": "2.0.x-dev"
  8497. }
  8498. },
  8499. "autoload": {
  8500. "classmap": [
  8501. "src/"
  8502. ]
  8503. },
  8504. "notification-url": "https://packagist.org/downloads/",
  8505. "license": [
  8506. "BSD-3-Clause"
  8507. ],
  8508. "authors": [
  8509. {
  8510. "name": "Arne Blankerts",
  8511. "email": "arne@blankerts.de",
  8512. "role": "Developer"
  8513. },
  8514. {
  8515. "name": "Sebastian Heuer",
  8516. "email": "sebastian@phpeople.de",
  8517. "role": "Developer"
  8518. },
  8519. {
  8520. "name": "Sebastian Bergmann",
  8521. "email": "sebastian@phpunit.de",
  8522. "role": "Developer"
  8523. }
  8524. ],
  8525. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8526. "support": {
  8527. "issues": "https://github.com/phar-io/manifest/issues",
  8528. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8529. },
  8530. "time": "2021-07-20T11:28:43+00:00"
  8531. },
  8532. {
  8533. "name": "phar-io/version",
  8534. "version": "3.2.1",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/phar-io/version.git",
  8538. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8543. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8544. "shasum": ""
  8545. },
  8546. "require": {
  8547. "php": "^7.2 || ^8.0"
  8548. },
  8549. "type": "library",
  8550. "autoload": {
  8551. "classmap": [
  8552. "src/"
  8553. ]
  8554. },
  8555. "notification-url": "https://packagist.org/downloads/",
  8556. "license": [
  8557. "BSD-3-Clause"
  8558. ],
  8559. "authors": [
  8560. {
  8561. "name": "Arne Blankerts",
  8562. "email": "arne@blankerts.de",
  8563. "role": "Developer"
  8564. },
  8565. {
  8566. "name": "Sebastian Heuer",
  8567. "email": "sebastian@phpeople.de",
  8568. "role": "Developer"
  8569. },
  8570. {
  8571. "name": "Sebastian Bergmann",
  8572. "email": "sebastian@phpunit.de",
  8573. "role": "Developer"
  8574. }
  8575. ],
  8576. "description": "Library for handling version information and constraints",
  8577. "support": {
  8578. "issues": "https://github.com/phar-io/version/issues",
  8579. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8580. },
  8581. "time": "2022-02-21T01:04:05+00:00"
  8582. },
  8583. {
  8584. "name": "phpunit/php-code-coverage",
  8585. "version": "9.2.26",
  8586. "source": {
  8587. "type": "git",
  8588. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8589. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  8590. },
  8591. "dist": {
  8592. "type": "zip",
  8593. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8594. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8595. "shasum": ""
  8596. },
  8597. "require": {
  8598. "ext-dom": "*",
  8599. "ext-libxml": "*",
  8600. "ext-xmlwriter": "*",
  8601. "nikic/php-parser": "^4.15",
  8602. "php": ">=7.3",
  8603. "phpunit/php-file-iterator": "^3.0.3",
  8604. "phpunit/php-text-template": "^2.0.2",
  8605. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8606. "sebastian/complexity": "^2.0",
  8607. "sebastian/environment": "^5.1.2",
  8608. "sebastian/lines-of-code": "^1.0.3",
  8609. "sebastian/version": "^3.0.1",
  8610. "theseer/tokenizer": "^1.2.0"
  8611. },
  8612. "require-dev": {
  8613. "phpunit/phpunit": "^9.3"
  8614. },
  8615. "suggest": {
  8616. "ext-pcov": "PHP extension that provides line coverage",
  8617. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8618. },
  8619. "type": "library",
  8620. "extra": {
  8621. "branch-alias": {
  8622. "dev-master": "9.2-dev"
  8623. }
  8624. },
  8625. "autoload": {
  8626. "classmap": [
  8627. "src/"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "BSD-3-Clause"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Sebastian Bergmann",
  8637. "email": "sebastian@phpunit.de",
  8638. "role": "lead"
  8639. }
  8640. ],
  8641. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8642. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8643. "keywords": [
  8644. "coverage",
  8645. "testing",
  8646. "xunit"
  8647. ],
  8648. "support": {
  8649. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8650. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  8651. },
  8652. "funding": [
  8653. {
  8654. "url": "https://github.com/sebastianbergmann",
  8655. "type": "github"
  8656. }
  8657. ],
  8658. "time": "2023-03-06T12:58:08+00:00"
  8659. },
  8660. {
  8661. "name": "phpunit/php-file-iterator",
  8662. "version": "3.0.6",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8666. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8671. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "php": ">=7.3"
  8676. },
  8677. "require-dev": {
  8678. "phpunit/phpunit": "^9.3"
  8679. },
  8680. "type": "library",
  8681. "extra": {
  8682. "branch-alias": {
  8683. "dev-master": "3.0-dev"
  8684. }
  8685. },
  8686. "autoload": {
  8687. "classmap": [
  8688. "src/"
  8689. ]
  8690. },
  8691. "notification-url": "https://packagist.org/downloads/",
  8692. "license": [
  8693. "BSD-3-Clause"
  8694. ],
  8695. "authors": [
  8696. {
  8697. "name": "Sebastian Bergmann",
  8698. "email": "sebastian@phpunit.de",
  8699. "role": "lead"
  8700. }
  8701. ],
  8702. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8703. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8704. "keywords": [
  8705. "filesystem",
  8706. "iterator"
  8707. ],
  8708. "support": {
  8709. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8710. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8711. },
  8712. "funding": [
  8713. {
  8714. "url": "https://github.com/sebastianbergmann",
  8715. "type": "github"
  8716. }
  8717. ],
  8718. "time": "2021-12-02T12:48:52+00:00"
  8719. },
  8720. {
  8721. "name": "phpunit/php-invoker",
  8722. "version": "3.1.1",
  8723. "source": {
  8724. "type": "git",
  8725. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8726. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8727. },
  8728. "dist": {
  8729. "type": "zip",
  8730. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8731. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8732. "shasum": ""
  8733. },
  8734. "require": {
  8735. "php": ">=7.3"
  8736. },
  8737. "require-dev": {
  8738. "ext-pcntl": "*",
  8739. "phpunit/phpunit": "^9.3"
  8740. },
  8741. "suggest": {
  8742. "ext-pcntl": "*"
  8743. },
  8744. "type": "library",
  8745. "extra": {
  8746. "branch-alias": {
  8747. "dev-master": "3.1-dev"
  8748. }
  8749. },
  8750. "autoload": {
  8751. "classmap": [
  8752. "src/"
  8753. ]
  8754. },
  8755. "notification-url": "https://packagist.org/downloads/",
  8756. "license": [
  8757. "BSD-3-Clause"
  8758. ],
  8759. "authors": [
  8760. {
  8761. "name": "Sebastian Bergmann",
  8762. "email": "sebastian@phpunit.de",
  8763. "role": "lead"
  8764. }
  8765. ],
  8766. "description": "Invoke callables with a timeout",
  8767. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8768. "keywords": [
  8769. "process"
  8770. ],
  8771. "support": {
  8772. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8773. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8774. },
  8775. "funding": [
  8776. {
  8777. "url": "https://github.com/sebastianbergmann",
  8778. "type": "github"
  8779. }
  8780. ],
  8781. "time": "2020-09-28T05:58:55+00:00"
  8782. },
  8783. {
  8784. "name": "phpunit/php-text-template",
  8785. "version": "2.0.4",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8789. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8794. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": ">=7.3"
  8799. },
  8800. "require-dev": {
  8801. "phpunit/phpunit": "^9.3"
  8802. },
  8803. "type": "library",
  8804. "extra": {
  8805. "branch-alias": {
  8806. "dev-master": "2.0-dev"
  8807. }
  8808. },
  8809. "autoload": {
  8810. "classmap": [
  8811. "src/"
  8812. ]
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "BSD-3-Clause"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Sebastian Bergmann",
  8821. "email": "sebastian@phpunit.de",
  8822. "role": "lead"
  8823. }
  8824. ],
  8825. "description": "Simple template engine.",
  8826. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8827. "keywords": [
  8828. "template"
  8829. ],
  8830. "support": {
  8831. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8832. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8833. },
  8834. "funding": [
  8835. {
  8836. "url": "https://github.com/sebastianbergmann",
  8837. "type": "github"
  8838. }
  8839. ],
  8840. "time": "2020-10-26T05:33:50+00:00"
  8841. },
  8842. {
  8843. "name": "phpunit/php-timer",
  8844. "version": "5.0.3",
  8845. "source": {
  8846. "type": "git",
  8847. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8848. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8849. },
  8850. "dist": {
  8851. "type": "zip",
  8852. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8853. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8854. "shasum": ""
  8855. },
  8856. "require": {
  8857. "php": ">=7.3"
  8858. },
  8859. "require-dev": {
  8860. "phpunit/phpunit": "^9.3"
  8861. },
  8862. "type": "library",
  8863. "extra": {
  8864. "branch-alias": {
  8865. "dev-master": "5.0-dev"
  8866. }
  8867. },
  8868. "autoload": {
  8869. "classmap": [
  8870. "src/"
  8871. ]
  8872. },
  8873. "notification-url": "https://packagist.org/downloads/",
  8874. "license": [
  8875. "BSD-3-Clause"
  8876. ],
  8877. "authors": [
  8878. {
  8879. "name": "Sebastian Bergmann",
  8880. "email": "sebastian@phpunit.de",
  8881. "role": "lead"
  8882. }
  8883. ],
  8884. "description": "Utility class for timing",
  8885. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8886. "keywords": [
  8887. "timer"
  8888. ],
  8889. "support": {
  8890. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8891. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8892. },
  8893. "funding": [
  8894. {
  8895. "url": "https://github.com/sebastianbergmann",
  8896. "type": "github"
  8897. }
  8898. ],
  8899. "time": "2020-10-26T13:16:10+00:00"
  8900. },
  8901. {
  8902. "name": "phpunit/phpunit",
  8903. "version": "9.6.10",
  8904. "source": {
  8905. "type": "git",
  8906. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8907. "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328"
  8908. },
  8909. "dist": {
  8910. "type": "zip",
  8911. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a6d351645c3fe5a30f5e86be6577d946af65a328",
  8912. "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328",
  8913. "shasum": ""
  8914. },
  8915. "require": {
  8916. "doctrine/instantiator": "^1.3.1 || ^2",
  8917. "ext-dom": "*",
  8918. "ext-json": "*",
  8919. "ext-libxml": "*",
  8920. "ext-mbstring": "*",
  8921. "ext-xml": "*",
  8922. "ext-xmlwriter": "*",
  8923. "myclabs/deep-copy": "^1.10.1",
  8924. "phar-io/manifest": "^2.0.3",
  8925. "phar-io/version": "^3.0.2",
  8926. "php": ">=7.3",
  8927. "phpunit/php-code-coverage": "^9.2.13",
  8928. "phpunit/php-file-iterator": "^3.0.5",
  8929. "phpunit/php-invoker": "^3.1.1",
  8930. "phpunit/php-text-template": "^2.0.3",
  8931. "phpunit/php-timer": "^5.0.2",
  8932. "sebastian/cli-parser": "^1.0.1",
  8933. "sebastian/code-unit": "^1.0.6",
  8934. "sebastian/comparator": "^4.0.8",
  8935. "sebastian/diff": "^4.0.3",
  8936. "sebastian/environment": "^5.1.3",
  8937. "sebastian/exporter": "^4.0.5",
  8938. "sebastian/global-state": "^5.0.1",
  8939. "sebastian/object-enumerator": "^4.0.3",
  8940. "sebastian/resource-operations": "^3.0.3",
  8941. "sebastian/type": "^3.2",
  8942. "sebastian/version": "^3.0.2"
  8943. },
  8944. "suggest": {
  8945. "ext-soap": "To be able to generate mocks based on WSDL files",
  8946. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8947. },
  8948. "bin": [
  8949. "phpunit"
  8950. ],
  8951. "type": "library",
  8952. "extra": {
  8953. "branch-alias": {
  8954. "dev-master": "9.6-dev"
  8955. }
  8956. },
  8957. "autoload": {
  8958. "files": [
  8959. "src/Framework/Assert/Functions.php"
  8960. ],
  8961. "classmap": [
  8962. "src/"
  8963. ]
  8964. },
  8965. "notification-url": "https://packagist.org/downloads/",
  8966. "license": [
  8967. "BSD-3-Clause"
  8968. ],
  8969. "authors": [
  8970. {
  8971. "name": "Sebastian Bergmann",
  8972. "email": "sebastian@phpunit.de",
  8973. "role": "lead"
  8974. }
  8975. ],
  8976. "description": "The PHP Unit Testing framework.",
  8977. "homepage": "https://phpunit.de/",
  8978. "keywords": [
  8979. "phpunit",
  8980. "testing",
  8981. "xunit"
  8982. ],
  8983. "support": {
  8984. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8985. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8986. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.10"
  8987. },
  8988. "funding": [
  8989. {
  8990. "url": "https://phpunit.de/sponsors.html",
  8991. "type": "custom"
  8992. },
  8993. {
  8994. "url": "https://github.com/sebastianbergmann",
  8995. "type": "github"
  8996. },
  8997. {
  8998. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8999. "type": "tidelift"
  9000. }
  9001. ],
  9002. "time": "2023-07-10T04:04:23+00:00"
  9003. },
  9004. {
  9005. "name": "sebastian/cli-parser",
  9006. "version": "1.0.1",
  9007. "source": {
  9008. "type": "git",
  9009. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9010. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9011. },
  9012. "dist": {
  9013. "type": "zip",
  9014. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9015. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9016. "shasum": ""
  9017. },
  9018. "require": {
  9019. "php": ">=7.3"
  9020. },
  9021. "require-dev": {
  9022. "phpunit/phpunit": "^9.3"
  9023. },
  9024. "type": "library",
  9025. "extra": {
  9026. "branch-alias": {
  9027. "dev-master": "1.0-dev"
  9028. }
  9029. },
  9030. "autoload": {
  9031. "classmap": [
  9032. "src/"
  9033. ]
  9034. },
  9035. "notification-url": "https://packagist.org/downloads/",
  9036. "license": [
  9037. "BSD-3-Clause"
  9038. ],
  9039. "authors": [
  9040. {
  9041. "name": "Sebastian Bergmann",
  9042. "email": "sebastian@phpunit.de",
  9043. "role": "lead"
  9044. }
  9045. ],
  9046. "description": "Library for parsing CLI options",
  9047. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9048. "support": {
  9049. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9050. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9051. },
  9052. "funding": [
  9053. {
  9054. "url": "https://github.com/sebastianbergmann",
  9055. "type": "github"
  9056. }
  9057. ],
  9058. "time": "2020-09-28T06:08:49+00:00"
  9059. },
  9060. {
  9061. "name": "sebastian/code-unit",
  9062. "version": "1.0.8",
  9063. "source": {
  9064. "type": "git",
  9065. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9066. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9067. },
  9068. "dist": {
  9069. "type": "zip",
  9070. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9071. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9072. "shasum": ""
  9073. },
  9074. "require": {
  9075. "php": ">=7.3"
  9076. },
  9077. "require-dev": {
  9078. "phpunit/phpunit": "^9.3"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-master": "1.0-dev"
  9084. }
  9085. },
  9086. "autoload": {
  9087. "classmap": [
  9088. "src/"
  9089. ]
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "BSD-3-Clause"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Sebastian Bergmann",
  9098. "email": "sebastian@phpunit.de",
  9099. "role": "lead"
  9100. }
  9101. ],
  9102. "description": "Collection of value objects that represent the PHP code units",
  9103. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9104. "support": {
  9105. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9106. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9107. },
  9108. "funding": [
  9109. {
  9110. "url": "https://github.com/sebastianbergmann",
  9111. "type": "github"
  9112. }
  9113. ],
  9114. "time": "2020-10-26T13:08:54+00:00"
  9115. },
  9116. {
  9117. "name": "sebastian/code-unit-reverse-lookup",
  9118. "version": "2.0.3",
  9119. "source": {
  9120. "type": "git",
  9121. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9122. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9123. },
  9124. "dist": {
  9125. "type": "zip",
  9126. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9127. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9128. "shasum": ""
  9129. },
  9130. "require": {
  9131. "php": ">=7.3"
  9132. },
  9133. "require-dev": {
  9134. "phpunit/phpunit": "^9.3"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-master": "2.0-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "classmap": [
  9144. "src/"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "BSD-3-Clause"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Sebastian Bergmann",
  9154. "email": "sebastian@phpunit.de"
  9155. }
  9156. ],
  9157. "description": "Looks up which function or method a line of code belongs to",
  9158. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9159. "support": {
  9160. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9161. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9162. },
  9163. "funding": [
  9164. {
  9165. "url": "https://github.com/sebastianbergmann",
  9166. "type": "github"
  9167. }
  9168. ],
  9169. "time": "2020-09-28T05:30:19+00:00"
  9170. },
  9171. {
  9172. "name": "sebastian/comparator",
  9173. "version": "4.0.8",
  9174. "source": {
  9175. "type": "git",
  9176. "url": "https://github.com/sebastianbergmann/comparator.git",
  9177. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9178. },
  9179. "dist": {
  9180. "type": "zip",
  9181. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9182. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9183. "shasum": ""
  9184. },
  9185. "require": {
  9186. "php": ">=7.3",
  9187. "sebastian/diff": "^4.0",
  9188. "sebastian/exporter": "^4.0"
  9189. },
  9190. "require-dev": {
  9191. "phpunit/phpunit": "^9.3"
  9192. },
  9193. "type": "library",
  9194. "extra": {
  9195. "branch-alias": {
  9196. "dev-master": "4.0-dev"
  9197. }
  9198. },
  9199. "autoload": {
  9200. "classmap": [
  9201. "src/"
  9202. ]
  9203. },
  9204. "notification-url": "https://packagist.org/downloads/",
  9205. "license": [
  9206. "BSD-3-Clause"
  9207. ],
  9208. "authors": [
  9209. {
  9210. "name": "Sebastian Bergmann",
  9211. "email": "sebastian@phpunit.de"
  9212. },
  9213. {
  9214. "name": "Jeff Welch",
  9215. "email": "whatthejeff@gmail.com"
  9216. },
  9217. {
  9218. "name": "Volker Dusch",
  9219. "email": "github@wallbash.com"
  9220. },
  9221. {
  9222. "name": "Bernhard Schussek",
  9223. "email": "bschussek@2bepublished.at"
  9224. }
  9225. ],
  9226. "description": "Provides the functionality to compare PHP values for equality",
  9227. "homepage": "https://github.com/sebastianbergmann/comparator",
  9228. "keywords": [
  9229. "comparator",
  9230. "compare",
  9231. "equality"
  9232. ],
  9233. "support": {
  9234. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9235. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9236. },
  9237. "funding": [
  9238. {
  9239. "url": "https://github.com/sebastianbergmann",
  9240. "type": "github"
  9241. }
  9242. ],
  9243. "time": "2022-09-14T12:41:17+00:00"
  9244. },
  9245. {
  9246. "name": "sebastian/complexity",
  9247. "version": "2.0.2",
  9248. "source": {
  9249. "type": "git",
  9250. "url": "https://github.com/sebastianbergmann/complexity.git",
  9251. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9252. },
  9253. "dist": {
  9254. "type": "zip",
  9255. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9256. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9257. "shasum": ""
  9258. },
  9259. "require": {
  9260. "nikic/php-parser": "^4.7",
  9261. "php": ">=7.3"
  9262. },
  9263. "require-dev": {
  9264. "phpunit/phpunit": "^9.3"
  9265. },
  9266. "type": "library",
  9267. "extra": {
  9268. "branch-alias": {
  9269. "dev-master": "2.0-dev"
  9270. }
  9271. },
  9272. "autoload": {
  9273. "classmap": [
  9274. "src/"
  9275. ]
  9276. },
  9277. "notification-url": "https://packagist.org/downloads/",
  9278. "license": [
  9279. "BSD-3-Clause"
  9280. ],
  9281. "authors": [
  9282. {
  9283. "name": "Sebastian Bergmann",
  9284. "email": "sebastian@phpunit.de",
  9285. "role": "lead"
  9286. }
  9287. ],
  9288. "description": "Library for calculating the complexity of PHP code units",
  9289. "homepage": "https://github.com/sebastianbergmann/complexity",
  9290. "support": {
  9291. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9292. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9293. },
  9294. "funding": [
  9295. {
  9296. "url": "https://github.com/sebastianbergmann",
  9297. "type": "github"
  9298. }
  9299. ],
  9300. "time": "2020-10-26T15:52:27+00:00"
  9301. },
  9302. {
  9303. "name": "sebastian/diff",
  9304. "version": "4.0.5",
  9305. "source": {
  9306. "type": "git",
  9307. "url": "https://github.com/sebastianbergmann/diff.git",
  9308. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9309. },
  9310. "dist": {
  9311. "type": "zip",
  9312. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9313. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9314. "shasum": ""
  9315. },
  9316. "require": {
  9317. "php": ">=7.3"
  9318. },
  9319. "require-dev": {
  9320. "phpunit/phpunit": "^9.3",
  9321. "symfony/process": "^4.2 || ^5"
  9322. },
  9323. "type": "library",
  9324. "extra": {
  9325. "branch-alias": {
  9326. "dev-master": "4.0-dev"
  9327. }
  9328. },
  9329. "autoload": {
  9330. "classmap": [
  9331. "src/"
  9332. ]
  9333. },
  9334. "notification-url": "https://packagist.org/downloads/",
  9335. "license": [
  9336. "BSD-3-Clause"
  9337. ],
  9338. "authors": [
  9339. {
  9340. "name": "Sebastian Bergmann",
  9341. "email": "sebastian@phpunit.de"
  9342. },
  9343. {
  9344. "name": "Kore Nordmann",
  9345. "email": "mail@kore-nordmann.de"
  9346. }
  9347. ],
  9348. "description": "Diff implementation",
  9349. "homepage": "https://github.com/sebastianbergmann/diff",
  9350. "keywords": [
  9351. "diff",
  9352. "udiff",
  9353. "unidiff",
  9354. "unified diff"
  9355. ],
  9356. "support": {
  9357. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9358. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9359. },
  9360. "funding": [
  9361. {
  9362. "url": "https://github.com/sebastianbergmann",
  9363. "type": "github"
  9364. }
  9365. ],
  9366. "time": "2023-05-07T05:35:17+00:00"
  9367. },
  9368. {
  9369. "name": "sebastian/environment",
  9370. "version": "5.1.5",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/sebastianbergmann/environment.git",
  9374. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9379. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "php": ">=7.3"
  9384. },
  9385. "require-dev": {
  9386. "phpunit/phpunit": "^9.3"
  9387. },
  9388. "suggest": {
  9389. "ext-posix": "*"
  9390. },
  9391. "type": "library",
  9392. "extra": {
  9393. "branch-alias": {
  9394. "dev-master": "5.1-dev"
  9395. }
  9396. },
  9397. "autoload": {
  9398. "classmap": [
  9399. "src/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "BSD-3-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Sebastian Bergmann",
  9409. "email": "sebastian@phpunit.de"
  9410. }
  9411. ],
  9412. "description": "Provides functionality to handle HHVM/PHP environments",
  9413. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9414. "keywords": [
  9415. "Xdebug",
  9416. "environment",
  9417. "hhvm"
  9418. ],
  9419. "support": {
  9420. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9421. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9422. },
  9423. "funding": [
  9424. {
  9425. "url": "https://github.com/sebastianbergmann",
  9426. "type": "github"
  9427. }
  9428. ],
  9429. "time": "2023-02-03T06:03:51+00:00"
  9430. },
  9431. {
  9432. "name": "sebastian/exporter",
  9433. "version": "4.0.5",
  9434. "source": {
  9435. "type": "git",
  9436. "url": "https://github.com/sebastianbergmann/exporter.git",
  9437. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9438. },
  9439. "dist": {
  9440. "type": "zip",
  9441. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9442. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9443. "shasum": ""
  9444. },
  9445. "require": {
  9446. "php": ">=7.3",
  9447. "sebastian/recursion-context": "^4.0"
  9448. },
  9449. "require-dev": {
  9450. "ext-mbstring": "*",
  9451. "phpunit/phpunit": "^9.3"
  9452. },
  9453. "type": "library",
  9454. "extra": {
  9455. "branch-alias": {
  9456. "dev-master": "4.0-dev"
  9457. }
  9458. },
  9459. "autoload": {
  9460. "classmap": [
  9461. "src/"
  9462. ]
  9463. },
  9464. "notification-url": "https://packagist.org/downloads/",
  9465. "license": [
  9466. "BSD-3-Clause"
  9467. ],
  9468. "authors": [
  9469. {
  9470. "name": "Sebastian Bergmann",
  9471. "email": "sebastian@phpunit.de"
  9472. },
  9473. {
  9474. "name": "Jeff Welch",
  9475. "email": "whatthejeff@gmail.com"
  9476. },
  9477. {
  9478. "name": "Volker Dusch",
  9479. "email": "github@wallbash.com"
  9480. },
  9481. {
  9482. "name": "Adam Harvey",
  9483. "email": "aharvey@php.net"
  9484. },
  9485. {
  9486. "name": "Bernhard Schussek",
  9487. "email": "bschussek@gmail.com"
  9488. }
  9489. ],
  9490. "description": "Provides the functionality to export PHP variables for visualization",
  9491. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9492. "keywords": [
  9493. "export",
  9494. "exporter"
  9495. ],
  9496. "support": {
  9497. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9498. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9499. },
  9500. "funding": [
  9501. {
  9502. "url": "https://github.com/sebastianbergmann",
  9503. "type": "github"
  9504. }
  9505. ],
  9506. "time": "2022-09-14T06:03:37+00:00"
  9507. },
  9508. {
  9509. "name": "sebastian/global-state",
  9510. "version": "5.0.5",
  9511. "source": {
  9512. "type": "git",
  9513. "url": "https://github.com/sebastianbergmann/global-state.git",
  9514. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9515. },
  9516. "dist": {
  9517. "type": "zip",
  9518. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9519. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9520. "shasum": ""
  9521. },
  9522. "require": {
  9523. "php": ">=7.3",
  9524. "sebastian/object-reflector": "^2.0",
  9525. "sebastian/recursion-context": "^4.0"
  9526. },
  9527. "require-dev": {
  9528. "ext-dom": "*",
  9529. "phpunit/phpunit": "^9.3"
  9530. },
  9531. "suggest": {
  9532. "ext-uopz": "*"
  9533. },
  9534. "type": "library",
  9535. "extra": {
  9536. "branch-alias": {
  9537. "dev-master": "5.0-dev"
  9538. }
  9539. },
  9540. "autoload": {
  9541. "classmap": [
  9542. "src/"
  9543. ]
  9544. },
  9545. "notification-url": "https://packagist.org/downloads/",
  9546. "license": [
  9547. "BSD-3-Clause"
  9548. ],
  9549. "authors": [
  9550. {
  9551. "name": "Sebastian Bergmann",
  9552. "email": "sebastian@phpunit.de"
  9553. }
  9554. ],
  9555. "description": "Snapshotting of global state",
  9556. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9557. "keywords": [
  9558. "global state"
  9559. ],
  9560. "support": {
  9561. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9562. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9563. },
  9564. "funding": [
  9565. {
  9566. "url": "https://github.com/sebastianbergmann",
  9567. "type": "github"
  9568. }
  9569. ],
  9570. "time": "2022-02-14T08:28:10+00:00"
  9571. },
  9572. {
  9573. "name": "sebastian/lines-of-code",
  9574. "version": "1.0.3",
  9575. "source": {
  9576. "type": "git",
  9577. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9578. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9579. },
  9580. "dist": {
  9581. "type": "zip",
  9582. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9583. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9584. "shasum": ""
  9585. },
  9586. "require": {
  9587. "nikic/php-parser": "^4.6",
  9588. "php": ">=7.3"
  9589. },
  9590. "require-dev": {
  9591. "phpunit/phpunit": "^9.3"
  9592. },
  9593. "type": "library",
  9594. "extra": {
  9595. "branch-alias": {
  9596. "dev-master": "1.0-dev"
  9597. }
  9598. },
  9599. "autoload": {
  9600. "classmap": [
  9601. "src/"
  9602. ]
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "BSD-3-Clause"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Sebastian Bergmann",
  9611. "email": "sebastian@phpunit.de",
  9612. "role": "lead"
  9613. }
  9614. ],
  9615. "description": "Library for counting the lines of code in PHP source code",
  9616. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9617. "support": {
  9618. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9619. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9620. },
  9621. "funding": [
  9622. {
  9623. "url": "https://github.com/sebastianbergmann",
  9624. "type": "github"
  9625. }
  9626. ],
  9627. "time": "2020-11-28T06:42:11+00:00"
  9628. },
  9629. {
  9630. "name": "sebastian/object-enumerator",
  9631. "version": "4.0.4",
  9632. "source": {
  9633. "type": "git",
  9634. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9635. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9636. },
  9637. "dist": {
  9638. "type": "zip",
  9639. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9640. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9641. "shasum": ""
  9642. },
  9643. "require": {
  9644. "php": ">=7.3",
  9645. "sebastian/object-reflector": "^2.0",
  9646. "sebastian/recursion-context": "^4.0"
  9647. },
  9648. "require-dev": {
  9649. "phpunit/phpunit": "^9.3"
  9650. },
  9651. "type": "library",
  9652. "extra": {
  9653. "branch-alias": {
  9654. "dev-master": "4.0-dev"
  9655. }
  9656. },
  9657. "autoload": {
  9658. "classmap": [
  9659. "src/"
  9660. ]
  9661. },
  9662. "notification-url": "https://packagist.org/downloads/",
  9663. "license": [
  9664. "BSD-3-Clause"
  9665. ],
  9666. "authors": [
  9667. {
  9668. "name": "Sebastian Bergmann",
  9669. "email": "sebastian@phpunit.de"
  9670. }
  9671. ],
  9672. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9673. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9674. "support": {
  9675. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9676. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://github.com/sebastianbergmann",
  9681. "type": "github"
  9682. }
  9683. ],
  9684. "time": "2020-10-26T13:12:34+00:00"
  9685. },
  9686. {
  9687. "name": "sebastian/object-reflector",
  9688. "version": "2.0.4",
  9689. "source": {
  9690. "type": "git",
  9691. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9692. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9693. },
  9694. "dist": {
  9695. "type": "zip",
  9696. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9697. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9698. "shasum": ""
  9699. },
  9700. "require": {
  9701. "php": ">=7.3"
  9702. },
  9703. "require-dev": {
  9704. "phpunit/phpunit": "^9.3"
  9705. },
  9706. "type": "library",
  9707. "extra": {
  9708. "branch-alias": {
  9709. "dev-master": "2.0-dev"
  9710. }
  9711. },
  9712. "autoload": {
  9713. "classmap": [
  9714. "src/"
  9715. ]
  9716. },
  9717. "notification-url": "https://packagist.org/downloads/",
  9718. "license": [
  9719. "BSD-3-Clause"
  9720. ],
  9721. "authors": [
  9722. {
  9723. "name": "Sebastian Bergmann",
  9724. "email": "sebastian@phpunit.de"
  9725. }
  9726. ],
  9727. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9728. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9729. "support": {
  9730. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9731. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9732. },
  9733. "funding": [
  9734. {
  9735. "url": "https://github.com/sebastianbergmann",
  9736. "type": "github"
  9737. }
  9738. ],
  9739. "time": "2020-10-26T13:14:26+00:00"
  9740. },
  9741. {
  9742. "name": "sebastian/recursion-context",
  9743. "version": "4.0.5",
  9744. "source": {
  9745. "type": "git",
  9746. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9747. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9748. },
  9749. "dist": {
  9750. "type": "zip",
  9751. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9752. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9753. "shasum": ""
  9754. },
  9755. "require": {
  9756. "php": ">=7.3"
  9757. },
  9758. "require-dev": {
  9759. "phpunit/phpunit": "^9.3"
  9760. },
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "4.0-dev"
  9765. }
  9766. },
  9767. "autoload": {
  9768. "classmap": [
  9769. "src/"
  9770. ]
  9771. },
  9772. "notification-url": "https://packagist.org/downloads/",
  9773. "license": [
  9774. "BSD-3-Clause"
  9775. ],
  9776. "authors": [
  9777. {
  9778. "name": "Sebastian Bergmann",
  9779. "email": "sebastian@phpunit.de"
  9780. },
  9781. {
  9782. "name": "Jeff Welch",
  9783. "email": "whatthejeff@gmail.com"
  9784. },
  9785. {
  9786. "name": "Adam Harvey",
  9787. "email": "aharvey@php.net"
  9788. }
  9789. ],
  9790. "description": "Provides functionality to recursively process PHP variables",
  9791. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9792. "support": {
  9793. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9794. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9795. },
  9796. "funding": [
  9797. {
  9798. "url": "https://github.com/sebastianbergmann",
  9799. "type": "github"
  9800. }
  9801. ],
  9802. "time": "2023-02-03T06:07:39+00:00"
  9803. },
  9804. {
  9805. "name": "sebastian/resource-operations",
  9806. "version": "3.0.3",
  9807. "source": {
  9808. "type": "git",
  9809. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9810. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9811. },
  9812. "dist": {
  9813. "type": "zip",
  9814. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9815. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9816. "shasum": ""
  9817. },
  9818. "require": {
  9819. "php": ">=7.3"
  9820. },
  9821. "require-dev": {
  9822. "phpunit/phpunit": "^9.0"
  9823. },
  9824. "type": "library",
  9825. "extra": {
  9826. "branch-alias": {
  9827. "dev-master": "3.0-dev"
  9828. }
  9829. },
  9830. "autoload": {
  9831. "classmap": [
  9832. "src/"
  9833. ]
  9834. },
  9835. "notification-url": "https://packagist.org/downloads/",
  9836. "license": [
  9837. "BSD-3-Clause"
  9838. ],
  9839. "authors": [
  9840. {
  9841. "name": "Sebastian Bergmann",
  9842. "email": "sebastian@phpunit.de"
  9843. }
  9844. ],
  9845. "description": "Provides a list of PHP built-in functions that operate on resources",
  9846. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9847. "support": {
  9848. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9849. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9850. },
  9851. "funding": [
  9852. {
  9853. "url": "https://github.com/sebastianbergmann",
  9854. "type": "github"
  9855. }
  9856. ],
  9857. "time": "2020-09-28T06:45:17+00:00"
  9858. },
  9859. {
  9860. "name": "sebastian/type",
  9861. "version": "3.2.1",
  9862. "source": {
  9863. "type": "git",
  9864. "url": "https://github.com/sebastianbergmann/type.git",
  9865. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9866. },
  9867. "dist": {
  9868. "type": "zip",
  9869. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9870. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9871. "shasum": ""
  9872. },
  9873. "require": {
  9874. "php": ">=7.3"
  9875. },
  9876. "require-dev": {
  9877. "phpunit/phpunit": "^9.5"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "3.2-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "classmap": [
  9887. "src/"
  9888. ]
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "BSD-3-Clause"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Sebastian Bergmann",
  9897. "email": "sebastian@phpunit.de",
  9898. "role": "lead"
  9899. }
  9900. ],
  9901. "description": "Collection of value objects that represent the types of the PHP type system",
  9902. "homepage": "https://github.com/sebastianbergmann/type",
  9903. "support": {
  9904. "issues": "https://github.com/sebastianbergmann/type/issues",
  9905. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9906. },
  9907. "funding": [
  9908. {
  9909. "url": "https://github.com/sebastianbergmann",
  9910. "type": "github"
  9911. }
  9912. ],
  9913. "time": "2023-02-03T06:13:03+00:00"
  9914. },
  9915. {
  9916. "name": "sebastian/version",
  9917. "version": "3.0.2",
  9918. "source": {
  9919. "type": "git",
  9920. "url": "https://github.com/sebastianbergmann/version.git",
  9921. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9922. },
  9923. "dist": {
  9924. "type": "zip",
  9925. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9926. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9927. "shasum": ""
  9928. },
  9929. "require": {
  9930. "php": ">=7.3"
  9931. },
  9932. "type": "library",
  9933. "extra": {
  9934. "branch-alias": {
  9935. "dev-master": "3.0-dev"
  9936. }
  9937. },
  9938. "autoload": {
  9939. "classmap": [
  9940. "src/"
  9941. ]
  9942. },
  9943. "notification-url": "https://packagist.org/downloads/",
  9944. "license": [
  9945. "BSD-3-Clause"
  9946. ],
  9947. "authors": [
  9948. {
  9949. "name": "Sebastian Bergmann",
  9950. "email": "sebastian@phpunit.de",
  9951. "role": "lead"
  9952. }
  9953. ],
  9954. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9955. "homepage": "https://github.com/sebastianbergmann/version",
  9956. "support": {
  9957. "issues": "https://github.com/sebastianbergmann/version/issues",
  9958. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9959. },
  9960. "funding": [
  9961. {
  9962. "url": "https://github.com/sebastianbergmann",
  9963. "type": "github"
  9964. }
  9965. ],
  9966. "time": "2020-09-28T06:39:44+00:00"
  9967. },
  9968. {
  9969. "name": "symfony/browser-kit",
  9970. "version": "v6.3.0",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/symfony/browser-kit.git",
  9974. "reference": "0eb7228e7c435169e65c911ba8d107d56d850049"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/0eb7228e7c435169e65c911ba8d107d56d850049",
  9979. "reference": "0eb7228e7c435169e65c911ba8d107d56d850049",
  9980. "shasum": ""
  9981. },
  9982. "require": {
  9983. "php": ">=8.1",
  9984. "symfony/dom-crawler": "^5.4|^6.0"
  9985. },
  9986. "require-dev": {
  9987. "symfony/css-selector": "^5.4|^6.0",
  9988. "symfony/http-client": "^5.4|^6.0",
  9989. "symfony/mime": "^5.4|^6.0",
  9990. "symfony/process": "^5.4|^6.0"
  9991. },
  9992. "type": "library",
  9993. "autoload": {
  9994. "psr-4": {
  9995. "Symfony\\Component\\BrowserKit\\": ""
  9996. },
  9997. "exclude-from-classmap": [
  9998. "/Tests/"
  9999. ]
  10000. },
  10001. "notification-url": "https://packagist.org/downloads/",
  10002. "license": [
  10003. "MIT"
  10004. ],
  10005. "authors": [
  10006. {
  10007. "name": "Fabien Potencier",
  10008. "email": "fabien@symfony.com"
  10009. },
  10010. {
  10011. "name": "Symfony Community",
  10012. "homepage": "https://symfony.com/contributors"
  10013. }
  10014. ],
  10015. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10016. "homepage": "https://symfony.com",
  10017. "support": {
  10018. "source": "https://github.com/symfony/browser-kit/tree/v6.3.0"
  10019. },
  10020. "funding": [
  10021. {
  10022. "url": "https://symfony.com/sponsor",
  10023. "type": "custom"
  10024. },
  10025. {
  10026. "url": "https://github.com/fabpot",
  10027. "type": "github"
  10028. },
  10029. {
  10030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10031. "type": "tidelift"
  10032. }
  10033. ],
  10034. "time": "2023-04-25T10:46:17+00:00"
  10035. },
  10036. {
  10037. "name": "symfony/css-selector",
  10038. "version": "v6.3.0",
  10039. "source": {
  10040. "type": "git",
  10041. "url": "https://github.com/symfony/css-selector.git",
  10042. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf"
  10043. },
  10044. "dist": {
  10045. "type": "zip",
  10046. "url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  10047. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  10048. "shasum": ""
  10049. },
  10050. "require": {
  10051. "php": ">=8.1"
  10052. },
  10053. "type": "library",
  10054. "autoload": {
  10055. "psr-4": {
  10056. "Symfony\\Component\\CssSelector\\": ""
  10057. },
  10058. "exclude-from-classmap": [
  10059. "/Tests/"
  10060. ]
  10061. },
  10062. "notification-url": "https://packagist.org/downloads/",
  10063. "license": [
  10064. "MIT"
  10065. ],
  10066. "authors": [
  10067. {
  10068. "name": "Fabien Potencier",
  10069. "email": "fabien@symfony.com"
  10070. },
  10071. {
  10072. "name": "Jean-François Simon",
  10073. "email": "jeanfrancois.simon@sensiolabs.com"
  10074. },
  10075. {
  10076. "name": "Symfony Community",
  10077. "homepage": "https://symfony.com/contributors"
  10078. }
  10079. ],
  10080. "description": "Converts CSS selectors to XPath expressions",
  10081. "homepage": "https://symfony.com",
  10082. "support": {
  10083. "source": "https://github.com/symfony/css-selector/tree/v6.3.0"
  10084. },
  10085. "funding": [
  10086. {
  10087. "url": "https://symfony.com/sponsor",
  10088. "type": "custom"
  10089. },
  10090. {
  10091. "url": "https://github.com/fabpot",
  10092. "type": "github"
  10093. },
  10094. {
  10095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10096. "type": "tidelift"
  10097. }
  10098. ],
  10099. "time": "2023-03-20T16:43:42+00:00"
  10100. },
  10101. {
  10102. "name": "symfony/debug-bundle",
  10103. "version": "v6.3.0",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/symfony/debug-bundle.git",
  10107. "reference": "02fe831f7cdd472c561116189bcc30d0759665e7"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/02fe831f7cdd472c561116189bcc30d0759665e7",
  10112. "reference": "02fe831f7cdd472c561116189bcc30d0759665e7",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "ext-xml": "*",
  10117. "php": ">=8.1",
  10118. "symfony/dependency-injection": "^5.4|^6.0",
  10119. "symfony/http-kernel": "^5.4|^6.0",
  10120. "symfony/twig-bridge": "^5.4|^6.0",
  10121. "symfony/var-dumper": "^5.4|^6.0"
  10122. },
  10123. "conflict": {
  10124. "symfony/config": "<5.4",
  10125. "symfony/dependency-injection": "<5.4"
  10126. },
  10127. "require-dev": {
  10128. "symfony/config": "^5.4|^6.0",
  10129. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10130. },
  10131. "type": "symfony-bundle",
  10132. "autoload": {
  10133. "psr-4": {
  10134. "Symfony\\Bundle\\DebugBundle\\": ""
  10135. },
  10136. "exclude-from-classmap": [
  10137. "/Tests/"
  10138. ]
  10139. },
  10140. "notification-url": "https://packagist.org/downloads/",
  10141. "license": [
  10142. "MIT"
  10143. ],
  10144. "authors": [
  10145. {
  10146. "name": "Fabien Potencier",
  10147. "email": "fabien@symfony.com"
  10148. },
  10149. {
  10150. "name": "Symfony Community",
  10151. "homepage": "https://symfony.com/contributors"
  10152. }
  10153. ],
  10154. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10155. "homepage": "https://symfony.com",
  10156. "support": {
  10157. "source": "https://github.com/symfony/debug-bundle/tree/v6.3.0"
  10158. },
  10159. "funding": [
  10160. {
  10161. "url": "https://symfony.com/sponsor",
  10162. "type": "custom"
  10163. },
  10164. {
  10165. "url": "https://github.com/fabpot",
  10166. "type": "github"
  10167. },
  10168. {
  10169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10170. "type": "tidelift"
  10171. }
  10172. ],
  10173. "time": "2023-05-25T12:58:06+00:00"
  10174. },
  10175. {
  10176. "name": "symfony/dom-crawler",
  10177. "version": "v6.3.1",
  10178. "source": {
  10179. "type": "git",
  10180. "url": "https://github.com/symfony/dom-crawler.git",
  10181. "reference": "8aa333f41f05afc7fc285a976b58272fd90fc212"
  10182. },
  10183. "dist": {
  10184. "type": "zip",
  10185. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8aa333f41f05afc7fc285a976b58272fd90fc212",
  10186. "reference": "8aa333f41f05afc7fc285a976b58272fd90fc212",
  10187. "shasum": ""
  10188. },
  10189. "require": {
  10190. "masterminds/html5": "^2.6",
  10191. "php": ">=8.1",
  10192. "symfony/polyfill-ctype": "~1.8",
  10193. "symfony/polyfill-mbstring": "~1.0"
  10194. },
  10195. "require-dev": {
  10196. "symfony/css-selector": "^5.4|^6.0"
  10197. },
  10198. "type": "library",
  10199. "autoload": {
  10200. "psr-4": {
  10201. "Symfony\\Component\\DomCrawler\\": ""
  10202. },
  10203. "exclude-from-classmap": [
  10204. "/Tests/"
  10205. ]
  10206. },
  10207. "notification-url": "https://packagist.org/downloads/",
  10208. "license": [
  10209. "MIT"
  10210. ],
  10211. "authors": [
  10212. {
  10213. "name": "Fabien Potencier",
  10214. "email": "fabien@symfony.com"
  10215. },
  10216. {
  10217. "name": "Symfony Community",
  10218. "homepage": "https://symfony.com/contributors"
  10219. }
  10220. ],
  10221. "description": "Eases DOM navigation for HTML and XML documents",
  10222. "homepage": "https://symfony.com",
  10223. "support": {
  10224. "source": "https://github.com/symfony/dom-crawler/tree/v6.3.1"
  10225. },
  10226. "funding": [
  10227. {
  10228. "url": "https://symfony.com/sponsor",
  10229. "type": "custom"
  10230. },
  10231. {
  10232. "url": "https://github.com/fabpot",
  10233. "type": "github"
  10234. },
  10235. {
  10236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10237. "type": "tidelift"
  10238. }
  10239. ],
  10240. "time": "2023-06-05T15:30:22+00:00"
  10241. },
  10242. {
  10243. "name": "symfony/maker-bundle",
  10244. "version": "v1.50.0",
  10245. "source": {
  10246. "type": "git",
  10247. "url": "https://github.com/symfony/maker-bundle.git",
  10248. "reference": "a1733f849b999460c308e66f6392fb09b621fa86"
  10249. },
  10250. "dist": {
  10251. "type": "zip",
  10252. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a1733f849b999460c308e66f6392fb09b621fa86",
  10253. "reference": "a1733f849b999460c308e66f6392fb09b621fa86",
  10254. "shasum": ""
  10255. },
  10256. "require": {
  10257. "doctrine/inflector": "^2.0",
  10258. "nikic/php-parser": "^4.11",
  10259. "php": ">=8.0",
  10260. "symfony/config": "^5.4.7|^6.0",
  10261. "symfony/console": "^5.4.7|^6.0",
  10262. "symfony/dependency-injection": "^5.4.7|^6.0",
  10263. "symfony/deprecation-contracts": "^2.2|^3",
  10264. "symfony/filesystem": "^5.4.7|^6.0",
  10265. "symfony/finder": "^5.4.3|^6.0",
  10266. "symfony/framework-bundle": "^5.4.7|^6.0",
  10267. "symfony/http-kernel": "^5.4.7|^6.0",
  10268. "symfony/process": "^5.4.7|^6.0"
  10269. },
  10270. "conflict": {
  10271. "doctrine/doctrine-bundle": "<2.4",
  10272. "doctrine/orm": "<2.10",
  10273. "symfony/doctrine-bridge": "<5.4"
  10274. },
  10275. "require-dev": {
  10276. "composer/semver": "^3.0",
  10277. "doctrine/doctrine-bundle": "^2.4",
  10278. "doctrine/orm": "^2.10.0",
  10279. "symfony/http-client": "^5.4.7|^6.0",
  10280. "symfony/phpunit-bridge": "^5.4.17|^6.0",
  10281. "symfony/polyfill-php80": "^1.16.0",
  10282. "symfony/security-core": "^5.4.7|^6.0",
  10283. "symfony/yaml": "^5.4.3|^6.0",
  10284. "twig/twig": "^2.0|^3.0"
  10285. },
  10286. "type": "symfony-bundle",
  10287. "extra": {
  10288. "branch-alias": {
  10289. "dev-main": "1.0-dev"
  10290. }
  10291. },
  10292. "autoload": {
  10293. "psr-4": {
  10294. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10295. }
  10296. },
  10297. "notification-url": "https://packagist.org/downloads/",
  10298. "license": [
  10299. "MIT"
  10300. ],
  10301. "authors": [
  10302. {
  10303. "name": "Symfony Community",
  10304. "homepage": "https://symfony.com/contributors"
  10305. }
  10306. ],
  10307. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10308. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10309. "keywords": [
  10310. "code generator",
  10311. "dev",
  10312. "generator",
  10313. "scaffold",
  10314. "scaffolding"
  10315. ],
  10316. "support": {
  10317. "issues": "https://github.com/symfony/maker-bundle/issues",
  10318. "source": "https://github.com/symfony/maker-bundle/tree/v1.50.0"
  10319. },
  10320. "funding": [
  10321. {
  10322. "url": "https://symfony.com/sponsor",
  10323. "type": "custom"
  10324. },
  10325. {
  10326. "url": "https://github.com/fabpot",
  10327. "type": "github"
  10328. },
  10329. {
  10330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10331. "type": "tidelift"
  10332. }
  10333. ],
  10334. "time": "2023-07-10T18:21:57+00:00"
  10335. },
  10336. {
  10337. "name": "symfony/phpunit-bridge",
  10338. "version": "v6.3.1",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/symfony/phpunit-bridge.git",
  10342. "reference": "0b0bf59b0d9bd1422145a123a67fb12af546ef0d"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/0b0bf59b0d9bd1422145a123a67fb12af546ef0d",
  10347. "reference": "0b0bf59b0d9bd1422145a123a67fb12af546ef0d",
  10348. "shasum": ""
  10349. },
  10350. "require": {
  10351. "php": ">=7.1.3"
  10352. },
  10353. "conflict": {
  10354. "phpunit/phpunit": "<7.5|9.1.2"
  10355. },
  10356. "require-dev": {
  10357. "symfony/deprecation-contracts": "^2.5|^3.0",
  10358. "symfony/error-handler": "^5.4|^6.0",
  10359. "symfony/polyfill-php81": "^1.27"
  10360. },
  10361. "bin": [
  10362. "bin/simple-phpunit"
  10363. ],
  10364. "type": "symfony-bridge",
  10365. "extra": {
  10366. "thanks": {
  10367. "name": "phpunit/phpunit",
  10368. "url": "https://github.com/sebastianbergmann/phpunit"
  10369. }
  10370. },
  10371. "autoload": {
  10372. "files": [
  10373. "bootstrap.php"
  10374. ],
  10375. "psr-4": {
  10376. "Symfony\\Bridge\\PhpUnit\\": ""
  10377. },
  10378. "exclude-from-classmap": [
  10379. "/Tests/"
  10380. ]
  10381. },
  10382. "notification-url": "https://packagist.org/downloads/",
  10383. "license": [
  10384. "MIT"
  10385. ],
  10386. "authors": [
  10387. {
  10388. "name": "Nicolas Grekas",
  10389. "email": "p@tchwork.com"
  10390. },
  10391. {
  10392. "name": "Symfony Community",
  10393. "homepage": "https://symfony.com/contributors"
  10394. }
  10395. ],
  10396. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10397. "homepage": "https://symfony.com",
  10398. "support": {
  10399. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.3.1"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://symfony.com/sponsor",
  10404. "type": "custom"
  10405. },
  10406. {
  10407. "url": "https://github.com/fabpot",
  10408. "type": "github"
  10409. },
  10410. {
  10411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10412. "type": "tidelift"
  10413. }
  10414. ],
  10415. "time": "2023-06-23T13:25:16+00:00"
  10416. },
  10417. {
  10418. "name": "symfony/web-profiler-bundle",
  10419. "version": "v6.3.1",
  10420. "source": {
  10421. "type": "git",
  10422. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10423. "reference": "4a6cf8cb093e720c7ae4d55b1af848ce7e9abd36"
  10424. },
  10425. "dist": {
  10426. "type": "zip",
  10427. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/4a6cf8cb093e720c7ae4d55b1af848ce7e9abd36",
  10428. "reference": "4a6cf8cb093e720c7ae4d55b1af848ce7e9abd36",
  10429. "shasum": ""
  10430. },
  10431. "require": {
  10432. "php": ">=8.1",
  10433. "symfony/config": "^5.4|^6.0",
  10434. "symfony/framework-bundle": "^5.4|^6.0",
  10435. "symfony/http-kernel": "^6.3",
  10436. "symfony/routing": "^5.4|^6.0",
  10437. "symfony/twig-bundle": "^5.4|^6.0",
  10438. "twig/twig": "^2.13|^3.0.4"
  10439. },
  10440. "conflict": {
  10441. "symfony/form": "<5.4",
  10442. "symfony/mailer": "<5.4",
  10443. "symfony/messenger": "<5.4"
  10444. },
  10445. "require-dev": {
  10446. "symfony/browser-kit": "^5.4|^6.0",
  10447. "symfony/console": "^5.4|^6.0",
  10448. "symfony/css-selector": "^5.4|^6.0",
  10449. "symfony/stopwatch": "^5.4|^6.0"
  10450. },
  10451. "type": "symfony-bundle",
  10452. "autoload": {
  10453. "psr-4": {
  10454. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10455. },
  10456. "exclude-from-classmap": [
  10457. "/Tests/"
  10458. ]
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "MIT"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Fabien Potencier",
  10467. "email": "fabien@symfony.com"
  10468. },
  10469. {
  10470. "name": "Symfony Community",
  10471. "homepage": "https://symfony.com/contributors"
  10472. }
  10473. ],
  10474. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10475. "homepage": "https://symfony.com",
  10476. "keywords": [
  10477. "dev"
  10478. ],
  10479. "support": {
  10480. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.3.1"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://symfony.com/sponsor",
  10485. "type": "custom"
  10486. },
  10487. {
  10488. "url": "https://github.com/fabpot",
  10489. "type": "github"
  10490. },
  10491. {
  10492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10493. "type": "tidelift"
  10494. }
  10495. ],
  10496. "time": "2023-06-24T11:51:27+00:00"
  10497. },
  10498. {
  10499. "name": "theseer/tokenizer",
  10500. "version": "1.2.1",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/theseer/tokenizer.git",
  10504. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10509. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "ext-dom": "*",
  10514. "ext-tokenizer": "*",
  10515. "ext-xmlwriter": "*",
  10516. "php": "^7.2 || ^8.0"
  10517. },
  10518. "type": "library",
  10519. "autoload": {
  10520. "classmap": [
  10521. "src/"
  10522. ]
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "BSD-3-Clause"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Arne Blankerts",
  10531. "email": "arne@blankerts.de",
  10532. "role": "Developer"
  10533. }
  10534. ],
  10535. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10536. "support": {
  10537. "issues": "https://github.com/theseer/tokenizer/issues",
  10538. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10539. },
  10540. "funding": [
  10541. {
  10542. "url": "https://github.com/theseer",
  10543. "type": "github"
  10544. }
  10545. ],
  10546. "time": "2021-07-28T10:34:58+00:00"
  10547. }
  10548. ],
  10549. "aliases": [],
  10550. "minimum-stability": "stable",
  10551. "stability-flags": [],
  10552. "prefer-stable": false,
  10553. "prefer-lowest": false,
  10554. "platform": {
  10555. "php": "^8.1",
  10556. "ext-ctype": "*",
  10557. "ext-iconv": "*"
  10558. },
  10559. "platform-dev": [],
  10560. "platform-overrides": {
  10561. "php": "8.1"
  10562. },
  10563. "plugin-api-version": "2.3.0"
  10564. }