composer.lock 386 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663
  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": "d2f1670c9f8d03b65c2aed16f800023a",
  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.4",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  337. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^12",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^5.11"
  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.4"
  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": "2023-10-03T09:22:33+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.7.2",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "0ac3c270590e54910715e9a1a044cc368df282b2"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2",
  514. "reference": "0ac3c270590e54910715e9a1a044cc368df282b2",
  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": "2023.1",
  530. "phpstan/phpstan": "1.10.42",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.13",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "slevomat/coding-standard": "8.13.1",
  535. "squizlabs/php_codesniffer": "3.7.2",
  536. "symfony/cache": "^5.4|^6.0",
  537. "symfony/console": "^4.4|^5.4|^6.0",
  538. "vimeo/psalm": "4.30.0"
  539. },
  540. "suggest": {
  541. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  542. },
  543. "bin": [
  544. "bin/doctrine-dbal"
  545. ],
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "Doctrine\\DBAL\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Guilherme Blanco",
  559. "email": "guilhermeblanco@gmail.com"
  560. },
  561. {
  562. "name": "Roman Borschel",
  563. "email": "roman@code-factory.org"
  564. },
  565. {
  566. "name": "Benjamin Eberlei",
  567. "email": "kontakt@beberlei.de"
  568. },
  569. {
  570. "name": "Jonathan Wage",
  571. "email": "jonwage@gmail.com"
  572. }
  573. ],
  574. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  575. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  576. "keywords": [
  577. "abstraction",
  578. "database",
  579. "db2",
  580. "dbal",
  581. "mariadb",
  582. "mssql",
  583. "mysql",
  584. "oci8",
  585. "oracle",
  586. "pdo",
  587. "pgsql",
  588. "postgresql",
  589. "queryobject",
  590. "sasql",
  591. "sql",
  592. "sqlite",
  593. "sqlserver",
  594. "sqlsrv"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/dbal/issues",
  598. "source": "https://github.com/doctrine/dbal/tree/3.7.2"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2023-11-19T08:06:58+00:00"
  615. },
  616. {
  617. "name": "doctrine/deprecations",
  618. "version": "1.1.2",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/deprecations.git",
  622. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  627. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": "^7.1 || ^8.0"
  632. },
  633. "require-dev": {
  634. "doctrine/coding-standard": "^9",
  635. "phpstan/phpstan": "1.4.10 || 1.10.15",
  636. "phpstan/phpstan-phpunit": "^1.0",
  637. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  638. "psalm/plugin-phpunit": "0.18.4",
  639. "psr/log": "^1 || ^2 || ^3",
  640. "vimeo/psalm": "4.30.0 || 5.12.0"
  641. },
  642. "suggest": {
  643. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  644. },
  645. "type": "library",
  646. "autoload": {
  647. "psr-4": {
  648. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "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.",
  656. "homepage": "https://www.doctrine-project.org/",
  657. "support": {
  658. "issues": "https://github.com/doctrine/deprecations/issues",
  659. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  660. },
  661. "time": "2023-09-27T20:04:15+00:00"
  662. },
  663. {
  664. "name": "doctrine/doctrine-bundle",
  665. "version": "2.11.1",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/doctrine/DoctrineBundle.git",
  669. "reference": "4089f1424b724786c062aea50aae5f773449b94b"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/4089f1424b724786c062aea50aae5f773449b94b",
  674. "reference": "4089f1424b724786c062aea50aae5f773449b94b",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "doctrine/cache": "^1.11 || ^2.0",
  679. "doctrine/dbal": "^3.7.0 || ^4.0",
  680. "doctrine/persistence": "^2.2 || ^3",
  681. "doctrine/sql-formatter": "^1.0.1",
  682. "php": "^7.4 || ^8.0",
  683. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  684. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  685. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  686. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  687. "symfony/deprecation-contracts": "^2.1 || ^3",
  688. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  689. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  690. "symfony/polyfill-php80": "^1.15",
  691. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  692. },
  693. "conflict": {
  694. "doctrine/annotations": ">=3.0",
  695. "doctrine/orm": "<2.14 || >=4.0",
  696. "twig/twig": "<1.34 || >=2.0 <2.4"
  697. },
  698. "require-dev": {
  699. "doctrine/annotations": "^1 || ^2",
  700. "doctrine/coding-standard": "^12",
  701. "doctrine/deprecations": "^1.0",
  702. "doctrine/orm": "^2.14 || ^3.0",
  703. "friendsofphp/proxy-manager-lts": "^1.0",
  704. "phpunit/phpunit": "^9.5.26 || ^10.0",
  705. "psalm/plugin-phpunit": "^0.18.4",
  706. "psalm/plugin-symfony": "^4",
  707. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  708. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  709. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  710. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  711. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  712. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  713. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  714. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  715. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  716. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  717. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  718. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  719. "vimeo/psalm": "^4.30"
  720. },
  721. "suggest": {
  722. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  723. "ext-pdo": "*",
  724. "symfony/web-profiler-bundle": "To use the data collector."
  725. },
  726. "type": "symfony-bundle",
  727. "autoload": {
  728. "psr-4": {
  729. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Fabien Potencier",
  739. "email": "fabien@symfony.com"
  740. },
  741. {
  742. "name": "Benjamin Eberlei",
  743. "email": "kontakt@beberlei.de"
  744. },
  745. {
  746. "name": "Symfony Community",
  747. "homepage": "https://symfony.com/contributors"
  748. },
  749. {
  750. "name": "Doctrine Project",
  751. "homepage": "https://www.doctrine-project.org/"
  752. }
  753. ],
  754. "description": "Symfony DoctrineBundle",
  755. "homepage": "https://www.doctrine-project.org",
  756. "keywords": [
  757. "database",
  758. "dbal",
  759. "orm",
  760. "persistence"
  761. ],
  762. "support": {
  763. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  764. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.11.1"
  765. },
  766. "funding": [
  767. {
  768. "url": "https://www.doctrine-project.org/sponsorship.html",
  769. "type": "custom"
  770. },
  771. {
  772. "url": "https://www.patreon.com/phpdoctrine",
  773. "type": "patreon"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2023-11-15T20:01:50+00:00"
  781. },
  782. {
  783. "name": "doctrine/doctrine-migrations-bundle",
  784. "version": "3.3.0",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  788. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1dd42906a5fb9c5960723e2ebb45c68006493835",
  793. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "doctrine/doctrine-bundle": "^2.4",
  798. "doctrine/migrations": "^3.2",
  799. "php": "^7.2|^8.0",
  800. "symfony/deprecation-contracts": "^2.1 || ^3",
  801. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  802. },
  803. "require-dev": {
  804. "doctrine/coding-standard": "^12",
  805. "doctrine/orm": "^2.6 || ^3",
  806. "doctrine/persistence": "^2.0 || ^3 ",
  807. "phpstan/phpstan": "^1.4",
  808. "phpstan/phpstan-deprecation-rules": "^1",
  809. "phpstan/phpstan-phpunit": "^1",
  810. "phpstan/phpstan-strict-rules": "^1.1",
  811. "phpstan/phpstan-symfony": "^1.3",
  812. "phpunit/phpunit": "^8.5|^9.5",
  813. "psalm/plugin-phpunit": "^0.18.4",
  814. "psalm/plugin-symfony": "^3 || ^5",
  815. "symfony/phpunit-bridge": "^6.3 || ^7",
  816. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  817. "vimeo/psalm": "^4.30 || ^5.15"
  818. },
  819. "type": "symfony-bundle",
  820. "autoload": {
  821. "psr-4": {
  822. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  823. },
  824. "exclude-from-classmap": [
  825. "/Tests/"
  826. ]
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Fabien Potencier",
  835. "email": "fabien@symfony.com"
  836. },
  837. {
  838. "name": "Doctrine Project",
  839. "homepage": "https://www.doctrine-project.org"
  840. },
  841. {
  842. "name": "Symfony Community",
  843. "homepage": "https://symfony.com/contributors"
  844. }
  845. ],
  846. "description": "Symfony DoctrineMigrationsBundle",
  847. "homepage": "https://www.doctrine-project.org",
  848. "keywords": [
  849. "dbal",
  850. "migrations",
  851. "schema"
  852. ],
  853. "support": {
  854. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  855. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.0"
  856. },
  857. "funding": [
  858. {
  859. "url": "https://www.doctrine-project.org/sponsorship.html",
  860. "type": "custom"
  861. },
  862. {
  863. "url": "https://www.patreon.com/phpdoctrine",
  864. "type": "patreon"
  865. },
  866. {
  867. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  868. "type": "tidelift"
  869. }
  870. ],
  871. "time": "2023-11-13T19:44:41+00:00"
  872. },
  873. {
  874. "name": "doctrine/event-manager",
  875. "version": "2.0.0",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/doctrine/event-manager.git",
  879. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  884. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "php": "^8.1"
  889. },
  890. "conflict": {
  891. "doctrine/common": "<2.9"
  892. },
  893. "require-dev": {
  894. "doctrine/coding-standard": "^10",
  895. "phpstan/phpstan": "^1.8.8",
  896. "phpunit/phpunit": "^9.5",
  897. "vimeo/psalm": "^4.28"
  898. },
  899. "type": "library",
  900. "autoload": {
  901. "psr-4": {
  902. "Doctrine\\Common\\": "src"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Guilherme Blanco",
  912. "email": "guilhermeblanco@gmail.com"
  913. },
  914. {
  915. "name": "Roman Borschel",
  916. "email": "roman@code-factory.org"
  917. },
  918. {
  919. "name": "Benjamin Eberlei",
  920. "email": "kontakt@beberlei.de"
  921. },
  922. {
  923. "name": "Jonathan Wage",
  924. "email": "jonwage@gmail.com"
  925. },
  926. {
  927. "name": "Johannes Schmitt",
  928. "email": "schmittjoh@gmail.com"
  929. },
  930. {
  931. "name": "Marco Pivetta",
  932. "email": "ocramius@gmail.com"
  933. }
  934. ],
  935. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  936. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  937. "keywords": [
  938. "event",
  939. "event dispatcher",
  940. "event manager",
  941. "event system",
  942. "events"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/doctrine/event-manager/issues",
  946. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  947. },
  948. "funding": [
  949. {
  950. "url": "https://www.doctrine-project.org/sponsorship.html",
  951. "type": "custom"
  952. },
  953. {
  954. "url": "https://www.patreon.com/phpdoctrine",
  955. "type": "patreon"
  956. },
  957. {
  958. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  959. "type": "tidelift"
  960. }
  961. ],
  962. "time": "2022-10-12T20:59:15+00:00"
  963. },
  964. {
  965. "name": "doctrine/inflector",
  966. "version": "2.0.8",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/doctrine/inflector.git",
  970. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  975. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "php": "^7.2 || ^8.0"
  980. },
  981. "require-dev": {
  982. "doctrine/coding-standard": "^11.0",
  983. "phpstan/phpstan": "^1.8",
  984. "phpstan/phpstan-phpunit": "^1.1",
  985. "phpstan/phpstan-strict-rules": "^1.3",
  986. "phpunit/phpunit": "^8.5 || ^9.5",
  987. "vimeo/psalm": "^4.25 || ^5.4"
  988. },
  989. "type": "library",
  990. "autoload": {
  991. "psr-4": {
  992. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Guilherme Blanco",
  1002. "email": "guilhermeblanco@gmail.com"
  1003. },
  1004. {
  1005. "name": "Roman Borschel",
  1006. "email": "roman@code-factory.org"
  1007. },
  1008. {
  1009. "name": "Benjamin Eberlei",
  1010. "email": "kontakt@beberlei.de"
  1011. },
  1012. {
  1013. "name": "Jonathan Wage",
  1014. "email": "jonwage@gmail.com"
  1015. },
  1016. {
  1017. "name": "Johannes Schmitt",
  1018. "email": "schmittjoh@gmail.com"
  1019. }
  1020. ],
  1021. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1022. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1023. "keywords": [
  1024. "inflection",
  1025. "inflector",
  1026. "lowercase",
  1027. "manipulation",
  1028. "php",
  1029. "plural",
  1030. "singular",
  1031. "strings",
  1032. "uppercase",
  1033. "words"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/doctrine/inflector/issues",
  1037. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1038. },
  1039. "funding": [
  1040. {
  1041. "url": "https://www.doctrine-project.org/sponsorship.html",
  1042. "type": "custom"
  1043. },
  1044. {
  1045. "url": "https://www.patreon.com/phpdoctrine",
  1046. "type": "patreon"
  1047. },
  1048. {
  1049. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1050. "type": "tidelift"
  1051. }
  1052. ],
  1053. "time": "2023-06-16T13:40:37+00:00"
  1054. },
  1055. {
  1056. "name": "doctrine/instantiator",
  1057. "version": "2.0.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/doctrine/instantiator.git",
  1061. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1066. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": "^8.1"
  1071. },
  1072. "require-dev": {
  1073. "doctrine/coding-standard": "^11",
  1074. "ext-pdo": "*",
  1075. "ext-phar": "*",
  1076. "phpbench/phpbench": "^1.2",
  1077. "phpstan/phpstan": "^1.9.4",
  1078. "phpstan/phpstan-phpunit": "^1.3",
  1079. "phpunit/phpunit": "^9.5.27",
  1080. "vimeo/psalm": "^5.4"
  1081. },
  1082. "type": "library",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Marco Pivetta",
  1095. "email": "ocramius@gmail.com",
  1096. "homepage": "https://ocramius.github.io/"
  1097. }
  1098. ],
  1099. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1100. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1101. "keywords": [
  1102. "constructor",
  1103. "instantiate"
  1104. ],
  1105. "support": {
  1106. "issues": "https://github.com/doctrine/instantiator/issues",
  1107. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1108. },
  1109. "funding": [
  1110. {
  1111. "url": "https://www.doctrine-project.org/sponsorship.html",
  1112. "type": "custom"
  1113. },
  1114. {
  1115. "url": "https://www.patreon.com/phpdoctrine",
  1116. "type": "patreon"
  1117. },
  1118. {
  1119. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1120. "type": "tidelift"
  1121. }
  1122. ],
  1123. "time": "2022-12-30T00:23:10+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/lexer",
  1127. "version": "2.1.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/lexer.git",
  1131. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1136. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "doctrine/deprecations": "^1.0",
  1141. "php": "^7.1 || ^8.0"
  1142. },
  1143. "require-dev": {
  1144. "doctrine/coding-standard": "^9 || ^10",
  1145. "phpstan/phpstan": "^1.3",
  1146. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1147. "psalm/plugin-phpunit": "^0.18.3",
  1148. "vimeo/psalm": "^4.11 || ^5.0"
  1149. },
  1150. "type": "library",
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Doctrine\\Common\\Lexer\\": "src"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Guilherme Blanco",
  1163. "email": "guilhermeblanco@gmail.com"
  1164. },
  1165. {
  1166. "name": "Roman Borschel",
  1167. "email": "roman@code-factory.org"
  1168. },
  1169. {
  1170. "name": "Johannes Schmitt",
  1171. "email": "schmittjoh@gmail.com"
  1172. }
  1173. ],
  1174. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1175. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1176. "keywords": [
  1177. "annotations",
  1178. "docblock",
  1179. "lexer",
  1180. "parser",
  1181. "php"
  1182. ],
  1183. "support": {
  1184. "issues": "https://github.com/doctrine/lexer/issues",
  1185. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1186. },
  1187. "funding": [
  1188. {
  1189. "url": "https://www.doctrine-project.org/sponsorship.html",
  1190. "type": "custom"
  1191. },
  1192. {
  1193. "url": "https://www.patreon.com/phpdoctrine",
  1194. "type": "patreon"
  1195. },
  1196. {
  1197. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1198. "type": "tidelift"
  1199. }
  1200. ],
  1201. "time": "2022-12-14T08:49:07+00:00"
  1202. },
  1203. {
  1204. "name": "doctrine/migrations",
  1205. "version": "3.7.2",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/doctrine/migrations.git",
  1209. "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/doctrine/migrations/zipball/47af29eef49f29ebee545947e8b2a4b3be318c8a",
  1214. "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "composer-runtime-api": "^2",
  1219. "doctrine/dbal": "^3.5.1 || ^4",
  1220. "doctrine/deprecations": "^0.5.3 || ^1",
  1221. "doctrine/event-manager": "^1.2 || ^2.0",
  1222. "php": "^8.1",
  1223. "psr/log": "^1.1.3 || ^2 || ^3",
  1224. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1225. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1226. "symfony/var-exporter": "^6.2 || ^7.0"
  1227. },
  1228. "conflict": {
  1229. "doctrine/orm": "<2.12 || >=4"
  1230. },
  1231. "require-dev": {
  1232. "doctrine/coding-standard": "^12",
  1233. "doctrine/orm": "^2.13 || ^3",
  1234. "doctrine/persistence": "^2 || ^3",
  1235. "doctrine/sql-formatter": "^1.0",
  1236. "ext-pdo_sqlite": "*",
  1237. "phpstan/phpstan": "^1.10",
  1238. "phpstan/phpstan-deprecation-rules": "^1.1",
  1239. "phpstan/phpstan-phpunit": "^1.3",
  1240. "phpstan/phpstan-strict-rules": "^1.4",
  1241. "phpstan/phpstan-symfony": "^1.3",
  1242. "phpunit/phpunit": "^10.3",
  1243. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1244. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1245. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1246. },
  1247. "suggest": {
  1248. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1249. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1250. },
  1251. "bin": [
  1252. "bin/doctrine-migrations"
  1253. ],
  1254. "type": "library",
  1255. "autoload": {
  1256. "psr-4": {
  1257. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1258. }
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Benjamin Eberlei",
  1267. "email": "kontakt@beberlei.de"
  1268. },
  1269. {
  1270. "name": "Jonathan Wage",
  1271. "email": "jonwage@gmail.com"
  1272. },
  1273. {
  1274. "name": "Michael Simonson",
  1275. "email": "contact@mikesimonson.com"
  1276. }
  1277. ],
  1278. "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.",
  1279. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1280. "keywords": [
  1281. "database",
  1282. "dbal",
  1283. "migrations"
  1284. ],
  1285. "support": {
  1286. "issues": "https://github.com/doctrine/migrations/issues",
  1287. "source": "https://github.com/doctrine/migrations/tree/3.7.2"
  1288. },
  1289. "funding": [
  1290. {
  1291. "url": "https://www.doctrine-project.org/sponsorship.html",
  1292. "type": "custom"
  1293. },
  1294. {
  1295. "url": "https://www.patreon.com/phpdoctrine",
  1296. "type": "patreon"
  1297. },
  1298. {
  1299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1300. "type": "tidelift"
  1301. }
  1302. ],
  1303. "time": "2023-12-05T11:35:05+00:00"
  1304. },
  1305. {
  1306. "name": "doctrine/orm",
  1307. "version": "2.17.2",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/doctrine/orm.git",
  1311. "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/doctrine/orm/zipball/393679a4795e49b0b3ac317dce84d0f8888f2b77",
  1316. "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77",
  1317. "shasum": ""
  1318. },
  1319. "require": {
  1320. "composer-runtime-api": "^2",
  1321. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1322. "doctrine/collections": "^1.5 || ^2.1",
  1323. "doctrine/common": "^3.0.3",
  1324. "doctrine/dbal": "^2.13.1 || ^3.2",
  1325. "doctrine/deprecations": "^0.5.3 || ^1",
  1326. "doctrine/event-manager": "^1.2 || ^2",
  1327. "doctrine/inflector": "^1.4 || ^2.0",
  1328. "doctrine/instantiator": "^1.3 || ^2",
  1329. "doctrine/lexer": "^2",
  1330. "doctrine/persistence": "^2.4 || ^3",
  1331. "ext-ctype": "*",
  1332. "php": "^7.1 || ^8.0",
  1333. "psr/cache": "^1 || ^2 || ^3",
  1334. "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  1335. "symfony/polyfill-php72": "^1.23",
  1336. "symfony/polyfill-php80": "^1.16"
  1337. },
  1338. "conflict": {
  1339. "doctrine/annotations": "<1.13 || >= 3.0"
  1340. },
  1341. "require-dev": {
  1342. "doctrine/annotations": "^1.13 || ^2",
  1343. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  1344. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1345. "phpstan/phpstan": "~1.4.10 || 1.10.35",
  1346. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1347. "psr/log": "^1 || ^2 || ^3",
  1348. "squizlabs/php_codesniffer": "3.7.2",
  1349. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7.0",
  1350. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2 || ^7.0",
  1351. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
  1352. "vimeo/psalm": "4.30.0 || 5.16.0"
  1353. },
  1354. "suggest": {
  1355. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1356. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1357. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1358. },
  1359. "bin": [
  1360. "bin/doctrine"
  1361. ],
  1362. "type": "library",
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "Guilherme Blanco",
  1375. "email": "guilhermeblanco@gmail.com"
  1376. },
  1377. {
  1378. "name": "Roman Borschel",
  1379. "email": "roman@code-factory.org"
  1380. },
  1381. {
  1382. "name": "Benjamin Eberlei",
  1383. "email": "kontakt@beberlei.de"
  1384. },
  1385. {
  1386. "name": "Jonathan Wage",
  1387. "email": "jonwage@gmail.com"
  1388. },
  1389. {
  1390. "name": "Marco Pivetta",
  1391. "email": "ocramius@gmail.com"
  1392. }
  1393. ],
  1394. "description": "Object-Relational-Mapper for PHP",
  1395. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1396. "keywords": [
  1397. "database",
  1398. "orm"
  1399. ],
  1400. "support": {
  1401. "issues": "https://github.com/doctrine/orm/issues",
  1402. "source": "https://github.com/doctrine/orm/tree/2.17.2"
  1403. },
  1404. "time": "2023-12-20T21:47:52+00:00"
  1405. },
  1406. {
  1407. "name": "doctrine/persistence",
  1408. "version": "3.2.0",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/doctrine/persistence.git",
  1412. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1417. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "doctrine/event-manager": "^1 || ^2",
  1422. "php": "^7.2 || ^8.0",
  1423. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1424. },
  1425. "conflict": {
  1426. "doctrine/common": "<2.10"
  1427. },
  1428. "require-dev": {
  1429. "composer/package-versions-deprecated": "^1.11",
  1430. "doctrine/coding-standard": "^11",
  1431. "doctrine/common": "^3.0",
  1432. "phpstan/phpstan": "1.9.4",
  1433. "phpstan/phpstan-phpunit": "^1",
  1434. "phpstan/phpstan-strict-rules": "^1.1",
  1435. "phpunit/phpunit": "^8.5 || ^9.5",
  1436. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1437. "vimeo/psalm": "4.30.0 || 5.3.0"
  1438. },
  1439. "type": "library",
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Persistence\\": "src/Persistence"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Guilherme Blanco",
  1452. "email": "guilhermeblanco@gmail.com"
  1453. },
  1454. {
  1455. "name": "Roman Borschel",
  1456. "email": "roman@code-factory.org"
  1457. },
  1458. {
  1459. "name": "Benjamin Eberlei",
  1460. "email": "kontakt@beberlei.de"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. },
  1470. {
  1471. "name": "Marco Pivetta",
  1472. "email": "ocramius@gmail.com"
  1473. }
  1474. ],
  1475. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1476. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1477. "keywords": [
  1478. "mapper",
  1479. "object",
  1480. "odm",
  1481. "orm",
  1482. "persistence"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/doctrine/persistence/issues",
  1486. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1487. },
  1488. "funding": [
  1489. {
  1490. "url": "https://www.doctrine-project.org/sponsorship.html",
  1491. "type": "custom"
  1492. },
  1493. {
  1494. "url": "https://www.patreon.com/phpdoctrine",
  1495. "type": "patreon"
  1496. },
  1497. {
  1498. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1499. "type": "tidelift"
  1500. }
  1501. ],
  1502. "time": "2023-05-17T18:32:04+00:00"
  1503. },
  1504. {
  1505. "name": "doctrine/sql-formatter",
  1506. "version": "1.1.3",
  1507. "source": {
  1508. "type": "git",
  1509. "url": "https://github.com/doctrine/sql-formatter.git",
  1510. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1511. },
  1512. "dist": {
  1513. "type": "zip",
  1514. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1515. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1516. "shasum": ""
  1517. },
  1518. "require": {
  1519. "php": "^7.1 || ^8.0"
  1520. },
  1521. "require-dev": {
  1522. "bamarni/composer-bin-plugin": "^1.4"
  1523. },
  1524. "bin": [
  1525. "bin/sql-formatter"
  1526. ],
  1527. "type": "library",
  1528. "autoload": {
  1529. "psr-4": {
  1530. "Doctrine\\SqlFormatter\\": "src"
  1531. }
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Jeremy Dorn",
  1540. "email": "jeremy@jeremydorn.com",
  1541. "homepage": "https://jeremydorn.com/"
  1542. }
  1543. ],
  1544. "description": "a PHP SQL highlighting library",
  1545. "homepage": "https://github.com/doctrine/sql-formatter/",
  1546. "keywords": [
  1547. "highlight",
  1548. "sql"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1552. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1553. },
  1554. "time": "2022-05-23T21:33:49+00:00"
  1555. },
  1556. {
  1557. "name": "egulias/email-validator",
  1558. "version": "4.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/egulias/EmailValidator.git",
  1562. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1567. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "doctrine/lexer": "^2.0 || ^3.0",
  1572. "php": ">=8.1",
  1573. "symfony/polyfill-intl-idn": "^1.26"
  1574. },
  1575. "require-dev": {
  1576. "phpunit/phpunit": "^10.2",
  1577. "vimeo/psalm": "^5.12"
  1578. },
  1579. "suggest": {
  1580. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1581. },
  1582. "type": "library",
  1583. "extra": {
  1584. "branch-alias": {
  1585. "dev-master": "4.0.x-dev"
  1586. }
  1587. },
  1588. "autoload": {
  1589. "psr-4": {
  1590. "Egulias\\EmailValidator\\": "src"
  1591. }
  1592. },
  1593. "notification-url": "https://packagist.org/downloads/",
  1594. "license": [
  1595. "MIT"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "Eduardo Gulias Davis"
  1600. }
  1601. ],
  1602. "description": "A library for validating emails against several RFCs",
  1603. "homepage": "https://github.com/egulias/EmailValidator",
  1604. "keywords": [
  1605. "email",
  1606. "emailvalidation",
  1607. "emailvalidator",
  1608. "validation",
  1609. "validator"
  1610. ],
  1611. "support": {
  1612. "issues": "https://github.com/egulias/EmailValidator/issues",
  1613. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1614. },
  1615. "funding": [
  1616. {
  1617. "url": "https://github.com/egulias",
  1618. "type": "github"
  1619. }
  1620. ],
  1621. "time": "2023-10-06T06:47:41+00:00"
  1622. },
  1623. {
  1624. "name": "friendsofphp/proxy-manager-lts",
  1625. "version": "v1.0.16",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1629. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1634. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "laminas/laminas-code": "~3.4.1|^4.0",
  1639. "php": ">=7.1",
  1640. "symfony/filesystem": "^4.4.17|^5.0|^6.0|^7.0"
  1641. },
  1642. "conflict": {
  1643. "laminas/laminas-stdlib": "<3.2.1",
  1644. "zendframework/zend-stdlib": "<3.2.1"
  1645. },
  1646. "replace": {
  1647. "ocramius/proxy-manager": "^2.1"
  1648. },
  1649. "require-dev": {
  1650. "ext-phar": "*",
  1651. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "thanks": {
  1656. "name": "ocramius/proxy-manager",
  1657. "url": "https://github.com/Ocramius/ProxyManager"
  1658. }
  1659. },
  1660. "autoload": {
  1661. "psr-4": {
  1662. "ProxyManager\\": "src/ProxyManager"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Marco Pivetta",
  1672. "email": "ocramius@gmail.com",
  1673. "homepage": "https://ocramius.github.io/"
  1674. },
  1675. {
  1676. "name": "Nicolas Grekas",
  1677. "email": "p@tchwork.com"
  1678. }
  1679. ],
  1680. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1681. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1682. "keywords": [
  1683. "aop",
  1684. "lazy loading",
  1685. "proxy",
  1686. "proxy pattern",
  1687. "service proxies"
  1688. ],
  1689. "support": {
  1690. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1691. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.16"
  1692. },
  1693. "funding": [
  1694. {
  1695. "url": "https://github.com/Ocramius",
  1696. "type": "github"
  1697. },
  1698. {
  1699. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1700. "type": "tidelift"
  1701. }
  1702. ],
  1703. "time": "2023-05-24T07:17:17+00:00"
  1704. },
  1705. {
  1706. "name": "laminas/laminas-code",
  1707. "version": "4.13.0",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/laminas/laminas-code.git",
  1711. "reference": "7353d4099ad5388e84737dd16994316a04f48dbf"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf",
  1716. "reference": "7353d4099ad5388e84737dd16994316a04f48dbf",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  1721. },
  1722. "require-dev": {
  1723. "doctrine/annotations": "^2.0.1",
  1724. "ext-phar": "*",
  1725. "laminas/laminas-coding-standard": "^2.5.0",
  1726. "laminas/laminas-stdlib": "^3.17.0",
  1727. "phpunit/phpunit": "^10.3.3",
  1728. "psalm/plugin-phpunit": "^0.18.4",
  1729. "vimeo/psalm": "^5.15.0"
  1730. },
  1731. "suggest": {
  1732. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1733. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1734. },
  1735. "type": "library",
  1736. "autoload": {
  1737. "psr-4": {
  1738. "Laminas\\Code\\": "src/"
  1739. }
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "BSD-3-Clause"
  1744. ],
  1745. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1746. "homepage": "https://laminas.dev",
  1747. "keywords": [
  1748. "code",
  1749. "laminas",
  1750. "laminasframework"
  1751. ],
  1752. "support": {
  1753. "chat": "https://laminas.dev/chat",
  1754. "docs": "https://docs.laminas.dev/laminas-code/",
  1755. "forum": "https://discourse.laminas.dev",
  1756. "issues": "https://github.com/laminas/laminas-code/issues",
  1757. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1758. "source": "https://github.com/laminas/laminas-code"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1763. "type": "community_bridge"
  1764. }
  1765. ],
  1766. "time": "2023-10-18T10:00:55+00:00"
  1767. },
  1768. {
  1769. "name": "league/commonmark",
  1770. "version": "2.4.1",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/thephpleague/commonmark.git",
  1774. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1779. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "ext-mbstring": "*",
  1784. "league/config": "^1.1.1",
  1785. "php": "^7.4 || ^8.0",
  1786. "psr/event-dispatcher": "^1.0",
  1787. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1788. "symfony/polyfill-php80": "^1.16"
  1789. },
  1790. "require-dev": {
  1791. "cebe/markdown": "^1.0",
  1792. "commonmark/cmark": "0.30.0",
  1793. "commonmark/commonmark.js": "0.30.0",
  1794. "composer/package-versions-deprecated": "^1.8",
  1795. "embed/embed": "^4.4",
  1796. "erusev/parsedown": "^1.0",
  1797. "ext-json": "*",
  1798. "github/gfm": "0.29.0",
  1799. "michelf/php-markdown": "^1.4 || ^2.0",
  1800. "nyholm/psr7": "^1.5",
  1801. "phpstan/phpstan": "^1.8.2",
  1802. "phpunit/phpunit": "^9.5.21",
  1803. "scrutinizer/ocular": "^1.8.1",
  1804. "symfony/finder": "^5.3 | ^6.0",
  1805. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1806. "unleashedtech/php-coding-standard": "^3.1.1",
  1807. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1808. },
  1809. "suggest": {
  1810. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1811. },
  1812. "type": "library",
  1813. "extra": {
  1814. "branch-alias": {
  1815. "dev-main": "2.5-dev"
  1816. }
  1817. },
  1818. "autoload": {
  1819. "psr-4": {
  1820. "League\\CommonMark\\": "src"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "BSD-3-Clause"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "Colin O'Dell",
  1830. "email": "colinodell@gmail.com",
  1831. "homepage": "https://www.colinodell.com",
  1832. "role": "Lead Developer"
  1833. }
  1834. ],
  1835. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1836. "homepage": "https://commonmark.thephpleague.com",
  1837. "keywords": [
  1838. "commonmark",
  1839. "flavored",
  1840. "gfm",
  1841. "github",
  1842. "github-flavored",
  1843. "markdown",
  1844. "md",
  1845. "parser"
  1846. ],
  1847. "support": {
  1848. "docs": "https://commonmark.thephpleague.com/",
  1849. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1850. "issues": "https://github.com/thephpleague/commonmark/issues",
  1851. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1852. "source": "https://github.com/thephpleague/commonmark"
  1853. },
  1854. "funding": [
  1855. {
  1856. "url": "https://www.colinodell.com/sponsor",
  1857. "type": "custom"
  1858. },
  1859. {
  1860. "url": "https://www.paypal.me/colinpodell/10.00",
  1861. "type": "custom"
  1862. },
  1863. {
  1864. "url": "https://github.com/colinodell",
  1865. "type": "github"
  1866. },
  1867. {
  1868. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1869. "type": "tidelift"
  1870. }
  1871. ],
  1872. "time": "2023-08-30T16:55:00+00:00"
  1873. },
  1874. {
  1875. "name": "league/config",
  1876. "version": "v1.2.0",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/thephpleague/config.git",
  1880. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1885. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "dflydev/dot-access-data": "^3.0.1",
  1890. "nette/schema": "^1.2",
  1891. "php": "^7.4 || ^8.0"
  1892. },
  1893. "require-dev": {
  1894. "phpstan/phpstan": "^1.8.2",
  1895. "phpunit/phpunit": "^9.5.5",
  1896. "scrutinizer/ocular": "^1.8.1",
  1897. "unleashedtech/php-coding-standard": "^3.1",
  1898. "vimeo/psalm": "^4.7.3"
  1899. },
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-main": "1.2-dev"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "League\\Config\\": "src"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "BSD-3-Clause"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Colin O'Dell",
  1918. "email": "colinodell@gmail.com",
  1919. "homepage": "https://www.colinodell.com",
  1920. "role": "Lead Developer"
  1921. }
  1922. ],
  1923. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1924. "homepage": "https://config.thephpleague.com",
  1925. "keywords": [
  1926. "array",
  1927. "config",
  1928. "configuration",
  1929. "dot",
  1930. "dot-access",
  1931. "nested",
  1932. "schema"
  1933. ],
  1934. "support": {
  1935. "docs": "https://config.thephpleague.com/",
  1936. "issues": "https://github.com/thephpleague/config/issues",
  1937. "rss": "https://github.com/thephpleague/config/releases.atom",
  1938. "source": "https://github.com/thephpleague/config"
  1939. },
  1940. "funding": [
  1941. {
  1942. "url": "https://www.colinodell.com/sponsor",
  1943. "type": "custom"
  1944. },
  1945. {
  1946. "url": "https://www.paypal.me/colinpodell/10.00",
  1947. "type": "custom"
  1948. },
  1949. {
  1950. "url": "https://github.com/colinodell",
  1951. "type": "github"
  1952. }
  1953. ],
  1954. "time": "2022-12-11T20:36:23+00:00"
  1955. },
  1956. {
  1957. "name": "league/uri",
  1958. "version": "7.4.0",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/thephpleague/uri.git",
  1962. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5",
  1967. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5",
  1968. "shasum": ""
  1969. },
  1970. "require": {
  1971. "league/uri-interfaces": "^7.3",
  1972. "php": "^8.1"
  1973. },
  1974. "conflict": {
  1975. "league/uri-schemes": "^1.0"
  1976. },
  1977. "suggest": {
  1978. "ext-bcmath": "to improve IPV4 host parsing",
  1979. "ext-fileinfo": "to create Data URI from file contennts",
  1980. "ext-gmp": "to improve IPV4 host parsing",
  1981. "ext-intl": "to handle IDN host with the best performance",
  1982. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1983. "league/uri-components": "Needed to easily manipulate URI objects components",
  1984. "php-64bit": "to improve IPV4 host parsing",
  1985. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "7.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "League\\Uri\\": ""
  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-src/issues",
  2036. "source": "https://github.com/thephpleague/uri/tree/7.4.0"
  2037. },
  2038. "funding": [
  2039. {
  2040. "url": "https://github.com/sponsors/nyamsprod",
  2041. "type": "github"
  2042. }
  2043. ],
  2044. "time": "2023-12-01T06:24:25+00:00"
  2045. },
  2046. {
  2047. "name": "league/uri-interfaces",
  2048. "version": "7.4.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2052. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  2057. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "ext-filter": "*",
  2062. "php": "^8.1",
  2063. "psr/http-factory": "^1",
  2064. "psr/http-message": "^1.1 || ^2.0"
  2065. },
  2066. "suggest": {
  2067. "ext-bcmath": "to improve IPV4 host parsing",
  2068. "ext-gmp": "to improve IPV4 host parsing",
  2069. "ext-intl": "to handle IDN host with the best performance",
  2070. "php-64bit": "to improve IPV4 host parsing",
  2071. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  2072. },
  2073. "type": "library",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-master": "7.x-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "League\\Uri\\": ""
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Ignace Nyamagana Butera",
  2091. "email": "nyamsprod@gmail.com",
  2092. "homepage": "https://nyamsprod.com"
  2093. }
  2094. ],
  2095. "description": "Common interfaces and classes for URI representation and interaction",
  2096. "homepage": "https://uri.thephpleague.com",
  2097. "keywords": [
  2098. "data-uri",
  2099. "file-uri",
  2100. "ftp",
  2101. "hostname",
  2102. "http",
  2103. "https",
  2104. "parse_str",
  2105. "parse_url",
  2106. "psr-7",
  2107. "query-string",
  2108. "querystring",
  2109. "rfc3986",
  2110. "rfc3987",
  2111. "rfc6570",
  2112. "uri",
  2113. "url",
  2114. "ws"
  2115. ],
  2116. "support": {
  2117. "docs": "https://uri.thephpleague.com",
  2118. "forum": "https://thephpleague.slack.com",
  2119. "issues": "https://github.com/thephpleague/uri-src/issues",
  2120. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.0"
  2121. },
  2122. "funding": [
  2123. {
  2124. "url": "https://github.com/sponsors/nyamsprod",
  2125. "type": "github"
  2126. }
  2127. ],
  2128. "time": "2023-11-24T15:40:42+00:00"
  2129. },
  2130. {
  2131. "name": "masterminds/html5",
  2132. "version": "2.8.1",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/Masterminds/html5-php.git",
  2136. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  2141. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "ext-dom": "*",
  2146. "php": ">=5.3.0"
  2147. },
  2148. "require-dev": {
  2149. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "2.7-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-4": {
  2159. "Masterminds\\": "src"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Matt Butcher",
  2169. "email": "technosophos@gmail.com"
  2170. },
  2171. {
  2172. "name": "Matt Farina",
  2173. "email": "matt@mattfarina.com"
  2174. },
  2175. {
  2176. "name": "Asmir Mustafic",
  2177. "email": "goetas@gmail.com"
  2178. }
  2179. ],
  2180. "description": "An HTML5 parser and serializer.",
  2181. "homepage": "http://masterminds.github.io/html5-php",
  2182. "keywords": [
  2183. "HTML5",
  2184. "dom",
  2185. "html",
  2186. "parser",
  2187. "querypath",
  2188. "serializer",
  2189. "xml"
  2190. ],
  2191. "support": {
  2192. "issues": "https://github.com/Masterminds/html5-php/issues",
  2193. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  2194. },
  2195. "time": "2023-05-10T11:58:31+00:00"
  2196. },
  2197. {
  2198. "name": "monolog/monolog",
  2199. "version": "3.5.0",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/Seldaek/monolog.git",
  2203. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  2208. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=8.1",
  2213. "psr/log": "^2.0 || ^3.0"
  2214. },
  2215. "provide": {
  2216. "psr/log-implementation": "3.0.0"
  2217. },
  2218. "require-dev": {
  2219. "aws/aws-sdk-php": "^3.0",
  2220. "doctrine/couchdb": "~1.0@dev",
  2221. "elasticsearch/elasticsearch": "^7 || ^8",
  2222. "ext-json": "*",
  2223. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2224. "guzzlehttp/guzzle": "^7.4.5",
  2225. "guzzlehttp/psr7": "^2.2",
  2226. "mongodb/mongodb": "^1.8",
  2227. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2228. "phpstan/phpstan": "^1.9",
  2229. "phpstan/phpstan-deprecation-rules": "^1.0",
  2230. "phpstan/phpstan-strict-rules": "^1.4",
  2231. "phpunit/phpunit": "^10.1",
  2232. "predis/predis": "^1.1 || ^2",
  2233. "ruflin/elastica": "^7",
  2234. "symfony/mailer": "^5.4 || ^6",
  2235. "symfony/mime": "^5.4 || ^6"
  2236. },
  2237. "suggest": {
  2238. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2239. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2240. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2241. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2242. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2243. "ext-mbstring": "Allow to work properly with unicode symbols",
  2244. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2245. "ext-openssl": "Required to send log messages using SSL",
  2246. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2247. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2248. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2249. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2250. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2251. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2252. },
  2253. "type": "library",
  2254. "extra": {
  2255. "branch-alias": {
  2256. "dev-main": "3.x-dev"
  2257. }
  2258. },
  2259. "autoload": {
  2260. "psr-4": {
  2261. "Monolog\\": "src/Monolog"
  2262. }
  2263. },
  2264. "notification-url": "https://packagist.org/downloads/",
  2265. "license": [
  2266. "MIT"
  2267. ],
  2268. "authors": [
  2269. {
  2270. "name": "Jordi Boggiano",
  2271. "email": "j.boggiano@seld.be",
  2272. "homepage": "https://seld.be"
  2273. }
  2274. ],
  2275. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2276. "homepage": "https://github.com/Seldaek/monolog",
  2277. "keywords": [
  2278. "log",
  2279. "logging",
  2280. "psr-3"
  2281. ],
  2282. "support": {
  2283. "issues": "https://github.com/Seldaek/monolog/issues",
  2284. "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
  2285. },
  2286. "funding": [
  2287. {
  2288. "url": "https://github.com/Seldaek",
  2289. "type": "github"
  2290. },
  2291. {
  2292. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2293. "type": "tidelift"
  2294. }
  2295. ],
  2296. "time": "2023-10-27T15:32:31+00:00"
  2297. },
  2298. {
  2299. "name": "nette/schema",
  2300. "version": "v1.2.5",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/nette/schema.git",
  2304. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  2309. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2314. "php": "7.1 - 8.3"
  2315. },
  2316. "require-dev": {
  2317. "nette/tester": "^2.3 || ^2.4",
  2318. "phpstan/phpstan-nette": "^1.0",
  2319. "tracy/tracy": "^2.7"
  2320. },
  2321. "type": "library",
  2322. "extra": {
  2323. "branch-alias": {
  2324. "dev-master": "1.2-dev"
  2325. }
  2326. },
  2327. "autoload": {
  2328. "classmap": [
  2329. "src/"
  2330. ]
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "BSD-3-Clause",
  2335. "GPL-2.0-only",
  2336. "GPL-3.0-only"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "David Grudl",
  2341. "homepage": "https://davidgrudl.com"
  2342. },
  2343. {
  2344. "name": "Nette Community",
  2345. "homepage": "https://nette.org/contributors"
  2346. }
  2347. ],
  2348. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2349. "homepage": "https://nette.org",
  2350. "keywords": [
  2351. "config",
  2352. "nette"
  2353. ],
  2354. "support": {
  2355. "issues": "https://github.com/nette/schema/issues",
  2356. "source": "https://github.com/nette/schema/tree/v1.2.5"
  2357. },
  2358. "time": "2023-10-05T20:37:59+00:00"
  2359. },
  2360. {
  2361. "name": "nette/utils",
  2362. "version": "v4.0.3",
  2363. "source": {
  2364. "type": "git",
  2365. "url": "https://github.com/nette/utils.git",
  2366. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  2367. },
  2368. "dist": {
  2369. "type": "zip",
  2370. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  2371. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  2372. "shasum": ""
  2373. },
  2374. "require": {
  2375. "php": ">=8.0 <8.4"
  2376. },
  2377. "conflict": {
  2378. "nette/finder": "<3",
  2379. "nette/schema": "<1.2.2"
  2380. },
  2381. "require-dev": {
  2382. "jetbrains/phpstorm-attributes": "dev-master",
  2383. "nette/tester": "^2.5",
  2384. "phpstan/phpstan": "^1.0",
  2385. "tracy/tracy": "^2.9"
  2386. },
  2387. "suggest": {
  2388. "ext-gd": "to use Image",
  2389. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2390. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2391. "ext-json": "to use Nette\\Utils\\Json",
  2392. "ext-mbstring": "to use Strings::lower() etc...",
  2393. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2394. },
  2395. "type": "library",
  2396. "extra": {
  2397. "branch-alias": {
  2398. "dev-master": "4.0-dev"
  2399. }
  2400. },
  2401. "autoload": {
  2402. "classmap": [
  2403. "src/"
  2404. ]
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "BSD-3-Clause",
  2409. "GPL-2.0-only",
  2410. "GPL-3.0-only"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "David Grudl",
  2415. "homepage": "https://davidgrudl.com"
  2416. },
  2417. {
  2418. "name": "Nette Community",
  2419. "homepage": "https://nette.org/contributors"
  2420. }
  2421. ],
  2422. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2423. "homepage": "https://nette.org",
  2424. "keywords": [
  2425. "array",
  2426. "core",
  2427. "datetime",
  2428. "images",
  2429. "json",
  2430. "nette",
  2431. "paginator",
  2432. "password",
  2433. "slugify",
  2434. "string",
  2435. "unicode",
  2436. "utf-8",
  2437. "utility",
  2438. "validation"
  2439. ],
  2440. "support": {
  2441. "issues": "https://github.com/nette/utils/issues",
  2442. "source": "https://github.com/nette/utils/tree/v4.0.3"
  2443. },
  2444. "time": "2023-10-29T21:02:13+00:00"
  2445. },
  2446. {
  2447. "name": "phpdocumentor/reflection-common",
  2448. "version": "2.2.0",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2452. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2457. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": "^7.2 || ^8.0"
  2462. },
  2463. "type": "library",
  2464. "extra": {
  2465. "branch-alias": {
  2466. "dev-2.x": "2.x-dev"
  2467. }
  2468. },
  2469. "autoload": {
  2470. "psr-4": {
  2471. "phpDocumentor\\Reflection\\": "src/"
  2472. }
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Jaap van Otterdijk",
  2481. "email": "opensource@ijaap.nl"
  2482. }
  2483. ],
  2484. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2485. "homepage": "http://www.phpdoc.org",
  2486. "keywords": [
  2487. "FQSEN",
  2488. "phpDocumentor",
  2489. "phpdoc",
  2490. "reflection",
  2491. "static analysis"
  2492. ],
  2493. "support": {
  2494. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2495. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2496. },
  2497. "time": "2020-06-27T09:03:43+00:00"
  2498. },
  2499. {
  2500. "name": "phpdocumentor/reflection-docblock",
  2501. "version": "5.3.0",
  2502. "source": {
  2503. "type": "git",
  2504. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2505. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2506. },
  2507. "dist": {
  2508. "type": "zip",
  2509. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2510. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2511. "shasum": ""
  2512. },
  2513. "require": {
  2514. "ext-filter": "*",
  2515. "php": "^7.2 || ^8.0",
  2516. "phpdocumentor/reflection-common": "^2.2",
  2517. "phpdocumentor/type-resolver": "^1.3",
  2518. "webmozart/assert": "^1.9.1"
  2519. },
  2520. "require-dev": {
  2521. "mockery/mockery": "~1.3.2",
  2522. "psalm/phar": "^4.8"
  2523. },
  2524. "type": "library",
  2525. "extra": {
  2526. "branch-alias": {
  2527. "dev-master": "5.x-dev"
  2528. }
  2529. },
  2530. "autoload": {
  2531. "psr-4": {
  2532. "phpDocumentor\\Reflection\\": "src"
  2533. }
  2534. },
  2535. "notification-url": "https://packagist.org/downloads/",
  2536. "license": [
  2537. "MIT"
  2538. ],
  2539. "authors": [
  2540. {
  2541. "name": "Mike van Riel",
  2542. "email": "me@mikevanriel.com"
  2543. },
  2544. {
  2545. "name": "Jaap van Otterdijk",
  2546. "email": "account@ijaap.nl"
  2547. }
  2548. ],
  2549. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2550. "support": {
  2551. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2552. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2553. },
  2554. "time": "2021-10-19T17:43:47+00:00"
  2555. },
  2556. {
  2557. "name": "phpdocumentor/type-resolver",
  2558. "version": "1.7.3",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2562. "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
  2567. "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "doctrine/deprecations": "^1.0",
  2572. "php": "^7.4 || ^8.0",
  2573. "phpdocumentor/reflection-common": "^2.0",
  2574. "phpstan/phpdoc-parser": "^1.13"
  2575. },
  2576. "require-dev": {
  2577. "ext-tokenizer": "*",
  2578. "phpbench/phpbench": "^1.2",
  2579. "phpstan/extension-installer": "^1.1",
  2580. "phpstan/phpstan": "^1.8",
  2581. "phpstan/phpstan-phpunit": "^1.1",
  2582. "phpunit/phpunit": "^9.5",
  2583. "rector/rector": "^0.13.9",
  2584. "vimeo/psalm": "^4.25"
  2585. },
  2586. "type": "library",
  2587. "extra": {
  2588. "branch-alias": {
  2589. "dev-1.x": "1.x-dev"
  2590. }
  2591. },
  2592. "autoload": {
  2593. "psr-4": {
  2594. "phpDocumentor\\Reflection\\": "src"
  2595. }
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Mike van Riel",
  2604. "email": "me@mikevanriel.com"
  2605. }
  2606. ],
  2607. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2608. "support": {
  2609. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2610. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3"
  2611. },
  2612. "time": "2023-08-12T11:01:26+00:00"
  2613. },
  2614. {
  2615. "name": "phpstan/phpdoc-parser",
  2616. "version": "1.24.5",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2620. "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fedf211ff14ec8381c9bf5714e33a7a552dd1acc",
  2625. "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "php": "^7.2 || ^8.0"
  2630. },
  2631. "require-dev": {
  2632. "doctrine/annotations": "^2.0",
  2633. "nikic/php-parser": "^4.15",
  2634. "php-parallel-lint/php-parallel-lint": "^1.2",
  2635. "phpstan/extension-installer": "^1.0",
  2636. "phpstan/phpstan": "^1.5",
  2637. "phpstan/phpstan-phpunit": "^1.1",
  2638. "phpstan/phpstan-strict-rules": "^1.0",
  2639. "phpunit/phpunit": "^9.5",
  2640. "symfony/process": "^5.2"
  2641. },
  2642. "type": "library",
  2643. "autoload": {
  2644. "psr-4": {
  2645. "PHPStan\\PhpDocParser\\": [
  2646. "src/"
  2647. ]
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2655. "support": {
  2656. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2657. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.5"
  2658. },
  2659. "time": "2023-12-16T09:33:33+00:00"
  2660. },
  2661. {
  2662. "name": "psr/cache",
  2663. "version": "3.0.0",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/php-fig/cache.git",
  2667. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2672. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "php": ">=8.0.0"
  2677. },
  2678. "type": "library",
  2679. "extra": {
  2680. "branch-alias": {
  2681. "dev-master": "1.0.x-dev"
  2682. }
  2683. },
  2684. "autoload": {
  2685. "psr-4": {
  2686. "Psr\\Cache\\": "src/"
  2687. }
  2688. },
  2689. "notification-url": "https://packagist.org/downloads/",
  2690. "license": [
  2691. "MIT"
  2692. ],
  2693. "authors": [
  2694. {
  2695. "name": "PHP-FIG",
  2696. "homepage": "https://www.php-fig.org/"
  2697. }
  2698. ],
  2699. "description": "Common interface for caching libraries",
  2700. "keywords": [
  2701. "cache",
  2702. "psr",
  2703. "psr-6"
  2704. ],
  2705. "support": {
  2706. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2707. },
  2708. "time": "2021-02-03T23:26:27+00:00"
  2709. },
  2710. {
  2711. "name": "psr/clock",
  2712. "version": "1.0.0",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/php-fig/clock.git",
  2716. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2721. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^7.0 || ^8.0"
  2726. },
  2727. "type": "library",
  2728. "autoload": {
  2729. "psr-4": {
  2730. "Psr\\Clock\\": "src/"
  2731. }
  2732. },
  2733. "notification-url": "https://packagist.org/downloads/",
  2734. "license": [
  2735. "MIT"
  2736. ],
  2737. "authors": [
  2738. {
  2739. "name": "PHP-FIG",
  2740. "homepage": "https://www.php-fig.org/"
  2741. }
  2742. ],
  2743. "description": "Common interface for reading the clock.",
  2744. "homepage": "https://github.com/php-fig/clock",
  2745. "keywords": [
  2746. "clock",
  2747. "now",
  2748. "psr",
  2749. "psr-20",
  2750. "time"
  2751. ],
  2752. "support": {
  2753. "issues": "https://github.com/php-fig/clock/issues",
  2754. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2755. },
  2756. "time": "2022-11-25T14:36:26+00:00"
  2757. },
  2758. {
  2759. "name": "psr/container",
  2760. "version": "2.0.2",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/php-fig/container.git",
  2764. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2769. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2770. "shasum": ""
  2771. },
  2772. "require": {
  2773. "php": ">=7.4.0"
  2774. },
  2775. "type": "library",
  2776. "extra": {
  2777. "branch-alias": {
  2778. "dev-master": "2.0.x-dev"
  2779. }
  2780. },
  2781. "autoload": {
  2782. "psr-4": {
  2783. "Psr\\Container\\": "src/"
  2784. }
  2785. },
  2786. "notification-url": "https://packagist.org/downloads/",
  2787. "license": [
  2788. "MIT"
  2789. ],
  2790. "authors": [
  2791. {
  2792. "name": "PHP-FIG",
  2793. "homepage": "https://www.php-fig.org/"
  2794. }
  2795. ],
  2796. "description": "Common Container Interface (PHP FIG PSR-11)",
  2797. "homepage": "https://github.com/php-fig/container",
  2798. "keywords": [
  2799. "PSR-11",
  2800. "container",
  2801. "container-interface",
  2802. "container-interop",
  2803. "psr"
  2804. ],
  2805. "support": {
  2806. "issues": "https://github.com/php-fig/container/issues",
  2807. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2808. },
  2809. "time": "2021-11-05T16:47:00+00:00"
  2810. },
  2811. {
  2812. "name": "psr/event-dispatcher",
  2813. "version": "1.0.0",
  2814. "source": {
  2815. "type": "git",
  2816. "url": "https://github.com/php-fig/event-dispatcher.git",
  2817. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2818. },
  2819. "dist": {
  2820. "type": "zip",
  2821. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2822. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2823. "shasum": ""
  2824. },
  2825. "require": {
  2826. "php": ">=7.2.0"
  2827. },
  2828. "type": "library",
  2829. "extra": {
  2830. "branch-alias": {
  2831. "dev-master": "1.0.x-dev"
  2832. }
  2833. },
  2834. "autoload": {
  2835. "psr-4": {
  2836. "Psr\\EventDispatcher\\": "src/"
  2837. }
  2838. },
  2839. "notification-url": "https://packagist.org/downloads/",
  2840. "license": [
  2841. "MIT"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "PHP-FIG",
  2846. "homepage": "http://www.php-fig.org/"
  2847. }
  2848. ],
  2849. "description": "Standard interfaces for event handling.",
  2850. "keywords": [
  2851. "events",
  2852. "psr",
  2853. "psr-14"
  2854. ],
  2855. "support": {
  2856. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2857. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2858. },
  2859. "time": "2019-01-08T18:20:26+00:00"
  2860. },
  2861. {
  2862. "name": "psr/http-factory",
  2863. "version": "1.0.2",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://github.com/php-fig/http-factory.git",
  2867. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2872. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2873. "shasum": ""
  2874. },
  2875. "require": {
  2876. "php": ">=7.0.0",
  2877. "psr/http-message": "^1.0 || ^2.0"
  2878. },
  2879. "type": "library",
  2880. "extra": {
  2881. "branch-alias": {
  2882. "dev-master": "1.0.x-dev"
  2883. }
  2884. },
  2885. "autoload": {
  2886. "psr-4": {
  2887. "Psr\\Http\\Message\\": "src/"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "PHP-FIG",
  2897. "homepage": "https://www.php-fig.org/"
  2898. }
  2899. ],
  2900. "description": "Common interfaces for PSR-7 HTTP message factories",
  2901. "keywords": [
  2902. "factory",
  2903. "http",
  2904. "message",
  2905. "psr",
  2906. "psr-17",
  2907. "psr-7",
  2908. "request",
  2909. "response"
  2910. ],
  2911. "support": {
  2912. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2913. },
  2914. "time": "2023-04-10T20:10:41+00:00"
  2915. },
  2916. {
  2917. "name": "psr/http-message",
  2918. "version": "2.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/php-fig/http-message.git",
  2922. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2927. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": "^7.2 || ^8.0"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "2.0.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Psr\\Http\\Message\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "PHP-FIG",
  2951. "homepage": "https://www.php-fig.org/"
  2952. }
  2953. ],
  2954. "description": "Common interface for HTTP messages",
  2955. "homepage": "https://github.com/php-fig/http-message",
  2956. "keywords": [
  2957. "http",
  2958. "http-message",
  2959. "psr",
  2960. "psr-7",
  2961. "request",
  2962. "response"
  2963. ],
  2964. "support": {
  2965. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2966. },
  2967. "time": "2023-04-04T09:54:51+00:00"
  2968. },
  2969. {
  2970. "name": "psr/link",
  2971. "version": "2.0.1",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/php-fig/link.git",
  2975. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2980. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2981. "shasum": ""
  2982. },
  2983. "require": {
  2984. "php": ">=8.0.0"
  2985. },
  2986. "suggest": {
  2987. "fig/link-util": "Provides some useful PSR-13 utilities"
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "branch-alias": {
  2992. "dev-master": "2.0.x-dev"
  2993. }
  2994. },
  2995. "autoload": {
  2996. "psr-4": {
  2997. "Psr\\Link\\": "src/"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "PHP-FIG",
  3007. "homepage": "http://www.php-fig.org/"
  3008. }
  3009. ],
  3010. "description": "Common interfaces for HTTP links",
  3011. "homepage": "https://github.com/php-fig/link",
  3012. "keywords": [
  3013. "http",
  3014. "http-link",
  3015. "link",
  3016. "psr",
  3017. "psr-13",
  3018. "rest"
  3019. ],
  3020. "support": {
  3021. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3022. },
  3023. "time": "2021-03-11T23:00:27+00:00"
  3024. },
  3025. {
  3026. "name": "psr/log",
  3027. "version": "3.0.0",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/php-fig/log.git",
  3031. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3036. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": ">=8.0.0"
  3041. },
  3042. "type": "library",
  3043. "extra": {
  3044. "branch-alias": {
  3045. "dev-master": "3.x-dev"
  3046. }
  3047. },
  3048. "autoload": {
  3049. "psr-4": {
  3050. "Psr\\Log\\": "src"
  3051. }
  3052. },
  3053. "notification-url": "https://packagist.org/downloads/",
  3054. "license": [
  3055. "MIT"
  3056. ],
  3057. "authors": [
  3058. {
  3059. "name": "PHP-FIG",
  3060. "homepage": "https://www.php-fig.org/"
  3061. }
  3062. ],
  3063. "description": "Common interface for logging libraries",
  3064. "homepage": "https://github.com/php-fig/log",
  3065. "keywords": [
  3066. "log",
  3067. "psr",
  3068. "psr-3"
  3069. ],
  3070. "support": {
  3071. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3072. },
  3073. "time": "2021-07-14T16:46:02+00:00"
  3074. },
  3075. {
  3076. "name": "symfony/apache-pack",
  3077. "version": "v1.0.1",
  3078. "source": {
  3079. "type": "git",
  3080. "url": "https://github.com/symfony/apache-pack.git",
  3081. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3082. },
  3083. "dist": {
  3084. "type": "zip",
  3085. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3086. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3087. "shasum": ""
  3088. },
  3089. "type": "symfony-pack",
  3090. "notification-url": "https://packagist.org/downloads/",
  3091. "license": [
  3092. "MIT"
  3093. ],
  3094. "description": "A pack for Apache support in Symfony",
  3095. "support": {
  3096. "issues": "https://github.com/symfony/apache-pack/issues",
  3097. "source": "https://github.com/symfony/apache-pack/tree/master"
  3098. },
  3099. "time": "2017-12-12T01:46:35+00:00"
  3100. },
  3101. {
  3102. "name": "symfony/asset",
  3103. "version": "v6.4.0",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/symfony/asset.git",
  3107. "reference": "c1108eb27a61ef4ac29504ef61c028648308036c"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/symfony/asset/zipball/c1108eb27a61ef4ac29504ef61c028648308036c",
  3112. "reference": "c1108eb27a61ef4ac29504ef61c028648308036c",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=8.1"
  3117. },
  3118. "conflict": {
  3119. "symfony/http-foundation": "<5.4"
  3120. },
  3121. "require-dev": {
  3122. "symfony/http-client": "^5.4|^6.0|^7.0",
  3123. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3124. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  3125. },
  3126. "type": "library",
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Symfony\\Component\\Asset\\": ""
  3130. },
  3131. "exclude-from-classmap": [
  3132. "/Tests/"
  3133. ]
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "MIT"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "Fabien Potencier",
  3142. "email": "fabien@symfony.com"
  3143. },
  3144. {
  3145. "name": "Symfony Community",
  3146. "homepage": "https://symfony.com/contributors"
  3147. }
  3148. ],
  3149. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3150. "homepage": "https://symfony.com",
  3151. "support": {
  3152. "source": "https://github.com/symfony/asset/tree/v6.4.0"
  3153. },
  3154. "funding": [
  3155. {
  3156. "url": "https://symfony.com/sponsor",
  3157. "type": "custom"
  3158. },
  3159. {
  3160. "url": "https://github.com/fabpot",
  3161. "type": "github"
  3162. },
  3163. {
  3164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3165. "type": "tidelift"
  3166. }
  3167. ],
  3168. "time": "2023-10-31T08:40:20+00:00"
  3169. },
  3170. {
  3171. "name": "symfony/cache",
  3172. "version": "v6.4.0",
  3173. "source": {
  3174. "type": "git",
  3175. "url": "https://github.com/symfony/cache.git",
  3176. "reference": "ac2d25f97b17eec6e19760b6b9962a4f7c44356a"
  3177. },
  3178. "dist": {
  3179. "type": "zip",
  3180. "url": "https://api.github.com/repos/symfony/cache/zipball/ac2d25f97b17eec6e19760b6b9962a4f7c44356a",
  3181. "reference": "ac2d25f97b17eec6e19760b6b9962a4f7c44356a",
  3182. "shasum": ""
  3183. },
  3184. "require": {
  3185. "php": ">=8.1",
  3186. "psr/cache": "^2.0|^3.0",
  3187. "psr/log": "^1.1|^2|^3",
  3188. "symfony/cache-contracts": "^2.5|^3",
  3189. "symfony/service-contracts": "^2.5|^3",
  3190. "symfony/var-exporter": "^6.3.6|^7.0"
  3191. },
  3192. "conflict": {
  3193. "doctrine/dbal": "<2.13.1",
  3194. "symfony/dependency-injection": "<5.4",
  3195. "symfony/http-kernel": "<5.4",
  3196. "symfony/var-dumper": "<5.4"
  3197. },
  3198. "provide": {
  3199. "psr/cache-implementation": "2.0|3.0",
  3200. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3201. "symfony/cache-implementation": "1.1|2.0|3.0"
  3202. },
  3203. "require-dev": {
  3204. "cache/integration-tests": "dev-master",
  3205. "doctrine/dbal": "^2.13.1|^3|^4",
  3206. "predis/predis": "^1.1|^2.0",
  3207. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3208. "symfony/config": "^5.4|^6.0|^7.0",
  3209. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3210. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3211. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3212. "symfony/messenger": "^5.4|^6.0|^7.0",
  3213. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3214. },
  3215. "type": "library",
  3216. "autoload": {
  3217. "psr-4": {
  3218. "Symfony\\Component\\Cache\\": ""
  3219. },
  3220. "classmap": [
  3221. "Traits/ValueWrapper.php"
  3222. ],
  3223. "exclude-from-classmap": [
  3224. "/Tests/"
  3225. ]
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "MIT"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nicolas Grekas",
  3234. "email": "p@tchwork.com"
  3235. },
  3236. {
  3237. "name": "Symfony Community",
  3238. "homepage": "https://symfony.com/contributors"
  3239. }
  3240. ],
  3241. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3242. "homepage": "https://symfony.com",
  3243. "keywords": [
  3244. "caching",
  3245. "psr6"
  3246. ],
  3247. "support": {
  3248. "source": "https://github.com/symfony/cache/tree/v6.4.0"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://symfony.com/sponsor",
  3253. "type": "custom"
  3254. },
  3255. {
  3256. "url": "https://github.com/fabpot",
  3257. "type": "github"
  3258. },
  3259. {
  3260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3261. "type": "tidelift"
  3262. }
  3263. ],
  3264. "time": "2023-11-24T19:28:07+00:00"
  3265. },
  3266. {
  3267. "name": "symfony/cache-contracts",
  3268. "version": "v3.4.0",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/symfony/cache-contracts.git",
  3272. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  3277. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "php": ">=8.1",
  3282. "psr/cache": "^3.0"
  3283. },
  3284. "type": "library",
  3285. "extra": {
  3286. "branch-alias": {
  3287. "dev-main": "3.4-dev"
  3288. },
  3289. "thanks": {
  3290. "name": "symfony/contracts",
  3291. "url": "https://github.com/symfony/contracts"
  3292. }
  3293. },
  3294. "autoload": {
  3295. "psr-4": {
  3296. "Symfony\\Contracts\\Cache\\": ""
  3297. }
  3298. },
  3299. "notification-url": "https://packagist.org/downloads/",
  3300. "license": [
  3301. "MIT"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "Nicolas Grekas",
  3306. "email": "p@tchwork.com"
  3307. },
  3308. {
  3309. "name": "Symfony Community",
  3310. "homepage": "https://symfony.com/contributors"
  3311. }
  3312. ],
  3313. "description": "Generic abstractions related to caching",
  3314. "homepage": "https://symfony.com",
  3315. "keywords": [
  3316. "abstractions",
  3317. "contracts",
  3318. "decoupling",
  3319. "interfaces",
  3320. "interoperability",
  3321. "standards"
  3322. ],
  3323. "support": {
  3324. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  3325. },
  3326. "funding": [
  3327. {
  3328. "url": "https://symfony.com/sponsor",
  3329. "type": "custom"
  3330. },
  3331. {
  3332. "url": "https://github.com/fabpot",
  3333. "type": "github"
  3334. },
  3335. {
  3336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3337. "type": "tidelift"
  3338. }
  3339. ],
  3340. "time": "2023-09-25T12:52:38+00:00"
  3341. },
  3342. {
  3343. "name": "symfony/clock",
  3344. "version": "v6.4.0",
  3345. "source": {
  3346. "type": "git",
  3347. "url": "https://github.com/symfony/clock.git",
  3348. "reference": "48102bcc56b26d453c7f5e7f72829abc9df25a16"
  3349. },
  3350. "dist": {
  3351. "type": "zip",
  3352. "url": "https://api.github.com/repos/symfony/clock/zipball/48102bcc56b26d453c7f5e7f72829abc9df25a16",
  3353. "reference": "48102bcc56b26d453c7f5e7f72829abc9df25a16",
  3354. "shasum": ""
  3355. },
  3356. "require": {
  3357. "php": ">=8.1",
  3358. "psr/clock": "^1.0",
  3359. "symfony/polyfill-php83": "^1.28"
  3360. },
  3361. "provide": {
  3362. "psr/clock-implementation": "1.0"
  3363. },
  3364. "type": "library",
  3365. "autoload": {
  3366. "files": [
  3367. "Resources/now.php"
  3368. ],
  3369. "psr-4": {
  3370. "Symfony\\Component\\Clock\\": ""
  3371. },
  3372. "exclude-from-classmap": [
  3373. "/Tests/"
  3374. ]
  3375. },
  3376. "notification-url": "https://packagist.org/downloads/",
  3377. "license": [
  3378. "MIT"
  3379. ],
  3380. "authors": [
  3381. {
  3382. "name": "Nicolas Grekas",
  3383. "email": "p@tchwork.com"
  3384. },
  3385. {
  3386. "name": "Symfony Community",
  3387. "homepage": "https://symfony.com/contributors"
  3388. }
  3389. ],
  3390. "description": "Decouples applications from the system clock",
  3391. "homepage": "https://symfony.com",
  3392. "keywords": [
  3393. "clock",
  3394. "psr20",
  3395. "time"
  3396. ],
  3397. "support": {
  3398. "source": "https://github.com/symfony/clock/tree/v6.4.0"
  3399. },
  3400. "funding": [
  3401. {
  3402. "url": "https://symfony.com/sponsor",
  3403. "type": "custom"
  3404. },
  3405. {
  3406. "url": "https://github.com/fabpot",
  3407. "type": "github"
  3408. },
  3409. {
  3410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3411. "type": "tidelift"
  3412. }
  3413. ],
  3414. "time": "2023-10-13T14:46:14+00:00"
  3415. },
  3416. {
  3417. "name": "symfony/config",
  3418. "version": "v6.4.0",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/symfony/config.git",
  3422. "reference": "5d33e0fb707d603330e0edfd4691803a1253572e"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/symfony/config/zipball/5d33e0fb707d603330e0edfd4691803a1253572e",
  3427. "reference": "5d33e0fb707d603330e0edfd4691803a1253572e",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "php": ">=8.1",
  3432. "symfony/deprecation-contracts": "^2.5|^3",
  3433. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3434. "symfony/polyfill-ctype": "~1.8"
  3435. },
  3436. "conflict": {
  3437. "symfony/finder": "<5.4",
  3438. "symfony/service-contracts": "<2.5"
  3439. },
  3440. "require-dev": {
  3441. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3442. "symfony/finder": "^5.4|^6.0|^7.0",
  3443. "symfony/messenger": "^5.4|^6.0|^7.0",
  3444. "symfony/service-contracts": "^2.5|^3",
  3445. "symfony/yaml": "^5.4|^6.0|^7.0"
  3446. },
  3447. "type": "library",
  3448. "autoload": {
  3449. "psr-4": {
  3450. "Symfony\\Component\\Config\\": ""
  3451. },
  3452. "exclude-from-classmap": [
  3453. "/Tests/"
  3454. ]
  3455. },
  3456. "notification-url": "https://packagist.org/downloads/",
  3457. "license": [
  3458. "MIT"
  3459. ],
  3460. "authors": [
  3461. {
  3462. "name": "Fabien Potencier",
  3463. "email": "fabien@symfony.com"
  3464. },
  3465. {
  3466. "name": "Symfony Community",
  3467. "homepage": "https://symfony.com/contributors"
  3468. }
  3469. ],
  3470. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3471. "homepage": "https://symfony.com",
  3472. "support": {
  3473. "source": "https://github.com/symfony/config/tree/v6.4.0"
  3474. },
  3475. "funding": [
  3476. {
  3477. "url": "https://symfony.com/sponsor",
  3478. "type": "custom"
  3479. },
  3480. {
  3481. "url": "https://github.com/fabpot",
  3482. "type": "github"
  3483. },
  3484. {
  3485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3486. "type": "tidelift"
  3487. }
  3488. ],
  3489. "time": "2023-11-09T08:28:32+00:00"
  3490. },
  3491. {
  3492. "name": "symfony/console",
  3493. "version": "v6.4.1",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://github.com/symfony/console.git",
  3497. "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://api.github.com/repos/symfony/console/zipball/a550a7c99daeedef3f9d23fb82e3531525ff11fd",
  3502. "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd",
  3503. "shasum": ""
  3504. },
  3505. "require": {
  3506. "php": ">=8.1",
  3507. "symfony/deprecation-contracts": "^2.5|^3",
  3508. "symfony/polyfill-mbstring": "~1.0",
  3509. "symfony/service-contracts": "^2.5|^3",
  3510. "symfony/string": "^5.4|^6.0|^7.0"
  3511. },
  3512. "conflict": {
  3513. "symfony/dependency-injection": "<5.4",
  3514. "symfony/dotenv": "<5.4",
  3515. "symfony/event-dispatcher": "<5.4",
  3516. "symfony/lock": "<5.4",
  3517. "symfony/process": "<5.4"
  3518. },
  3519. "provide": {
  3520. "psr/log-implementation": "1.0|2.0|3.0"
  3521. },
  3522. "require-dev": {
  3523. "psr/log": "^1|^2|^3",
  3524. "symfony/config": "^5.4|^6.0|^7.0",
  3525. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3526. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3527. "symfony/http-foundation": "^6.4|^7.0",
  3528. "symfony/http-kernel": "^6.4|^7.0",
  3529. "symfony/lock": "^5.4|^6.0|^7.0",
  3530. "symfony/messenger": "^5.4|^6.0|^7.0",
  3531. "symfony/process": "^5.4|^6.0|^7.0",
  3532. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3533. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3534. },
  3535. "type": "library",
  3536. "autoload": {
  3537. "psr-4": {
  3538. "Symfony\\Component\\Console\\": ""
  3539. },
  3540. "exclude-from-classmap": [
  3541. "/Tests/"
  3542. ]
  3543. },
  3544. "notification-url": "https://packagist.org/downloads/",
  3545. "license": [
  3546. "MIT"
  3547. ],
  3548. "authors": [
  3549. {
  3550. "name": "Fabien Potencier",
  3551. "email": "fabien@symfony.com"
  3552. },
  3553. {
  3554. "name": "Symfony Community",
  3555. "homepage": "https://symfony.com/contributors"
  3556. }
  3557. ],
  3558. "description": "Eases the creation of beautiful and testable command line interfaces",
  3559. "homepage": "https://symfony.com",
  3560. "keywords": [
  3561. "cli",
  3562. "command-line",
  3563. "console",
  3564. "terminal"
  3565. ],
  3566. "support": {
  3567. "source": "https://github.com/symfony/console/tree/v6.4.1"
  3568. },
  3569. "funding": [
  3570. {
  3571. "url": "https://symfony.com/sponsor",
  3572. "type": "custom"
  3573. },
  3574. {
  3575. "url": "https://github.com/fabpot",
  3576. "type": "github"
  3577. },
  3578. {
  3579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3580. "type": "tidelift"
  3581. }
  3582. ],
  3583. "time": "2023-11-30T10:54:28+00:00"
  3584. },
  3585. {
  3586. "name": "symfony/dependency-injection",
  3587. "version": "v6.4.1",
  3588. "source": {
  3589. "type": "git",
  3590. "url": "https://github.com/symfony/dependency-injection.git",
  3591. "reference": "f88ff6428afbeb17cc648c8003bd608534750baf"
  3592. },
  3593. "dist": {
  3594. "type": "zip",
  3595. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f88ff6428afbeb17cc648c8003bd608534750baf",
  3596. "reference": "f88ff6428afbeb17cc648c8003bd608534750baf",
  3597. "shasum": ""
  3598. },
  3599. "require": {
  3600. "php": ">=8.1",
  3601. "psr/container": "^1.1|^2.0",
  3602. "symfony/deprecation-contracts": "^2.5|^3",
  3603. "symfony/service-contracts": "^2.5|^3.0",
  3604. "symfony/var-exporter": "^6.2.10|^7.0"
  3605. },
  3606. "conflict": {
  3607. "ext-psr": "<1.1|>=2",
  3608. "symfony/config": "<6.1",
  3609. "symfony/finder": "<5.4",
  3610. "symfony/proxy-manager-bridge": "<6.3",
  3611. "symfony/yaml": "<5.4"
  3612. },
  3613. "provide": {
  3614. "psr/container-implementation": "1.1|2.0",
  3615. "symfony/service-implementation": "1.1|2.0|3.0"
  3616. },
  3617. "require-dev": {
  3618. "symfony/config": "^6.1|^7.0",
  3619. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3620. "symfony/yaml": "^5.4|^6.0|^7.0"
  3621. },
  3622. "type": "library",
  3623. "autoload": {
  3624. "psr-4": {
  3625. "Symfony\\Component\\DependencyInjection\\": ""
  3626. },
  3627. "exclude-from-classmap": [
  3628. "/Tests/"
  3629. ]
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "authors": [
  3636. {
  3637. "name": "Fabien Potencier",
  3638. "email": "fabien@symfony.com"
  3639. },
  3640. {
  3641. "name": "Symfony Community",
  3642. "homepage": "https://symfony.com/contributors"
  3643. }
  3644. ],
  3645. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3646. "homepage": "https://symfony.com",
  3647. "support": {
  3648. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.1"
  3649. },
  3650. "funding": [
  3651. {
  3652. "url": "https://symfony.com/sponsor",
  3653. "type": "custom"
  3654. },
  3655. {
  3656. "url": "https://github.com/fabpot",
  3657. "type": "github"
  3658. },
  3659. {
  3660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3661. "type": "tidelift"
  3662. }
  3663. ],
  3664. "time": "2023-12-01T14:56:37+00:00"
  3665. },
  3666. {
  3667. "name": "symfony/deprecation-contracts",
  3668. "version": "v3.4.0",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://github.com/symfony/deprecation-contracts.git",
  3672. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  3677. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  3678. "shasum": ""
  3679. },
  3680. "require": {
  3681. "php": ">=8.1"
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "branch-alias": {
  3686. "dev-main": "3.4-dev"
  3687. },
  3688. "thanks": {
  3689. "name": "symfony/contracts",
  3690. "url": "https://github.com/symfony/contracts"
  3691. }
  3692. },
  3693. "autoload": {
  3694. "files": [
  3695. "function.php"
  3696. ]
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "MIT"
  3701. ],
  3702. "authors": [
  3703. {
  3704. "name": "Nicolas Grekas",
  3705. "email": "p@tchwork.com"
  3706. },
  3707. {
  3708. "name": "Symfony Community",
  3709. "homepage": "https://symfony.com/contributors"
  3710. }
  3711. ],
  3712. "description": "A generic function and convention to trigger deprecation notices",
  3713. "homepage": "https://symfony.com",
  3714. "support": {
  3715. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  3716. },
  3717. "funding": [
  3718. {
  3719. "url": "https://symfony.com/sponsor",
  3720. "type": "custom"
  3721. },
  3722. {
  3723. "url": "https://github.com/fabpot",
  3724. "type": "github"
  3725. },
  3726. {
  3727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3728. "type": "tidelift"
  3729. }
  3730. ],
  3731. "time": "2023-05-23T14:45:45+00:00"
  3732. },
  3733. {
  3734. "name": "symfony/doctrine-bridge",
  3735. "version": "v6.4.0",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://github.com/symfony/doctrine-bridge.git",
  3739. "reference": "bd181daf2851821c3aef20b779d37002cfd2e833"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/bd181daf2851821c3aef20b779d37002cfd2e833",
  3744. "reference": "bd181daf2851821c3aef20b779d37002cfd2e833",
  3745. "shasum": ""
  3746. },
  3747. "require": {
  3748. "doctrine/event-manager": "^1.2|^2",
  3749. "doctrine/persistence": "^3.1",
  3750. "php": ">=8.1",
  3751. "symfony/deprecation-contracts": "^2.5|^3",
  3752. "symfony/polyfill-ctype": "~1.8",
  3753. "symfony/polyfill-mbstring": "~1.0",
  3754. "symfony/service-contracts": "^2.5|^3"
  3755. },
  3756. "conflict": {
  3757. "doctrine/dbal": "<2.13.1",
  3758. "doctrine/lexer": "<1.1",
  3759. "doctrine/orm": "<2.15",
  3760. "symfony/cache": "<5.4",
  3761. "symfony/dependency-injection": "<6.2",
  3762. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3763. "symfony/http-foundation": "<6.3",
  3764. "symfony/http-kernel": "<6.2",
  3765. "symfony/lock": "<6.3",
  3766. "symfony/messenger": "<5.4",
  3767. "symfony/property-info": "<5.4",
  3768. "symfony/security-bundle": "<5.4",
  3769. "symfony/security-core": "<6.4",
  3770. "symfony/validator": "<6.4"
  3771. },
  3772. "require-dev": {
  3773. "doctrine/collections": "^1.0|^2.0",
  3774. "doctrine/data-fixtures": "^1.1",
  3775. "doctrine/dbal": "^2.13.1|^3|^4",
  3776. "doctrine/orm": "^2.15|^3",
  3777. "psr/log": "^1|^2|^3",
  3778. "symfony/cache": "^5.4|^6.0|^7.0",
  3779. "symfony/config": "^5.4|^6.0|^7.0",
  3780. "symfony/dependency-injection": "^6.2|^7.0",
  3781. "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
  3782. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3783. "symfony/form": "^5.4.21|^6.2.7|^7.0",
  3784. "symfony/http-kernel": "^6.3|^7.0",
  3785. "symfony/lock": "^6.3|^7.0",
  3786. "symfony/messenger": "^5.4|^6.0|^7.0",
  3787. "symfony/property-access": "^5.4|^6.0|^7.0",
  3788. "symfony/property-info": "^5.4|^6.0|^7.0",
  3789. "symfony/proxy-manager-bridge": "^6.4",
  3790. "symfony/security-core": "^6.4|^7.0",
  3791. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3792. "symfony/translation": "^5.4|^6.0|^7.0",
  3793. "symfony/uid": "^5.4|^6.0|^7.0",
  3794. "symfony/validator": "^6.4|^7.0",
  3795. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3796. },
  3797. "type": "symfony-bridge",
  3798. "autoload": {
  3799. "psr-4": {
  3800. "Symfony\\Bridge\\Doctrine\\": ""
  3801. },
  3802. "exclude-from-classmap": [
  3803. "/Tests/"
  3804. ]
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Fabien Potencier",
  3813. "email": "fabien@symfony.com"
  3814. },
  3815. {
  3816. "name": "Symfony Community",
  3817. "homepage": "https://symfony.com/contributors"
  3818. }
  3819. ],
  3820. "description": "Provides integration for Doctrine with various Symfony components",
  3821. "homepage": "https://symfony.com",
  3822. "support": {
  3823. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.4.0"
  3824. },
  3825. "funding": [
  3826. {
  3827. "url": "https://symfony.com/sponsor",
  3828. "type": "custom"
  3829. },
  3830. {
  3831. "url": "https://github.com/fabpot",
  3832. "type": "github"
  3833. },
  3834. {
  3835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3836. "type": "tidelift"
  3837. }
  3838. ],
  3839. "time": "2023-10-31T08:40:20+00:00"
  3840. },
  3841. {
  3842. "name": "symfony/dotenv",
  3843. "version": "v6.4.0",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://github.com/symfony/dotenv.git",
  3847. "reference": "d0d584a91422ddaa2c94317200d4c4e5b935555f"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://api.github.com/repos/symfony/dotenv/zipball/d0d584a91422ddaa2c94317200d4c4e5b935555f",
  3852. "reference": "d0d584a91422ddaa2c94317200d4c4e5b935555f",
  3853. "shasum": ""
  3854. },
  3855. "require": {
  3856. "php": ">=8.1"
  3857. },
  3858. "conflict": {
  3859. "symfony/console": "<5.4",
  3860. "symfony/process": "<5.4"
  3861. },
  3862. "require-dev": {
  3863. "symfony/console": "^5.4|^6.0|^7.0",
  3864. "symfony/process": "^5.4|^6.0|^7.0"
  3865. },
  3866. "type": "library",
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Symfony\\Component\\Dotenv\\": ""
  3870. },
  3871. "exclude-from-classmap": [
  3872. "/Tests/"
  3873. ]
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Fabien Potencier",
  3882. "email": "fabien@symfony.com"
  3883. },
  3884. {
  3885. "name": "Symfony Community",
  3886. "homepage": "https://symfony.com/contributors"
  3887. }
  3888. ],
  3889. "description": "Registers environment variables from a .env file",
  3890. "homepage": "https://symfony.com",
  3891. "keywords": [
  3892. "dotenv",
  3893. "env",
  3894. "environment"
  3895. ],
  3896. "support": {
  3897. "source": "https://github.com/symfony/dotenv/tree/v6.4.0"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://symfony.com/sponsor",
  3902. "type": "custom"
  3903. },
  3904. {
  3905. "url": "https://github.com/fabpot",
  3906. "type": "github"
  3907. },
  3908. {
  3909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3910. "type": "tidelift"
  3911. }
  3912. ],
  3913. "time": "2023-10-26T18:19:48+00:00"
  3914. },
  3915. {
  3916. "name": "symfony/error-handler",
  3917. "version": "v6.4.0",
  3918. "source": {
  3919. "type": "git",
  3920. "url": "https://github.com/symfony/error-handler.git",
  3921. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788"
  3922. },
  3923. "dist": {
  3924. "type": "zip",
  3925. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c873490a1c97b3a0a4838afc36ff36c112d02788",
  3926. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788",
  3927. "shasum": ""
  3928. },
  3929. "require": {
  3930. "php": ">=8.1",
  3931. "psr/log": "^1|^2|^3",
  3932. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3933. },
  3934. "conflict": {
  3935. "symfony/deprecation-contracts": "<2.5",
  3936. "symfony/http-kernel": "<6.4"
  3937. },
  3938. "require-dev": {
  3939. "symfony/deprecation-contracts": "^2.5|^3",
  3940. "symfony/http-kernel": "^6.4|^7.0",
  3941. "symfony/serializer": "^5.4|^6.0|^7.0"
  3942. },
  3943. "bin": [
  3944. "Resources/bin/patch-type-declarations"
  3945. ],
  3946. "type": "library",
  3947. "autoload": {
  3948. "psr-4": {
  3949. "Symfony\\Component\\ErrorHandler\\": ""
  3950. },
  3951. "exclude-from-classmap": [
  3952. "/Tests/"
  3953. ]
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Fabien Potencier",
  3962. "email": "fabien@symfony.com"
  3963. },
  3964. {
  3965. "name": "Symfony Community",
  3966. "homepage": "https://symfony.com/contributors"
  3967. }
  3968. ],
  3969. "description": "Provides tools to manage errors and ease debugging PHP code",
  3970. "homepage": "https://symfony.com",
  3971. "support": {
  3972. "source": "https://github.com/symfony/error-handler/tree/v6.4.0"
  3973. },
  3974. "funding": [
  3975. {
  3976. "url": "https://symfony.com/sponsor",
  3977. "type": "custom"
  3978. },
  3979. {
  3980. "url": "https://github.com/fabpot",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2023-10-18T09:43:34+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/event-dispatcher",
  3992. "version": "v6.4.0",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/event-dispatcher.git",
  3996. "reference": "d76d2632cfc2206eecb5ad2b26cd5934082941b6"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d76d2632cfc2206eecb5ad2b26cd5934082941b6",
  4001. "reference": "d76d2632cfc2206eecb5ad2b26cd5934082941b6",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "php": ">=8.1",
  4006. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4007. },
  4008. "conflict": {
  4009. "symfony/dependency-injection": "<5.4",
  4010. "symfony/service-contracts": "<2.5"
  4011. },
  4012. "provide": {
  4013. "psr/event-dispatcher-implementation": "1.0",
  4014. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4015. },
  4016. "require-dev": {
  4017. "psr/log": "^1|^2|^3",
  4018. "symfony/config": "^5.4|^6.0|^7.0",
  4019. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4020. "symfony/error-handler": "^5.4|^6.0|^7.0",
  4021. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4022. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4023. "symfony/service-contracts": "^2.5|^3",
  4024. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  4025. },
  4026. "type": "library",
  4027. "autoload": {
  4028. "psr-4": {
  4029. "Symfony\\Component\\EventDispatcher\\": ""
  4030. },
  4031. "exclude-from-classmap": [
  4032. "/Tests/"
  4033. ]
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "Fabien Potencier",
  4042. "email": "fabien@symfony.com"
  4043. },
  4044. {
  4045. "name": "Symfony Community",
  4046. "homepage": "https://symfony.com/contributors"
  4047. }
  4048. ],
  4049. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4050. "homepage": "https://symfony.com",
  4051. "support": {
  4052. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.0"
  4053. },
  4054. "funding": [
  4055. {
  4056. "url": "https://symfony.com/sponsor",
  4057. "type": "custom"
  4058. },
  4059. {
  4060. "url": "https://github.com/fabpot",
  4061. "type": "github"
  4062. },
  4063. {
  4064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4065. "type": "tidelift"
  4066. }
  4067. ],
  4068. "time": "2023-07-27T06:52:43+00:00"
  4069. },
  4070. {
  4071. "name": "symfony/event-dispatcher-contracts",
  4072. "version": "v3.4.0",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4076. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  4081. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  4082. "shasum": ""
  4083. },
  4084. "require": {
  4085. "php": ">=8.1",
  4086. "psr/event-dispatcher": "^1"
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "branch-alias": {
  4091. "dev-main": "3.4-dev"
  4092. },
  4093. "thanks": {
  4094. "name": "symfony/contracts",
  4095. "url": "https://github.com/symfony/contracts"
  4096. }
  4097. },
  4098. "autoload": {
  4099. "psr-4": {
  4100. "Symfony\\Contracts\\EventDispatcher\\": ""
  4101. }
  4102. },
  4103. "notification-url": "https://packagist.org/downloads/",
  4104. "license": [
  4105. "MIT"
  4106. ],
  4107. "authors": [
  4108. {
  4109. "name": "Nicolas Grekas",
  4110. "email": "p@tchwork.com"
  4111. },
  4112. {
  4113. "name": "Symfony Community",
  4114. "homepage": "https://symfony.com/contributors"
  4115. }
  4116. ],
  4117. "description": "Generic abstractions related to dispatching event",
  4118. "homepage": "https://symfony.com",
  4119. "keywords": [
  4120. "abstractions",
  4121. "contracts",
  4122. "decoupling",
  4123. "interfaces",
  4124. "interoperability",
  4125. "standards"
  4126. ],
  4127. "support": {
  4128. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  4129. },
  4130. "funding": [
  4131. {
  4132. "url": "https://symfony.com/sponsor",
  4133. "type": "custom"
  4134. },
  4135. {
  4136. "url": "https://github.com/fabpot",
  4137. "type": "github"
  4138. },
  4139. {
  4140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4141. "type": "tidelift"
  4142. }
  4143. ],
  4144. "time": "2023-05-23T14:45:45+00:00"
  4145. },
  4146. {
  4147. "name": "symfony/expression-language",
  4148. "version": "v6.4.0",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://github.com/symfony/expression-language.git",
  4152. "reference": "6c8b12f1e5ee5d91b812fb8628fca86e2fe5d152"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://api.github.com/repos/symfony/expression-language/zipball/6c8b12f1e5ee5d91b812fb8628fca86e2fe5d152",
  4157. "reference": "6c8b12f1e5ee5d91b812fb8628fca86e2fe5d152",
  4158. "shasum": ""
  4159. },
  4160. "require": {
  4161. "php": ">=8.1",
  4162. "symfony/cache": "^5.4|^6.0|^7.0",
  4163. "symfony/deprecation-contracts": "^2.5|^3",
  4164. "symfony/service-contracts": "^2.5|^3"
  4165. },
  4166. "type": "library",
  4167. "autoload": {
  4168. "psr-4": {
  4169. "Symfony\\Component\\ExpressionLanguage\\": ""
  4170. },
  4171. "exclude-from-classmap": [
  4172. "/Tests/"
  4173. ]
  4174. },
  4175. "notification-url": "https://packagist.org/downloads/",
  4176. "license": [
  4177. "MIT"
  4178. ],
  4179. "authors": [
  4180. {
  4181. "name": "Fabien Potencier",
  4182. "email": "fabien@symfony.com"
  4183. },
  4184. {
  4185. "name": "Symfony Community",
  4186. "homepage": "https://symfony.com/contributors"
  4187. }
  4188. ],
  4189. "description": "Provides an engine that can compile and evaluate expressions",
  4190. "homepage": "https://symfony.com",
  4191. "support": {
  4192. "source": "https://github.com/symfony/expression-language/tree/v6.4.0"
  4193. },
  4194. "funding": [
  4195. {
  4196. "url": "https://symfony.com/sponsor",
  4197. "type": "custom"
  4198. },
  4199. {
  4200. "url": "https://github.com/fabpot",
  4201. "type": "github"
  4202. },
  4203. {
  4204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4205. "type": "tidelift"
  4206. }
  4207. ],
  4208. "time": "2023-07-27T06:52:43+00:00"
  4209. },
  4210. {
  4211. "name": "symfony/filesystem",
  4212. "version": "v6.4.0",
  4213. "source": {
  4214. "type": "git",
  4215. "url": "https://github.com/symfony/filesystem.git",
  4216. "reference": "952a8cb588c3bc6ce76f6023000fb932f16a6e59"
  4217. },
  4218. "dist": {
  4219. "type": "zip",
  4220. "url": "https://api.github.com/repos/symfony/filesystem/zipball/952a8cb588c3bc6ce76f6023000fb932f16a6e59",
  4221. "reference": "952a8cb588c3bc6ce76f6023000fb932f16a6e59",
  4222. "shasum": ""
  4223. },
  4224. "require": {
  4225. "php": ">=8.1",
  4226. "symfony/polyfill-ctype": "~1.8",
  4227. "symfony/polyfill-mbstring": "~1.8"
  4228. },
  4229. "type": "library",
  4230. "autoload": {
  4231. "psr-4": {
  4232. "Symfony\\Component\\Filesystem\\": ""
  4233. },
  4234. "exclude-from-classmap": [
  4235. "/Tests/"
  4236. ]
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "Fabien Potencier",
  4245. "email": "fabien@symfony.com"
  4246. },
  4247. {
  4248. "name": "Symfony Community",
  4249. "homepage": "https://symfony.com/contributors"
  4250. }
  4251. ],
  4252. "description": "Provides basic utilities for the filesystem",
  4253. "homepage": "https://symfony.com",
  4254. "support": {
  4255. "source": "https://github.com/symfony/filesystem/tree/v6.4.0"
  4256. },
  4257. "funding": [
  4258. {
  4259. "url": "https://symfony.com/sponsor",
  4260. "type": "custom"
  4261. },
  4262. {
  4263. "url": "https://github.com/fabpot",
  4264. "type": "github"
  4265. },
  4266. {
  4267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4268. "type": "tidelift"
  4269. }
  4270. ],
  4271. "time": "2023-07-26T17:27:13+00:00"
  4272. },
  4273. {
  4274. "name": "symfony/finder",
  4275. "version": "v6.4.0",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/symfony/finder.git",
  4279. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  4284. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  4285. "shasum": ""
  4286. },
  4287. "require": {
  4288. "php": ">=8.1"
  4289. },
  4290. "require-dev": {
  4291. "symfony/filesystem": "^6.0|^7.0"
  4292. },
  4293. "type": "library",
  4294. "autoload": {
  4295. "psr-4": {
  4296. "Symfony\\Component\\Finder\\": ""
  4297. },
  4298. "exclude-from-classmap": [
  4299. "/Tests/"
  4300. ]
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "Fabien Potencier",
  4309. "email": "fabien@symfony.com"
  4310. },
  4311. {
  4312. "name": "Symfony Community",
  4313. "homepage": "https://symfony.com/contributors"
  4314. }
  4315. ],
  4316. "description": "Finds files and directories via an intuitive fluent interface",
  4317. "homepage": "https://symfony.com",
  4318. "support": {
  4319. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://symfony.com/sponsor",
  4324. "type": "custom"
  4325. },
  4326. {
  4327. "url": "https://github.com/fabpot",
  4328. "type": "github"
  4329. },
  4330. {
  4331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4332. "type": "tidelift"
  4333. }
  4334. ],
  4335. "time": "2023-10-31T17:30:12+00:00"
  4336. },
  4337. {
  4338. "name": "symfony/flex",
  4339. "version": "v2.4.2",
  4340. "source": {
  4341. "type": "git",
  4342. "url": "https://github.com/symfony/flex.git",
  4343. "reference": "67ee785f1aedada76461de7a7ec10cd7f8ff8d36"
  4344. },
  4345. "dist": {
  4346. "type": "zip",
  4347. "url": "https://api.github.com/repos/symfony/flex/zipball/67ee785f1aedada76461de7a7ec10cd7f8ff8d36",
  4348. "reference": "67ee785f1aedada76461de7a7ec10cd7f8ff8d36",
  4349. "shasum": ""
  4350. },
  4351. "require": {
  4352. "composer-plugin-api": "^2.1",
  4353. "php": ">=8.0"
  4354. },
  4355. "require-dev": {
  4356. "composer/composer": "^2.1",
  4357. "symfony/dotenv": "^5.4|^6.0",
  4358. "symfony/filesystem": "^5.4|^6.0",
  4359. "symfony/phpunit-bridge": "^5.4|^6.0",
  4360. "symfony/process": "^5.4|^6.0"
  4361. },
  4362. "type": "composer-plugin",
  4363. "extra": {
  4364. "class": "Symfony\\Flex\\Flex"
  4365. },
  4366. "autoload": {
  4367. "psr-4": {
  4368. "Symfony\\Flex\\": "src"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Fabien Potencier",
  4378. "email": "fabien.potencier@gmail.com"
  4379. }
  4380. ],
  4381. "description": "Composer plugin for Symfony",
  4382. "support": {
  4383. "issues": "https://github.com/symfony/flex/issues",
  4384. "source": "https://github.com/symfony/flex/tree/v2.4.2"
  4385. },
  4386. "funding": [
  4387. {
  4388. "url": "https://symfony.com/sponsor",
  4389. "type": "custom"
  4390. },
  4391. {
  4392. "url": "https://github.com/fabpot",
  4393. "type": "github"
  4394. },
  4395. {
  4396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4397. "type": "tidelift"
  4398. }
  4399. ],
  4400. "time": "2023-12-05T14:09:35+00:00"
  4401. },
  4402. {
  4403. "name": "symfony/form",
  4404. "version": "v6.4.1",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/symfony/form.git",
  4408. "reference": "10649ab710b58a04bcf1886f005ccab58d9cf0a4"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/symfony/form/zipball/10649ab710b58a04bcf1886f005ccab58d9cf0a4",
  4413. "reference": "10649ab710b58a04bcf1886f005ccab58d9cf0a4",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "php": ">=8.1",
  4418. "symfony/deprecation-contracts": "^2.5|^3",
  4419. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4420. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  4421. "symfony/polyfill-ctype": "~1.8",
  4422. "symfony/polyfill-intl-icu": "^1.21",
  4423. "symfony/polyfill-mbstring": "~1.0",
  4424. "symfony/property-access": "^5.4|^6.0|^7.0",
  4425. "symfony/service-contracts": "^2.5|^3"
  4426. },
  4427. "conflict": {
  4428. "symfony/console": "<5.4",
  4429. "symfony/dependency-injection": "<5.4",
  4430. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4431. "symfony/error-handler": "<5.4",
  4432. "symfony/framework-bundle": "<5.4",
  4433. "symfony/http-kernel": "<5.4",
  4434. "symfony/translation": "<5.4",
  4435. "symfony/translation-contracts": "<2.5",
  4436. "symfony/twig-bridge": "<6.3"
  4437. },
  4438. "require-dev": {
  4439. "doctrine/collections": "^1.0|^2.0",
  4440. "symfony/config": "^5.4|^6.0|^7.0",
  4441. "symfony/console": "^5.4|^6.0|^7.0",
  4442. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4443. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4444. "symfony/html-sanitizer": "^6.1|^7.0",
  4445. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4446. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4447. "symfony/intl": "^5.4|^6.0|^7.0",
  4448. "symfony/security-core": "^6.2|^7.0",
  4449. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  4450. "symfony/translation": "^5.4|^6.0|^7.0",
  4451. "symfony/uid": "^5.4|^6.0|^7.0",
  4452. "symfony/validator": "^5.4|^6.0|^7.0",
  4453. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4454. },
  4455. "type": "library",
  4456. "autoload": {
  4457. "psr-4": {
  4458. "Symfony\\Component\\Form\\": ""
  4459. },
  4460. "exclude-from-classmap": [
  4461. "/Tests/"
  4462. ]
  4463. },
  4464. "notification-url": "https://packagist.org/downloads/",
  4465. "license": [
  4466. "MIT"
  4467. ],
  4468. "authors": [
  4469. {
  4470. "name": "Fabien Potencier",
  4471. "email": "fabien@symfony.com"
  4472. },
  4473. {
  4474. "name": "Symfony Community",
  4475. "homepage": "https://symfony.com/contributors"
  4476. }
  4477. ],
  4478. "description": "Allows to easily create, process and reuse HTML forms",
  4479. "homepage": "https://symfony.com",
  4480. "support": {
  4481. "source": "https://github.com/symfony/form/tree/v6.4.1"
  4482. },
  4483. "funding": [
  4484. {
  4485. "url": "https://symfony.com/sponsor",
  4486. "type": "custom"
  4487. },
  4488. {
  4489. "url": "https://github.com/fabpot",
  4490. "type": "github"
  4491. },
  4492. {
  4493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4494. "type": "tidelift"
  4495. }
  4496. ],
  4497. "time": "2023-11-30T11:08:34+00:00"
  4498. },
  4499. {
  4500. "name": "symfony/framework-bundle",
  4501. "version": "v6.4.1",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://github.com/symfony/framework-bundle.git",
  4505. "reference": "ac22d760bf9ff4440a1b6c7caef34d38b44290aa"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/ac22d760bf9ff4440a1b6c7caef34d38b44290aa",
  4510. "reference": "ac22d760bf9ff4440a1b6c7caef34d38b44290aa",
  4511. "shasum": ""
  4512. },
  4513. "require": {
  4514. "composer-runtime-api": ">=2.1",
  4515. "ext-xml": "*",
  4516. "php": ">=8.1",
  4517. "symfony/cache": "^5.4|^6.0|^7.0",
  4518. "symfony/config": "^6.1|^7.0",
  4519. "symfony/dependency-injection": "^6.4|^7.0",
  4520. "symfony/deprecation-contracts": "^2.5|^3",
  4521. "symfony/error-handler": "^6.1|^7.0",
  4522. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4523. "symfony/filesystem": "^5.4|^6.0|^7.0",
  4524. "symfony/finder": "^5.4|^6.0|^7.0",
  4525. "symfony/http-foundation": "^6.4|^7.0",
  4526. "symfony/http-kernel": "^6.4",
  4527. "symfony/polyfill-mbstring": "~1.0",
  4528. "symfony/routing": "^6.4|^7.0"
  4529. },
  4530. "conflict": {
  4531. "doctrine/annotations": "<1.13.1",
  4532. "doctrine/persistence": "<1.3",
  4533. "phpdocumentor/reflection-docblock": "<3.2.2",
  4534. "phpdocumentor/type-resolver": "<1.4.0",
  4535. "symfony/asset": "<5.4",
  4536. "symfony/asset-mapper": "<6.4",
  4537. "symfony/clock": "<6.3",
  4538. "symfony/console": "<5.4",
  4539. "symfony/dom-crawler": "<6.4",
  4540. "symfony/dotenv": "<5.4",
  4541. "symfony/form": "<5.4",
  4542. "symfony/http-client": "<6.3",
  4543. "symfony/lock": "<5.4",
  4544. "symfony/mailer": "<5.4",
  4545. "symfony/messenger": "<6.3",
  4546. "symfony/mime": "<6.4",
  4547. "symfony/property-access": "<5.4",
  4548. "symfony/property-info": "<5.4",
  4549. "symfony/scheduler": "<6.4",
  4550. "symfony/security-core": "<5.4",
  4551. "symfony/security-csrf": "<5.4",
  4552. "symfony/serializer": "<6.4",
  4553. "symfony/stopwatch": "<5.4",
  4554. "symfony/translation": "<6.4",
  4555. "symfony/twig-bridge": "<5.4",
  4556. "symfony/twig-bundle": "<5.4",
  4557. "symfony/validator": "<6.4",
  4558. "symfony/web-profiler-bundle": "<6.4",
  4559. "symfony/workflow": "<6.4"
  4560. },
  4561. "require-dev": {
  4562. "doctrine/annotations": "^1.13.1|^2",
  4563. "doctrine/persistence": "^1.3|^2|^3",
  4564. "dragonmantank/cron-expression": "^3.1",
  4565. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4566. "seld/jsonlint": "^1.10",
  4567. "symfony/asset": "^5.4|^6.0|^7.0",
  4568. "symfony/asset-mapper": "^6.4|^7.0",
  4569. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  4570. "symfony/clock": "^6.2|^7.0",
  4571. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  4572. "symfony/css-selector": "^5.4|^6.0|^7.0",
  4573. "symfony/dom-crawler": "^6.4|^7.0",
  4574. "symfony/dotenv": "^5.4|^6.0|^7.0",
  4575. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4576. "symfony/form": "^5.4|^6.0|^7.0",
  4577. "symfony/html-sanitizer": "^6.1|^7.0",
  4578. "symfony/http-client": "^6.3|^7.0",
  4579. "symfony/lock": "^5.4|^6.0|^7.0",
  4580. "symfony/mailer": "^5.4|^6.0|^7.0",
  4581. "symfony/messenger": "^6.3|^7.0",
  4582. "symfony/mime": "^6.4|^7.0",
  4583. "symfony/notifier": "^5.4|^6.0|^7.0",
  4584. "symfony/polyfill-intl-icu": "~1.0",
  4585. "symfony/process": "^5.4|^6.0|^7.0",
  4586. "symfony/property-info": "^5.4|^6.0|^7.0",
  4587. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  4588. "symfony/scheduler": "^6.4|^7.0",
  4589. "symfony/security-bundle": "^5.4|^6.0|^7.0",
  4590. "symfony/semaphore": "^5.4|^6.0|^7.0",
  4591. "symfony/serializer": "^6.4|^7.0",
  4592. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4593. "symfony/string": "^5.4|^6.0|^7.0",
  4594. "symfony/translation": "^6.4|^7.0",
  4595. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  4596. "symfony/uid": "^5.4|^6.0|^7.0",
  4597. "symfony/validator": "^6.4|^7.0",
  4598. "symfony/web-link": "^5.4|^6.0|^7.0",
  4599. "symfony/workflow": "^6.4|^7.0",
  4600. "symfony/yaml": "^5.4|^6.0|^7.0",
  4601. "twig/twig": "^2.10|^3.0"
  4602. },
  4603. "type": "symfony-bundle",
  4604. "autoload": {
  4605. "psr-4": {
  4606. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4607. },
  4608. "exclude-from-classmap": [
  4609. "/Tests/"
  4610. ]
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Fabien Potencier",
  4619. "email": "fabien@symfony.com"
  4620. },
  4621. {
  4622. "name": "Symfony Community",
  4623. "homepage": "https://symfony.com/contributors"
  4624. }
  4625. ],
  4626. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4627. "homepage": "https://symfony.com",
  4628. "support": {
  4629. "source": "https://github.com/symfony/framework-bundle/tree/v6.4.1"
  4630. },
  4631. "funding": [
  4632. {
  4633. "url": "https://symfony.com/sponsor",
  4634. "type": "custom"
  4635. },
  4636. {
  4637. "url": "https://github.com/fabpot",
  4638. "type": "github"
  4639. },
  4640. {
  4641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4642. "type": "tidelift"
  4643. }
  4644. ],
  4645. "time": "2023-12-01T16:35:22+00:00"
  4646. },
  4647. {
  4648. "name": "symfony/html-sanitizer",
  4649. "version": "v6.4.0",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/symfony/html-sanitizer.git",
  4653. "reference": "9cc71f272eb62504872c80845074f236e8e43536"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/9cc71f272eb62504872c80845074f236e8e43536",
  4658. "reference": "9cc71f272eb62504872c80845074f236e8e43536",
  4659. "shasum": ""
  4660. },
  4661. "require": {
  4662. "ext-dom": "*",
  4663. "league/uri": "^6.5|^7.0",
  4664. "masterminds/html5": "^2.7.2",
  4665. "php": ">=8.1"
  4666. },
  4667. "type": "library",
  4668. "autoload": {
  4669. "psr-4": {
  4670. "Symfony\\Component\\HtmlSanitizer\\": ""
  4671. },
  4672. "exclude-from-classmap": [
  4673. "/Tests/"
  4674. ]
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Titouan Galopin",
  4683. "email": "galopintitouan@gmail.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4691. "homepage": "https://symfony.com",
  4692. "keywords": [
  4693. "Purifier",
  4694. "html",
  4695. "sanitizer"
  4696. ],
  4697. "support": {
  4698. "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.0"
  4699. },
  4700. "funding": [
  4701. {
  4702. "url": "https://symfony.com/sponsor",
  4703. "type": "custom"
  4704. },
  4705. {
  4706. "url": "https://github.com/fabpot",
  4707. "type": "github"
  4708. },
  4709. {
  4710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4711. "type": "tidelift"
  4712. }
  4713. ],
  4714. "time": "2023-10-28T23:12:08+00:00"
  4715. },
  4716. {
  4717. "name": "symfony/http-client",
  4718. "version": "v6.4.0",
  4719. "source": {
  4720. "type": "git",
  4721. "url": "https://github.com/symfony/http-client.git",
  4722. "reference": "5c584530b77aa10ae216989ffc48b4bedc9c0b29"
  4723. },
  4724. "dist": {
  4725. "type": "zip",
  4726. "url": "https://api.github.com/repos/symfony/http-client/zipball/5c584530b77aa10ae216989ffc48b4bedc9c0b29",
  4727. "reference": "5c584530b77aa10ae216989ffc48b4bedc9c0b29",
  4728. "shasum": ""
  4729. },
  4730. "require": {
  4731. "php": ">=8.1",
  4732. "psr/log": "^1|^2|^3",
  4733. "symfony/deprecation-contracts": "^2.5|^3",
  4734. "symfony/http-client-contracts": "^3",
  4735. "symfony/service-contracts": "^2.5|^3"
  4736. },
  4737. "conflict": {
  4738. "php-http/discovery": "<1.15",
  4739. "symfony/http-foundation": "<6.3"
  4740. },
  4741. "provide": {
  4742. "php-http/async-client-implementation": "*",
  4743. "php-http/client-implementation": "*",
  4744. "psr/http-client-implementation": "1.0",
  4745. "symfony/http-client-implementation": "3.0"
  4746. },
  4747. "require-dev": {
  4748. "amphp/amp": "^2.5",
  4749. "amphp/http-client": "^4.2.1",
  4750. "amphp/http-tunnel": "^1.0",
  4751. "amphp/socket": "^1.1",
  4752. "guzzlehttp/promises": "^1.4",
  4753. "nyholm/psr7": "^1.0",
  4754. "php-http/httplug": "^1.0|^2.0",
  4755. "psr/http-client": "^1.0",
  4756. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4757. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4758. "symfony/messenger": "^5.4|^6.0|^7.0",
  4759. "symfony/process": "^5.4|^6.0|^7.0",
  4760. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  4761. },
  4762. "type": "library",
  4763. "autoload": {
  4764. "psr-4": {
  4765. "Symfony\\Component\\HttpClient\\": ""
  4766. },
  4767. "exclude-from-classmap": [
  4768. "/Tests/"
  4769. ]
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Nicolas Grekas",
  4778. "email": "p@tchwork.com"
  4779. },
  4780. {
  4781. "name": "Symfony Community",
  4782. "homepage": "https://symfony.com/contributors"
  4783. }
  4784. ],
  4785. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4786. "homepage": "https://symfony.com",
  4787. "keywords": [
  4788. "http"
  4789. ],
  4790. "support": {
  4791. "source": "https://github.com/symfony/http-client/tree/v6.4.0"
  4792. },
  4793. "funding": [
  4794. {
  4795. "url": "https://symfony.com/sponsor",
  4796. "type": "custom"
  4797. },
  4798. {
  4799. "url": "https://github.com/fabpot",
  4800. "type": "github"
  4801. },
  4802. {
  4803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4804. "type": "tidelift"
  4805. }
  4806. ],
  4807. "time": "2023-11-28T20:55:58+00:00"
  4808. },
  4809. {
  4810. "name": "symfony/http-client-contracts",
  4811. "version": "v3.4.0",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/symfony/http-client-contracts.git",
  4815. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  4820. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  4821. "shasum": ""
  4822. },
  4823. "require": {
  4824. "php": ">=8.1"
  4825. },
  4826. "type": "library",
  4827. "extra": {
  4828. "branch-alias": {
  4829. "dev-main": "3.4-dev"
  4830. },
  4831. "thanks": {
  4832. "name": "symfony/contracts",
  4833. "url": "https://github.com/symfony/contracts"
  4834. }
  4835. },
  4836. "autoload": {
  4837. "psr-4": {
  4838. "Symfony\\Contracts\\HttpClient\\": ""
  4839. },
  4840. "exclude-from-classmap": [
  4841. "/Test/"
  4842. ]
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "MIT"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Nicolas Grekas",
  4851. "email": "p@tchwork.com"
  4852. },
  4853. {
  4854. "name": "Symfony Community",
  4855. "homepage": "https://symfony.com/contributors"
  4856. }
  4857. ],
  4858. "description": "Generic abstractions related to HTTP clients",
  4859. "homepage": "https://symfony.com",
  4860. "keywords": [
  4861. "abstractions",
  4862. "contracts",
  4863. "decoupling",
  4864. "interfaces",
  4865. "interoperability",
  4866. "standards"
  4867. ],
  4868. "support": {
  4869. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  4870. },
  4871. "funding": [
  4872. {
  4873. "url": "https://symfony.com/sponsor",
  4874. "type": "custom"
  4875. },
  4876. {
  4877. "url": "https://github.com/fabpot",
  4878. "type": "github"
  4879. },
  4880. {
  4881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4882. "type": "tidelift"
  4883. }
  4884. ],
  4885. "time": "2023-07-30T20:28:31+00:00"
  4886. },
  4887. {
  4888. "name": "symfony/http-foundation",
  4889. "version": "v6.4.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/symfony/http-foundation.git",
  4893. "reference": "44a6d39a9cc11e154547d882d5aac1e014440771"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/44a6d39a9cc11e154547d882d5aac1e014440771",
  4898. "reference": "44a6d39a9cc11e154547d882d5aac1e014440771",
  4899. "shasum": ""
  4900. },
  4901. "require": {
  4902. "php": ">=8.1",
  4903. "symfony/deprecation-contracts": "^2.5|^3",
  4904. "symfony/polyfill-mbstring": "~1.1",
  4905. "symfony/polyfill-php83": "^1.27"
  4906. },
  4907. "conflict": {
  4908. "symfony/cache": "<6.3"
  4909. },
  4910. "require-dev": {
  4911. "doctrine/dbal": "^2.13.1|^3|^4",
  4912. "predis/predis": "^1.1|^2.0",
  4913. "symfony/cache": "^6.3|^7.0",
  4914. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4915. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4916. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  4917. "symfony/mime": "^5.4|^6.0|^7.0",
  4918. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  4919. },
  4920. "type": "library",
  4921. "autoload": {
  4922. "psr-4": {
  4923. "Symfony\\Component\\HttpFoundation\\": ""
  4924. },
  4925. "exclude-from-classmap": [
  4926. "/Tests/"
  4927. ]
  4928. },
  4929. "notification-url": "https://packagist.org/downloads/",
  4930. "license": [
  4931. "MIT"
  4932. ],
  4933. "authors": [
  4934. {
  4935. "name": "Fabien Potencier",
  4936. "email": "fabien@symfony.com"
  4937. },
  4938. {
  4939. "name": "Symfony Community",
  4940. "homepage": "https://symfony.com/contributors"
  4941. }
  4942. ],
  4943. "description": "Defines an object-oriented layer for the HTTP specification",
  4944. "homepage": "https://symfony.com",
  4945. "support": {
  4946. "source": "https://github.com/symfony/http-foundation/tree/v6.4.0"
  4947. },
  4948. "funding": [
  4949. {
  4950. "url": "https://symfony.com/sponsor",
  4951. "type": "custom"
  4952. },
  4953. {
  4954. "url": "https://github.com/fabpot",
  4955. "type": "github"
  4956. },
  4957. {
  4958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4959. "type": "tidelift"
  4960. }
  4961. ],
  4962. "time": "2023-11-20T16:41:16+00:00"
  4963. },
  4964. {
  4965. "name": "symfony/http-kernel",
  4966. "version": "v6.4.1",
  4967. "source": {
  4968. "type": "git",
  4969. "url": "https://github.com/symfony/http-kernel.git",
  4970. "reference": "2953274c16a229b3933ef73a6898e18388e12e1b"
  4971. },
  4972. "dist": {
  4973. "type": "zip",
  4974. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2953274c16a229b3933ef73a6898e18388e12e1b",
  4975. "reference": "2953274c16a229b3933ef73a6898e18388e12e1b",
  4976. "shasum": ""
  4977. },
  4978. "require": {
  4979. "php": ">=8.1",
  4980. "psr/log": "^1|^2|^3",
  4981. "symfony/deprecation-contracts": "^2.5|^3",
  4982. "symfony/error-handler": "^6.4|^7.0",
  4983. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4984. "symfony/http-foundation": "^6.4|^7.0",
  4985. "symfony/polyfill-ctype": "^1.8"
  4986. },
  4987. "conflict": {
  4988. "symfony/browser-kit": "<5.4",
  4989. "symfony/cache": "<5.4",
  4990. "symfony/config": "<6.1",
  4991. "symfony/console": "<5.4",
  4992. "symfony/dependency-injection": "<6.4",
  4993. "symfony/doctrine-bridge": "<5.4",
  4994. "symfony/form": "<5.4",
  4995. "symfony/http-client": "<5.4",
  4996. "symfony/http-client-contracts": "<2.5",
  4997. "symfony/mailer": "<5.4",
  4998. "symfony/messenger": "<5.4",
  4999. "symfony/translation": "<5.4",
  5000. "symfony/translation-contracts": "<2.5",
  5001. "symfony/twig-bridge": "<5.4",
  5002. "symfony/validator": "<6.4",
  5003. "symfony/var-dumper": "<6.3",
  5004. "twig/twig": "<2.13"
  5005. },
  5006. "provide": {
  5007. "psr/log-implementation": "1.0|2.0|3.0"
  5008. },
  5009. "require-dev": {
  5010. "psr/cache": "^1.0|^2.0|^3.0",
  5011. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5012. "symfony/clock": "^6.2|^7.0",
  5013. "symfony/config": "^6.1|^7.0",
  5014. "symfony/console": "^5.4|^6.0|^7.0",
  5015. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5016. "symfony/dependency-injection": "^6.4|^7.0",
  5017. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5018. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5019. "symfony/finder": "^5.4|^6.0|^7.0",
  5020. "symfony/http-client-contracts": "^2.5|^3",
  5021. "symfony/process": "^5.4|^6.0|^7.0",
  5022. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  5023. "symfony/routing": "^5.4|^6.0|^7.0",
  5024. "symfony/serializer": "^6.3|^7.0",
  5025. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5026. "symfony/translation": "^5.4|^6.0|^7.0",
  5027. "symfony/translation-contracts": "^2.5|^3",
  5028. "symfony/uid": "^5.4|^6.0|^7.0",
  5029. "symfony/validator": "^6.4|^7.0",
  5030. "symfony/var-exporter": "^6.2|^7.0",
  5031. "twig/twig": "^2.13|^3.0.4"
  5032. },
  5033. "type": "library",
  5034. "autoload": {
  5035. "psr-4": {
  5036. "Symfony\\Component\\HttpKernel\\": ""
  5037. },
  5038. "exclude-from-classmap": [
  5039. "/Tests/"
  5040. ]
  5041. },
  5042. "notification-url": "https://packagist.org/downloads/",
  5043. "license": [
  5044. "MIT"
  5045. ],
  5046. "authors": [
  5047. {
  5048. "name": "Fabien Potencier",
  5049. "email": "fabien@symfony.com"
  5050. },
  5051. {
  5052. "name": "Symfony Community",
  5053. "homepage": "https://symfony.com/contributors"
  5054. }
  5055. ],
  5056. "description": "Provides a structured process for converting a Request into a Response",
  5057. "homepage": "https://symfony.com",
  5058. "support": {
  5059. "source": "https://github.com/symfony/http-kernel/tree/v6.4.1"
  5060. },
  5061. "funding": [
  5062. {
  5063. "url": "https://symfony.com/sponsor",
  5064. "type": "custom"
  5065. },
  5066. {
  5067. "url": "https://github.com/fabpot",
  5068. "type": "github"
  5069. },
  5070. {
  5071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5072. "type": "tidelift"
  5073. }
  5074. ],
  5075. "time": "2023-12-01T17:02:02+00:00"
  5076. },
  5077. {
  5078. "name": "symfony/mailer",
  5079. "version": "v6.4.0",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://github.com/symfony/mailer.git",
  5083. "reference": "ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://api.github.com/repos/symfony/mailer/zipball/ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba",
  5088. "reference": "ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba",
  5089. "shasum": ""
  5090. },
  5091. "require": {
  5092. "egulias/email-validator": "^2.1.10|^3|^4",
  5093. "php": ">=8.1",
  5094. "psr/event-dispatcher": "^1",
  5095. "psr/log": "^1|^2|^3",
  5096. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5097. "symfony/mime": "^6.2|^7.0",
  5098. "symfony/service-contracts": "^2.5|^3"
  5099. },
  5100. "conflict": {
  5101. "symfony/http-client-contracts": "<2.5",
  5102. "symfony/http-kernel": "<5.4",
  5103. "symfony/messenger": "<6.2",
  5104. "symfony/mime": "<6.2",
  5105. "symfony/twig-bridge": "<6.2.1"
  5106. },
  5107. "require-dev": {
  5108. "symfony/console": "^5.4|^6.0|^7.0",
  5109. "symfony/http-client": "^5.4|^6.0|^7.0",
  5110. "symfony/messenger": "^6.2|^7.0",
  5111. "symfony/twig-bridge": "^6.2|^7.0"
  5112. },
  5113. "type": "library",
  5114. "autoload": {
  5115. "psr-4": {
  5116. "Symfony\\Component\\Mailer\\": ""
  5117. },
  5118. "exclude-from-classmap": [
  5119. "/Tests/"
  5120. ]
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "MIT"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Fabien Potencier",
  5129. "email": "fabien@symfony.com"
  5130. },
  5131. {
  5132. "name": "Symfony Community",
  5133. "homepage": "https://symfony.com/contributors"
  5134. }
  5135. ],
  5136. "description": "Helps sending emails",
  5137. "homepage": "https://symfony.com",
  5138. "support": {
  5139. "source": "https://github.com/symfony/mailer/tree/v6.4.0"
  5140. },
  5141. "funding": [
  5142. {
  5143. "url": "https://symfony.com/sponsor",
  5144. "type": "custom"
  5145. },
  5146. {
  5147. "url": "https://github.com/fabpot",
  5148. "type": "github"
  5149. },
  5150. {
  5151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5152. "type": "tidelift"
  5153. }
  5154. ],
  5155. "time": "2023-11-12T18:02:22+00:00"
  5156. },
  5157. {
  5158. "name": "symfony/mime",
  5159. "version": "v6.4.0",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://github.com/symfony/mime.git",
  5163. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  5168. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "php": ">=8.1",
  5173. "symfony/deprecation-contracts": "^2.5|^3",
  5174. "symfony/polyfill-intl-idn": "^1.10",
  5175. "symfony/polyfill-mbstring": "^1.0"
  5176. },
  5177. "conflict": {
  5178. "egulias/email-validator": "~3.0.0",
  5179. "phpdocumentor/reflection-docblock": "<3.2.2",
  5180. "phpdocumentor/type-resolver": "<1.4.0",
  5181. "symfony/mailer": "<5.4",
  5182. "symfony/serializer": "<6.3.2"
  5183. },
  5184. "require-dev": {
  5185. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5186. "league/html-to-markdown": "^5.0",
  5187. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5188. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5189. "symfony/property-access": "^5.4|^6.0|^7.0",
  5190. "symfony/property-info": "^5.4|^6.0|^7.0",
  5191. "symfony/serializer": "^6.3.2|^7.0"
  5192. },
  5193. "type": "library",
  5194. "autoload": {
  5195. "psr-4": {
  5196. "Symfony\\Component\\Mime\\": ""
  5197. },
  5198. "exclude-from-classmap": [
  5199. "/Tests/"
  5200. ]
  5201. },
  5202. "notification-url": "https://packagist.org/downloads/",
  5203. "license": [
  5204. "MIT"
  5205. ],
  5206. "authors": [
  5207. {
  5208. "name": "Fabien Potencier",
  5209. "email": "fabien@symfony.com"
  5210. },
  5211. {
  5212. "name": "Symfony Community",
  5213. "homepage": "https://symfony.com/contributors"
  5214. }
  5215. ],
  5216. "description": "Allows manipulating MIME messages",
  5217. "homepage": "https://symfony.com",
  5218. "keywords": [
  5219. "mime",
  5220. "mime-type"
  5221. ],
  5222. "support": {
  5223. "source": "https://github.com/symfony/mime/tree/v6.4.0"
  5224. },
  5225. "funding": [
  5226. {
  5227. "url": "https://symfony.com/sponsor",
  5228. "type": "custom"
  5229. },
  5230. {
  5231. "url": "https://github.com/fabpot",
  5232. "type": "github"
  5233. },
  5234. {
  5235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5236. "type": "tidelift"
  5237. }
  5238. ],
  5239. "time": "2023-10-17T11:49:05+00:00"
  5240. },
  5241. {
  5242. "name": "symfony/monolog-bridge",
  5243. "version": "v6.4.0",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/symfony/monolog-bridge.git",
  5247. "reference": "c262c2f54ce7e160a231808817f306f880c32750"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/c262c2f54ce7e160a231808817f306f880c32750",
  5252. "reference": "c262c2f54ce7e160a231808817f306f880c32750",
  5253. "shasum": ""
  5254. },
  5255. "require": {
  5256. "monolog/monolog": "^1.25.1|^2|^3",
  5257. "php": ">=8.1",
  5258. "symfony/deprecation-contracts": "^2.5|^3",
  5259. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5260. "symfony/service-contracts": "^2.5|^3"
  5261. },
  5262. "conflict": {
  5263. "symfony/console": "<5.4",
  5264. "symfony/http-foundation": "<5.4",
  5265. "symfony/security-core": "<6.0"
  5266. },
  5267. "require-dev": {
  5268. "symfony/console": "^5.4|^6.0|^7.0",
  5269. "symfony/http-client": "^5.4|^6.0|^7.0",
  5270. "symfony/mailer": "^5.4|^6.0|^7.0",
  5271. "symfony/messenger": "^5.4|^6.0|^7.0",
  5272. "symfony/mime": "^5.4|^6.0|^7.0",
  5273. "symfony/security-core": "^6.0|^7.0",
  5274. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5275. },
  5276. "type": "symfony-bridge",
  5277. "autoload": {
  5278. "psr-4": {
  5279. "Symfony\\Bridge\\Monolog\\": ""
  5280. },
  5281. "exclude-from-classmap": [
  5282. "/Tests/"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "MIT"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Fabien Potencier",
  5292. "email": "fabien@symfony.com"
  5293. },
  5294. {
  5295. "name": "Symfony Community",
  5296. "homepage": "https://symfony.com/contributors"
  5297. }
  5298. ],
  5299. "description": "Provides integration for Monolog with various Symfony components",
  5300. "homepage": "https://symfony.com",
  5301. "support": {
  5302. "source": "https://github.com/symfony/monolog-bridge/tree/v6.4.0"
  5303. },
  5304. "funding": [
  5305. {
  5306. "url": "https://symfony.com/sponsor",
  5307. "type": "custom"
  5308. },
  5309. {
  5310. "url": "https://github.com/fabpot",
  5311. "type": "github"
  5312. },
  5313. {
  5314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5315. "type": "tidelift"
  5316. }
  5317. ],
  5318. "time": "2023-10-31T08:18:17+00:00"
  5319. },
  5320. {
  5321. "name": "symfony/monolog-bundle",
  5322. "version": "v3.10.0",
  5323. "source": {
  5324. "type": "git",
  5325. "url": "https://github.com/symfony/monolog-bundle.git",
  5326. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5327. },
  5328. "dist": {
  5329. "type": "zip",
  5330. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5331. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5332. "shasum": ""
  5333. },
  5334. "require": {
  5335. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5336. "php": ">=7.2.5",
  5337. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5338. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5339. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5340. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5341. },
  5342. "require-dev": {
  5343. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5344. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5345. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5346. },
  5347. "type": "symfony-bundle",
  5348. "extra": {
  5349. "branch-alias": {
  5350. "dev-master": "3.x-dev"
  5351. }
  5352. },
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Symfony\\Bundle\\MonologBundle\\": ""
  5356. },
  5357. "exclude-from-classmap": [
  5358. "/Tests/"
  5359. ]
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Fabien Potencier",
  5368. "email": "fabien@symfony.com"
  5369. },
  5370. {
  5371. "name": "Symfony Community",
  5372. "homepage": "https://symfony.com/contributors"
  5373. }
  5374. ],
  5375. "description": "Symfony MonologBundle",
  5376. "homepage": "https://symfony.com",
  5377. "keywords": [
  5378. "log",
  5379. "logging"
  5380. ],
  5381. "support": {
  5382. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5383. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5384. },
  5385. "funding": [
  5386. {
  5387. "url": "https://symfony.com/sponsor",
  5388. "type": "custom"
  5389. },
  5390. {
  5391. "url": "https://github.com/fabpot",
  5392. "type": "github"
  5393. },
  5394. {
  5395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5396. "type": "tidelift"
  5397. }
  5398. ],
  5399. "time": "2023-11-06T17:08:13+00:00"
  5400. },
  5401. {
  5402. "name": "symfony/options-resolver",
  5403. "version": "v6.4.0",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/symfony/options-resolver.git",
  5407. "reference": "22301f0e7fdeaacc14318928612dee79be99860e"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e",
  5412. "reference": "22301f0e7fdeaacc14318928612dee79be99860e",
  5413. "shasum": ""
  5414. },
  5415. "require": {
  5416. "php": ">=8.1",
  5417. "symfony/deprecation-contracts": "^2.5|^3"
  5418. },
  5419. "type": "library",
  5420. "autoload": {
  5421. "psr-4": {
  5422. "Symfony\\Component\\OptionsResolver\\": ""
  5423. },
  5424. "exclude-from-classmap": [
  5425. "/Tests/"
  5426. ]
  5427. },
  5428. "notification-url": "https://packagist.org/downloads/",
  5429. "license": [
  5430. "MIT"
  5431. ],
  5432. "authors": [
  5433. {
  5434. "name": "Fabien Potencier",
  5435. "email": "fabien@symfony.com"
  5436. },
  5437. {
  5438. "name": "Symfony Community",
  5439. "homepage": "https://symfony.com/contributors"
  5440. }
  5441. ],
  5442. "description": "Provides an improved replacement for the array_replace PHP function",
  5443. "homepage": "https://symfony.com",
  5444. "keywords": [
  5445. "config",
  5446. "configuration",
  5447. "options"
  5448. ],
  5449. "support": {
  5450. "source": "https://github.com/symfony/options-resolver/tree/v6.4.0"
  5451. },
  5452. "funding": [
  5453. {
  5454. "url": "https://symfony.com/sponsor",
  5455. "type": "custom"
  5456. },
  5457. {
  5458. "url": "https://github.com/fabpot",
  5459. "type": "github"
  5460. },
  5461. {
  5462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5463. "type": "tidelift"
  5464. }
  5465. ],
  5466. "time": "2023-08-08T10:16:24+00:00"
  5467. },
  5468. {
  5469. "name": "symfony/password-hasher",
  5470. "version": "v6.4.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/symfony/password-hasher.git",
  5474. "reference": "e001f752338a49d644ee0523fd7891aabaccb7e2"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/e001f752338a49d644ee0523fd7891aabaccb7e2",
  5479. "reference": "e001f752338a49d644ee0523fd7891aabaccb7e2",
  5480. "shasum": ""
  5481. },
  5482. "require": {
  5483. "php": ">=8.1"
  5484. },
  5485. "conflict": {
  5486. "symfony/security-core": "<5.4"
  5487. },
  5488. "require-dev": {
  5489. "symfony/console": "^5.4|^6.0|^7.0",
  5490. "symfony/security-core": "^5.4|^6.0|^7.0"
  5491. },
  5492. "type": "library",
  5493. "autoload": {
  5494. "psr-4": {
  5495. "Symfony\\Component\\PasswordHasher\\": ""
  5496. },
  5497. "exclude-from-classmap": [
  5498. "/Tests/"
  5499. ]
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Robin Chalas",
  5508. "email": "robin.chalas@gmail.com"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Provides password hashing utilities",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "hashing",
  5519. "password"
  5520. ],
  5521. "support": {
  5522. "source": "https://github.com/symfony/password-hasher/tree/v6.4.0"
  5523. },
  5524. "funding": [
  5525. {
  5526. "url": "https://symfony.com/sponsor",
  5527. "type": "custom"
  5528. },
  5529. {
  5530. "url": "https://github.com/fabpot",
  5531. "type": "github"
  5532. },
  5533. {
  5534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5535. "type": "tidelift"
  5536. }
  5537. ],
  5538. "time": "2023-11-06T11:00:25+00:00"
  5539. },
  5540. {
  5541. "name": "symfony/polyfill-intl-grapheme",
  5542. "version": "v1.28.0",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5546. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5551. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=7.1"
  5556. },
  5557. "suggest": {
  5558. "ext-intl": "For best performance"
  5559. },
  5560. "type": "library",
  5561. "extra": {
  5562. "branch-alias": {
  5563. "dev-main": "1.28-dev"
  5564. },
  5565. "thanks": {
  5566. "name": "symfony/polyfill",
  5567. "url": "https://github.com/symfony/polyfill"
  5568. }
  5569. },
  5570. "autoload": {
  5571. "files": [
  5572. "bootstrap.php"
  5573. ],
  5574. "psr-4": {
  5575. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5576. }
  5577. },
  5578. "notification-url": "https://packagist.org/downloads/",
  5579. "license": [
  5580. "MIT"
  5581. ],
  5582. "authors": [
  5583. {
  5584. "name": "Nicolas Grekas",
  5585. "email": "p@tchwork.com"
  5586. },
  5587. {
  5588. "name": "Symfony Community",
  5589. "homepage": "https://symfony.com/contributors"
  5590. }
  5591. ],
  5592. "description": "Symfony polyfill for intl's grapheme_* functions",
  5593. "homepage": "https://symfony.com",
  5594. "keywords": [
  5595. "compatibility",
  5596. "grapheme",
  5597. "intl",
  5598. "polyfill",
  5599. "portable",
  5600. "shim"
  5601. ],
  5602. "support": {
  5603. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  5604. },
  5605. "funding": [
  5606. {
  5607. "url": "https://symfony.com/sponsor",
  5608. "type": "custom"
  5609. },
  5610. {
  5611. "url": "https://github.com/fabpot",
  5612. "type": "github"
  5613. },
  5614. {
  5615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5616. "type": "tidelift"
  5617. }
  5618. ],
  5619. "time": "2023-01-26T09:26:14+00:00"
  5620. },
  5621. {
  5622. "name": "symfony/polyfill-intl-icu",
  5623. "version": "v1.28.0",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5627. "reference": "e46b4da57951a16053cd751f63f4a24292788157"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157",
  5632. "reference": "e46b4da57951a16053cd751f63f4a24292788157",
  5633. "shasum": ""
  5634. },
  5635. "require": {
  5636. "php": ">=7.1"
  5637. },
  5638. "suggest": {
  5639. "ext-intl": "For best performance and support of other locales than \"en\""
  5640. },
  5641. "type": "library",
  5642. "extra": {
  5643. "branch-alias": {
  5644. "dev-main": "1.28-dev"
  5645. },
  5646. "thanks": {
  5647. "name": "symfony/polyfill",
  5648. "url": "https://github.com/symfony/polyfill"
  5649. }
  5650. },
  5651. "autoload": {
  5652. "files": [
  5653. "bootstrap.php"
  5654. ],
  5655. "psr-4": {
  5656. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5657. },
  5658. "classmap": [
  5659. "Resources/stubs"
  5660. ],
  5661. "exclude-from-classmap": [
  5662. "/Tests/"
  5663. ]
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "MIT"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Nicolas Grekas",
  5672. "email": "p@tchwork.com"
  5673. },
  5674. {
  5675. "name": "Symfony Community",
  5676. "homepage": "https://symfony.com/contributors"
  5677. }
  5678. ],
  5679. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5680. "homepage": "https://symfony.com",
  5681. "keywords": [
  5682. "compatibility",
  5683. "icu",
  5684. "intl",
  5685. "polyfill",
  5686. "portable",
  5687. "shim"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.28.0"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2023-03-21T17:27:24+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/polyfill-intl-idn",
  5710. "version": "v1.28.0",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5714. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  5719. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  5720. "shasum": ""
  5721. },
  5722. "require": {
  5723. "php": ">=7.1",
  5724. "symfony/polyfill-intl-normalizer": "^1.10",
  5725. "symfony/polyfill-php72": "^1.10"
  5726. },
  5727. "suggest": {
  5728. "ext-intl": "For best performance"
  5729. },
  5730. "type": "library",
  5731. "extra": {
  5732. "branch-alias": {
  5733. "dev-main": "1.28-dev"
  5734. },
  5735. "thanks": {
  5736. "name": "symfony/polyfill",
  5737. "url": "https://github.com/symfony/polyfill"
  5738. }
  5739. },
  5740. "autoload": {
  5741. "files": [
  5742. "bootstrap.php"
  5743. ],
  5744. "psr-4": {
  5745. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5746. }
  5747. },
  5748. "notification-url": "https://packagist.org/downloads/",
  5749. "license": [
  5750. "MIT"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Laurent Bassin",
  5755. "email": "laurent@bassin.info"
  5756. },
  5757. {
  5758. "name": "Trevor Rowbotham",
  5759. "email": "trevor.rowbotham@pm.me"
  5760. },
  5761. {
  5762. "name": "Symfony Community",
  5763. "homepage": "https://symfony.com/contributors"
  5764. }
  5765. ],
  5766. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5767. "homepage": "https://symfony.com",
  5768. "keywords": [
  5769. "compatibility",
  5770. "idn",
  5771. "intl",
  5772. "polyfill",
  5773. "portable",
  5774. "shim"
  5775. ],
  5776. "support": {
  5777. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  5778. },
  5779. "funding": [
  5780. {
  5781. "url": "https://symfony.com/sponsor",
  5782. "type": "custom"
  5783. },
  5784. {
  5785. "url": "https://github.com/fabpot",
  5786. "type": "github"
  5787. },
  5788. {
  5789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5790. "type": "tidelift"
  5791. }
  5792. ],
  5793. "time": "2023-01-26T09:30:37+00:00"
  5794. },
  5795. {
  5796. "name": "symfony/polyfill-intl-normalizer",
  5797. "version": "v1.28.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5801. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  5806. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  5807. "shasum": ""
  5808. },
  5809. "require": {
  5810. "php": ">=7.1"
  5811. },
  5812. "suggest": {
  5813. "ext-intl": "For best performance"
  5814. },
  5815. "type": "library",
  5816. "extra": {
  5817. "branch-alias": {
  5818. "dev-main": "1.28-dev"
  5819. },
  5820. "thanks": {
  5821. "name": "symfony/polyfill",
  5822. "url": "https://github.com/symfony/polyfill"
  5823. }
  5824. },
  5825. "autoload": {
  5826. "files": [
  5827. "bootstrap.php"
  5828. ],
  5829. "psr-4": {
  5830. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5831. },
  5832. "classmap": [
  5833. "Resources/stubs"
  5834. ]
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "Nicolas Grekas",
  5843. "email": "p@tchwork.com"
  5844. },
  5845. {
  5846. "name": "Symfony Community",
  5847. "homepage": "https://symfony.com/contributors"
  5848. }
  5849. ],
  5850. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5851. "homepage": "https://symfony.com",
  5852. "keywords": [
  5853. "compatibility",
  5854. "intl",
  5855. "normalizer",
  5856. "polyfill",
  5857. "portable",
  5858. "shim"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  5862. },
  5863. "funding": [
  5864. {
  5865. "url": "https://symfony.com/sponsor",
  5866. "type": "custom"
  5867. },
  5868. {
  5869. "url": "https://github.com/fabpot",
  5870. "type": "github"
  5871. },
  5872. {
  5873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5874. "type": "tidelift"
  5875. }
  5876. ],
  5877. "time": "2023-01-26T09:26:14+00:00"
  5878. },
  5879. {
  5880. "name": "symfony/polyfill-mbstring",
  5881. "version": "v1.28.0",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5885. "reference": "42292d99c55abe617799667f454222c54c60e229"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  5890. "reference": "42292d99c55abe617799667f454222c54c60e229",
  5891. "shasum": ""
  5892. },
  5893. "require": {
  5894. "php": ">=7.1"
  5895. },
  5896. "provide": {
  5897. "ext-mbstring": "*"
  5898. },
  5899. "suggest": {
  5900. "ext-mbstring": "For best performance"
  5901. },
  5902. "type": "library",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-main": "1.28-dev"
  5906. },
  5907. "thanks": {
  5908. "name": "symfony/polyfill",
  5909. "url": "https://github.com/symfony/polyfill"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "files": [
  5914. "bootstrap.php"
  5915. ],
  5916. "psr-4": {
  5917. "Symfony\\Polyfill\\Mbstring\\": ""
  5918. }
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "Nicolas Grekas",
  5927. "email": "p@tchwork.com"
  5928. },
  5929. {
  5930. "name": "Symfony Community",
  5931. "homepage": "https://symfony.com/contributors"
  5932. }
  5933. ],
  5934. "description": "Symfony polyfill for the Mbstring extension",
  5935. "homepage": "https://symfony.com",
  5936. "keywords": [
  5937. "compatibility",
  5938. "mbstring",
  5939. "polyfill",
  5940. "portable",
  5941. "shim"
  5942. ],
  5943. "support": {
  5944. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://symfony.com/sponsor",
  5949. "type": "custom"
  5950. },
  5951. {
  5952. "url": "https://github.com/fabpot",
  5953. "type": "github"
  5954. },
  5955. {
  5956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5957. "type": "tidelift"
  5958. }
  5959. ],
  5960. "time": "2023-07-28T09:04:16+00:00"
  5961. },
  5962. {
  5963. "name": "symfony/polyfill-php72",
  5964. "version": "v1.28.0",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/symfony/polyfill-php72.git",
  5968. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  5973. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=7.1"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "branch-alias": {
  5982. "dev-main": "1.28-dev"
  5983. },
  5984. "thanks": {
  5985. "name": "symfony/polyfill",
  5986. "url": "https://github.com/symfony/polyfill"
  5987. }
  5988. },
  5989. "autoload": {
  5990. "files": [
  5991. "bootstrap.php"
  5992. ],
  5993. "psr-4": {
  5994. "Symfony\\Polyfill\\Php72\\": ""
  5995. }
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Nicolas Grekas",
  6004. "email": "p@tchwork.com"
  6005. },
  6006. {
  6007. "name": "Symfony Community",
  6008. "homepage": "https://symfony.com/contributors"
  6009. }
  6010. ],
  6011. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6012. "homepage": "https://symfony.com",
  6013. "keywords": [
  6014. "compatibility",
  6015. "polyfill",
  6016. "portable",
  6017. "shim"
  6018. ],
  6019. "support": {
  6020. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  6021. },
  6022. "funding": [
  6023. {
  6024. "url": "https://symfony.com/sponsor",
  6025. "type": "custom"
  6026. },
  6027. {
  6028. "url": "https://github.com/fabpot",
  6029. "type": "github"
  6030. },
  6031. {
  6032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6033. "type": "tidelift"
  6034. }
  6035. ],
  6036. "time": "2023-01-26T09:26:14+00:00"
  6037. },
  6038. {
  6039. "name": "symfony/polyfill-php80",
  6040. "version": "v1.28.0",
  6041. "source": {
  6042. "type": "git",
  6043. "url": "https://github.com/symfony/polyfill-php80.git",
  6044. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6045. },
  6046. "dist": {
  6047. "type": "zip",
  6048. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6049. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6050. "shasum": ""
  6051. },
  6052. "require": {
  6053. "php": ">=7.1"
  6054. },
  6055. "type": "library",
  6056. "extra": {
  6057. "branch-alias": {
  6058. "dev-main": "1.28-dev"
  6059. },
  6060. "thanks": {
  6061. "name": "symfony/polyfill",
  6062. "url": "https://github.com/symfony/polyfill"
  6063. }
  6064. },
  6065. "autoload": {
  6066. "files": [
  6067. "bootstrap.php"
  6068. ],
  6069. "psr-4": {
  6070. "Symfony\\Polyfill\\Php80\\": ""
  6071. },
  6072. "classmap": [
  6073. "Resources/stubs"
  6074. ]
  6075. },
  6076. "notification-url": "https://packagist.org/downloads/",
  6077. "license": [
  6078. "MIT"
  6079. ],
  6080. "authors": [
  6081. {
  6082. "name": "Ion Bazan",
  6083. "email": "ion.bazan@gmail.com"
  6084. },
  6085. {
  6086. "name": "Nicolas Grekas",
  6087. "email": "p@tchwork.com"
  6088. },
  6089. {
  6090. "name": "Symfony Community",
  6091. "homepage": "https://symfony.com/contributors"
  6092. }
  6093. ],
  6094. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6095. "homepage": "https://symfony.com",
  6096. "keywords": [
  6097. "compatibility",
  6098. "polyfill",
  6099. "portable",
  6100. "shim"
  6101. ],
  6102. "support": {
  6103. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6104. },
  6105. "funding": [
  6106. {
  6107. "url": "https://symfony.com/sponsor",
  6108. "type": "custom"
  6109. },
  6110. {
  6111. "url": "https://github.com/fabpot",
  6112. "type": "github"
  6113. },
  6114. {
  6115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6116. "type": "tidelift"
  6117. }
  6118. ],
  6119. "time": "2023-01-26T09:26:14+00:00"
  6120. },
  6121. {
  6122. "name": "symfony/polyfill-php83",
  6123. "version": "v1.28.0",
  6124. "source": {
  6125. "type": "git",
  6126. "url": "https://github.com/symfony/polyfill-php83.git",
  6127. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  6128. },
  6129. "dist": {
  6130. "type": "zip",
  6131. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  6132. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  6133. "shasum": ""
  6134. },
  6135. "require": {
  6136. "php": ">=7.1",
  6137. "symfony/polyfill-php80": "^1.14"
  6138. },
  6139. "type": "library",
  6140. "extra": {
  6141. "branch-alias": {
  6142. "dev-main": "1.28-dev"
  6143. },
  6144. "thanks": {
  6145. "name": "symfony/polyfill",
  6146. "url": "https://github.com/symfony/polyfill"
  6147. }
  6148. },
  6149. "autoload": {
  6150. "files": [
  6151. "bootstrap.php"
  6152. ],
  6153. "psr-4": {
  6154. "Symfony\\Polyfill\\Php83\\": ""
  6155. },
  6156. "classmap": [
  6157. "Resources/stubs"
  6158. ]
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Nicolas Grekas",
  6167. "email": "p@tchwork.com"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6175. "homepage": "https://symfony.com",
  6176. "keywords": [
  6177. "compatibility",
  6178. "polyfill",
  6179. "portable",
  6180. "shim"
  6181. ],
  6182. "support": {
  6183. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  6184. },
  6185. "funding": [
  6186. {
  6187. "url": "https://symfony.com/sponsor",
  6188. "type": "custom"
  6189. },
  6190. {
  6191. "url": "https://github.com/fabpot",
  6192. "type": "github"
  6193. },
  6194. {
  6195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6196. "type": "tidelift"
  6197. }
  6198. ],
  6199. "time": "2023-08-16T06:22:46+00:00"
  6200. },
  6201. {
  6202. "name": "symfony/process",
  6203. "version": "v6.4.0",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/symfony/process.git",
  6207. "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/symfony/process/zipball/191703b1566d97a5425dc969e4350d32b8ef17aa",
  6212. "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa",
  6213. "shasum": ""
  6214. },
  6215. "require": {
  6216. "php": ">=8.1"
  6217. },
  6218. "type": "library",
  6219. "autoload": {
  6220. "psr-4": {
  6221. "Symfony\\Component\\Process\\": ""
  6222. },
  6223. "exclude-from-classmap": [
  6224. "/Tests/"
  6225. ]
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Fabien Potencier",
  6234. "email": "fabien@symfony.com"
  6235. },
  6236. {
  6237. "name": "Symfony Community",
  6238. "homepage": "https://symfony.com/contributors"
  6239. }
  6240. ],
  6241. "description": "Executes commands in sub-processes",
  6242. "homepage": "https://symfony.com",
  6243. "support": {
  6244. "source": "https://github.com/symfony/process/tree/v6.4.0"
  6245. },
  6246. "funding": [
  6247. {
  6248. "url": "https://symfony.com/sponsor",
  6249. "type": "custom"
  6250. },
  6251. {
  6252. "url": "https://github.com/fabpot",
  6253. "type": "github"
  6254. },
  6255. {
  6256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6257. "type": "tidelift"
  6258. }
  6259. ],
  6260. "time": "2023-11-17T21:06:49+00:00"
  6261. },
  6262. {
  6263. "name": "symfony/property-access",
  6264. "version": "v6.4.0",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/symfony/property-access.git",
  6268. "reference": "75f6990ae8e8040dd587162f3f1863f755957129"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/symfony/property-access/zipball/75f6990ae8e8040dd587162f3f1863f755957129",
  6273. "reference": "75f6990ae8e8040dd587162f3f1863f755957129",
  6274. "shasum": ""
  6275. },
  6276. "require": {
  6277. "php": ">=8.1",
  6278. "symfony/deprecation-contracts": "^2.5|^3",
  6279. "symfony/property-info": "^5.4|^6.0|^7.0"
  6280. },
  6281. "require-dev": {
  6282. "symfony/cache": "^5.4|^6.0|^7.0"
  6283. },
  6284. "type": "library",
  6285. "autoload": {
  6286. "psr-4": {
  6287. "Symfony\\Component\\PropertyAccess\\": ""
  6288. },
  6289. "exclude-from-classmap": [
  6290. "/Tests/"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "MIT"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Fabien Potencier",
  6300. "email": "fabien@symfony.com"
  6301. },
  6302. {
  6303. "name": "Symfony Community",
  6304. "homepage": "https://symfony.com/contributors"
  6305. }
  6306. ],
  6307. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6308. "homepage": "https://symfony.com",
  6309. "keywords": [
  6310. "access",
  6311. "array",
  6312. "extraction",
  6313. "index",
  6314. "injection",
  6315. "object",
  6316. "property",
  6317. "property-path",
  6318. "reflection"
  6319. ],
  6320. "support": {
  6321. "source": "https://github.com/symfony/property-access/tree/v6.4.0"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://symfony.com/sponsor",
  6326. "type": "custom"
  6327. },
  6328. {
  6329. "url": "https://github.com/fabpot",
  6330. "type": "github"
  6331. },
  6332. {
  6333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6334. "type": "tidelift"
  6335. }
  6336. ],
  6337. "time": "2023-09-25T12:52:38+00:00"
  6338. },
  6339. {
  6340. "name": "symfony/property-info",
  6341. "version": "v6.4.0",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/symfony/property-info.git",
  6345. "reference": "288be71bae2ebc88676f5d3a03d23f70b278fcc1"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/symfony/property-info/zipball/288be71bae2ebc88676f5d3a03d23f70b278fcc1",
  6350. "reference": "288be71bae2ebc88676f5d3a03d23f70b278fcc1",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": ">=8.1",
  6355. "symfony/string": "^5.4|^6.0|^7.0"
  6356. },
  6357. "conflict": {
  6358. "phpdocumentor/reflection-docblock": "<5.2",
  6359. "phpdocumentor/type-resolver": "<1.5.1",
  6360. "symfony/dependency-injection": "<5.4",
  6361. "symfony/serializer": "<6.4"
  6362. },
  6363. "require-dev": {
  6364. "phpdocumentor/reflection-docblock": "^5.2",
  6365. "phpstan/phpdoc-parser": "^1.0",
  6366. "symfony/cache": "^5.4|^6.0|^7.0",
  6367. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6368. "symfony/serializer": "^6.4|^7.0"
  6369. },
  6370. "type": "library",
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Symfony\\Component\\PropertyInfo\\": ""
  6374. },
  6375. "exclude-from-classmap": [
  6376. "/Tests/"
  6377. ]
  6378. },
  6379. "notification-url": "https://packagist.org/downloads/",
  6380. "license": [
  6381. "MIT"
  6382. ],
  6383. "authors": [
  6384. {
  6385. "name": "Kévin Dunglas",
  6386. "email": "dunglas@gmail.com"
  6387. },
  6388. {
  6389. "name": "Symfony Community",
  6390. "homepage": "https://symfony.com/contributors"
  6391. }
  6392. ],
  6393. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6394. "homepage": "https://symfony.com",
  6395. "keywords": [
  6396. "doctrine",
  6397. "phpdoc",
  6398. "property",
  6399. "symfony",
  6400. "type",
  6401. "validator"
  6402. ],
  6403. "support": {
  6404. "source": "https://github.com/symfony/property-info/tree/v6.4.0"
  6405. },
  6406. "funding": [
  6407. {
  6408. "url": "https://symfony.com/sponsor",
  6409. "type": "custom"
  6410. },
  6411. {
  6412. "url": "https://github.com/fabpot",
  6413. "type": "github"
  6414. },
  6415. {
  6416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6417. "type": "tidelift"
  6418. }
  6419. ],
  6420. "time": "2023-11-25T16:57:46+00:00"
  6421. },
  6422. {
  6423. "name": "symfony/proxy-manager-bridge",
  6424. "version": "v6.4.0",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6428. "reference": "801c4590eacf0dc40d73135dbe79ad71effd6d04"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/801c4590eacf0dc40d73135dbe79ad71effd6d04",
  6433. "reference": "801c4590eacf0dc40d73135dbe79ad71effd6d04",
  6434. "shasum": ""
  6435. },
  6436. "require": {
  6437. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6438. "php": ">=8.1",
  6439. "symfony/dependency-injection": "^6.3|^7.0",
  6440. "symfony/deprecation-contracts": "^2.5|^3"
  6441. },
  6442. "require-dev": {
  6443. "symfony/config": "^6.1|^7.0"
  6444. },
  6445. "type": "symfony-bridge",
  6446. "autoload": {
  6447. "psr-4": {
  6448. "Symfony\\Bridge\\ProxyManager\\": ""
  6449. },
  6450. "exclude-from-classmap": [
  6451. "/Tests/"
  6452. ]
  6453. },
  6454. "notification-url": "https://packagist.org/downloads/",
  6455. "license": [
  6456. "MIT"
  6457. ],
  6458. "authors": [
  6459. {
  6460. "name": "Fabien Potencier",
  6461. "email": "fabien@symfony.com"
  6462. },
  6463. {
  6464. "name": "Symfony Community",
  6465. "homepage": "https://symfony.com/contributors"
  6466. }
  6467. ],
  6468. "description": "Provides integration for ProxyManager with various Symfony components",
  6469. "homepage": "https://symfony.com",
  6470. "support": {
  6471. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.4.0"
  6472. },
  6473. "funding": [
  6474. {
  6475. "url": "https://symfony.com/sponsor",
  6476. "type": "custom"
  6477. },
  6478. {
  6479. "url": "https://github.com/fabpot",
  6480. "type": "github"
  6481. },
  6482. {
  6483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6484. "type": "tidelift"
  6485. }
  6486. ],
  6487. "time": "2023-11-01T12:07:38+00:00"
  6488. },
  6489. {
  6490. "name": "symfony/routing",
  6491. "version": "v6.4.1",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/symfony/routing.git",
  6495. "reference": "0c95c164fdba18b12523b75e64199ca3503e6d40"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/symfony/routing/zipball/0c95c164fdba18b12523b75e64199ca3503e6d40",
  6500. "reference": "0c95c164fdba18b12523b75e64199ca3503e6d40",
  6501. "shasum": ""
  6502. },
  6503. "require": {
  6504. "php": ">=8.1",
  6505. "symfony/deprecation-contracts": "^2.5|^3"
  6506. },
  6507. "conflict": {
  6508. "doctrine/annotations": "<1.12",
  6509. "symfony/config": "<6.2",
  6510. "symfony/dependency-injection": "<5.4",
  6511. "symfony/yaml": "<5.4"
  6512. },
  6513. "require-dev": {
  6514. "doctrine/annotations": "^1.12|^2",
  6515. "psr/log": "^1|^2|^3",
  6516. "symfony/config": "^6.2|^7.0",
  6517. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6518. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6519. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6520. "symfony/yaml": "^5.4|^6.0|^7.0"
  6521. },
  6522. "type": "library",
  6523. "autoload": {
  6524. "psr-4": {
  6525. "Symfony\\Component\\Routing\\": ""
  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": "Fabien Potencier",
  6538. "email": "fabien@symfony.com"
  6539. },
  6540. {
  6541. "name": "Symfony Community",
  6542. "homepage": "https://symfony.com/contributors"
  6543. }
  6544. ],
  6545. "description": "Maps an HTTP request to a set of configuration variables",
  6546. "homepage": "https://symfony.com",
  6547. "keywords": [
  6548. "router",
  6549. "routing",
  6550. "uri",
  6551. "url"
  6552. ],
  6553. "support": {
  6554. "source": "https://github.com/symfony/routing/tree/v6.4.1"
  6555. },
  6556. "funding": [
  6557. {
  6558. "url": "https://symfony.com/sponsor",
  6559. "type": "custom"
  6560. },
  6561. {
  6562. "url": "https://github.com/fabpot",
  6563. "type": "github"
  6564. },
  6565. {
  6566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6567. "type": "tidelift"
  6568. }
  6569. ],
  6570. "time": "2023-12-01T14:54:37+00:00"
  6571. },
  6572. {
  6573. "name": "symfony/runtime",
  6574. "version": "v6.4.0",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://github.com/symfony/runtime.git",
  6578. "reference": "86539231fadfdc7f7e9911d6fa7ed84a606e7d34"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://api.github.com/repos/symfony/runtime/zipball/86539231fadfdc7f7e9911d6fa7ed84a606e7d34",
  6583. "reference": "86539231fadfdc7f7e9911d6fa7ed84a606e7d34",
  6584. "shasum": ""
  6585. },
  6586. "require": {
  6587. "composer-plugin-api": "^1.0|^2.0",
  6588. "php": ">=8.1"
  6589. },
  6590. "conflict": {
  6591. "symfony/dotenv": "<5.4"
  6592. },
  6593. "require-dev": {
  6594. "composer/composer": "^1.0.2|^2.0",
  6595. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  6596. "symfony/dotenv": "^5.4|^6.0|^7.0",
  6597. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6598. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  6599. },
  6600. "type": "composer-plugin",
  6601. "extra": {
  6602. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "Symfony\\Component\\Runtime\\": "",
  6607. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6608. },
  6609. "exclude-from-classmap": [
  6610. "/Tests/"
  6611. ]
  6612. },
  6613. "notification-url": "https://packagist.org/downloads/",
  6614. "license": [
  6615. "MIT"
  6616. ],
  6617. "authors": [
  6618. {
  6619. "name": "Nicolas Grekas",
  6620. "email": "p@tchwork.com"
  6621. },
  6622. {
  6623. "name": "Symfony Community",
  6624. "homepage": "https://symfony.com/contributors"
  6625. }
  6626. ],
  6627. "description": "Enables decoupling PHP applications from global state",
  6628. "homepage": "https://symfony.com",
  6629. "keywords": [
  6630. "runtime"
  6631. ],
  6632. "support": {
  6633. "source": "https://github.com/symfony/runtime/tree/v6.4.0"
  6634. },
  6635. "funding": [
  6636. {
  6637. "url": "https://symfony.com/sponsor",
  6638. "type": "custom"
  6639. },
  6640. {
  6641. "url": "https://github.com/fabpot",
  6642. "type": "github"
  6643. },
  6644. {
  6645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6646. "type": "tidelift"
  6647. }
  6648. ],
  6649. "time": "2023-10-18T09:43:34+00:00"
  6650. },
  6651. {
  6652. "name": "symfony/security-bundle",
  6653. "version": "v6.4.0",
  6654. "source": {
  6655. "type": "git",
  6656. "url": "https://github.com/symfony/security-bundle.git",
  6657. "reference": "4fd31b7cb2a18f62c5a8588b82a44fd240b41a9e"
  6658. },
  6659. "dist": {
  6660. "type": "zip",
  6661. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4fd31b7cb2a18f62c5a8588b82a44fd240b41a9e",
  6662. "reference": "4fd31b7cb2a18f62c5a8588b82a44fd240b41a9e",
  6663. "shasum": ""
  6664. },
  6665. "require": {
  6666. "composer-runtime-api": ">=2.1",
  6667. "ext-xml": "*",
  6668. "php": ">=8.1",
  6669. "symfony/clock": "^6.3|^7.0",
  6670. "symfony/config": "^6.1|^7.0",
  6671. "symfony/dependency-injection": "^6.2|^7.0",
  6672. "symfony/deprecation-contracts": "^2.5|^3",
  6673. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6674. "symfony/http-foundation": "^6.2|^7.0",
  6675. "symfony/http-kernel": "^6.2",
  6676. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  6677. "symfony/security-core": "^6.2|^7.0",
  6678. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6679. "symfony/security-http": "^6.3.6|^7.0",
  6680. "symfony/service-contracts": "^2.5|^3"
  6681. },
  6682. "conflict": {
  6683. "symfony/browser-kit": "<5.4",
  6684. "symfony/console": "<5.4",
  6685. "symfony/framework-bundle": "<6.4",
  6686. "symfony/http-client": "<5.4",
  6687. "symfony/ldap": "<5.4",
  6688. "symfony/serializer": "<6.4",
  6689. "symfony/twig-bundle": "<5.4",
  6690. "symfony/validator": "<6.4"
  6691. },
  6692. "require-dev": {
  6693. "symfony/asset": "^5.4|^6.0|^7.0",
  6694. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6695. "symfony/console": "^5.4|^6.0|^7.0",
  6696. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6697. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6698. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6699. "symfony/form": "^5.4|^6.0|^7.0",
  6700. "symfony/framework-bundle": "^6.4|^7.0",
  6701. "symfony/http-client": "^5.4|^6.0|^7.0",
  6702. "symfony/ldap": "^5.4|^6.0|^7.0",
  6703. "symfony/process": "^5.4|^6.0|^7.0",
  6704. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  6705. "symfony/serializer": "^6.4|^7.0",
  6706. "symfony/translation": "^5.4|^6.0|^7.0",
  6707. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  6708. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6709. "symfony/validator": "^6.4|^7.0",
  6710. "symfony/yaml": "^5.4|^6.0|^7.0",
  6711. "twig/twig": "^2.13|^3.0.4",
  6712. "web-token/jwt-checker": "^3.1",
  6713. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  6714. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  6715. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  6716. "web-token/jwt-signature-algorithm-none": "^3.1",
  6717. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  6718. },
  6719. "type": "symfony-bundle",
  6720. "autoload": {
  6721. "psr-4": {
  6722. "Symfony\\Bundle\\SecurityBundle\\": ""
  6723. },
  6724. "exclude-from-classmap": [
  6725. "/Tests/"
  6726. ]
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Fabien Potencier",
  6735. "email": "fabien@symfony.com"
  6736. },
  6737. {
  6738. "name": "Symfony Community",
  6739. "homepage": "https://symfony.com/contributors"
  6740. }
  6741. ],
  6742. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6743. "homepage": "https://symfony.com",
  6744. "support": {
  6745. "source": "https://github.com/symfony/security-bundle/tree/v6.4.0"
  6746. },
  6747. "funding": [
  6748. {
  6749. "url": "https://symfony.com/sponsor",
  6750. "type": "custom"
  6751. },
  6752. {
  6753. "url": "https://github.com/fabpot",
  6754. "type": "github"
  6755. },
  6756. {
  6757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6758. "type": "tidelift"
  6759. }
  6760. ],
  6761. "time": "2023-10-31T14:46:20+00:00"
  6762. },
  6763. {
  6764. "name": "symfony/security-core",
  6765. "version": "v6.4.0",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/symfony/security-core.git",
  6769. "reference": "9e24a7199744d944c03fc1448276dc57f6237a33"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/symfony/security-core/zipball/9e24a7199744d944c03fc1448276dc57f6237a33",
  6774. "reference": "9e24a7199744d944c03fc1448276dc57f6237a33",
  6775. "shasum": ""
  6776. },
  6777. "require": {
  6778. "php": ">=8.1",
  6779. "symfony/deprecation-contracts": "^2.5|^3",
  6780. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6781. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  6782. "symfony/service-contracts": "^2.5|^3"
  6783. },
  6784. "conflict": {
  6785. "symfony/event-dispatcher": "<5.4",
  6786. "symfony/http-foundation": "<5.4",
  6787. "symfony/ldap": "<5.4",
  6788. "symfony/security-guard": "<5.4",
  6789. "symfony/validator": "<5.4"
  6790. },
  6791. "require-dev": {
  6792. "psr/cache": "^1.0|^2.0|^3.0",
  6793. "psr/container": "^1.1|^2.0",
  6794. "psr/log": "^1|^2|^3",
  6795. "symfony/cache": "^5.4|^6.0|^7.0",
  6796. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6797. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6798. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6799. "symfony/ldap": "^5.4|^6.0|^7.0",
  6800. "symfony/string": "^5.4|^6.0|^7.0",
  6801. "symfony/translation": "^5.4|^6.0|^7.0",
  6802. "symfony/validator": "^6.4|^7.0"
  6803. },
  6804. "type": "library",
  6805. "autoload": {
  6806. "psr-4": {
  6807. "Symfony\\Component\\Security\\Core\\": ""
  6808. },
  6809. "exclude-from-classmap": [
  6810. "/Tests/"
  6811. ]
  6812. },
  6813. "notification-url": "https://packagist.org/downloads/",
  6814. "license": [
  6815. "MIT"
  6816. ],
  6817. "authors": [
  6818. {
  6819. "name": "Fabien Potencier",
  6820. "email": "fabien@symfony.com"
  6821. },
  6822. {
  6823. "name": "Symfony Community",
  6824. "homepage": "https://symfony.com/contributors"
  6825. }
  6826. ],
  6827. "description": "Symfony Security Component - Core Library",
  6828. "homepage": "https://symfony.com",
  6829. "support": {
  6830. "source": "https://github.com/symfony/security-core/tree/v6.4.0"
  6831. },
  6832. "funding": [
  6833. {
  6834. "url": "https://symfony.com/sponsor",
  6835. "type": "custom"
  6836. },
  6837. {
  6838. "url": "https://github.com/fabpot",
  6839. "type": "github"
  6840. },
  6841. {
  6842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6843. "type": "tidelift"
  6844. }
  6845. ],
  6846. "time": "2023-11-06T17:20:05+00:00"
  6847. },
  6848. {
  6849. "name": "symfony/security-csrf",
  6850. "version": "v6.4.0",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://github.com/symfony/security-csrf.git",
  6854. "reference": "b28413496ebfce2f98afbb990ad0ce0ba3586638"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b28413496ebfce2f98afbb990ad0ce0ba3586638",
  6859. "reference": "b28413496ebfce2f98afbb990ad0ce0ba3586638",
  6860. "shasum": ""
  6861. },
  6862. "require": {
  6863. "php": ">=8.1",
  6864. "symfony/security-core": "^5.4|^6.0|^7.0"
  6865. },
  6866. "conflict": {
  6867. "symfony/http-foundation": "<5.4"
  6868. },
  6869. "require-dev": {
  6870. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  6871. },
  6872. "type": "library",
  6873. "autoload": {
  6874. "psr-4": {
  6875. "Symfony\\Component\\Security\\Csrf\\": ""
  6876. },
  6877. "exclude-from-classmap": [
  6878. "/Tests/"
  6879. ]
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Fabien Potencier",
  6888. "email": "fabien@symfony.com"
  6889. },
  6890. {
  6891. "name": "Symfony Community",
  6892. "homepage": "https://symfony.com/contributors"
  6893. }
  6894. ],
  6895. "description": "Symfony Security Component - CSRF Library",
  6896. "homepage": "https://symfony.com",
  6897. "support": {
  6898. "source": "https://github.com/symfony/security-csrf/tree/v6.4.0"
  6899. },
  6900. "funding": [
  6901. {
  6902. "url": "https://symfony.com/sponsor",
  6903. "type": "custom"
  6904. },
  6905. {
  6906. "url": "https://github.com/fabpot",
  6907. "type": "github"
  6908. },
  6909. {
  6910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6911. "type": "tidelift"
  6912. }
  6913. ],
  6914. "time": "2023-08-25T16:27:31+00:00"
  6915. },
  6916. {
  6917. "name": "symfony/security-http",
  6918. "version": "v6.4.0",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/symfony/security-http.git",
  6922. "reference": "1b49ad8e9f2c3ceec011d67ac09e774e4107416b"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/symfony/security-http/zipball/1b49ad8e9f2c3ceec011d67ac09e774e4107416b",
  6927. "reference": "1b49ad8e9f2c3ceec011d67ac09e774e4107416b",
  6928. "shasum": ""
  6929. },
  6930. "require": {
  6931. "php": ">=8.1",
  6932. "symfony/deprecation-contracts": "^2.5|^3",
  6933. "symfony/http-foundation": "^6.2|^7.0",
  6934. "symfony/http-kernel": "^6.3|^7.0",
  6935. "symfony/polyfill-mbstring": "~1.0",
  6936. "symfony/property-access": "^5.4|^6.0|^7.0",
  6937. "symfony/security-core": "^6.4|^7.0",
  6938. "symfony/service-contracts": "^2.5|^3"
  6939. },
  6940. "conflict": {
  6941. "symfony/clock": "<6.3",
  6942. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6943. "symfony/http-client-contracts": "<3.0",
  6944. "symfony/security-bundle": "<5.4",
  6945. "symfony/security-csrf": "<5.4"
  6946. },
  6947. "require-dev": {
  6948. "psr/log": "^1|^2|^3",
  6949. "symfony/cache": "^5.4|^6.0|^7.0",
  6950. "symfony/clock": "^6.3|^7.0",
  6951. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6952. "symfony/http-client-contracts": "^3.0",
  6953. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  6954. "symfony/routing": "^5.4|^6.0|^7.0",
  6955. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6956. "symfony/translation": "^5.4|^6.0|^7.0",
  6957. "web-token/jwt-checker": "^3.1",
  6958. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6959. },
  6960. "type": "library",
  6961. "autoload": {
  6962. "psr-4": {
  6963. "Symfony\\Component\\Security\\Http\\": ""
  6964. },
  6965. "exclude-from-classmap": [
  6966. "/Tests/"
  6967. ]
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Fabien Potencier",
  6976. "email": "fabien@symfony.com"
  6977. },
  6978. {
  6979. "name": "Symfony Community",
  6980. "homepage": "https://symfony.com/contributors"
  6981. }
  6982. ],
  6983. "description": "Symfony Security Component - HTTP Integration",
  6984. "homepage": "https://symfony.com",
  6985. "support": {
  6986. "source": "https://github.com/symfony/security-http/tree/v6.4.0"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://symfony.com/sponsor",
  6991. "type": "custom"
  6992. },
  6993. {
  6994. "url": "https://github.com/fabpot",
  6995. "type": "github"
  6996. },
  6997. {
  6998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6999. "type": "tidelift"
  7000. }
  7001. ],
  7002. "time": "2023-11-24T21:18:21+00:00"
  7003. },
  7004. {
  7005. "name": "symfony/serializer",
  7006. "version": "v6.4.1",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/symfony/serializer.git",
  7010. "reference": "7ead272e62c9567df619ef3c49809bf934ddbc1f"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/symfony/serializer/zipball/7ead272e62c9567df619ef3c49809bf934ddbc1f",
  7015. "reference": "7ead272e62c9567df619ef3c49809bf934ddbc1f",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": ">=8.1",
  7020. "symfony/deprecation-contracts": "^2.5|^3",
  7021. "symfony/polyfill-ctype": "~1.8"
  7022. },
  7023. "conflict": {
  7024. "doctrine/annotations": "<1.12",
  7025. "phpdocumentor/reflection-docblock": "<3.2.2",
  7026. "phpdocumentor/type-resolver": "<1.4.0",
  7027. "symfony/dependency-injection": "<5.4",
  7028. "symfony/property-access": "<5.4",
  7029. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7030. "symfony/uid": "<5.4",
  7031. "symfony/validator": "<6.4",
  7032. "symfony/yaml": "<5.4"
  7033. },
  7034. "require-dev": {
  7035. "doctrine/annotations": "^1.12|^2",
  7036. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7037. "seld/jsonlint": "^1.10",
  7038. "symfony/cache": "^5.4|^6.0|^7.0",
  7039. "symfony/config": "^5.4|^6.0|^7.0",
  7040. "symfony/console": "^5.4|^6.0|^7.0",
  7041. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7042. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7043. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7044. "symfony/form": "^5.4|^6.0|^7.0",
  7045. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7046. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7047. "symfony/messenger": "^5.4|^6.0|^7.0",
  7048. "symfony/mime": "^5.4|^6.0|^7.0",
  7049. "symfony/property-access": "^5.4|^6.0|^7.0",
  7050. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  7051. "symfony/translation-contracts": "^2.5|^3",
  7052. "symfony/uid": "^5.4|^6.0|^7.0",
  7053. "symfony/validator": "^6.4|^7.0",
  7054. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7055. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  7056. "symfony/yaml": "^5.4|^6.0|^7.0"
  7057. },
  7058. "type": "library",
  7059. "autoload": {
  7060. "psr-4": {
  7061. "Symfony\\Component\\Serializer\\": ""
  7062. },
  7063. "exclude-from-classmap": [
  7064. "/Tests/"
  7065. ]
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "MIT"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Fabien Potencier",
  7074. "email": "fabien@symfony.com"
  7075. },
  7076. {
  7077. "name": "Symfony Community",
  7078. "homepage": "https://symfony.com/contributors"
  7079. }
  7080. ],
  7081. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7082. "homepage": "https://symfony.com",
  7083. "support": {
  7084. "source": "https://github.com/symfony/serializer/tree/v6.4.1"
  7085. },
  7086. "funding": [
  7087. {
  7088. "url": "https://symfony.com/sponsor",
  7089. "type": "custom"
  7090. },
  7091. {
  7092. "url": "https://github.com/fabpot",
  7093. "type": "github"
  7094. },
  7095. {
  7096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7097. "type": "tidelift"
  7098. }
  7099. ],
  7100. "time": "2023-12-01T14:54:37+00:00"
  7101. },
  7102. {
  7103. "name": "symfony/service-contracts",
  7104. "version": "v3.4.0",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/symfony/service-contracts.git",
  7108. "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
  7113. "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "php": ">=8.1",
  7118. "psr/container": "^2.0"
  7119. },
  7120. "conflict": {
  7121. "ext-psr": "<1.1|>=2"
  7122. },
  7123. "type": "library",
  7124. "extra": {
  7125. "branch-alias": {
  7126. "dev-main": "3.4-dev"
  7127. },
  7128. "thanks": {
  7129. "name": "symfony/contracts",
  7130. "url": "https://github.com/symfony/contracts"
  7131. }
  7132. },
  7133. "autoload": {
  7134. "psr-4": {
  7135. "Symfony\\Contracts\\Service\\": ""
  7136. },
  7137. "exclude-from-classmap": [
  7138. "/Test/"
  7139. ]
  7140. },
  7141. "notification-url": "https://packagist.org/downloads/",
  7142. "license": [
  7143. "MIT"
  7144. ],
  7145. "authors": [
  7146. {
  7147. "name": "Nicolas Grekas",
  7148. "email": "p@tchwork.com"
  7149. },
  7150. {
  7151. "name": "Symfony Community",
  7152. "homepage": "https://symfony.com/contributors"
  7153. }
  7154. ],
  7155. "description": "Generic abstractions related to writing services",
  7156. "homepage": "https://symfony.com",
  7157. "keywords": [
  7158. "abstractions",
  7159. "contracts",
  7160. "decoupling",
  7161. "interfaces",
  7162. "interoperability",
  7163. "standards"
  7164. ],
  7165. "support": {
  7166. "source": "https://github.com/symfony/service-contracts/tree/v3.4.0"
  7167. },
  7168. "funding": [
  7169. {
  7170. "url": "https://symfony.com/sponsor",
  7171. "type": "custom"
  7172. },
  7173. {
  7174. "url": "https://github.com/fabpot",
  7175. "type": "github"
  7176. },
  7177. {
  7178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7179. "type": "tidelift"
  7180. }
  7181. ],
  7182. "time": "2023-07-30T20:28:31+00:00"
  7183. },
  7184. {
  7185. "name": "symfony/stopwatch",
  7186. "version": "v6.4.0",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://github.com/symfony/stopwatch.git",
  7190. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7195. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7196. "shasum": ""
  7197. },
  7198. "require": {
  7199. "php": ">=8.1",
  7200. "symfony/service-contracts": "^2.5|^3"
  7201. },
  7202. "type": "library",
  7203. "autoload": {
  7204. "psr-4": {
  7205. "Symfony\\Component\\Stopwatch\\": ""
  7206. },
  7207. "exclude-from-classmap": [
  7208. "/Tests/"
  7209. ]
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "MIT"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Fabien Potencier",
  7218. "email": "fabien@symfony.com"
  7219. },
  7220. {
  7221. "name": "Symfony Community",
  7222. "homepage": "https://symfony.com/contributors"
  7223. }
  7224. ],
  7225. "description": "Provides a way to profile code",
  7226. "homepage": "https://symfony.com",
  7227. "support": {
  7228. "source": "https://github.com/symfony/stopwatch/tree/v6.4.0"
  7229. },
  7230. "funding": [
  7231. {
  7232. "url": "https://symfony.com/sponsor",
  7233. "type": "custom"
  7234. },
  7235. {
  7236. "url": "https://github.com/fabpot",
  7237. "type": "github"
  7238. },
  7239. {
  7240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7241. "type": "tidelift"
  7242. }
  7243. ],
  7244. "time": "2023-02-16T10:14:28+00:00"
  7245. },
  7246. {
  7247. "name": "symfony/string",
  7248. "version": "v6.4.0",
  7249. "source": {
  7250. "type": "git",
  7251. "url": "https://github.com/symfony/string.git",
  7252. "reference": "b45fcf399ea9c3af543a92edf7172ba21174d809"
  7253. },
  7254. "dist": {
  7255. "type": "zip",
  7256. "url": "https://api.github.com/repos/symfony/string/zipball/b45fcf399ea9c3af543a92edf7172ba21174d809",
  7257. "reference": "b45fcf399ea9c3af543a92edf7172ba21174d809",
  7258. "shasum": ""
  7259. },
  7260. "require": {
  7261. "php": ">=8.1",
  7262. "symfony/polyfill-ctype": "~1.8",
  7263. "symfony/polyfill-intl-grapheme": "~1.0",
  7264. "symfony/polyfill-intl-normalizer": "~1.0",
  7265. "symfony/polyfill-mbstring": "~1.0"
  7266. },
  7267. "conflict": {
  7268. "symfony/translation-contracts": "<2.5"
  7269. },
  7270. "require-dev": {
  7271. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7272. "symfony/http-client": "^5.4|^6.0|^7.0",
  7273. "symfony/intl": "^6.2|^7.0",
  7274. "symfony/translation-contracts": "^2.5|^3.0",
  7275. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7276. },
  7277. "type": "library",
  7278. "autoload": {
  7279. "files": [
  7280. "Resources/functions.php"
  7281. ],
  7282. "psr-4": {
  7283. "Symfony\\Component\\String\\": ""
  7284. },
  7285. "exclude-from-classmap": [
  7286. "/Tests/"
  7287. ]
  7288. },
  7289. "notification-url": "https://packagist.org/downloads/",
  7290. "license": [
  7291. "MIT"
  7292. ],
  7293. "authors": [
  7294. {
  7295. "name": "Nicolas Grekas",
  7296. "email": "p@tchwork.com"
  7297. },
  7298. {
  7299. "name": "Symfony Community",
  7300. "homepage": "https://symfony.com/contributors"
  7301. }
  7302. ],
  7303. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7304. "homepage": "https://symfony.com",
  7305. "keywords": [
  7306. "grapheme",
  7307. "i18n",
  7308. "string",
  7309. "unicode",
  7310. "utf-8",
  7311. "utf8"
  7312. ],
  7313. "support": {
  7314. "source": "https://github.com/symfony/string/tree/v6.4.0"
  7315. },
  7316. "funding": [
  7317. {
  7318. "url": "https://symfony.com/sponsor",
  7319. "type": "custom"
  7320. },
  7321. {
  7322. "url": "https://github.com/fabpot",
  7323. "type": "github"
  7324. },
  7325. {
  7326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7327. "type": "tidelift"
  7328. }
  7329. ],
  7330. "time": "2023-11-28T20:41:49+00:00"
  7331. },
  7332. {
  7333. "name": "symfony/translation",
  7334. "version": "v6.4.0",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/symfony/translation.git",
  7338. "reference": "b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/symfony/translation/zipball/b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37",
  7343. "reference": "b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37",
  7344. "shasum": ""
  7345. },
  7346. "require": {
  7347. "php": ">=8.1",
  7348. "symfony/deprecation-contracts": "^2.5|^3",
  7349. "symfony/polyfill-mbstring": "~1.0",
  7350. "symfony/translation-contracts": "^2.5|^3.0"
  7351. },
  7352. "conflict": {
  7353. "symfony/config": "<5.4",
  7354. "symfony/console": "<5.4",
  7355. "symfony/dependency-injection": "<5.4",
  7356. "symfony/http-client-contracts": "<2.5",
  7357. "symfony/http-kernel": "<5.4",
  7358. "symfony/service-contracts": "<2.5",
  7359. "symfony/twig-bundle": "<5.4",
  7360. "symfony/yaml": "<5.4"
  7361. },
  7362. "provide": {
  7363. "symfony/translation-implementation": "2.3|3.0"
  7364. },
  7365. "require-dev": {
  7366. "nikic/php-parser": "^4.13",
  7367. "psr/log": "^1|^2|^3",
  7368. "symfony/config": "^5.4|^6.0|^7.0",
  7369. "symfony/console": "^5.4|^6.0|^7.0",
  7370. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7371. "symfony/finder": "^5.4|^6.0|^7.0",
  7372. "symfony/http-client-contracts": "^2.5|^3.0",
  7373. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7374. "symfony/intl": "^5.4|^6.0|^7.0",
  7375. "symfony/polyfill-intl-icu": "^1.21",
  7376. "symfony/routing": "^5.4|^6.0|^7.0",
  7377. "symfony/service-contracts": "^2.5|^3",
  7378. "symfony/yaml": "^5.4|^6.0|^7.0"
  7379. },
  7380. "type": "library",
  7381. "autoload": {
  7382. "files": [
  7383. "Resources/functions.php"
  7384. ],
  7385. "psr-4": {
  7386. "Symfony\\Component\\Translation\\": ""
  7387. },
  7388. "exclude-from-classmap": [
  7389. "/Tests/"
  7390. ]
  7391. },
  7392. "notification-url": "https://packagist.org/downloads/",
  7393. "license": [
  7394. "MIT"
  7395. ],
  7396. "authors": [
  7397. {
  7398. "name": "Fabien Potencier",
  7399. "email": "fabien@symfony.com"
  7400. },
  7401. {
  7402. "name": "Symfony Community",
  7403. "homepage": "https://symfony.com/contributors"
  7404. }
  7405. ],
  7406. "description": "Provides tools to internationalize your application",
  7407. "homepage": "https://symfony.com",
  7408. "support": {
  7409. "source": "https://github.com/symfony/translation/tree/v6.4.0"
  7410. },
  7411. "funding": [
  7412. {
  7413. "url": "https://symfony.com/sponsor",
  7414. "type": "custom"
  7415. },
  7416. {
  7417. "url": "https://github.com/fabpot",
  7418. "type": "github"
  7419. },
  7420. {
  7421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7422. "type": "tidelift"
  7423. }
  7424. ],
  7425. "time": "2023-11-29T08:14:36+00:00"
  7426. },
  7427. {
  7428. "name": "symfony/translation-contracts",
  7429. "version": "v3.4.0",
  7430. "source": {
  7431. "type": "git",
  7432. "url": "https://github.com/symfony/translation-contracts.git",
  7433. "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5"
  7434. },
  7435. "dist": {
  7436. "type": "zip",
  7437. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5",
  7438. "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5",
  7439. "shasum": ""
  7440. },
  7441. "require": {
  7442. "php": ">=8.1"
  7443. },
  7444. "type": "library",
  7445. "extra": {
  7446. "branch-alias": {
  7447. "dev-main": "3.4-dev"
  7448. },
  7449. "thanks": {
  7450. "name": "symfony/contracts",
  7451. "url": "https://github.com/symfony/contracts"
  7452. }
  7453. },
  7454. "autoload": {
  7455. "psr-4": {
  7456. "Symfony\\Contracts\\Translation\\": ""
  7457. },
  7458. "exclude-from-classmap": [
  7459. "/Test/"
  7460. ]
  7461. },
  7462. "notification-url": "https://packagist.org/downloads/",
  7463. "license": [
  7464. "MIT"
  7465. ],
  7466. "authors": [
  7467. {
  7468. "name": "Nicolas Grekas",
  7469. "email": "p@tchwork.com"
  7470. },
  7471. {
  7472. "name": "Symfony Community",
  7473. "homepage": "https://symfony.com/contributors"
  7474. }
  7475. ],
  7476. "description": "Generic abstractions related to translation",
  7477. "homepage": "https://symfony.com",
  7478. "keywords": [
  7479. "abstractions",
  7480. "contracts",
  7481. "decoupling",
  7482. "interfaces",
  7483. "interoperability",
  7484. "standards"
  7485. ],
  7486. "support": {
  7487. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0"
  7488. },
  7489. "funding": [
  7490. {
  7491. "url": "https://symfony.com/sponsor",
  7492. "type": "custom"
  7493. },
  7494. {
  7495. "url": "https://github.com/fabpot",
  7496. "type": "github"
  7497. },
  7498. {
  7499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7500. "type": "tidelift"
  7501. }
  7502. ],
  7503. "time": "2023-07-25T15:08:44+00:00"
  7504. },
  7505. {
  7506. "name": "symfony/twig-bridge",
  7507. "version": "v6.4.0",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/symfony/twig-bridge.git",
  7511. "reference": "142bc3ad4a61d7eedf7cc21d8ef2bd8a8e7417bf"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/142bc3ad4a61d7eedf7cc21d8ef2bd8a8e7417bf",
  7516. "reference": "142bc3ad4a61d7eedf7cc21d8ef2bd8a8e7417bf",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "php": ">=8.1",
  7521. "symfony/deprecation-contracts": "^2.5|^3",
  7522. "symfony/translation-contracts": "^2.5|^3",
  7523. "twig/twig": "^2.13|^3.0.4"
  7524. },
  7525. "conflict": {
  7526. "phpdocumentor/reflection-docblock": "<3.2.2",
  7527. "phpdocumentor/type-resolver": "<1.4.0",
  7528. "symfony/console": "<5.4",
  7529. "symfony/form": "<6.3",
  7530. "symfony/http-foundation": "<5.4",
  7531. "symfony/http-kernel": "<6.4",
  7532. "symfony/mime": "<6.2",
  7533. "symfony/serializer": "<6.4",
  7534. "symfony/translation": "<5.4",
  7535. "symfony/workflow": "<5.4"
  7536. },
  7537. "require-dev": {
  7538. "egulias/email-validator": "^2.1.10|^3|^4",
  7539. "league/html-to-markdown": "^5.0",
  7540. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7541. "symfony/asset": "^5.4|^6.0|^7.0",
  7542. "symfony/asset-mapper": "^6.3|^7.0",
  7543. "symfony/console": "^5.4|^6.0|^7.0",
  7544. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7545. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7546. "symfony/finder": "^5.4|^6.0|^7.0",
  7547. "symfony/form": "^6.4|^7.0",
  7548. "symfony/html-sanitizer": "^6.1|^7.0",
  7549. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7550. "symfony/http-kernel": "^6.4|^7.0",
  7551. "symfony/intl": "^5.4|^6.0|^7.0",
  7552. "symfony/mime": "^6.2|^7.0",
  7553. "symfony/polyfill-intl-icu": "~1.0",
  7554. "symfony/property-info": "^5.4|^6.0|^7.0",
  7555. "symfony/routing": "^5.4|^6.0|^7.0",
  7556. "symfony/security-acl": "^2.8|^3.0",
  7557. "symfony/security-core": "^5.4|^6.0|^7.0",
  7558. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  7559. "symfony/security-http": "^5.4|^6.0|^7.0",
  7560. "symfony/serializer": "^6.4|^7.0",
  7561. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7562. "symfony/translation": "^6.1|^7.0",
  7563. "symfony/web-link": "^5.4|^6.0|^7.0",
  7564. "symfony/workflow": "^5.4|^6.0|^7.0",
  7565. "symfony/yaml": "^5.4|^6.0|^7.0",
  7566. "twig/cssinliner-extra": "^2.12|^3",
  7567. "twig/inky-extra": "^2.12|^3",
  7568. "twig/markdown-extra": "^2.12|^3"
  7569. },
  7570. "type": "symfony-bridge",
  7571. "autoload": {
  7572. "psr-4": {
  7573. "Symfony\\Bridge\\Twig\\": ""
  7574. },
  7575. "exclude-from-classmap": [
  7576. "/Tests/"
  7577. ]
  7578. },
  7579. "notification-url": "https://packagist.org/downloads/",
  7580. "license": [
  7581. "MIT"
  7582. ],
  7583. "authors": [
  7584. {
  7585. "name": "Fabien Potencier",
  7586. "email": "fabien@symfony.com"
  7587. },
  7588. {
  7589. "name": "Symfony Community",
  7590. "homepage": "https://symfony.com/contributors"
  7591. }
  7592. ],
  7593. "description": "Provides integration for Twig with various Symfony components",
  7594. "homepage": "https://symfony.com",
  7595. "support": {
  7596. "source": "https://github.com/symfony/twig-bridge/tree/v6.4.0"
  7597. },
  7598. "funding": [
  7599. {
  7600. "url": "https://symfony.com/sponsor",
  7601. "type": "custom"
  7602. },
  7603. {
  7604. "url": "https://github.com/fabpot",
  7605. "type": "github"
  7606. },
  7607. {
  7608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7609. "type": "tidelift"
  7610. }
  7611. ],
  7612. "time": "2023-11-25T08:25:13+00:00"
  7613. },
  7614. {
  7615. "name": "symfony/twig-bundle",
  7616. "version": "v6.4.0",
  7617. "source": {
  7618. "type": "git",
  7619. "url": "https://github.com/symfony/twig-bundle.git",
  7620. "reference": "35d84393e598dfb774e6a2bf49e5229a8a6dbe4c"
  7621. },
  7622. "dist": {
  7623. "type": "zip",
  7624. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/35d84393e598dfb774e6a2bf49e5229a8a6dbe4c",
  7625. "reference": "35d84393e598dfb774e6a2bf49e5229a8a6dbe4c",
  7626. "shasum": ""
  7627. },
  7628. "require": {
  7629. "composer-runtime-api": ">=2.1",
  7630. "php": ">=8.1",
  7631. "symfony/config": "^6.1|^7.0",
  7632. "symfony/dependency-injection": "^6.1|^7.0",
  7633. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7634. "symfony/http-kernel": "^6.2",
  7635. "symfony/twig-bridge": "^6.4",
  7636. "twig/twig": "^2.13|^3.0.4"
  7637. },
  7638. "conflict": {
  7639. "symfony/framework-bundle": "<5.4",
  7640. "symfony/translation": "<5.4"
  7641. },
  7642. "require-dev": {
  7643. "symfony/asset": "^5.4|^6.0|^7.0",
  7644. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7645. "symfony/finder": "^5.4|^6.0|^7.0",
  7646. "symfony/form": "^5.4|^6.0|^7.0",
  7647. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7648. "symfony/routing": "^5.4|^6.0|^7.0",
  7649. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7650. "symfony/translation": "^5.4|^6.0|^7.0",
  7651. "symfony/web-link": "^5.4|^6.0|^7.0",
  7652. "symfony/yaml": "^5.4|^6.0|^7.0"
  7653. },
  7654. "type": "symfony-bundle",
  7655. "autoload": {
  7656. "psr-4": {
  7657. "Symfony\\Bundle\\TwigBundle\\": ""
  7658. },
  7659. "exclude-from-classmap": [
  7660. "/Tests/"
  7661. ]
  7662. },
  7663. "notification-url": "https://packagist.org/downloads/",
  7664. "license": [
  7665. "MIT"
  7666. ],
  7667. "authors": [
  7668. {
  7669. "name": "Fabien Potencier",
  7670. "email": "fabien@symfony.com"
  7671. },
  7672. {
  7673. "name": "Symfony Community",
  7674. "homepage": "https://symfony.com/contributors"
  7675. }
  7676. ],
  7677. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7678. "homepage": "https://symfony.com",
  7679. "support": {
  7680. "source": "https://github.com/symfony/twig-bundle/tree/v6.4.0"
  7681. },
  7682. "funding": [
  7683. {
  7684. "url": "https://symfony.com/sponsor",
  7685. "type": "custom"
  7686. },
  7687. {
  7688. "url": "https://github.com/fabpot",
  7689. "type": "github"
  7690. },
  7691. {
  7692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7693. "type": "tidelift"
  7694. }
  7695. ],
  7696. "time": "2023-11-07T14:57:07+00:00"
  7697. },
  7698. {
  7699. "name": "symfony/validator",
  7700. "version": "v6.4.0",
  7701. "source": {
  7702. "type": "git",
  7703. "url": "https://github.com/symfony/validator.git",
  7704. "reference": "33e1f3bb76ef70e3170e12f878aefb9c69b0fc4c"
  7705. },
  7706. "dist": {
  7707. "type": "zip",
  7708. "url": "https://api.github.com/repos/symfony/validator/zipball/33e1f3bb76ef70e3170e12f878aefb9c69b0fc4c",
  7709. "reference": "33e1f3bb76ef70e3170e12f878aefb9c69b0fc4c",
  7710. "shasum": ""
  7711. },
  7712. "require": {
  7713. "php": ">=8.1",
  7714. "symfony/deprecation-contracts": "^2.5|^3",
  7715. "symfony/polyfill-ctype": "~1.8",
  7716. "symfony/polyfill-mbstring": "~1.0",
  7717. "symfony/polyfill-php83": "^1.27",
  7718. "symfony/translation-contracts": "^2.5|^3"
  7719. },
  7720. "conflict": {
  7721. "doctrine/annotations": "<1.13",
  7722. "doctrine/lexer": "<1.1",
  7723. "symfony/dependency-injection": "<5.4",
  7724. "symfony/expression-language": "<5.4",
  7725. "symfony/http-kernel": "<5.4",
  7726. "symfony/intl": "<5.4",
  7727. "symfony/property-info": "<5.4",
  7728. "symfony/translation": "<5.4",
  7729. "symfony/yaml": "<5.4"
  7730. },
  7731. "require-dev": {
  7732. "doctrine/annotations": "^1.13|^2",
  7733. "egulias/email-validator": "^2.1.10|^3|^4",
  7734. "symfony/cache": "^5.4|^6.0|^7.0",
  7735. "symfony/config": "^5.4|^6.0|^7.0",
  7736. "symfony/console": "^5.4|^6.0|^7.0",
  7737. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7738. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7739. "symfony/finder": "^5.4|^6.0|^7.0",
  7740. "symfony/http-client": "^5.4|^6.0|^7.0",
  7741. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7742. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7743. "symfony/intl": "^5.4|^6.0|^7.0",
  7744. "symfony/mime": "^5.4|^6.0|^7.0",
  7745. "symfony/property-access": "^5.4|^6.0|^7.0",
  7746. "symfony/property-info": "^5.4|^6.0|^7.0",
  7747. "symfony/translation": "^5.4|^6.0|^7.0",
  7748. "symfony/yaml": "^5.4|^6.0|^7.0"
  7749. },
  7750. "type": "library",
  7751. "autoload": {
  7752. "psr-4": {
  7753. "Symfony\\Component\\Validator\\": ""
  7754. },
  7755. "exclude-from-classmap": [
  7756. "/Tests/"
  7757. ]
  7758. },
  7759. "notification-url": "https://packagist.org/downloads/",
  7760. "license": [
  7761. "MIT"
  7762. ],
  7763. "authors": [
  7764. {
  7765. "name": "Fabien Potencier",
  7766. "email": "fabien@symfony.com"
  7767. },
  7768. {
  7769. "name": "Symfony Community",
  7770. "homepage": "https://symfony.com/contributors"
  7771. }
  7772. ],
  7773. "description": "Provides tools to validate values",
  7774. "homepage": "https://symfony.com",
  7775. "support": {
  7776. "source": "https://github.com/symfony/validator/tree/v6.4.0"
  7777. },
  7778. "funding": [
  7779. {
  7780. "url": "https://symfony.com/sponsor",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://github.com/fabpot",
  7785. "type": "github"
  7786. },
  7787. {
  7788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7789. "type": "tidelift"
  7790. }
  7791. ],
  7792. "time": "2023-11-29T07:47:42+00:00"
  7793. },
  7794. {
  7795. "name": "symfony/var-dumper",
  7796. "version": "v6.4.0",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/symfony/var-dumper.git",
  7800. "reference": "c40f7d17e91d8b407582ed51a2bbf83c52c367f6"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c40f7d17e91d8b407582ed51a2bbf83c52c367f6",
  7805. "reference": "c40f7d17e91d8b407582ed51a2bbf83c52c367f6",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=8.1",
  7810. "symfony/deprecation-contracts": "^2.5|^3",
  7811. "symfony/polyfill-mbstring": "~1.0"
  7812. },
  7813. "conflict": {
  7814. "symfony/console": "<5.4"
  7815. },
  7816. "require-dev": {
  7817. "ext-iconv": "*",
  7818. "symfony/console": "^5.4|^6.0|^7.0",
  7819. "symfony/error-handler": "^6.3|^7.0",
  7820. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7821. "symfony/process": "^5.4|^6.0|^7.0",
  7822. "symfony/uid": "^5.4|^6.0|^7.0",
  7823. "twig/twig": "^2.13|^3.0.4"
  7824. },
  7825. "bin": [
  7826. "Resources/bin/var-dump-server"
  7827. ],
  7828. "type": "library",
  7829. "autoload": {
  7830. "files": [
  7831. "Resources/functions/dump.php"
  7832. ],
  7833. "psr-4": {
  7834. "Symfony\\Component\\VarDumper\\": ""
  7835. },
  7836. "exclude-from-classmap": [
  7837. "/Tests/"
  7838. ]
  7839. },
  7840. "notification-url": "https://packagist.org/downloads/",
  7841. "license": [
  7842. "MIT"
  7843. ],
  7844. "authors": [
  7845. {
  7846. "name": "Nicolas Grekas",
  7847. "email": "p@tchwork.com"
  7848. },
  7849. {
  7850. "name": "Symfony Community",
  7851. "homepage": "https://symfony.com/contributors"
  7852. }
  7853. ],
  7854. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7855. "homepage": "https://symfony.com",
  7856. "keywords": [
  7857. "debug",
  7858. "dump"
  7859. ],
  7860. "support": {
  7861. "source": "https://github.com/symfony/var-dumper/tree/v6.4.0"
  7862. },
  7863. "funding": [
  7864. {
  7865. "url": "https://symfony.com/sponsor",
  7866. "type": "custom"
  7867. },
  7868. {
  7869. "url": "https://github.com/fabpot",
  7870. "type": "github"
  7871. },
  7872. {
  7873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7874. "type": "tidelift"
  7875. }
  7876. ],
  7877. "time": "2023-11-09T08:28:32+00:00"
  7878. },
  7879. {
  7880. "name": "symfony/var-exporter",
  7881. "version": "v6.4.1",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/symfony/var-exporter.git",
  7885. "reference": "2d08ca6b9cc704dce525615d1e6d1788734f36d9"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/2d08ca6b9cc704dce525615d1e6d1788734f36d9",
  7890. "reference": "2d08ca6b9cc704dce525615d1e6d1788734f36d9",
  7891. "shasum": ""
  7892. },
  7893. "require": {
  7894. "php": ">=8.1",
  7895. "symfony/deprecation-contracts": "^2.5|^3"
  7896. },
  7897. "require-dev": {
  7898. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7899. },
  7900. "type": "library",
  7901. "autoload": {
  7902. "psr-4": {
  7903. "Symfony\\Component\\VarExporter\\": ""
  7904. },
  7905. "exclude-from-classmap": [
  7906. "/Tests/"
  7907. ]
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "MIT"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Nicolas Grekas",
  7916. "email": "p@tchwork.com"
  7917. },
  7918. {
  7919. "name": "Symfony Community",
  7920. "homepage": "https://symfony.com/contributors"
  7921. }
  7922. ],
  7923. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7924. "homepage": "https://symfony.com",
  7925. "keywords": [
  7926. "clone",
  7927. "construct",
  7928. "export",
  7929. "hydrate",
  7930. "instantiate",
  7931. "lazy-loading",
  7932. "proxy",
  7933. "serialize"
  7934. ],
  7935. "support": {
  7936. "source": "https://github.com/symfony/var-exporter/tree/v6.4.1"
  7937. },
  7938. "funding": [
  7939. {
  7940. "url": "https://symfony.com/sponsor",
  7941. "type": "custom"
  7942. },
  7943. {
  7944. "url": "https://github.com/fabpot",
  7945. "type": "github"
  7946. },
  7947. {
  7948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7949. "type": "tidelift"
  7950. }
  7951. ],
  7952. "time": "2023-11-30T10:32:10+00:00"
  7953. },
  7954. {
  7955. "name": "symfony/web-link",
  7956. "version": "v6.4.0",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/symfony/web-link.git",
  7960. "reference": "c7e30b9b90c4a9b3c94cc5697c7b8046a6655a51"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/symfony/web-link/zipball/c7e30b9b90c4a9b3c94cc5697c7b8046a6655a51",
  7965. "reference": "c7e30b9b90c4a9b3c94cc5697c7b8046a6655a51",
  7966. "shasum": ""
  7967. },
  7968. "require": {
  7969. "php": ">=8.1",
  7970. "psr/link": "^1.1|^2.0"
  7971. },
  7972. "conflict": {
  7973. "symfony/http-kernel": "<5.4"
  7974. },
  7975. "provide": {
  7976. "psr/link-implementation": "1.0|2.0"
  7977. },
  7978. "require-dev": {
  7979. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  7980. },
  7981. "type": "library",
  7982. "autoload": {
  7983. "psr-4": {
  7984. "Symfony\\Component\\WebLink\\": ""
  7985. },
  7986. "exclude-from-classmap": [
  7987. "/Tests/"
  7988. ]
  7989. },
  7990. "notification-url": "https://packagist.org/downloads/",
  7991. "license": [
  7992. "MIT"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Kévin Dunglas",
  7997. "email": "dunglas@gmail.com"
  7998. },
  7999. {
  8000. "name": "Symfony Community",
  8001. "homepage": "https://symfony.com/contributors"
  8002. }
  8003. ],
  8004. "description": "Manages links between resources",
  8005. "homepage": "https://symfony.com",
  8006. "keywords": [
  8007. "dns-prefetch",
  8008. "http",
  8009. "http2",
  8010. "link",
  8011. "performance",
  8012. "prefetch",
  8013. "preload",
  8014. "prerender",
  8015. "psr13",
  8016. "push"
  8017. ],
  8018. "support": {
  8019. "source": "https://github.com/symfony/web-link/tree/v6.4.0"
  8020. },
  8021. "funding": [
  8022. {
  8023. "url": "https://symfony.com/sponsor",
  8024. "type": "custom"
  8025. },
  8026. {
  8027. "url": "https://github.com/fabpot",
  8028. "type": "github"
  8029. },
  8030. {
  8031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8032. "type": "tidelift"
  8033. }
  8034. ],
  8035. "time": "2023-09-25T12:52:38+00:00"
  8036. },
  8037. {
  8038. "name": "symfony/webpack-encore-bundle",
  8039. "version": "v1.17.2",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8043. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/471ebbc03072dad6e31840dc317bc634a32785f5",
  8048. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "php": ">=7.1.3",
  8053. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  8054. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8055. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  8056. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  8057. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8058. "symfony/polyfill-php80": "^1.25.0",
  8059. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  8060. },
  8061. "require-dev": {
  8062. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8063. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  8064. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  8065. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  8066. },
  8067. "type": "symfony-bundle",
  8068. "extra": {
  8069. "thanks": {
  8070. "name": "symfony/webpack-encore",
  8071. "url": "https://github.com/symfony/webpack-encore"
  8072. }
  8073. },
  8074. "autoload": {
  8075. "psr-4": {
  8076. "Symfony\\WebpackEncoreBundle\\": "src"
  8077. }
  8078. },
  8079. "notification-url": "https://packagist.org/downloads/",
  8080. "license": [
  8081. "MIT"
  8082. ],
  8083. "authors": [
  8084. {
  8085. "name": "Symfony Community",
  8086. "homepage": "https://symfony.com/contributors"
  8087. }
  8088. ],
  8089. "description": "Integration with your Symfony app & Webpack Encore!",
  8090. "support": {
  8091. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8092. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.17.2"
  8093. },
  8094. "funding": [
  8095. {
  8096. "url": "https://symfony.com/sponsor",
  8097. "type": "custom"
  8098. },
  8099. {
  8100. "url": "https://github.com/fabpot",
  8101. "type": "github"
  8102. },
  8103. {
  8104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8105. "type": "tidelift"
  8106. }
  8107. ],
  8108. "time": "2023-09-26T14:36:28+00:00"
  8109. },
  8110. {
  8111. "name": "symfony/yaml",
  8112. "version": "v6.4.0",
  8113. "source": {
  8114. "type": "git",
  8115. "url": "https://github.com/symfony/yaml.git",
  8116. "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587"
  8117. },
  8118. "dist": {
  8119. "type": "zip",
  8120. "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587",
  8121. "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587",
  8122. "shasum": ""
  8123. },
  8124. "require": {
  8125. "php": ">=8.1",
  8126. "symfony/deprecation-contracts": "^2.5|^3",
  8127. "symfony/polyfill-ctype": "^1.8"
  8128. },
  8129. "conflict": {
  8130. "symfony/console": "<5.4"
  8131. },
  8132. "require-dev": {
  8133. "symfony/console": "^5.4|^6.0|^7.0"
  8134. },
  8135. "bin": [
  8136. "Resources/bin/yaml-lint"
  8137. ],
  8138. "type": "library",
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Symfony\\Component\\Yaml\\": ""
  8142. },
  8143. "exclude-from-classmap": [
  8144. "/Tests/"
  8145. ]
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Fabien Potencier",
  8154. "email": "fabien@symfony.com"
  8155. },
  8156. {
  8157. "name": "Symfony Community",
  8158. "homepage": "https://symfony.com/contributors"
  8159. }
  8160. ],
  8161. "description": "Loads and dumps YAML files",
  8162. "homepage": "https://symfony.com",
  8163. "support": {
  8164. "source": "https://github.com/symfony/yaml/tree/v6.4.0"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://symfony.com/sponsor",
  8169. "type": "custom"
  8170. },
  8171. {
  8172. "url": "https://github.com/fabpot",
  8173. "type": "github"
  8174. },
  8175. {
  8176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8177. "type": "tidelift"
  8178. }
  8179. ],
  8180. "time": "2023-11-06T11:00:25+00:00"
  8181. },
  8182. {
  8183. "name": "twig/extra-bundle",
  8184. "version": "v3.8.0",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8188. "reference": "32807183753de0388c8e59f7ac2d13bb47311140"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/32807183753de0388c8e59f7ac2d13bb47311140",
  8193. "reference": "32807183753de0388c8e59f7ac2d13bb47311140",
  8194. "shasum": ""
  8195. },
  8196. "require": {
  8197. "php": ">=7.2.5",
  8198. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  8199. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  8200. "twig/twig": "^3.0"
  8201. },
  8202. "require-dev": {
  8203. "league/commonmark": "^1.0|^2.0",
  8204. "symfony/phpunit-bridge": "^6.4|^7.0",
  8205. "twig/cache-extra": "^3.0",
  8206. "twig/cssinliner-extra": "^2.12|^3.0",
  8207. "twig/html-extra": "^2.12|^3.0",
  8208. "twig/inky-extra": "^2.12|^3.0",
  8209. "twig/intl-extra": "^2.12|^3.0",
  8210. "twig/markdown-extra": "^2.12|^3.0",
  8211. "twig/string-extra": "^2.12|^3.0"
  8212. },
  8213. "type": "symfony-bundle",
  8214. "autoload": {
  8215. "psr-4": {
  8216. "Twig\\Extra\\TwigExtraBundle\\": ""
  8217. },
  8218. "exclude-from-classmap": [
  8219. "/Tests/"
  8220. ]
  8221. },
  8222. "notification-url": "https://packagist.org/downloads/",
  8223. "license": [
  8224. "MIT"
  8225. ],
  8226. "authors": [
  8227. {
  8228. "name": "Fabien Potencier",
  8229. "email": "fabien@symfony.com",
  8230. "homepage": "http://fabien.potencier.org",
  8231. "role": "Lead Developer"
  8232. }
  8233. ],
  8234. "description": "A Symfony bundle for extra Twig extensions",
  8235. "homepage": "https://twig.symfony.com",
  8236. "keywords": [
  8237. "bundle",
  8238. "extra",
  8239. "twig"
  8240. ],
  8241. "support": {
  8242. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.8.0"
  8243. },
  8244. "funding": [
  8245. {
  8246. "url": "https://github.com/fabpot",
  8247. "type": "github"
  8248. },
  8249. {
  8250. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8251. "type": "tidelift"
  8252. }
  8253. ],
  8254. "time": "2023-11-21T14:02:01+00:00"
  8255. },
  8256. {
  8257. "name": "twig/markdown-extra",
  8258. "version": "v3.8.0",
  8259. "source": {
  8260. "type": "git",
  8261. "url": "https://github.com/twigphp/markdown-extra.git",
  8262. "reference": "b6e4954ab60030233df5d293886b5404558daac8"
  8263. },
  8264. "dist": {
  8265. "type": "zip",
  8266. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/b6e4954ab60030233df5d293886b5404558daac8",
  8267. "reference": "b6e4954ab60030233df5d293886b5404558daac8",
  8268. "shasum": ""
  8269. },
  8270. "require": {
  8271. "php": ">=7.2.5",
  8272. "twig/twig": "^3.0"
  8273. },
  8274. "require-dev": {
  8275. "erusev/parsedown": "^1.7",
  8276. "league/commonmark": "^1.0|^2.0",
  8277. "league/html-to-markdown": "^4.8|^5.0",
  8278. "michelf/php-markdown": "^1.8|^2.0",
  8279. "symfony/phpunit-bridge": "^6.4|^7.0"
  8280. },
  8281. "type": "library",
  8282. "autoload": {
  8283. "psr-4": {
  8284. "Twig\\Extra\\Markdown\\": ""
  8285. },
  8286. "exclude-from-classmap": [
  8287. "/Tests/"
  8288. ]
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "MIT"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Fabien Potencier",
  8297. "email": "fabien@symfony.com",
  8298. "homepage": "http://fabien.potencier.org",
  8299. "role": "Lead Developer"
  8300. }
  8301. ],
  8302. "description": "A Twig extension for Markdown",
  8303. "homepage": "https://twig.symfony.com",
  8304. "keywords": [
  8305. "html",
  8306. "markdown",
  8307. "twig"
  8308. ],
  8309. "support": {
  8310. "source": "https://github.com/twigphp/markdown-extra/tree/v3.8.0"
  8311. },
  8312. "funding": [
  8313. {
  8314. "url": "https://github.com/fabpot",
  8315. "type": "github"
  8316. },
  8317. {
  8318. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8319. "type": "tidelift"
  8320. }
  8321. ],
  8322. "time": "2023-11-21T14:02:01+00:00"
  8323. },
  8324. {
  8325. "name": "twig/twig",
  8326. "version": "v3.8.0",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/twigphp/Twig.git",
  8330. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8335. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8336. "shasum": ""
  8337. },
  8338. "require": {
  8339. "php": ">=7.2.5",
  8340. "symfony/polyfill-ctype": "^1.8",
  8341. "symfony/polyfill-mbstring": "^1.3",
  8342. "symfony/polyfill-php80": "^1.22"
  8343. },
  8344. "require-dev": {
  8345. "psr/container": "^1.0|^2.0",
  8346. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8347. },
  8348. "type": "library",
  8349. "autoload": {
  8350. "psr-4": {
  8351. "Twig\\": "src/"
  8352. }
  8353. },
  8354. "notification-url": "https://packagist.org/downloads/",
  8355. "license": [
  8356. "BSD-3-Clause"
  8357. ],
  8358. "authors": [
  8359. {
  8360. "name": "Fabien Potencier",
  8361. "email": "fabien@symfony.com",
  8362. "homepage": "http://fabien.potencier.org",
  8363. "role": "Lead Developer"
  8364. },
  8365. {
  8366. "name": "Twig Team",
  8367. "role": "Contributors"
  8368. },
  8369. {
  8370. "name": "Armin Ronacher",
  8371. "email": "armin.ronacher@active-4.com",
  8372. "role": "Project Founder"
  8373. }
  8374. ],
  8375. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8376. "homepage": "https://twig.symfony.com",
  8377. "keywords": [
  8378. "templating"
  8379. ],
  8380. "support": {
  8381. "issues": "https://github.com/twigphp/Twig/issues",
  8382. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8383. },
  8384. "funding": [
  8385. {
  8386. "url": "https://github.com/fabpot",
  8387. "type": "github"
  8388. },
  8389. {
  8390. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8391. "type": "tidelift"
  8392. }
  8393. ],
  8394. "time": "2023-11-21T18:54:41+00:00"
  8395. },
  8396. {
  8397. "name": "webmozart/assert",
  8398. "version": "1.11.0",
  8399. "source": {
  8400. "type": "git",
  8401. "url": "https://github.com/webmozarts/assert.git",
  8402. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8403. },
  8404. "dist": {
  8405. "type": "zip",
  8406. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8407. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8408. "shasum": ""
  8409. },
  8410. "require": {
  8411. "ext-ctype": "*",
  8412. "php": "^7.2 || ^8.0"
  8413. },
  8414. "conflict": {
  8415. "phpstan/phpstan": "<0.12.20",
  8416. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8417. },
  8418. "require-dev": {
  8419. "phpunit/phpunit": "^8.5.13"
  8420. },
  8421. "type": "library",
  8422. "extra": {
  8423. "branch-alias": {
  8424. "dev-master": "1.10-dev"
  8425. }
  8426. },
  8427. "autoload": {
  8428. "psr-4": {
  8429. "Webmozart\\Assert\\": "src/"
  8430. }
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Bernhard Schussek",
  8439. "email": "bschussek@gmail.com"
  8440. }
  8441. ],
  8442. "description": "Assertions to validate method input/output with nice error messages.",
  8443. "keywords": [
  8444. "assert",
  8445. "check",
  8446. "validate"
  8447. ],
  8448. "support": {
  8449. "issues": "https://github.com/webmozarts/assert/issues",
  8450. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8451. },
  8452. "time": "2022-06-03T18:03:27+00:00"
  8453. }
  8454. ],
  8455. "packages-dev": [
  8456. {
  8457. "name": "myclabs/deep-copy",
  8458. "version": "1.11.1",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/myclabs/DeepCopy.git",
  8462. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8467. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8468. "shasum": ""
  8469. },
  8470. "require": {
  8471. "php": "^7.1 || ^8.0"
  8472. },
  8473. "conflict": {
  8474. "doctrine/collections": "<1.6.8",
  8475. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8476. },
  8477. "require-dev": {
  8478. "doctrine/collections": "^1.6.8",
  8479. "doctrine/common": "^2.13.3 || ^3.2.2",
  8480. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8481. },
  8482. "type": "library",
  8483. "autoload": {
  8484. "files": [
  8485. "src/DeepCopy/deep_copy.php"
  8486. ],
  8487. "psr-4": {
  8488. "DeepCopy\\": "src/DeepCopy/"
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "MIT"
  8494. ],
  8495. "description": "Create deep copies (clones) of your objects",
  8496. "keywords": [
  8497. "clone",
  8498. "copy",
  8499. "duplicate",
  8500. "object",
  8501. "object graph"
  8502. ],
  8503. "support": {
  8504. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8505. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8506. },
  8507. "funding": [
  8508. {
  8509. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8510. "type": "tidelift"
  8511. }
  8512. ],
  8513. "time": "2023-03-08T13:26:56+00:00"
  8514. },
  8515. {
  8516. "name": "nikic/php-parser",
  8517. "version": "v4.18.0",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/nikic/PHP-Parser.git",
  8521. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  8526. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "ext-tokenizer": "*",
  8531. "php": ">=7.0"
  8532. },
  8533. "require-dev": {
  8534. "ircmaxell/php-yacc": "^0.0.7",
  8535. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8536. },
  8537. "bin": [
  8538. "bin/php-parse"
  8539. ],
  8540. "type": "library",
  8541. "extra": {
  8542. "branch-alias": {
  8543. "dev-master": "4.9-dev"
  8544. }
  8545. },
  8546. "autoload": {
  8547. "psr-4": {
  8548. "PhpParser\\": "lib/PhpParser"
  8549. }
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "BSD-3-Clause"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Nikita Popov"
  8558. }
  8559. ],
  8560. "description": "A PHP parser written in PHP",
  8561. "keywords": [
  8562. "parser",
  8563. "php"
  8564. ],
  8565. "support": {
  8566. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8567. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  8568. },
  8569. "time": "2023-12-10T21:03:43+00:00"
  8570. },
  8571. {
  8572. "name": "phar-io/manifest",
  8573. "version": "2.0.3",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/phar-io/manifest.git",
  8577. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8582. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "ext-dom": "*",
  8587. "ext-phar": "*",
  8588. "ext-xmlwriter": "*",
  8589. "phar-io/version": "^3.0.1",
  8590. "php": "^7.2 || ^8.0"
  8591. },
  8592. "type": "library",
  8593. "extra": {
  8594. "branch-alias": {
  8595. "dev-master": "2.0.x-dev"
  8596. }
  8597. },
  8598. "autoload": {
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Arne Blankerts",
  8610. "email": "arne@blankerts.de",
  8611. "role": "Developer"
  8612. },
  8613. {
  8614. "name": "Sebastian Heuer",
  8615. "email": "sebastian@phpeople.de",
  8616. "role": "Developer"
  8617. },
  8618. {
  8619. "name": "Sebastian Bergmann",
  8620. "email": "sebastian@phpunit.de",
  8621. "role": "Developer"
  8622. }
  8623. ],
  8624. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8625. "support": {
  8626. "issues": "https://github.com/phar-io/manifest/issues",
  8627. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8628. },
  8629. "time": "2021-07-20T11:28:43+00:00"
  8630. },
  8631. {
  8632. "name": "phar-io/version",
  8633. "version": "3.2.1",
  8634. "source": {
  8635. "type": "git",
  8636. "url": "https://github.com/phar-io/version.git",
  8637. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8638. },
  8639. "dist": {
  8640. "type": "zip",
  8641. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8642. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8643. "shasum": ""
  8644. },
  8645. "require": {
  8646. "php": "^7.2 || ^8.0"
  8647. },
  8648. "type": "library",
  8649. "autoload": {
  8650. "classmap": [
  8651. "src/"
  8652. ]
  8653. },
  8654. "notification-url": "https://packagist.org/downloads/",
  8655. "license": [
  8656. "BSD-3-Clause"
  8657. ],
  8658. "authors": [
  8659. {
  8660. "name": "Arne Blankerts",
  8661. "email": "arne@blankerts.de",
  8662. "role": "Developer"
  8663. },
  8664. {
  8665. "name": "Sebastian Heuer",
  8666. "email": "sebastian@phpeople.de",
  8667. "role": "Developer"
  8668. },
  8669. {
  8670. "name": "Sebastian Bergmann",
  8671. "email": "sebastian@phpunit.de",
  8672. "role": "Developer"
  8673. }
  8674. ],
  8675. "description": "Library for handling version information and constraints",
  8676. "support": {
  8677. "issues": "https://github.com/phar-io/version/issues",
  8678. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8679. },
  8680. "time": "2022-02-21T01:04:05+00:00"
  8681. },
  8682. {
  8683. "name": "phpunit/php-code-coverage",
  8684. "version": "9.2.30",
  8685. "source": {
  8686. "type": "git",
  8687. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8688. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  8689. },
  8690. "dist": {
  8691. "type": "zip",
  8692. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8693. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8694. "shasum": ""
  8695. },
  8696. "require": {
  8697. "ext-dom": "*",
  8698. "ext-libxml": "*",
  8699. "ext-xmlwriter": "*",
  8700. "nikic/php-parser": "^4.18 || ^5.0",
  8701. "php": ">=7.3",
  8702. "phpunit/php-file-iterator": "^3.0.3",
  8703. "phpunit/php-text-template": "^2.0.2",
  8704. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8705. "sebastian/complexity": "^2.0",
  8706. "sebastian/environment": "^5.1.2",
  8707. "sebastian/lines-of-code": "^1.0.3",
  8708. "sebastian/version": "^3.0.1",
  8709. "theseer/tokenizer": "^1.2.0"
  8710. },
  8711. "require-dev": {
  8712. "phpunit/phpunit": "^9.3"
  8713. },
  8714. "suggest": {
  8715. "ext-pcov": "PHP extension that provides line coverage",
  8716. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8717. },
  8718. "type": "library",
  8719. "extra": {
  8720. "branch-alias": {
  8721. "dev-master": "9.2-dev"
  8722. }
  8723. },
  8724. "autoload": {
  8725. "classmap": [
  8726. "src/"
  8727. ]
  8728. },
  8729. "notification-url": "https://packagist.org/downloads/",
  8730. "license": [
  8731. "BSD-3-Clause"
  8732. ],
  8733. "authors": [
  8734. {
  8735. "name": "Sebastian Bergmann",
  8736. "email": "sebastian@phpunit.de",
  8737. "role": "lead"
  8738. }
  8739. ],
  8740. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8741. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8742. "keywords": [
  8743. "coverage",
  8744. "testing",
  8745. "xunit"
  8746. ],
  8747. "support": {
  8748. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8749. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8750. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  8751. },
  8752. "funding": [
  8753. {
  8754. "url": "https://github.com/sebastianbergmann",
  8755. "type": "github"
  8756. }
  8757. ],
  8758. "time": "2023-12-22T06:47:57+00:00"
  8759. },
  8760. {
  8761. "name": "phpunit/php-file-iterator",
  8762. "version": "3.0.6",
  8763. "source": {
  8764. "type": "git",
  8765. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8766. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8767. },
  8768. "dist": {
  8769. "type": "zip",
  8770. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8771. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8772. "shasum": ""
  8773. },
  8774. "require": {
  8775. "php": ">=7.3"
  8776. },
  8777. "require-dev": {
  8778. "phpunit/phpunit": "^9.3"
  8779. },
  8780. "type": "library",
  8781. "extra": {
  8782. "branch-alias": {
  8783. "dev-master": "3.0-dev"
  8784. }
  8785. },
  8786. "autoload": {
  8787. "classmap": [
  8788. "src/"
  8789. ]
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "BSD-3-Clause"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Sebastian Bergmann",
  8798. "email": "sebastian@phpunit.de",
  8799. "role": "lead"
  8800. }
  8801. ],
  8802. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8803. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8804. "keywords": [
  8805. "filesystem",
  8806. "iterator"
  8807. ],
  8808. "support": {
  8809. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8810. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8811. },
  8812. "funding": [
  8813. {
  8814. "url": "https://github.com/sebastianbergmann",
  8815. "type": "github"
  8816. }
  8817. ],
  8818. "time": "2021-12-02T12:48:52+00:00"
  8819. },
  8820. {
  8821. "name": "phpunit/php-invoker",
  8822. "version": "3.1.1",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8826. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8831. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8832. "shasum": ""
  8833. },
  8834. "require": {
  8835. "php": ">=7.3"
  8836. },
  8837. "require-dev": {
  8838. "ext-pcntl": "*",
  8839. "phpunit/phpunit": "^9.3"
  8840. },
  8841. "suggest": {
  8842. "ext-pcntl": "*"
  8843. },
  8844. "type": "library",
  8845. "extra": {
  8846. "branch-alias": {
  8847. "dev-master": "3.1-dev"
  8848. }
  8849. },
  8850. "autoload": {
  8851. "classmap": [
  8852. "src/"
  8853. ]
  8854. },
  8855. "notification-url": "https://packagist.org/downloads/",
  8856. "license": [
  8857. "BSD-3-Clause"
  8858. ],
  8859. "authors": [
  8860. {
  8861. "name": "Sebastian Bergmann",
  8862. "email": "sebastian@phpunit.de",
  8863. "role": "lead"
  8864. }
  8865. ],
  8866. "description": "Invoke callables with a timeout",
  8867. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8868. "keywords": [
  8869. "process"
  8870. ],
  8871. "support": {
  8872. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8873. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8874. },
  8875. "funding": [
  8876. {
  8877. "url": "https://github.com/sebastianbergmann",
  8878. "type": "github"
  8879. }
  8880. ],
  8881. "time": "2020-09-28T05:58:55+00:00"
  8882. },
  8883. {
  8884. "name": "phpunit/php-text-template",
  8885. "version": "2.0.4",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8889. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8894. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "php": ">=7.3"
  8899. },
  8900. "require-dev": {
  8901. "phpunit/phpunit": "^9.3"
  8902. },
  8903. "type": "library",
  8904. "extra": {
  8905. "branch-alias": {
  8906. "dev-master": "2.0-dev"
  8907. }
  8908. },
  8909. "autoload": {
  8910. "classmap": [
  8911. "src/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "BSD-3-Clause"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Sebastian Bergmann",
  8921. "email": "sebastian@phpunit.de",
  8922. "role": "lead"
  8923. }
  8924. ],
  8925. "description": "Simple template engine.",
  8926. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8927. "keywords": [
  8928. "template"
  8929. ],
  8930. "support": {
  8931. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8932. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8933. },
  8934. "funding": [
  8935. {
  8936. "url": "https://github.com/sebastianbergmann",
  8937. "type": "github"
  8938. }
  8939. ],
  8940. "time": "2020-10-26T05:33:50+00:00"
  8941. },
  8942. {
  8943. "name": "phpunit/php-timer",
  8944. "version": "5.0.3",
  8945. "source": {
  8946. "type": "git",
  8947. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8948. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8949. },
  8950. "dist": {
  8951. "type": "zip",
  8952. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8953. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8954. "shasum": ""
  8955. },
  8956. "require": {
  8957. "php": ">=7.3"
  8958. },
  8959. "require-dev": {
  8960. "phpunit/phpunit": "^9.3"
  8961. },
  8962. "type": "library",
  8963. "extra": {
  8964. "branch-alias": {
  8965. "dev-master": "5.0-dev"
  8966. }
  8967. },
  8968. "autoload": {
  8969. "classmap": [
  8970. "src/"
  8971. ]
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "BSD-3-Clause"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Sebastian Bergmann",
  8980. "email": "sebastian@phpunit.de",
  8981. "role": "lead"
  8982. }
  8983. ],
  8984. "description": "Utility class for timing",
  8985. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8986. "keywords": [
  8987. "timer"
  8988. ],
  8989. "support": {
  8990. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8991. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8992. },
  8993. "funding": [
  8994. {
  8995. "url": "https://github.com/sebastianbergmann",
  8996. "type": "github"
  8997. }
  8998. ],
  8999. "time": "2020-10-26T13:16:10+00:00"
  9000. },
  9001. {
  9002. "name": "phpunit/phpunit",
  9003. "version": "9.6.15",
  9004. "source": {
  9005. "type": "git",
  9006. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9007. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9008. },
  9009. "dist": {
  9010. "type": "zip",
  9011. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9012. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9013. "shasum": ""
  9014. },
  9015. "require": {
  9016. "doctrine/instantiator": "^1.3.1 || ^2",
  9017. "ext-dom": "*",
  9018. "ext-json": "*",
  9019. "ext-libxml": "*",
  9020. "ext-mbstring": "*",
  9021. "ext-xml": "*",
  9022. "ext-xmlwriter": "*",
  9023. "myclabs/deep-copy": "^1.10.1",
  9024. "phar-io/manifest": "^2.0.3",
  9025. "phar-io/version": "^3.0.2",
  9026. "php": ">=7.3",
  9027. "phpunit/php-code-coverage": "^9.2.28",
  9028. "phpunit/php-file-iterator": "^3.0.5",
  9029. "phpunit/php-invoker": "^3.1.1",
  9030. "phpunit/php-text-template": "^2.0.3",
  9031. "phpunit/php-timer": "^5.0.2",
  9032. "sebastian/cli-parser": "^1.0.1",
  9033. "sebastian/code-unit": "^1.0.6",
  9034. "sebastian/comparator": "^4.0.8",
  9035. "sebastian/diff": "^4.0.3",
  9036. "sebastian/environment": "^5.1.3",
  9037. "sebastian/exporter": "^4.0.5",
  9038. "sebastian/global-state": "^5.0.1",
  9039. "sebastian/object-enumerator": "^4.0.3",
  9040. "sebastian/resource-operations": "^3.0.3",
  9041. "sebastian/type": "^3.2",
  9042. "sebastian/version": "^3.0.2"
  9043. },
  9044. "suggest": {
  9045. "ext-soap": "To be able to generate mocks based on WSDL files",
  9046. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9047. },
  9048. "bin": [
  9049. "phpunit"
  9050. ],
  9051. "type": "library",
  9052. "extra": {
  9053. "branch-alias": {
  9054. "dev-master": "9.6-dev"
  9055. }
  9056. },
  9057. "autoload": {
  9058. "files": [
  9059. "src/Framework/Assert/Functions.php"
  9060. ],
  9061. "classmap": [
  9062. "src/"
  9063. ]
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "BSD-3-Clause"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Sebastian Bergmann",
  9072. "email": "sebastian@phpunit.de",
  9073. "role": "lead"
  9074. }
  9075. ],
  9076. "description": "The PHP Unit Testing framework.",
  9077. "homepage": "https://phpunit.de/",
  9078. "keywords": [
  9079. "phpunit",
  9080. "testing",
  9081. "xunit"
  9082. ],
  9083. "support": {
  9084. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9085. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9086. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://phpunit.de/sponsors.html",
  9091. "type": "custom"
  9092. },
  9093. {
  9094. "url": "https://github.com/sebastianbergmann",
  9095. "type": "github"
  9096. },
  9097. {
  9098. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9099. "type": "tidelift"
  9100. }
  9101. ],
  9102. "time": "2023-12-01T16:55:19+00:00"
  9103. },
  9104. {
  9105. "name": "sebastian/cli-parser",
  9106. "version": "1.0.1",
  9107. "source": {
  9108. "type": "git",
  9109. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9110. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9111. },
  9112. "dist": {
  9113. "type": "zip",
  9114. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9115. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9116. "shasum": ""
  9117. },
  9118. "require": {
  9119. "php": ">=7.3"
  9120. },
  9121. "require-dev": {
  9122. "phpunit/phpunit": "^9.3"
  9123. },
  9124. "type": "library",
  9125. "extra": {
  9126. "branch-alias": {
  9127. "dev-master": "1.0-dev"
  9128. }
  9129. },
  9130. "autoload": {
  9131. "classmap": [
  9132. "src/"
  9133. ]
  9134. },
  9135. "notification-url": "https://packagist.org/downloads/",
  9136. "license": [
  9137. "BSD-3-Clause"
  9138. ],
  9139. "authors": [
  9140. {
  9141. "name": "Sebastian Bergmann",
  9142. "email": "sebastian@phpunit.de",
  9143. "role": "lead"
  9144. }
  9145. ],
  9146. "description": "Library for parsing CLI options",
  9147. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9148. "support": {
  9149. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9150. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9151. },
  9152. "funding": [
  9153. {
  9154. "url": "https://github.com/sebastianbergmann",
  9155. "type": "github"
  9156. }
  9157. ],
  9158. "time": "2020-09-28T06:08:49+00:00"
  9159. },
  9160. {
  9161. "name": "sebastian/code-unit",
  9162. "version": "1.0.8",
  9163. "source": {
  9164. "type": "git",
  9165. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9166. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9167. },
  9168. "dist": {
  9169. "type": "zip",
  9170. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9171. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9172. "shasum": ""
  9173. },
  9174. "require": {
  9175. "php": ">=7.3"
  9176. },
  9177. "require-dev": {
  9178. "phpunit/phpunit": "^9.3"
  9179. },
  9180. "type": "library",
  9181. "extra": {
  9182. "branch-alias": {
  9183. "dev-master": "1.0-dev"
  9184. }
  9185. },
  9186. "autoload": {
  9187. "classmap": [
  9188. "src/"
  9189. ]
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "BSD-3-Clause"
  9194. ],
  9195. "authors": [
  9196. {
  9197. "name": "Sebastian Bergmann",
  9198. "email": "sebastian@phpunit.de",
  9199. "role": "lead"
  9200. }
  9201. ],
  9202. "description": "Collection of value objects that represent the PHP code units",
  9203. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9204. "support": {
  9205. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9206. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9207. },
  9208. "funding": [
  9209. {
  9210. "url": "https://github.com/sebastianbergmann",
  9211. "type": "github"
  9212. }
  9213. ],
  9214. "time": "2020-10-26T13:08:54+00:00"
  9215. },
  9216. {
  9217. "name": "sebastian/code-unit-reverse-lookup",
  9218. "version": "2.0.3",
  9219. "source": {
  9220. "type": "git",
  9221. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9222. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9223. },
  9224. "dist": {
  9225. "type": "zip",
  9226. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9227. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9228. "shasum": ""
  9229. },
  9230. "require": {
  9231. "php": ">=7.3"
  9232. },
  9233. "require-dev": {
  9234. "phpunit/phpunit": "^9.3"
  9235. },
  9236. "type": "library",
  9237. "extra": {
  9238. "branch-alias": {
  9239. "dev-master": "2.0-dev"
  9240. }
  9241. },
  9242. "autoload": {
  9243. "classmap": [
  9244. "src/"
  9245. ]
  9246. },
  9247. "notification-url": "https://packagist.org/downloads/",
  9248. "license": [
  9249. "BSD-3-Clause"
  9250. ],
  9251. "authors": [
  9252. {
  9253. "name": "Sebastian Bergmann",
  9254. "email": "sebastian@phpunit.de"
  9255. }
  9256. ],
  9257. "description": "Looks up which function or method a line of code belongs to",
  9258. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9259. "support": {
  9260. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9261. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9262. },
  9263. "funding": [
  9264. {
  9265. "url": "https://github.com/sebastianbergmann",
  9266. "type": "github"
  9267. }
  9268. ],
  9269. "time": "2020-09-28T05:30:19+00:00"
  9270. },
  9271. {
  9272. "name": "sebastian/comparator",
  9273. "version": "4.0.8",
  9274. "source": {
  9275. "type": "git",
  9276. "url": "https://github.com/sebastianbergmann/comparator.git",
  9277. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9278. },
  9279. "dist": {
  9280. "type": "zip",
  9281. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9282. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9283. "shasum": ""
  9284. },
  9285. "require": {
  9286. "php": ">=7.3",
  9287. "sebastian/diff": "^4.0",
  9288. "sebastian/exporter": "^4.0"
  9289. },
  9290. "require-dev": {
  9291. "phpunit/phpunit": "^9.3"
  9292. },
  9293. "type": "library",
  9294. "extra": {
  9295. "branch-alias": {
  9296. "dev-master": "4.0-dev"
  9297. }
  9298. },
  9299. "autoload": {
  9300. "classmap": [
  9301. "src/"
  9302. ]
  9303. },
  9304. "notification-url": "https://packagist.org/downloads/",
  9305. "license": [
  9306. "BSD-3-Clause"
  9307. ],
  9308. "authors": [
  9309. {
  9310. "name": "Sebastian Bergmann",
  9311. "email": "sebastian@phpunit.de"
  9312. },
  9313. {
  9314. "name": "Jeff Welch",
  9315. "email": "whatthejeff@gmail.com"
  9316. },
  9317. {
  9318. "name": "Volker Dusch",
  9319. "email": "github@wallbash.com"
  9320. },
  9321. {
  9322. "name": "Bernhard Schussek",
  9323. "email": "bschussek@2bepublished.at"
  9324. }
  9325. ],
  9326. "description": "Provides the functionality to compare PHP values for equality",
  9327. "homepage": "https://github.com/sebastianbergmann/comparator",
  9328. "keywords": [
  9329. "comparator",
  9330. "compare",
  9331. "equality"
  9332. ],
  9333. "support": {
  9334. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9335. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9336. },
  9337. "funding": [
  9338. {
  9339. "url": "https://github.com/sebastianbergmann",
  9340. "type": "github"
  9341. }
  9342. ],
  9343. "time": "2022-09-14T12:41:17+00:00"
  9344. },
  9345. {
  9346. "name": "sebastian/complexity",
  9347. "version": "2.0.3",
  9348. "source": {
  9349. "type": "git",
  9350. "url": "https://github.com/sebastianbergmann/complexity.git",
  9351. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9352. },
  9353. "dist": {
  9354. "type": "zip",
  9355. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9356. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9357. "shasum": ""
  9358. },
  9359. "require": {
  9360. "nikic/php-parser": "^4.18 || ^5.0",
  9361. "php": ">=7.3"
  9362. },
  9363. "require-dev": {
  9364. "phpunit/phpunit": "^9.3"
  9365. },
  9366. "type": "library",
  9367. "extra": {
  9368. "branch-alias": {
  9369. "dev-master": "2.0-dev"
  9370. }
  9371. },
  9372. "autoload": {
  9373. "classmap": [
  9374. "src/"
  9375. ]
  9376. },
  9377. "notification-url": "https://packagist.org/downloads/",
  9378. "license": [
  9379. "BSD-3-Clause"
  9380. ],
  9381. "authors": [
  9382. {
  9383. "name": "Sebastian Bergmann",
  9384. "email": "sebastian@phpunit.de",
  9385. "role": "lead"
  9386. }
  9387. ],
  9388. "description": "Library for calculating the complexity of PHP code units",
  9389. "homepage": "https://github.com/sebastianbergmann/complexity",
  9390. "support": {
  9391. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9392. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://github.com/sebastianbergmann",
  9397. "type": "github"
  9398. }
  9399. ],
  9400. "time": "2023-12-22T06:19:30+00:00"
  9401. },
  9402. {
  9403. "name": "sebastian/diff",
  9404. "version": "4.0.5",
  9405. "source": {
  9406. "type": "git",
  9407. "url": "https://github.com/sebastianbergmann/diff.git",
  9408. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9409. },
  9410. "dist": {
  9411. "type": "zip",
  9412. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9413. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9414. "shasum": ""
  9415. },
  9416. "require": {
  9417. "php": ">=7.3"
  9418. },
  9419. "require-dev": {
  9420. "phpunit/phpunit": "^9.3",
  9421. "symfony/process": "^4.2 || ^5"
  9422. },
  9423. "type": "library",
  9424. "extra": {
  9425. "branch-alias": {
  9426. "dev-master": "4.0-dev"
  9427. }
  9428. },
  9429. "autoload": {
  9430. "classmap": [
  9431. "src/"
  9432. ]
  9433. },
  9434. "notification-url": "https://packagist.org/downloads/",
  9435. "license": [
  9436. "BSD-3-Clause"
  9437. ],
  9438. "authors": [
  9439. {
  9440. "name": "Sebastian Bergmann",
  9441. "email": "sebastian@phpunit.de"
  9442. },
  9443. {
  9444. "name": "Kore Nordmann",
  9445. "email": "mail@kore-nordmann.de"
  9446. }
  9447. ],
  9448. "description": "Diff implementation",
  9449. "homepage": "https://github.com/sebastianbergmann/diff",
  9450. "keywords": [
  9451. "diff",
  9452. "udiff",
  9453. "unidiff",
  9454. "unified diff"
  9455. ],
  9456. "support": {
  9457. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9458. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9459. },
  9460. "funding": [
  9461. {
  9462. "url": "https://github.com/sebastianbergmann",
  9463. "type": "github"
  9464. }
  9465. ],
  9466. "time": "2023-05-07T05:35:17+00:00"
  9467. },
  9468. {
  9469. "name": "sebastian/environment",
  9470. "version": "5.1.5",
  9471. "source": {
  9472. "type": "git",
  9473. "url": "https://github.com/sebastianbergmann/environment.git",
  9474. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9475. },
  9476. "dist": {
  9477. "type": "zip",
  9478. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9479. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9480. "shasum": ""
  9481. },
  9482. "require": {
  9483. "php": ">=7.3"
  9484. },
  9485. "require-dev": {
  9486. "phpunit/phpunit": "^9.3"
  9487. },
  9488. "suggest": {
  9489. "ext-posix": "*"
  9490. },
  9491. "type": "library",
  9492. "extra": {
  9493. "branch-alias": {
  9494. "dev-master": "5.1-dev"
  9495. }
  9496. },
  9497. "autoload": {
  9498. "classmap": [
  9499. "src/"
  9500. ]
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "BSD-3-Clause"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "Sebastian Bergmann",
  9509. "email": "sebastian@phpunit.de"
  9510. }
  9511. ],
  9512. "description": "Provides functionality to handle HHVM/PHP environments",
  9513. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9514. "keywords": [
  9515. "Xdebug",
  9516. "environment",
  9517. "hhvm"
  9518. ],
  9519. "support": {
  9520. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9521. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9522. },
  9523. "funding": [
  9524. {
  9525. "url": "https://github.com/sebastianbergmann",
  9526. "type": "github"
  9527. }
  9528. ],
  9529. "time": "2023-02-03T06:03:51+00:00"
  9530. },
  9531. {
  9532. "name": "sebastian/exporter",
  9533. "version": "4.0.5",
  9534. "source": {
  9535. "type": "git",
  9536. "url": "https://github.com/sebastianbergmann/exporter.git",
  9537. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9538. },
  9539. "dist": {
  9540. "type": "zip",
  9541. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9542. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9543. "shasum": ""
  9544. },
  9545. "require": {
  9546. "php": ">=7.3",
  9547. "sebastian/recursion-context": "^4.0"
  9548. },
  9549. "require-dev": {
  9550. "ext-mbstring": "*",
  9551. "phpunit/phpunit": "^9.3"
  9552. },
  9553. "type": "library",
  9554. "extra": {
  9555. "branch-alias": {
  9556. "dev-master": "4.0-dev"
  9557. }
  9558. },
  9559. "autoload": {
  9560. "classmap": [
  9561. "src/"
  9562. ]
  9563. },
  9564. "notification-url": "https://packagist.org/downloads/",
  9565. "license": [
  9566. "BSD-3-Clause"
  9567. ],
  9568. "authors": [
  9569. {
  9570. "name": "Sebastian Bergmann",
  9571. "email": "sebastian@phpunit.de"
  9572. },
  9573. {
  9574. "name": "Jeff Welch",
  9575. "email": "whatthejeff@gmail.com"
  9576. },
  9577. {
  9578. "name": "Volker Dusch",
  9579. "email": "github@wallbash.com"
  9580. },
  9581. {
  9582. "name": "Adam Harvey",
  9583. "email": "aharvey@php.net"
  9584. },
  9585. {
  9586. "name": "Bernhard Schussek",
  9587. "email": "bschussek@gmail.com"
  9588. }
  9589. ],
  9590. "description": "Provides the functionality to export PHP variables for visualization",
  9591. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9592. "keywords": [
  9593. "export",
  9594. "exporter"
  9595. ],
  9596. "support": {
  9597. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9598. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9599. },
  9600. "funding": [
  9601. {
  9602. "url": "https://github.com/sebastianbergmann",
  9603. "type": "github"
  9604. }
  9605. ],
  9606. "time": "2022-09-14T06:03:37+00:00"
  9607. },
  9608. {
  9609. "name": "sebastian/global-state",
  9610. "version": "5.0.6",
  9611. "source": {
  9612. "type": "git",
  9613. "url": "https://github.com/sebastianbergmann/global-state.git",
  9614. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  9615. },
  9616. "dist": {
  9617. "type": "zip",
  9618. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  9619. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  9620. "shasum": ""
  9621. },
  9622. "require": {
  9623. "php": ">=7.3",
  9624. "sebastian/object-reflector": "^2.0",
  9625. "sebastian/recursion-context": "^4.0"
  9626. },
  9627. "require-dev": {
  9628. "ext-dom": "*",
  9629. "phpunit/phpunit": "^9.3"
  9630. },
  9631. "suggest": {
  9632. "ext-uopz": "*"
  9633. },
  9634. "type": "library",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-master": "5.0-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "classmap": [
  9642. "src/"
  9643. ]
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Sebastian Bergmann",
  9652. "email": "sebastian@phpunit.de"
  9653. }
  9654. ],
  9655. "description": "Snapshotting of global state",
  9656. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9657. "keywords": [
  9658. "global state"
  9659. ],
  9660. "support": {
  9661. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9662. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  9663. },
  9664. "funding": [
  9665. {
  9666. "url": "https://github.com/sebastianbergmann",
  9667. "type": "github"
  9668. }
  9669. ],
  9670. "time": "2023-08-02T09:26:13+00:00"
  9671. },
  9672. {
  9673. "name": "sebastian/lines-of-code",
  9674. "version": "1.0.4",
  9675. "source": {
  9676. "type": "git",
  9677. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9678. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9679. },
  9680. "dist": {
  9681. "type": "zip",
  9682. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9683. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9684. "shasum": ""
  9685. },
  9686. "require": {
  9687. "nikic/php-parser": "^4.18 || ^5.0",
  9688. "php": ">=7.3"
  9689. },
  9690. "require-dev": {
  9691. "phpunit/phpunit": "^9.3"
  9692. },
  9693. "type": "library",
  9694. "extra": {
  9695. "branch-alias": {
  9696. "dev-master": "1.0-dev"
  9697. }
  9698. },
  9699. "autoload": {
  9700. "classmap": [
  9701. "src/"
  9702. ]
  9703. },
  9704. "notification-url": "https://packagist.org/downloads/",
  9705. "license": [
  9706. "BSD-3-Clause"
  9707. ],
  9708. "authors": [
  9709. {
  9710. "name": "Sebastian Bergmann",
  9711. "email": "sebastian@phpunit.de",
  9712. "role": "lead"
  9713. }
  9714. ],
  9715. "description": "Library for counting the lines of code in PHP source code",
  9716. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9717. "support": {
  9718. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9719. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9720. },
  9721. "funding": [
  9722. {
  9723. "url": "https://github.com/sebastianbergmann",
  9724. "type": "github"
  9725. }
  9726. ],
  9727. "time": "2023-12-22T06:20:34+00:00"
  9728. },
  9729. {
  9730. "name": "sebastian/object-enumerator",
  9731. "version": "4.0.4",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9735. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9740. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "php": ">=7.3",
  9745. "sebastian/object-reflector": "^2.0",
  9746. "sebastian/recursion-context": "^4.0"
  9747. },
  9748. "require-dev": {
  9749. "phpunit/phpunit": "^9.3"
  9750. },
  9751. "type": "library",
  9752. "extra": {
  9753. "branch-alias": {
  9754. "dev-master": "4.0-dev"
  9755. }
  9756. },
  9757. "autoload": {
  9758. "classmap": [
  9759. "src/"
  9760. ]
  9761. },
  9762. "notification-url": "https://packagist.org/downloads/",
  9763. "license": [
  9764. "BSD-3-Clause"
  9765. ],
  9766. "authors": [
  9767. {
  9768. "name": "Sebastian Bergmann",
  9769. "email": "sebastian@phpunit.de"
  9770. }
  9771. ],
  9772. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9773. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9774. "support": {
  9775. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9776. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9777. },
  9778. "funding": [
  9779. {
  9780. "url": "https://github.com/sebastianbergmann",
  9781. "type": "github"
  9782. }
  9783. ],
  9784. "time": "2020-10-26T13:12:34+00:00"
  9785. },
  9786. {
  9787. "name": "sebastian/object-reflector",
  9788. "version": "2.0.4",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9792. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9797. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "php": ">=7.3"
  9802. },
  9803. "require-dev": {
  9804. "phpunit/phpunit": "^9.3"
  9805. },
  9806. "type": "library",
  9807. "extra": {
  9808. "branch-alias": {
  9809. "dev-master": "2.0-dev"
  9810. }
  9811. },
  9812. "autoload": {
  9813. "classmap": [
  9814. "src/"
  9815. ]
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "BSD-3-Clause"
  9820. ],
  9821. "authors": [
  9822. {
  9823. "name": "Sebastian Bergmann",
  9824. "email": "sebastian@phpunit.de"
  9825. }
  9826. ],
  9827. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9828. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9829. "support": {
  9830. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9831. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9832. },
  9833. "funding": [
  9834. {
  9835. "url": "https://github.com/sebastianbergmann",
  9836. "type": "github"
  9837. }
  9838. ],
  9839. "time": "2020-10-26T13:14:26+00:00"
  9840. },
  9841. {
  9842. "name": "sebastian/recursion-context",
  9843. "version": "4.0.5",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9847. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9852. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "php": ">=7.3"
  9857. },
  9858. "require-dev": {
  9859. "phpunit/phpunit": "^9.3"
  9860. },
  9861. "type": "library",
  9862. "extra": {
  9863. "branch-alias": {
  9864. "dev-master": "4.0-dev"
  9865. }
  9866. },
  9867. "autoload": {
  9868. "classmap": [
  9869. "src/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "BSD-3-Clause"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Sebastian Bergmann",
  9879. "email": "sebastian@phpunit.de"
  9880. },
  9881. {
  9882. "name": "Jeff Welch",
  9883. "email": "whatthejeff@gmail.com"
  9884. },
  9885. {
  9886. "name": "Adam Harvey",
  9887. "email": "aharvey@php.net"
  9888. }
  9889. ],
  9890. "description": "Provides functionality to recursively process PHP variables",
  9891. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9892. "support": {
  9893. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9894. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9895. },
  9896. "funding": [
  9897. {
  9898. "url": "https://github.com/sebastianbergmann",
  9899. "type": "github"
  9900. }
  9901. ],
  9902. "time": "2023-02-03T06:07:39+00:00"
  9903. },
  9904. {
  9905. "name": "sebastian/resource-operations",
  9906. "version": "3.0.3",
  9907. "source": {
  9908. "type": "git",
  9909. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9910. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9911. },
  9912. "dist": {
  9913. "type": "zip",
  9914. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9915. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9916. "shasum": ""
  9917. },
  9918. "require": {
  9919. "php": ">=7.3"
  9920. },
  9921. "require-dev": {
  9922. "phpunit/phpunit": "^9.0"
  9923. },
  9924. "type": "library",
  9925. "extra": {
  9926. "branch-alias": {
  9927. "dev-master": "3.0-dev"
  9928. }
  9929. },
  9930. "autoload": {
  9931. "classmap": [
  9932. "src/"
  9933. ]
  9934. },
  9935. "notification-url": "https://packagist.org/downloads/",
  9936. "license": [
  9937. "BSD-3-Clause"
  9938. ],
  9939. "authors": [
  9940. {
  9941. "name": "Sebastian Bergmann",
  9942. "email": "sebastian@phpunit.de"
  9943. }
  9944. ],
  9945. "description": "Provides a list of PHP built-in functions that operate on resources",
  9946. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9947. "support": {
  9948. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9949. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9950. },
  9951. "funding": [
  9952. {
  9953. "url": "https://github.com/sebastianbergmann",
  9954. "type": "github"
  9955. }
  9956. ],
  9957. "time": "2020-09-28T06:45:17+00:00"
  9958. },
  9959. {
  9960. "name": "sebastian/type",
  9961. "version": "3.2.1",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/sebastianbergmann/type.git",
  9965. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9970. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "php": ">=7.3"
  9975. },
  9976. "require-dev": {
  9977. "phpunit/phpunit": "^9.5"
  9978. },
  9979. "type": "library",
  9980. "extra": {
  9981. "branch-alias": {
  9982. "dev-master": "3.2-dev"
  9983. }
  9984. },
  9985. "autoload": {
  9986. "classmap": [
  9987. "src/"
  9988. ]
  9989. },
  9990. "notification-url": "https://packagist.org/downloads/",
  9991. "license": [
  9992. "BSD-3-Clause"
  9993. ],
  9994. "authors": [
  9995. {
  9996. "name": "Sebastian Bergmann",
  9997. "email": "sebastian@phpunit.de",
  9998. "role": "lead"
  9999. }
  10000. ],
  10001. "description": "Collection of value objects that represent the types of the PHP type system",
  10002. "homepage": "https://github.com/sebastianbergmann/type",
  10003. "support": {
  10004. "issues": "https://github.com/sebastianbergmann/type/issues",
  10005. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10006. },
  10007. "funding": [
  10008. {
  10009. "url": "https://github.com/sebastianbergmann",
  10010. "type": "github"
  10011. }
  10012. ],
  10013. "time": "2023-02-03T06:13:03+00:00"
  10014. },
  10015. {
  10016. "name": "sebastian/version",
  10017. "version": "3.0.2",
  10018. "source": {
  10019. "type": "git",
  10020. "url": "https://github.com/sebastianbergmann/version.git",
  10021. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10022. },
  10023. "dist": {
  10024. "type": "zip",
  10025. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10026. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10027. "shasum": ""
  10028. },
  10029. "require": {
  10030. "php": ">=7.3"
  10031. },
  10032. "type": "library",
  10033. "extra": {
  10034. "branch-alias": {
  10035. "dev-master": "3.0-dev"
  10036. }
  10037. },
  10038. "autoload": {
  10039. "classmap": [
  10040. "src/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "BSD-3-Clause"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Sebastian Bergmann",
  10050. "email": "sebastian@phpunit.de",
  10051. "role": "lead"
  10052. }
  10053. ],
  10054. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10055. "homepage": "https://github.com/sebastianbergmann/version",
  10056. "support": {
  10057. "issues": "https://github.com/sebastianbergmann/version/issues",
  10058. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10059. },
  10060. "funding": [
  10061. {
  10062. "url": "https://github.com/sebastianbergmann",
  10063. "type": "github"
  10064. }
  10065. ],
  10066. "time": "2020-09-28T06:39:44+00:00"
  10067. },
  10068. {
  10069. "name": "symfony/browser-kit",
  10070. "version": "v6.4.0",
  10071. "source": {
  10072. "type": "git",
  10073. "url": "https://github.com/symfony/browser-kit.git",
  10074. "reference": "a3bb210e001580ec75e1d02b27fae3452e6bf502"
  10075. },
  10076. "dist": {
  10077. "type": "zip",
  10078. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a3bb210e001580ec75e1d02b27fae3452e6bf502",
  10079. "reference": "a3bb210e001580ec75e1d02b27fae3452e6bf502",
  10080. "shasum": ""
  10081. },
  10082. "require": {
  10083. "php": ">=8.1",
  10084. "symfony/dom-crawler": "^5.4|^6.0|^7.0"
  10085. },
  10086. "require-dev": {
  10087. "symfony/css-selector": "^5.4|^6.0|^7.0",
  10088. "symfony/http-client": "^5.4|^6.0|^7.0",
  10089. "symfony/mime": "^5.4|^6.0|^7.0",
  10090. "symfony/process": "^5.4|^6.0|^7.0"
  10091. },
  10092. "type": "library",
  10093. "autoload": {
  10094. "psr-4": {
  10095. "Symfony\\Component\\BrowserKit\\": ""
  10096. },
  10097. "exclude-from-classmap": [
  10098. "/Tests/"
  10099. ]
  10100. },
  10101. "notification-url": "https://packagist.org/downloads/",
  10102. "license": [
  10103. "MIT"
  10104. ],
  10105. "authors": [
  10106. {
  10107. "name": "Fabien Potencier",
  10108. "email": "fabien@symfony.com"
  10109. },
  10110. {
  10111. "name": "Symfony Community",
  10112. "homepage": "https://symfony.com/contributors"
  10113. }
  10114. ],
  10115. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10116. "homepage": "https://symfony.com",
  10117. "support": {
  10118. "source": "https://github.com/symfony/browser-kit/tree/v6.4.0"
  10119. },
  10120. "funding": [
  10121. {
  10122. "url": "https://symfony.com/sponsor",
  10123. "type": "custom"
  10124. },
  10125. {
  10126. "url": "https://github.com/fabpot",
  10127. "type": "github"
  10128. },
  10129. {
  10130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10131. "type": "tidelift"
  10132. }
  10133. ],
  10134. "time": "2023-10-31T08:18:17+00:00"
  10135. },
  10136. {
  10137. "name": "symfony/css-selector",
  10138. "version": "v6.4.0",
  10139. "source": {
  10140. "type": "git",
  10141. "url": "https://github.com/symfony/css-selector.git",
  10142. "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4"
  10143. },
  10144. "dist": {
  10145. "type": "zip",
  10146. "url": "https://api.github.com/repos/symfony/css-selector/zipball/d036c6c0d0b09e24a14a35f8292146a658f986e4",
  10147. "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4",
  10148. "shasum": ""
  10149. },
  10150. "require": {
  10151. "php": ">=8.1"
  10152. },
  10153. "type": "library",
  10154. "autoload": {
  10155. "psr-4": {
  10156. "Symfony\\Component\\CssSelector\\": ""
  10157. },
  10158. "exclude-from-classmap": [
  10159. "/Tests/"
  10160. ]
  10161. },
  10162. "notification-url": "https://packagist.org/downloads/",
  10163. "license": [
  10164. "MIT"
  10165. ],
  10166. "authors": [
  10167. {
  10168. "name": "Fabien Potencier",
  10169. "email": "fabien@symfony.com"
  10170. },
  10171. {
  10172. "name": "Jean-François Simon",
  10173. "email": "jeanfrancois.simon@sensiolabs.com"
  10174. },
  10175. {
  10176. "name": "Symfony Community",
  10177. "homepage": "https://symfony.com/contributors"
  10178. }
  10179. ],
  10180. "description": "Converts CSS selectors to XPath expressions",
  10181. "homepage": "https://symfony.com",
  10182. "support": {
  10183. "source": "https://github.com/symfony/css-selector/tree/v6.4.0"
  10184. },
  10185. "funding": [
  10186. {
  10187. "url": "https://symfony.com/sponsor",
  10188. "type": "custom"
  10189. },
  10190. {
  10191. "url": "https://github.com/fabpot",
  10192. "type": "github"
  10193. },
  10194. {
  10195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10196. "type": "tidelift"
  10197. }
  10198. ],
  10199. "time": "2023-10-31T08:40:20+00:00"
  10200. },
  10201. {
  10202. "name": "symfony/debug-bundle",
  10203. "version": "v6.4.0",
  10204. "source": {
  10205. "type": "git",
  10206. "url": "https://github.com/symfony/debug-bundle.git",
  10207. "reference": "1e07027423d1d37125b60a50997ada26a9d9d202"
  10208. },
  10209. "dist": {
  10210. "type": "zip",
  10211. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/1e07027423d1d37125b60a50997ada26a9d9d202",
  10212. "reference": "1e07027423d1d37125b60a50997ada26a9d9d202",
  10213. "shasum": ""
  10214. },
  10215. "require": {
  10216. "ext-xml": "*",
  10217. "php": ">=8.1",
  10218. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10219. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  10220. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  10221. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10222. },
  10223. "conflict": {
  10224. "symfony/config": "<5.4",
  10225. "symfony/dependency-injection": "<5.4"
  10226. },
  10227. "require-dev": {
  10228. "symfony/config": "^5.4|^6.0|^7.0",
  10229. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  10230. },
  10231. "type": "symfony-bundle",
  10232. "autoload": {
  10233. "psr-4": {
  10234. "Symfony\\Bundle\\DebugBundle\\": ""
  10235. },
  10236. "exclude-from-classmap": [
  10237. "/Tests/"
  10238. ]
  10239. },
  10240. "notification-url": "https://packagist.org/downloads/",
  10241. "license": [
  10242. "MIT"
  10243. ],
  10244. "authors": [
  10245. {
  10246. "name": "Fabien Potencier",
  10247. "email": "fabien@symfony.com"
  10248. },
  10249. {
  10250. "name": "Symfony Community",
  10251. "homepage": "https://symfony.com/contributors"
  10252. }
  10253. ],
  10254. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10255. "homepage": "https://symfony.com",
  10256. "support": {
  10257. "source": "https://github.com/symfony/debug-bundle/tree/v6.4.0"
  10258. },
  10259. "funding": [
  10260. {
  10261. "url": "https://symfony.com/sponsor",
  10262. "type": "custom"
  10263. },
  10264. {
  10265. "url": "https://github.com/fabpot",
  10266. "type": "github"
  10267. },
  10268. {
  10269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10270. "type": "tidelift"
  10271. }
  10272. ],
  10273. "time": "2023-11-01T12:07:38+00:00"
  10274. },
  10275. {
  10276. "name": "symfony/dom-crawler",
  10277. "version": "v6.4.0",
  10278. "source": {
  10279. "type": "git",
  10280. "url": "https://github.com/symfony/dom-crawler.git",
  10281. "reference": "14ff4fd2a5c8969d6158dbe7ef5b17d6a9c6ba33"
  10282. },
  10283. "dist": {
  10284. "type": "zip",
  10285. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/14ff4fd2a5c8969d6158dbe7ef5b17d6a9c6ba33",
  10286. "reference": "14ff4fd2a5c8969d6158dbe7ef5b17d6a9c6ba33",
  10287. "shasum": ""
  10288. },
  10289. "require": {
  10290. "masterminds/html5": "^2.6",
  10291. "php": ">=8.1",
  10292. "symfony/polyfill-ctype": "~1.8",
  10293. "symfony/polyfill-mbstring": "~1.0"
  10294. },
  10295. "require-dev": {
  10296. "symfony/css-selector": "^5.4|^6.0|^7.0"
  10297. },
  10298. "type": "library",
  10299. "autoload": {
  10300. "psr-4": {
  10301. "Symfony\\Component\\DomCrawler\\": ""
  10302. },
  10303. "exclude-from-classmap": [
  10304. "/Tests/"
  10305. ]
  10306. },
  10307. "notification-url": "https://packagist.org/downloads/",
  10308. "license": [
  10309. "MIT"
  10310. ],
  10311. "authors": [
  10312. {
  10313. "name": "Fabien Potencier",
  10314. "email": "fabien@symfony.com"
  10315. },
  10316. {
  10317. "name": "Symfony Community",
  10318. "homepage": "https://symfony.com/contributors"
  10319. }
  10320. ],
  10321. "description": "Eases DOM navigation for HTML and XML documents",
  10322. "homepage": "https://symfony.com",
  10323. "support": {
  10324. "source": "https://github.com/symfony/dom-crawler/tree/v6.4.0"
  10325. },
  10326. "funding": [
  10327. {
  10328. "url": "https://symfony.com/sponsor",
  10329. "type": "custom"
  10330. },
  10331. {
  10332. "url": "https://github.com/fabpot",
  10333. "type": "github"
  10334. },
  10335. {
  10336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10337. "type": "tidelift"
  10338. }
  10339. ],
  10340. "time": "2023-11-20T16:41:16+00:00"
  10341. },
  10342. {
  10343. "name": "symfony/maker-bundle",
  10344. "version": "v1.52.0",
  10345. "source": {
  10346. "type": "git",
  10347. "url": "https://github.com/symfony/maker-bundle.git",
  10348. "reference": "112f9466c94a46ca33dc441eee59a12cd1790757"
  10349. },
  10350. "dist": {
  10351. "type": "zip",
  10352. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/112f9466c94a46ca33dc441eee59a12cd1790757",
  10353. "reference": "112f9466c94a46ca33dc441eee59a12cd1790757",
  10354. "shasum": ""
  10355. },
  10356. "require": {
  10357. "doctrine/inflector": "^2.0",
  10358. "nikic/php-parser": "^4.11",
  10359. "php": ">=8.1",
  10360. "symfony/config": "^6.3|^7.0",
  10361. "symfony/console": "^6.3|^7.0",
  10362. "symfony/dependency-injection": "^6.3|^7.0",
  10363. "symfony/deprecation-contracts": "^2.2|^3",
  10364. "symfony/filesystem": "^6.3|^7.0",
  10365. "symfony/finder": "^6.3|^7.0",
  10366. "symfony/framework-bundle": "^6.3|^7.0",
  10367. "symfony/http-kernel": "^6.3|^7.0",
  10368. "symfony/process": "^6.3|^7.0"
  10369. },
  10370. "conflict": {
  10371. "doctrine/doctrine-bundle": "<2.4",
  10372. "doctrine/orm": "<2.10"
  10373. },
  10374. "require-dev": {
  10375. "composer/semver": "^3.0",
  10376. "doctrine/doctrine-bundle": "^2.5.0",
  10377. "doctrine/orm": "^2.10.0",
  10378. "symfony/http-client": "^6.3|^7.0",
  10379. "symfony/phpunit-bridge": "^6.3|^7.0",
  10380. "symfony/security-core": "^6.3|^7.0",
  10381. "symfony/yaml": "^6.3|^7.0",
  10382. "twig/twig": "^2.0|^3.0"
  10383. },
  10384. "type": "symfony-bundle",
  10385. "extra": {
  10386. "branch-alias": {
  10387. "dev-main": "1.x-dev"
  10388. }
  10389. },
  10390. "autoload": {
  10391. "psr-4": {
  10392. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10393. }
  10394. },
  10395. "notification-url": "https://packagist.org/downloads/",
  10396. "license": [
  10397. "MIT"
  10398. ],
  10399. "authors": [
  10400. {
  10401. "name": "Symfony Community",
  10402. "homepage": "https://symfony.com/contributors"
  10403. }
  10404. ],
  10405. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10406. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10407. "keywords": [
  10408. "code generator",
  10409. "dev",
  10410. "generator",
  10411. "scaffold",
  10412. "scaffolding"
  10413. ],
  10414. "support": {
  10415. "issues": "https://github.com/symfony/maker-bundle/issues",
  10416. "source": "https://github.com/symfony/maker-bundle/tree/v1.52.0"
  10417. },
  10418. "funding": [
  10419. {
  10420. "url": "https://symfony.com/sponsor",
  10421. "type": "custom"
  10422. },
  10423. {
  10424. "url": "https://github.com/fabpot",
  10425. "type": "github"
  10426. },
  10427. {
  10428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10429. "type": "tidelift"
  10430. }
  10431. ],
  10432. "time": "2023-10-31T18:23:49+00:00"
  10433. },
  10434. {
  10435. "name": "symfony/phpunit-bridge",
  10436. "version": "v6.4.1",
  10437. "source": {
  10438. "type": "git",
  10439. "url": "https://github.com/symfony/phpunit-bridge.git",
  10440. "reference": "cca5373a41d45edbeaf38b7b67f376da2205ff95"
  10441. },
  10442. "dist": {
  10443. "type": "zip",
  10444. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cca5373a41d45edbeaf38b7b67f376da2205ff95",
  10445. "reference": "cca5373a41d45edbeaf38b7b67f376da2205ff95",
  10446. "shasum": ""
  10447. },
  10448. "require": {
  10449. "php": ">=7.1.3"
  10450. },
  10451. "conflict": {
  10452. "phpunit/phpunit": "<7.5|9.1.2"
  10453. },
  10454. "require-dev": {
  10455. "symfony/deprecation-contracts": "^2.5|^3.0",
  10456. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10457. "symfony/polyfill-php81": "^1.27"
  10458. },
  10459. "bin": [
  10460. "bin/simple-phpunit"
  10461. ],
  10462. "type": "symfony-bridge",
  10463. "extra": {
  10464. "thanks": {
  10465. "name": "phpunit/phpunit",
  10466. "url": "https://github.com/sebastianbergmann/phpunit"
  10467. }
  10468. },
  10469. "autoload": {
  10470. "files": [
  10471. "bootstrap.php"
  10472. ],
  10473. "psr-4": {
  10474. "Symfony\\Bridge\\PhpUnit\\": ""
  10475. },
  10476. "exclude-from-classmap": [
  10477. "/Tests/"
  10478. ]
  10479. },
  10480. "notification-url": "https://packagist.org/downloads/",
  10481. "license": [
  10482. "MIT"
  10483. ],
  10484. "authors": [
  10485. {
  10486. "name": "Nicolas Grekas",
  10487. "email": "p@tchwork.com"
  10488. },
  10489. {
  10490. "name": "Symfony Community",
  10491. "homepage": "https://symfony.com/contributors"
  10492. }
  10493. ],
  10494. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10495. "homepage": "https://symfony.com",
  10496. "support": {
  10497. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.1"
  10498. },
  10499. "funding": [
  10500. {
  10501. "url": "https://symfony.com/sponsor",
  10502. "type": "custom"
  10503. },
  10504. {
  10505. "url": "https://github.com/fabpot",
  10506. "type": "github"
  10507. },
  10508. {
  10509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10510. "type": "tidelift"
  10511. }
  10512. ],
  10513. "time": "2023-12-01T09:25:07+00:00"
  10514. },
  10515. {
  10516. "name": "symfony/web-profiler-bundle",
  10517. "version": "v6.4.0",
  10518. "source": {
  10519. "type": "git",
  10520. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10521. "reference": "14752d3fb77c3c69b6cee7c03c06e2d6494a196b"
  10522. },
  10523. "dist": {
  10524. "type": "zip",
  10525. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/14752d3fb77c3c69b6cee7c03c06e2d6494a196b",
  10526. "reference": "14752d3fb77c3c69b6cee7c03c06e2d6494a196b",
  10527. "shasum": ""
  10528. },
  10529. "require": {
  10530. "php": ">=8.1",
  10531. "symfony/config": "^5.4|^6.0|^7.0",
  10532. "symfony/framework-bundle": "^6.4|^7.0",
  10533. "symfony/http-kernel": "^6.4|^7.0",
  10534. "symfony/routing": "^5.4|^6.0|^7.0",
  10535. "symfony/twig-bundle": "^5.4|^6.0",
  10536. "twig/twig": "^2.13|^3.0.4"
  10537. },
  10538. "conflict": {
  10539. "symfony/form": "<5.4",
  10540. "symfony/mailer": "<5.4",
  10541. "symfony/messenger": "<5.4",
  10542. "symfony/twig-bundle": ">=7.0"
  10543. },
  10544. "require-dev": {
  10545. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  10546. "symfony/console": "^5.4|^6.0|^7.0",
  10547. "symfony/css-selector": "^5.4|^6.0|^7.0",
  10548. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10549. },
  10550. "type": "symfony-bundle",
  10551. "autoload": {
  10552. "psr-4": {
  10553. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10554. },
  10555. "exclude-from-classmap": [
  10556. "/Tests/"
  10557. ]
  10558. },
  10559. "notification-url": "https://packagist.org/downloads/",
  10560. "license": [
  10561. "MIT"
  10562. ],
  10563. "authors": [
  10564. {
  10565. "name": "Fabien Potencier",
  10566. "email": "fabien@symfony.com"
  10567. },
  10568. {
  10569. "name": "Symfony Community",
  10570. "homepage": "https://symfony.com/contributors"
  10571. }
  10572. ],
  10573. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10574. "homepage": "https://symfony.com",
  10575. "keywords": [
  10576. "dev"
  10577. ],
  10578. "support": {
  10579. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.0"
  10580. },
  10581. "funding": [
  10582. {
  10583. "url": "https://symfony.com/sponsor",
  10584. "type": "custom"
  10585. },
  10586. {
  10587. "url": "https://github.com/fabpot",
  10588. "type": "github"
  10589. },
  10590. {
  10591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10592. "type": "tidelift"
  10593. }
  10594. ],
  10595. "time": "2023-11-07T14:57:07+00:00"
  10596. },
  10597. {
  10598. "name": "theseer/tokenizer",
  10599. "version": "1.2.2",
  10600. "source": {
  10601. "type": "git",
  10602. "url": "https://github.com/theseer/tokenizer.git",
  10603. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10604. },
  10605. "dist": {
  10606. "type": "zip",
  10607. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10608. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10609. "shasum": ""
  10610. },
  10611. "require": {
  10612. "ext-dom": "*",
  10613. "ext-tokenizer": "*",
  10614. "ext-xmlwriter": "*",
  10615. "php": "^7.2 || ^8.0"
  10616. },
  10617. "type": "library",
  10618. "autoload": {
  10619. "classmap": [
  10620. "src/"
  10621. ]
  10622. },
  10623. "notification-url": "https://packagist.org/downloads/",
  10624. "license": [
  10625. "BSD-3-Clause"
  10626. ],
  10627. "authors": [
  10628. {
  10629. "name": "Arne Blankerts",
  10630. "email": "arne@blankerts.de",
  10631. "role": "Developer"
  10632. }
  10633. ],
  10634. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10635. "support": {
  10636. "issues": "https://github.com/theseer/tokenizer/issues",
  10637. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10638. },
  10639. "funding": [
  10640. {
  10641. "url": "https://github.com/theseer",
  10642. "type": "github"
  10643. }
  10644. ],
  10645. "time": "2023-11-20T00:12:19+00:00"
  10646. }
  10647. ],
  10648. "aliases": [],
  10649. "minimum-stability": "stable",
  10650. "stability-flags": [],
  10651. "prefer-stable": false,
  10652. "prefer-lowest": false,
  10653. "platform": {
  10654. "php": "^8.1",
  10655. "ext-ctype": "*",
  10656. "ext-iconv": "*"
  10657. },
  10658. "platform-dev": [],
  10659. "platform-overrides": {
  10660. "php": "8.1"
  10661. },
  10662. "plugin-api-version": "2.6.0"
  10663. }