composer.lock 410 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344
  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": "8a5d9a07e6e4f10c583765642c4d9e97",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.5.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/3b1fc3f0be055baa7c6258b1467849c3e8204eb2",
  20. "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^7.2 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^1.10",
  30. "phpunit/phpunit": "^8 || ^9",
  31. "psr/log": "^1.0 || ^2.0 || ^3.0",
  32. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.5.3"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2024-11-04T10:15:26+00:00"
  84. },
  85. {
  86. "name": "composer/semver",
  87. "version": "3.4.3",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/composer/semver.git",
  91. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  96. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  97. "shasum": ""
  98. },
  99. "require": {
  100. "php": "^5.3.2 || ^7.0 || ^8.0"
  101. },
  102. "require-dev": {
  103. "phpstan/phpstan": "^1.11",
  104. "symfony/phpunit-bridge": "^3 || ^7"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Composer\\Semver\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Nils Adermann",
  124. "email": "naderman@naderman.de",
  125. "homepage": "http://www.naderman.de"
  126. },
  127. {
  128. "name": "Jordi Boggiano",
  129. "email": "j.boggiano@seld.be",
  130. "homepage": "http://seld.be"
  131. },
  132. {
  133. "name": "Rob Bast",
  134. "email": "rob.bast@gmail.com",
  135. "homepage": "http://robbast.nl"
  136. }
  137. ],
  138. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  139. "keywords": [
  140. "semantic",
  141. "semver",
  142. "validation",
  143. "versioning"
  144. ],
  145. "support": {
  146. "irc": "ircs://irc.libera.chat:6697/composer",
  147. "issues": "https://github.com/composer/semver/issues",
  148. "source": "https://github.com/composer/semver/tree/3.4.3"
  149. },
  150. "funding": [
  151. {
  152. "url": "https://packagist.com",
  153. "type": "custom"
  154. },
  155. {
  156. "url": "https://github.com/composer",
  157. "type": "github"
  158. },
  159. {
  160. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  161. "type": "tidelift"
  162. }
  163. ],
  164. "time": "2024-09-19T14:15:21+00:00"
  165. },
  166. {
  167. "name": "dflydev/dot-access-data",
  168. "version": "v3.0.3",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  172. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  177. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "php": "^7.1 || ^8.0"
  182. },
  183. "require-dev": {
  184. "phpstan/phpstan": "^0.12.42",
  185. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  186. "scrutinizer/ocular": "1.6.0",
  187. "squizlabs/php_codesniffer": "^3.5",
  188. "vimeo/psalm": "^4.0.0"
  189. },
  190. "type": "library",
  191. "extra": {
  192. "branch-alias": {
  193. "dev-main": "3.x-dev"
  194. }
  195. },
  196. "autoload": {
  197. "psr-4": {
  198. "Dflydev\\DotAccessData\\": "src/"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Dragonfly Development Inc.",
  208. "email": "info@dflydev.com",
  209. "homepage": "http://dflydev.com"
  210. },
  211. {
  212. "name": "Beau Simensen",
  213. "email": "beau@dflydev.com",
  214. "homepage": "http://beausimensen.com"
  215. },
  216. {
  217. "name": "Carlos Frutos",
  218. "email": "carlos@kiwing.it",
  219. "homepage": "https://github.com/cfrutos"
  220. },
  221. {
  222. "name": "Colin O'Dell",
  223. "email": "colinodell@gmail.com",
  224. "homepage": "https://www.colinodell.com"
  225. }
  226. ],
  227. "description": "Given a deep data structure, access data by dot notation.",
  228. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  229. "keywords": [
  230. "access",
  231. "data",
  232. "dot",
  233. "notation"
  234. ],
  235. "support": {
  236. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  237. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  238. },
  239. "time": "2024-07-08T12:26:09+00:00"
  240. },
  241. {
  242. "name": "doctrine/cache",
  243. "version": "2.2.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/doctrine/cache.git",
  247. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  252. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "php": "~7.1 || ^8.0"
  257. },
  258. "conflict": {
  259. "doctrine/common": ">2.2,<2.4"
  260. },
  261. "require-dev": {
  262. "cache/integration-tests": "dev-master",
  263. "doctrine/coding-standard": "^9",
  264. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  265. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  266. "symfony/cache": "^4.4 || ^5.4 || ^6",
  267. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  268. },
  269. "type": "library",
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "jonwage@gmail.com"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "schmittjoh@gmail.com"
  299. }
  300. ],
  301. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  302. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  303. "keywords": [
  304. "abstraction",
  305. "apcu",
  306. "cache",
  307. "caching",
  308. "couchdb",
  309. "memcached",
  310. "php",
  311. "redis",
  312. "xcache"
  313. ],
  314. "support": {
  315. "issues": "https://github.com/doctrine/cache/issues",
  316. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  317. },
  318. "funding": [
  319. {
  320. "url": "https://www.doctrine-project.org/sponsorship.html",
  321. "type": "custom"
  322. },
  323. {
  324. "url": "https://www.patreon.com/phpdoctrine",
  325. "type": "patreon"
  326. },
  327. {
  328. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  329. "type": "tidelift"
  330. }
  331. ],
  332. "time": "2022-05-20T20:07:39+00:00"
  333. },
  334. {
  335. "name": "doctrine/collections",
  336. "version": "2.2.2",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/collections.git",
  340. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  345. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "doctrine/deprecations": "^1",
  350. "php": "^8.1"
  351. },
  352. "require-dev": {
  353. "doctrine/coding-standard": "^12",
  354. "ext-json": "*",
  355. "phpstan/phpstan": "^1.8",
  356. "phpstan/phpstan-phpunit": "^1.0",
  357. "phpunit/phpunit": "^10.5",
  358. "vimeo/psalm": "^5.11"
  359. },
  360. "type": "library",
  361. "autoload": {
  362. "psr-4": {
  363. "Doctrine\\Common\\Collections\\": "src"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "Guilherme Blanco",
  373. "email": "guilhermeblanco@gmail.com"
  374. },
  375. {
  376. "name": "Roman Borschel",
  377. "email": "roman@code-factory.org"
  378. },
  379. {
  380. "name": "Benjamin Eberlei",
  381. "email": "kontakt@beberlei.de"
  382. },
  383. {
  384. "name": "Jonathan Wage",
  385. "email": "jonwage@gmail.com"
  386. },
  387. {
  388. "name": "Johannes Schmitt",
  389. "email": "schmittjoh@gmail.com"
  390. }
  391. ],
  392. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  393. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  394. "keywords": [
  395. "array",
  396. "collections",
  397. "iterators",
  398. "php"
  399. ],
  400. "support": {
  401. "issues": "https://github.com/doctrine/collections/issues",
  402. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  403. },
  404. "funding": [
  405. {
  406. "url": "https://www.doctrine-project.org/sponsorship.html",
  407. "type": "custom"
  408. },
  409. {
  410. "url": "https://www.patreon.com/phpdoctrine",
  411. "type": "patreon"
  412. },
  413. {
  414. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  415. "type": "tidelift"
  416. }
  417. ],
  418. "time": "2024-04-18T06:56:21+00:00"
  419. },
  420. {
  421. "name": "doctrine/dbal",
  422. "version": "3.9.3",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/doctrine/dbal.git",
  426. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  431. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "composer-runtime-api": "^2",
  436. "doctrine/cache": "^1.11|^2.0",
  437. "doctrine/deprecations": "^0.5.3|^1",
  438. "doctrine/event-manager": "^1|^2",
  439. "php": "^7.4 || ^8.0",
  440. "psr/cache": "^1|^2|^3",
  441. "psr/log": "^1|^2|^3"
  442. },
  443. "require-dev": {
  444. "doctrine/coding-standard": "12.0.0",
  445. "fig/log-test": "^1",
  446. "jetbrains/phpstorm-stubs": "2023.1",
  447. "phpstan/phpstan": "1.12.6",
  448. "phpstan/phpstan-strict-rules": "^1.6",
  449. "phpunit/phpunit": "9.6.20",
  450. "psalm/plugin-phpunit": "0.18.4",
  451. "slevomat/coding-standard": "8.13.1",
  452. "squizlabs/php_codesniffer": "3.10.2",
  453. "symfony/cache": "^5.4|^6.0|^7.0",
  454. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  455. "vimeo/psalm": "4.30.0"
  456. },
  457. "suggest": {
  458. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  459. },
  460. "bin": [
  461. "bin/doctrine-dbal"
  462. ],
  463. "type": "library",
  464. "autoload": {
  465. "psr-4": {
  466. "Doctrine\\DBAL\\": "src"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Guilherme Blanco",
  476. "email": "guilhermeblanco@gmail.com"
  477. },
  478. {
  479. "name": "Roman Borschel",
  480. "email": "roman@code-factory.org"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Jonathan Wage",
  488. "email": "jonwage@gmail.com"
  489. }
  490. ],
  491. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  492. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  493. "keywords": [
  494. "abstraction",
  495. "database",
  496. "db2",
  497. "dbal",
  498. "mariadb",
  499. "mssql",
  500. "mysql",
  501. "oci8",
  502. "oracle",
  503. "pdo",
  504. "pgsql",
  505. "postgresql",
  506. "queryobject",
  507. "sasql",
  508. "sql",
  509. "sqlite",
  510. "sqlserver",
  511. "sqlsrv"
  512. ],
  513. "support": {
  514. "issues": "https://github.com/doctrine/dbal/issues",
  515. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  516. },
  517. "funding": [
  518. {
  519. "url": "https://www.doctrine-project.org/sponsorship.html",
  520. "type": "custom"
  521. },
  522. {
  523. "url": "https://www.patreon.com/phpdoctrine",
  524. "type": "patreon"
  525. },
  526. {
  527. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  528. "type": "tidelift"
  529. }
  530. ],
  531. "time": "2024-10-10T17:56:43+00:00"
  532. },
  533. {
  534. "name": "doctrine/deprecations",
  535. "version": "1.1.3",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/doctrine/deprecations.git",
  539. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  544. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "php": "^7.1 || ^8.0"
  549. },
  550. "require-dev": {
  551. "doctrine/coding-standard": "^9",
  552. "phpstan/phpstan": "1.4.10 || 1.10.15",
  553. "phpstan/phpstan-phpunit": "^1.0",
  554. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  555. "psalm/plugin-phpunit": "0.18.4",
  556. "psr/log": "^1 || ^2 || ^3",
  557. "vimeo/psalm": "4.30.0 || 5.12.0"
  558. },
  559. "suggest": {
  560. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  561. },
  562. "type": "library",
  563. "autoload": {
  564. "psr-4": {
  565. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  566. }
  567. },
  568. "notification-url": "https://packagist.org/downloads/",
  569. "license": [
  570. "MIT"
  571. ],
  572. "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.",
  573. "homepage": "https://www.doctrine-project.org/",
  574. "support": {
  575. "issues": "https://github.com/doctrine/deprecations/issues",
  576. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  577. },
  578. "time": "2024-01-30T19:34:25+00:00"
  579. },
  580. {
  581. "name": "doctrine/doctrine-bundle",
  582. "version": "2.13.0",
  583. "source": {
  584. "type": "git",
  585. "url": "https://github.com/doctrine/DoctrineBundle.git",
  586. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  587. },
  588. "dist": {
  589. "type": "zip",
  590. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  591. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  592. "shasum": ""
  593. },
  594. "require": {
  595. "doctrine/cache": "^1.11 || ^2.0",
  596. "doctrine/dbal": "^3.7.0 || ^4.0",
  597. "doctrine/persistence": "^2.2 || ^3",
  598. "doctrine/sql-formatter": "^1.0.1",
  599. "php": "^7.4 || ^8.0",
  600. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  601. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  602. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  603. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  604. "symfony/deprecation-contracts": "^2.1 || ^3",
  605. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  606. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  607. "symfony/polyfill-php80": "^1.15",
  608. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  609. },
  610. "conflict": {
  611. "doctrine/annotations": ">=3.0",
  612. "doctrine/orm": "<2.17 || >=4.0",
  613. "twig/twig": "<1.34 || >=2.0 <2.4"
  614. },
  615. "require-dev": {
  616. "doctrine/annotations": "^1 || ^2",
  617. "doctrine/coding-standard": "^12",
  618. "doctrine/deprecations": "^1.0",
  619. "doctrine/orm": "^2.17 || ^3.0",
  620. "friendsofphp/proxy-manager-lts": "^1.0",
  621. "phpunit/phpunit": "^9.5.26",
  622. "psalm/plugin-phpunit": "^0.18.4",
  623. "psalm/plugin-symfony": "^5",
  624. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  625. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  626. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  627. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  628. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  629. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  630. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  631. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  632. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  633. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  634. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  635. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  636. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  637. "vimeo/psalm": "^5.15"
  638. },
  639. "suggest": {
  640. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  641. "ext-pdo": "*",
  642. "symfony/web-profiler-bundle": "To use the data collector."
  643. },
  644. "type": "symfony-bundle",
  645. "autoload": {
  646. "psr-4": {
  647. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Fabien Potencier",
  657. "email": "fabien@symfony.com"
  658. },
  659. {
  660. "name": "Benjamin Eberlei",
  661. "email": "kontakt@beberlei.de"
  662. },
  663. {
  664. "name": "Symfony Community",
  665. "homepage": "https://symfony.com/contributors"
  666. },
  667. {
  668. "name": "Doctrine Project",
  669. "homepage": "https://www.doctrine-project.org/"
  670. }
  671. ],
  672. "description": "Symfony DoctrineBundle",
  673. "homepage": "https://www.doctrine-project.org",
  674. "keywords": [
  675. "database",
  676. "dbal",
  677. "orm",
  678. "persistence"
  679. ],
  680. "support": {
  681. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  682. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  683. },
  684. "funding": [
  685. {
  686. "url": "https://www.doctrine-project.org/sponsorship.html",
  687. "type": "custom"
  688. },
  689. {
  690. "url": "https://www.patreon.com/phpdoctrine",
  691. "type": "patreon"
  692. },
  693. {
  694. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  695. "type": "tidelift"
  696. }
  697. ],
  698. "time": "2024-09-01T09:46:40+00:00"
  699. },
  700. {
  701. "name": "doctrine/doctrine-migrations-bundle",
  702. "version": "3.3.1",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  706. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  711. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  712. "shasum": ""
  713. },
  714. "require": {
  715. "doctrine/doctrine-bundle": "^2.4",
  716. "doctrine/migrations": "^3.2",
  717. "php": "^7.2|^8.0",
  718. "symfony/deprecation-contracts": "^2.1 || ^3",
  719. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  720. },
  721. "require-dev": {
  722. "composer/semver": "^3.0",
  723. "doctrine/coding-standard": "^12",
  724. "doctrine/orm": "^2.6 || ^3",
  725. "doctrine/persistence": "^2.0 || ^3 ",
  726. "phpstan/phpstan": "^1.4",
  727. "phpstan/phpstan-deprecation-rules": "^1",
  728. "phpstan/phpstan-phpunit": "^1",
  729. "phpstan/phpstan-strict-rules": "^1.1",
  730. "phpstan/phpstan-symfony": "^1.3",
  731. "phpunit/phpunit": "^8.5|^9.5",
  732. "psalm/plugin-phpunit": "^0.18.4",
  733. "psalm/plugin-symfony": "^3 || ^5",
  734. "symfony/phpunit-bridge": "^6.3 || ^7",
  735. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  736. "vimeo/psalm": "^4.30 || ^5.15"
  737. },
  738. "type": "symfony-bundle",
  739. "autoload": {
  740. "psr-4": {
  741. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  742. },
  743. "exclude-from-classmap": [
  744. "/Tests/"
  745. ]
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Fabien Potencier",
  754. "email": "fabien@symfony.com"
  755. },
  756. {
  757. "name": "Doctrine Project",
  758. "homepage": "https://www.doctrine-project.org"
  759. },
  760. {
  761. "name": "Symfony Community",
  762. "homepage": "https://symfony.com/contributors"
  763. }
  764. ],
  765. "description": "Symfony DoctrineMigrationsBundle",
  766. "homepage": "https://www.doctrine-project.org",
  767. "keywords": [
  768. "dbal",
  769. "migrations",
  770. "schema"
  771. ],
  772. "support": {
  773. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  774. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  775. },
  776. "funding": [
  777. {
  778. "url": "https://www.doctrine-project.org/sponsorship.html",
  779. "type": "custom"
  780. },
  781. {
  782. "url": "https://www.patreon.com/phpdoctrine",
  783. "type": "patreon"
  784. },
  785. {
  786. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  787. "type": "tidelift"
  788. }
  789. ],
  790. "time": "2024-05-14T20:32:18+00:00"
  791. },
  792. {
  793. "name": "doctrine/event-manager",
  794. "version": "2.0.1",
  795. "source": {
  796. "type": "git",
  797. "url": "https://github.com/doctrine/event-manager.git",
  798. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  799. },
  800. "dist": {
  801. "type": "zip",
  802. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  803. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  804. "shasum": ""
  805. },
  806. "require": {
  807. "php": "^8.1"
  808. },
  809. "conflict": {
  810. "doctrine/common": "<2.9"
  811. },
  812. "require-dev": {
  813. "doctrine/coding-standard": "^12",
  814. "phpstan/phpstan": "^1.8.8",
  815. "phpunit/phpunit": "^10.5",
  816. "vimeo/psalm": "^5.24"
  817. },
  818. "type": "library",
  819. "autoload": {
  820. "psr-4": {
  821. "Doctrine\\Common\\": "src"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "Guilherme Blanco",
  831. "email": "guilhermeblanco@gmail.com"
  832. },
  833. {
  834. "name": "Roman Borschel",
  835. "email": "roman@code-factory.org"
  836. },
  837. {
  838. "name": "Benjamin Eberlei",
  839. "email": "kontakt@beberlei.de"
  840. },
  841. {
  842. "name": "Jonathan Wage",
  843. "email": "jonwage@gmail.com"
  844. },
  845. {
  846. "name": "Johannes Schmitt",
  847. "email": "schmittjoh@gmail.com"
  848. },
  849. {
  850. "name": "Marco Pivetta",
  851. "email": "ocramius@gmail.com"
  852. }
  853. ],
  854. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  855. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  856. "keywords": [
  857. "event",
  858. "event dispatcher",
  859. "event manager",
  860. "event system",
  861. "events"
  862. ],
  863. "support": {
  864. "issues": "https://github.com/doctrine/event-manager/issues",
  865. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  866. },
  867. "funding": [
  868. {
  869. "url": "https://www.doctrine-project.org/sponsorship.html",
  870. "type": "custom"
  871. },
  872. {
  873. "url": "https://www.patreon.com/phpdoctrine",
  874. "type": "patreon"
  875. },
  876. {
  877. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  878. "type": "tidelift"
  879. }
  880. ],
  881. "time": "2024-05-22T20:47:39+00:00"
  882. },
  883. {
  884. "name": "doctrine/inflector",
  885. "version": "2.0.10",
  886. "source": {
  887. "type": "git",
  888. "url": "https://github.com/doctrine/inflector.git",
  889. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  890. },
  891. "dist": {
  892. "type": "zip",
  893. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  894. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  895. "shasum": ""
  896. },
  897. "require": {
  898. "php": "^7.2 || ^8.0"
  899. },
  900. "require-dev": {
  901. "doctrine/coding-standard": "^11.0",
  902. "phpstan/phpstan": "^1.8",
  903. "phpstan/phpstan-phpunit": "^1.1",
  904. "phpstan/phpstan-strict-rules": "^1.3",
  905. "phpunit/phpunit": "^8.5 || ^9.5",
  906. "vimeo/psalm": "^4.25 || ^5.4"
  907. },
  908. "type": "library",
  909. "autoload": {
  910. "psr-4": {
  911. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Guilherme Blanco",
  921. "email": "guilhermeblanco@gmail.com"
  922. },
  923. {
  924. "name": "Roman Borschel",
  925. "email": "roman@code-factory.org"
  926. },
  927. {
  928. "name": "Benjamin Eberlei",
  929. "email": "kontakt@beberlei.de"
  930. },
  931. {
  932. "name": "Jonathan Wage",
  933. "email": "jonwage@gmail.com"
  934. },
  935. {
  936. "name": "Johannes Schmitt",
  937. "email": "schmittjoh@gmail.com"
  938. }
  939. ],
  940. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  941. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  942. "keywords": [
  943. "inflection",
  944. "inflector",
  945. "lowercase",
  946. "manipulation",
  947. "php",
  948. "plural",
  949. "singular",
  950. "strings",
  951. "uppercase",
  952. "words"
  953. ],
  954. "support": {
  955. "issues": "https://github.com/doctrine/inflector/issues",
  956. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  957. },
  958. "funding": [
  959. {
  960. "url": "https://www.doctrine-project.org/sponsorship.html",
  961. "type": "custom"
  962. },
  963. {
  964. "url": "https://www.patreon.com/phpdoctrine",
  965. "type": "patreon"
  966. },
  967. {
  968. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  969. "type": "tidelift"
  970. }
  971. ],
  972. "time": "2024-02-18T20:23:39+00:00"
  973. },
  974. {
  975. "name": "doctrine/instantiator",
  976. "version": "2.0.0",
  977. "source": {
  978. "type": "git",
  979. "url": "https://github.com/doctrine/instantiator.git",
  980. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  981. },
  982. "dist": {
  983. "type": "zip",
  984. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  985. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  986. "shasum": ""
  987. },
  988. "require": {
  989. "php": "^8.1"
  990. },
  991. "require-dev": {
  992. "doctrine/coding-standard": "^11",
  993. "ext-pdo": "*",
  994. "ext-phar": "*",
  995. "phpbench/phpbench": "^1.2",
  996. "phpstan/phpstan": "^1.9.4",
  997. "phpstan/phpstan-phpunit": "^1.3",
  998. "phpunit/phpunit": "^9.5.27",
  999. "vimeo/psalm": "^5.4"
  1000. },
  1001. "type": "library",
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Marco Pivetta",
  1014. "email": "ocramius@gmail.com",
  1015. "homepage": "https://ocramius.github.io/"
  1016. }
  1017. ],
  1018. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1019. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1020. "keywords": [
  1021. "constructor",
  1022. "instantiate"
  1023. ],
  1024. "support": {
  1025. "issues": "https://github.com/doctrine/instantiator/issues",
  1026. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1027. },
  1028. "funding": [
  1029. {
  1030. "url": "https://www.doctrine-project.org/sponsorship.html",
  1031. "type": "custom"
  1032. },
  1033. {
  1034. "url": "https://www.patreon.com/phpdoctrine",
  1035. "type": "patreon"
  1036. },
  1037. {
  1038. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1039. "type": "tidelift"
  1040. }
  1041. ],
  1042. "time": "2022-12-30T00:23:10+00:00"
  1043. },
  1044. {
  1045. "name": "doctrine/lexer",
  1046. "version": "3.0.1",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/doctrine/lexer.git",
  1050. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1055. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "php": "^8.1"
  1060. },
  1061. "require-dev": {
  1062. "doctrine/coding-standard": "^12",
  1063. "phpstan/phpstan": "^1.10",
  1064. "phpunit/phpunit": "^10.5",
  1065. "psalm/plugin-phpunit": "^0.18.3",
  1066. "vimeo/psalm": "^5.21"
  1067. },
  1068. "type": "library",
  1069. "autoload": {
  1070. "psr-4": {
  1071. "Doctrine\\Common\\Lexer\\": "src"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Guilherme Blanco",
  1081. "email": "guilhermeblanco@gmail.com"
  1082. },
  1083. {
  1084. "name": "Roman Borschel",
  1085. "email": "roman@code-factory.org"
  1086. },
  1087. {
  1088. "name": "Johannes Schmitt",
  1089. "email": "schmittjoh@gmail.com"
  1090. }
  1091. ],
  1092. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1093. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1094. "keywords": [
  1095. "annotations",
  1096. "docblock",
  1097. "lexer",
  1098. "parser",
  1099. "php"
  1100. ],
  1101. "support": {
  1102. "issues": "https://github.com/doctrine/lexer/issues",
  1103. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1104. },
  1105. "funding": [
  1106. {
  1107. "url": "https://www.doctrine-project.org/sponsorship.html",
  1108. "type": "custom"
  1109. },
  1110. {
  1111. "url": "https://www.patreon.com/phpdoctrine",
  1112. "type": "patreon"
  1113. },
  1114. {
  1115. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1116. "type": "tidelift"
  1117. }
  1118. ],
  1119. "time": "2024-02-05T11:56:58+00:00"
  1120. },
  1121. {
  1122. "name": "doctrine/migrations",
  1123. "version": "3.8.2",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/doctrine/migrations.git",
  1127. "reference": "5007eb1168691225ac305fe16856755c20860842"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  1132. "reference": "5007eb1168691225ac305fe16856755c20860842",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "composer-runtime-api": "^2",
  1137. "doctrine/dbal": "^3.6 || ^4",
  1138. "doctrine/deprecations": "^0.5.3 || ^1",
  1139. "doctrine/event-manager": "^1.2 || ^2.0",
  1140. "php": "^8.1",
  1141. "psr/log": "^1.1.3 || ^2 || ^3",
  1142. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1143. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1144. "symfony/var-exporter": "^6.2 || ^7.0"
  1145. },
  1146. "conflict": {
  1147. "doctrine/orm": "<2.12 || >=4"
  1148. },
  1149. "require-dev": {
  1150. "doctrine/coding-standard": "^12",
  1151. "doctrine/orm": "^2.13 || ^3",
  1152. "doctrine/persistence": "^2 || ^3",
  1153. "doctrine/sql-formatter": "^1.0",
  1154. "ext-pdo_sqlite": "*",
  1155. "fig/log-test": "^1",
  1156. "phpstan/phpstan": "^1.10",
  1157. "phpstan/phpstan-deprecation-rules": "^1.1",
  1158. "phpstan/phpstan-phpunit": "^1.3",
  1159. "phpstan/phpstan-strict-rules": "^1.4",
  1160. "phpstan/phpstan-symfony": "^1.3",
  1161. "phpunit/phpunit": "^10.3",
  1162. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1163. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1164. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1165. },
  1166. "suggest": {
  1167. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1168. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1169. },
  1170. "bin": [
  1171. "bin/doctrine-migrations"
  1172. ],
  1173. "type": "library",
  1174. "autoload": {
  1175. "psr-4": {
  1176. "Doctrine\\Migrations\\": "src"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "Benjamin Eberlei",
  1186. "email": "kontakt@beberlei.de"
  1187. },
  1188. {
  1189. "name": "Jonathan Wage",
  1190. "email": "jonwage@gmail.com"
  1191. },
  1192. {
  1193. "name": "Michael Simonson",
  1194. "email": "contact@mikesimonson.com"
  1195. }
  1196. ],
  1197. "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.",
  1198. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1199. "keywords": [
  1200. "database",
  1201. "dbal",
  1202. "migrations"
  1203. ],
  1204. "support": {
  1205. "issues": "https://github.com/doctrine/migrations/issues",
  1206. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1207. },
  1208. "funding": [
  1209. {
  1210. "url": "https://www.doctrine-project.org/sponsorship.html",
  1211. "type": "custom"
  1212. },
  1213. {
  1214. "url": "https://www.patreon.com/phpdoctrine",
  1215. "type": "patreon"
  1216. },
  1217. {
  1218. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1219. "type": "tidelift"
  1220. }
  1221. ],
  1222. "time": "2024-10-10T21:35:27+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/orm",
  1226. "version": "3.3.0",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/orm.git",
  1230. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1235. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "composer-runtime-api": "^2",
  1240. "doctrine/collections": "^2.2",
  1241. "doctrine/dbal": "^3.8.2 || ^4",
  1242. "doctrine/deprecations": "^0.5.3 || ^1",
  1243. "doctrine/event-manager": "^1.2 || ^2",
  1244. "doctrine/inflector": "^1.4 || ^2.0",
  1245. "doctrine/instantiator": "^1.3 || ^2",
  1246. "doctrine/lexer": "^3",
  1247. "doctrine/persistence": "^3.3.1",
  1248. "ext-ctype": "*",
  1249. "php": "^8.1",
  1250. "psr/cache": "^1 || ^2 || ^3",
  1251. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1252. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1253. },
  1254. "require-dev": {
  1255. "doctrine/coding-standard": "^12.0",
  1256. "phpbench/phpbench": "^1.0",
  1257. "phpdocumentor/guides-cli": "^1.4",
  1258. "phpstan/extension-installer": "^1.4",
  1259. "phpstan/phpstan": "1.12.6",
  1260. "phpstan/phpstan-deprecation-rules": "^1.2",
  1261. "phpunit/phpunit": "^10.4.0",
  1262. "psr/log": "^1 || ^2 || ^3",
  1263. "squizlabs/php_codesniffer": "3.7.2",
  1264. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1265. "vimeo/psalm": "5.24.0"
  1266. },
  1267. "suggest": {
  1268. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1269. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Doctrine\\ORM\\": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Guilherme Blanco",
  1284. "email": "guilhermeblanco@gmail.com"
  1285. },
  1286. {
  1287. "name": "Roman Borschel",
  1288. "email": "roman@code-factory.org"
  1289. },
  1290. {
  1291. "name": "Benjamin Eberlei",
  1292. "email": "kontakt@beberlei.de"
  1293. },
  1294. {
  1295. "name": "Jonathan Wage",
  1296. "email": "jonwage@gmail.com"
  1297. },
  1298. {
  1299. "name": "Marco Pivetta",
  1300. "email": "ocramius@gmail.com"
  1301. }
  1302. ],
  1303. "description": "Object-Relational-Mapper for PHP",
  1304. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1305. "keywords": [
  1306. "database",
  1307. "orm"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/doctrine/orm/issues",
  1311. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1312. },
  1313. "time": "2024-10-12T20:07:18+00:00"
  1314. },
  1315. {
  1316. "name": "doctrine/persistence",
  1317. "version": "3.4.0",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/doctrine/persistence.git",
  1321. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/doctrine/persistence/zipball/0ea965320cec355dba75031c1b23d4c78362e3ff",
  1326. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "doctrine/event-manager": "^1 || ^2",
  1331. "php": "^7.2 || ^8.0",
  1332. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1333. },
  1334. "conflict": {
  1335. "doctrine/common": "<2.10"
  1336. },
  1337. "require-dev": {
  1338. "doctrine/coding-standard": "^12",
  1339. "doctrine/common": "^3.0",
  1340. "phpstan/phpstan": "1.12.7",
  1341. "phpstan/phpstan-phpunit": "^1",
  1342. "phpstan/phpstan-strict-rules": "^1.1",
  1343. "phpunit/phpunit": "^8.5.38 || ^9.5",
  1344. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1345. },
  1346. "type": "library",
  1347. "autoload": {
  1348. "psr-4": {
  1349. "Doctrine\\Persistence\\": "src/Persistence"
  1350. }
  1351. },
  1352. "notification-url": "https://packagist.org/downloads/",
  1353. "license": [
  1354. "MIT"
  1355. ],
  1356. "authors": [
  1357. {
  1358. "name": "Guilherme Blanco",
  1359. "email": "guilhermeblanco@gmail.com"
  1360. },
  1361. {
  1362. "name": "Roman Borschel",
  1363. "email": "roman@code-factory.org"
  1364. },
  1365. {
  1366. "name": "Benjamin Eberlei",
  1367. "email": "kontakt@beberlei.de"
  1368. },
  1369. {
  1370. "name": "Jonathan Wage",
  1371. "email": "jonwage@gmail.com"
  1372. },
  1373. {
  1374. "name": "Johannes Schmitt",
  1375. "email": "schmittjoh@gmail.com"
  1376. },
  1377. {
  1378. "name": "Marco Pivetta",
  1379. "email": "ocramius@gmail.com"
  1380. }
  1381. ],
  1382. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1383. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1384. "keywords": [
  1385. "mapper",
  1386. "object",
  1387. "odm",
  1388. "orm",
  1389. "persistence"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/doctrine/persistence/issues",
  1393. "source": "https://github.com/doctrine/persistence/tree/3.4.0"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://www.doctrine-project.org/sponsorship.html",
  1398. "type": "custom"
  1399. },
  1400. {
  1401. "url": "https://www.patreon.com/phpdoctrine",
  1402. "type": "patreon"
  1403. },
  1404. {
  1405. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1406. "type": "tidelift"
  1407. }
  1408. ],
  1409. "time": "2024-10-30T19:48:12+00:00"
  1410. },
  1411. {
  1412. "name": "doctrine/sql-formatter",
  1413. "version": "1.5.1",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/doctrine/sql-formatter.git",
  1417. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1422. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "php": "^8.1"
  1427. },
  1428. "require-dev": {
  1429. "doctrine/coding-standard": "^12",
  1430. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1431. "phpstan/phpstan": "^1.10",
  1432. "phpunit/phpunit": "^10.5",
  1433. "vimeo/psalm": "^5.24"
  1434. },
  1435. "bin": [
  1436. "bin/sql-formatter"
  1437. ],
  1438. "type": "library",
  1439. "autoload": {
  1440. "psr-4": {
  1441. "Doctrine\\SqlFormatter\\": "src"
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Jeremy Dorn",
  1451. "email": "jeremy@jeremydorn.com",
  1452. "homepage": "https://jeremydorn.com/"
  1453. }
  1454. ],
  1455. "description": "a PHP SQL highlighting library",
  1456. "homepage": "https://github.com/doctrine/sql-formatter/",
  1457. "keywords": [
  1458. "highlight",
  1459. "sql"
  1460. ],
  1461. "support": {
  1462. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1463. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1464. },
  1465. "time": "2024-10-21T18:21:57+00:00"
  1466. },
  1467. {
  1468. "name": "egulias/email-validator",
  1469. "version": "4.0.2",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/egulias/EmailValidator.git",
  1473. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1478. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "doctrine/lexer": "^2.0 || ^3.0",
  1483. "php": ">=8.1",
  1484. "symfony/polyfill-intl-idn": "^1.26"
  1485. },
  1486. "require-dev": {
  1487. "phpunit/phpunit": "^10.2",
  1488. "vimeo/psalm": "^5.12"
  1489. },
  1490. "suggest": {
  1491. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1492. },
  1493. "type": "library",
  1494. "extra": {
  1495. "branch-alias": {
  1496. "dev-master": "4.0.x-dev"
  1497. }
  1498. },
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Egulias\\EmailValidator\\": "src"
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "MIT"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Eduardo Gulias Davis"
  1511. }
  1512. ],
  1513. "description": "A library for validating emails against several RFCs",
  1514. "homepage": "https://github.com/egulias/EmailValidator",
  1515. "keywords": [
  1516. "email",
  1517. "emailvalidation",
  1518. "emailvalidator",
  1519. "validation",
  1520. "validator"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/egulias/EmailValidator/issues",
  1524. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://github.com/egulias",
  1529. "type": "github"
  1530. }
  1531. ],
  1532. "time": "2023-10-06T06:47:41+00:00"
  1533. },
  1534. {
  1535. "name": "embed/embed",
  1536. "version": "v4.4.12",
  1537. "source": {
  1538. "type": "git",
  1539. "url": "https://github.com/oscarotero/Embed.git",
  1540. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a"
  1541. },
  1542. "dist": {
  1543. "type": "zip",
  1544. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1545. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1546. "shasum": ""
  1547. },
  1548. "require": {
  1549. "composer/ca-bundle": "^1.0",
  1550. "ext-curl": "*",
  1551. "ext-dom": "*",
  1552. "ext-json": "*",
  1553. "ext-mbstring": "*",
  1554. "ml/json-ld": "^1.1",
  1555. "oscarotero/html-parser": "^0.1.4",
  1556. "php": "^7.4|^8",
  1557. "psr/http-client": "^1.0",
  1558. "psr/http-factory": "^1.0",
  1559. "psr/http-message": "^1.0|^2.0"
  1560. },
  1561. "require-dev": {
  1562. "brick/varexporter": "^0.3.1",
  1563. "friendsofphp/php-cs-fixer": "^2.0",
  1564. "nyholm/psr7": "^1.2",
  1565. "oscarotero/php-cs-fixer-config": "^1.0",
  1566. "phpunit/phpunit": "^9.0",
  1567. "symfony/css-selector": "^5.0"
  1568. },
  1569. "suggest": {
  1570. "symfony/css-selector": "If you want to get elements using css selectors"
  1571. },
  1572. "type": "library",
  1573. "autoload": {
  1574. "files": [
  1575. "src/functions.php"
  1576. ],
  1577. "psr-4": {
  1578. "Embed\\": "src"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Oscar Otero",
  1588. "email": "oom@oscarotero.com",
  1589. "homepage": "http://oscarotero.com",
  1590. "role": "Developer"
  1591. }
  1592. ],
  1593. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1594. "homepage": "https://github.com/oscarotero/Embed",
  1595. "keywords": [
  1596. "embed",
  1597. "embedly",
  1598. "oembed",
  1599. "opengraph",
  1600. "twitter cards"
  1601. ],
  1602. "support": {
  1603. "email": "oom@oscarotero.com",
  1604. "issues": "https://github.com/oscarotero/Embed/issues",
  1605. "source": "https://github.com/oscarotero/Embed/tree/v4.4.12"
  1606. },
  1607. "funding": [
  1608. {
  1609. "url": "https://paypal.me/oscarotero",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://github.com/oscarotero",
  1614. "type": "github"
  1615. },
  1616. {
  1617. "url": "https://www.patreon.com/misteroom",
  1618. "type": "patreon"
  1619. }
  1620. ],
  1621. "time": "2024-07-24T14:08:11+00:00"
  1622. },
  1623. {
  1624. "name": "laminas/laminas-diactoros",
  1625. "version": "3.5.0",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/laminas/laminas-diactoros.git",
  1629. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  1634. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  1639. "psr/http-factory": "^1.1",
  1640. "psr/http-message": "^1.1 || ^2.0"
  1641. },
  1642. "conflict": {
  1643. "amphp/amp": "<2.6.4"
  1644. },
  1645. "provide": {
  1646. "psr/http-factory-implementation": "^1.0",
  1647. "psr/http-message-implementation": "^1.1 || ^2.0"
  1648. },
  1649. "require-dev": {
  1650. "ext-curl": "*",
  1651. "ext-dom": "*",
  1652. "ext-gd": "*",
  1653. "ext-libxml": "*",
  1654. "http-interop/http-factory-tests": "^2.2.0",
  1655. "laminas/laminas-coding-standard": "~2.5.0",
  1656. "php-http/psr7-integration-tests": "^1.4.0",
  1657. "phpunit/phpunit": "^10.5.36",
  1658. "psalm/plugin-phpunit": "^0.19.0",
  1659. "vimeo/psalm": "^5.26.1"
  1660. },
  1661. "type": "library",
  1662. "extra": {
  1663. "laminas": {
  1664. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  1665. "module": "Laminas\\Diactoros"
  1666. }
  1667. },
  1668. "autoload": {
  1669. "files": [
  1670. "src/functions/create_uploaded_file.php",
  1671. "src/functions/marshal_headers_from_sapi.php",
  1672. "src/functions/marshal_method_from_sapi.php",
  1673. "src/functions/marshal_protocol_version_from_sapi.php",
  1674. "src/functions/normalize_server.php",
  1675. "src/functions/normalize_uploaded_files.php",
  1676. "src/functions/parse_cookie_header.php"
  1677. ],
  1678. "psr-4": {
  1679. "Laminas\\Diactoros\\": "src/"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "BSD-3-Clause"
  1685. ],
  1686. "description": "PSR HTTP Message implementations",
  1687. "homepage": "https://laminas.dev",
  1688. "keywords": [
  1689. "http",
  1690. "laminas",
  1691. "psr",
  1692. "psr-17",
  1693. "psr-7"
  1694. ],
  1695. "support": {
  1696. "chat": "https://laminas.dev/chat",
  1697. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  1698. "forum": "https://discourse.laminas.dev",
  1699. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  1700. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  1701. "source": "https://github.com/laminas/laminas-diactoros"
  1702. },
  1703. "funding": [
  1704. {
  1705. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1706. "type": "community_bridge"
  1707. }
  1708. ],
  1709. "time": "2024-10-14T11:59:49+00:00"
  1710. },
  1711. {
  1712. "name": "laminas/laminas-escaper",
  1713. "version": "2.14.0",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/laminas/laminas-escaper.git",
  1717. "reference": "0f7cb975f4443cf22f33408925c231225cfba8cb"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/0f7cb975f4443cf22f33408925c231225cfba8cb",
  1722. "reference": "0f7cb975f4443cf22f33408925c231225cfba8cb",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "ext-ctype": "*",
  1727. "ext-mbstring": "*",
  1728. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1729. },
  1730. "conflict": {
  1731. "zendframework/zend-escaper": "*"
  1732. },
  1733. "require-dev": {
  1734. "infection/infection": "^0.27.9",
  1735. "laminas/laminas-coding-standard": "~3.0.0",
  1736. "maglnet/composer-require-checker": "^3.8.0",
  1737. "phpunit/phpunit": "^9.6.16",
  1738. "psalm/plugin-phpunit": "^0.19.0",
  1739. "vimeo/psalm": "^5.21.1"
  1740. },
  1741. "type": "library",
  1742. "autoload": {
  1743. "psr-4": {
  1744. "Laminas\\Escaper\\": "src/"
  1745. }
  1746. },
  1747. "notification-url": "https://packagist.org/downloads/",
  1748. "license": [
  1749. "BSD-3-Clause"
  1750. ],
  1751. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  1752. "homepage": "https://laminas.dev",
  1753. "keywords": [
  1754. "escaper",
  1755. "laminas"
  1756. ],
  1757. "support": {
  1758. "chat": "https://laminas.dev/chat",
  1759. "docs": "https://docs.laminas.dev/laminas-escaper/",
  1760. "forum": "https://discourse.laminas.dev",
  1761. "issues": "https://github.com/laminas/laminas-escaper/issues",
  1762. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  1763. "source": "https://github.com/laminas/laminas-escaper"
  1764. },
  1765. "funding": [
  1766. {
  1767. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1768. "type": "community_bridge"
  1769. }
  1770. ],
  1771. "time": "2024-10-24T10:12:53+00:00"
  1772. },
  1773. {
  1774. "name": "laminas/laminas-feed",
  1775. "version": "2.23.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/laminas/laminas-feed.git",
  1779. "reference": "23807e692b3174750b426143bd93572b71b6739a"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/23807e692b3174750b426143bd93572b71b6739a",
  1784. "reference": "23807e692b3174750b426143bd93572b71b6739a",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "ext-dom": "*",
  1789. "ext-libxml": "*",
  1790. "laminas/laminas-escaper": "^2.9",
  1791. "laminas/laminas-stdlib": "^3.6",
  1792. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1793. },
  1794. "conflict": {
  1795. "laminas/laminas-servicemanager": "<3.3",
  1796. "zendframework/zend-feed": "*"
  1797. },
  1798. "require-dev": {
  1799. "laminas/laminas-cache": "^2.13.2 || ^3.12",
  1800. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3",
  1801. "laminas/laminas-coding-standard": "~2.5.0",
  1802. "laminas/laminas-db": "^2.18",
  1803. "laminas/laminas-http": "^2.19",
  1804. "laminas/laminas-servicemanager": "^3.22.1",
  1805. "laminas/laminas-validator": "^2.46",
  1806. "phpunit/phpunit": "^10.5.5",
  1807. "psalm/plugin-phpunit": "^0.19.0",
  1808. "psr/http-message": "^2.0",
  1809. "vimeo/psalm": "^5.18.0"
  1810. },
  1811. "suggest": {
  1812. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  1813. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  1814. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  1815. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  1816. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  1817. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  1818. },
  1819. "type": "library",
  1820. "autoload": {
  1821. "psr-4": {
  1822. "Laminas\\Feed\\": "src/"
  1823. }
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "BSD-3-Clause"
  1828. ],
  1829. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  1830. "homepage": "https://laminas.dev",
  1831. "keywords": [
  1832. "atom",
  1833. "feed",
  1834. "laminas",
  1835. "rss"
  1836. ],
  1837. "support": {
  1838. "chat": "https://laminas.dev/chat",
  1839. "docs": "https://docs.laminas.dev/laminas-feed/",
  1840. "forum": "https://discourse.laminas.dev",
  1841. "issues": "https://github.com/laminas/laminas-feed/issues",
  1842. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  1843. "source": "https://github.com/laminas/laminas-feed"
  1844. },
  1845. "funding": [
  1846. {
  1847. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1848. "type": "community_bridge"
  1849. }
  1850. ],
  1851. "time": "2024-10-09T10:53:30+00:00"
  1852. },
  1853. {
  1854. "name": "laminas/laminas-stdlib",
  1855. "version": "3.20.0",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/laminas/laminas-stdlib.git",
  1859. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  1864. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1869. },
  1870. "conflict": {
  1871. "zendframework/zend-stdlib": "*"
  1872. },
  1873. "require-dev": {
  1874. "laminas/laminas-coding-standard": "^3.0",
  1875. "phpbench/phpbench": "^1.3.1",
  1876. "phpunit/phpunit": "^10.5.38",
  1877. "psalm/plugin-phpunit": "^0.19.0",
  1878. "vimeo/psalm": "^5.26.1"
  1879. },
  1880. "type": "library",
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Laminas\\Stdlib\\": "src/"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "BSD-3-Clause"
  1889. ],
  1890. "description": "SPL extensions, array utilities, error handlers, and more",
  1891. "homepage": "https://laminas.dev",
  1892. "keywords": [
  1893. "laminas",
  1894. "stdlib"
  1895. ],
  1896. "support": {
  1897. "chat": "https://laminas.dev/chat",
  1898. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  1899. "forum": "https://discourse.laminas.dev",
  1900. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  1901. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  1902. "source": "https://github.com/laminas/laminas-stdlib"
  1903. },
  1904. "funding": [
  1905. {
  1906. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1907. "type": "community_bridge"
  1908. }
  1909. ],
  1910. "time": "2024-10-29T13:46:07+00:00"
  1911. },
  1912. {
  1913. "name": "league/commonmark",
  1914. "version": "2.5.3",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/thephpleague/commonmark.git",
  1918. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1923. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1924. "shasum": ""
  1925. },
  1926. "require": {
  1927. "ext-mbstring": "*",
  1928. "league/config": "^1.1.1",
  1929. "php": "^7.4 || ^8.0",
  1930. "psr/event-dispatcher": "^1.0",
  1931. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1932. "symfony/polyfill-php80": "^1.16"
  1933. },
  1934. "require-dev": {
  1935. "cebe/markdown": "^1.0",
  1936. "commonmark/cmark": "0.31.1",
  1937. "commonmark/commonmark.js": "0.31.1",
  1938. "composer/package-versions-deprecated": "^1.8",
  1939. "embed/embed": "^4.4",
  1940. "erusev/parsedown": "^1.0",
  1941. "ext-json": "*",
  1942. "github/gfm": "0.29.0",
  1943. "michelf/php-markdown": "^1.4 || ^2.0",
  1944. "nyholm/psr7": "^1.5",
  1945. "phpstan/phpstan": "^1.8.2",
  1946. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1947. "scrutinizer/ocular": "^1.8.1",
  1948. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1949. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1950. "unleashedtech/php-coding-standard": "^3.1.1",
  1951. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1952. },
  1953. "suggest": {
  1954. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-main": "2.6-dev"
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "League\\CommonMark\\": "src"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "BSD-3-Clause"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Colin O'Dell",
  1974. "email": "colinodell@gmail.com",
  1975. "homepage": "https://www.colinodell.com",
  1976. "role": "Lead Developer"
  1977. }
  1978. ],
  1979. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1980. "homepage": "https://commonmark.thephpleague.com",
  1981. "keywords": [
  1982. "commonmark",
  1983. "flavored",
  1984. "gfm",
  1985. "github",
  1986. "github-flavored",
  1987. "markdown",
  1988. "md",
  1989. "parser"
  1990. ],
  1991. "support": {
  1992. "docs": "https://commonmark.thephpleague.com/",
  1993. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1994. "issues": "https://github.com/thephpleague/commonmark/issues",
  1995. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1996. "source": "https://github.com/thephpleague/commonmark"
  1997. },
  1998. "funding": [
  1999. {
  2000. "url": "https://www.colinodell.com/sponsor",
  2001. "type": "custom"
  2002. },
  2003. {
  2004. "url": "https://www.paypal.me/colinpodell/10.00",
  2005. "type": "custom"
  2006. },
  2007. {
  2008. "url": "https://github.com/colinodell",
  2009. "type": "github"
  2010. },
  2011. {
  2012. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2013. "type": "tidelift"
  2014. }
  2015. ],
  2016. "time": "2024-08-16T11:46:16+00:00"
  2017. },
  2018. {
  2019. "name": "league/config",
  2020. "version": "v1.2.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/thephpleague/config.git",
  2024. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2029. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2030. "shasum": ""
  2031. },
  2032. "require": {
  2033. "dflydev/dot-access-data": "^3.0.1",
  2034. "nette/schema": "^1.2",
  2035. "php": "^7.4 || ^8.0"
  2036. },
  2037. "require-dev": {
  2038. "phpstan/phpstan": "^1.8.2",
  2039. "phpunit/phpunit": "^9.5.5",
  2040. "scrutinizer/ocular": "^1.8.1",
  2041. "unleashedtech/php-coding-standard": "^3.1",
  2042. "vimeo/psalm": "^4.7.3"
  2043. },
  2044. "type": "library",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-main": "1.2-dev"
  2048. }
  2049. },
  2050. "autoload": {
  2051. "psr-4": {
  2052. "League\\Config\\": "src"
  2053. }
  2054. },
  2055. "notification-url": "https://packagist.org/downloads/",
  2056. "license": [
  2057. "BSD-3-Clause"
  2058. ],
  2059. "authors": [
  2060. {
  2061. "name": "Colin O'Dell",
  2062. "email": "colinodell@gmail.com",
  2063. "homepage": "https://www.colinodell.com",
  2064. "role": "Lead Developer"
  2065. }
  2066. ],
  2067. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2068. "homepage": "https://config.thephpleague.com",
  2069. "keywords": [
  2070. "array",
  2071. "config",
  2072. "configuration",
  2073. "dot",
  2074. "dot-access",
  2075. "nested",
  2076. "schema"
  2077. ],
  2078. "support": {
  2079. "docs": "https://config.thephpleague.com/",
  2080. "issues": "https://github.com/thephpleague/config/issues",
  2081. "rss": "https://github.com/thephpleague/config/releases.atom",
  2082. "source": "https://github.com/thephpleague/config"
  2083. },
  2084. "funding": [
  2085. {
  2086. "url": "https://www.colinodell.com/sponsor",
  2087. "type": "custom"
  2088. },
  2089. {
  2090. "url": "https://www.paypal.me/colinpodell/10.00",
  2091. "type": "custom"
  2092. },
  2093. {
  2094. "url": "https://github.com/colinodell",
  2095. "type": "github"
  2096. }
  2097. ],
  2098. "time": "2022-12-11T20:36:23+00:00"
  2099. },
  2100. {
  2101. "name": "ml/iri",
  2102. "version": "1.1.4",
  2103. "target-dir": "ML/IRI",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/lanthaler/IRI.git",
  2107. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  2112. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  2113. "shasum": ""
  2114. },
  2115. "require": {
  2116. "lib-pcre": ">=4.0",
  2117. "php": ">=5.3.0"
  2118. },
  2119. "type": "library",
  2120. "autoload": {
  2121. "psr-0": {
  2122. "ML\\IRI": ""
  2123. }
  2124. },
  2125. "notification-url": "https://packagist.org/downloads/",
  2126. "license": [
  2127. "MIT"
  2128. ],
  2129. "authors": [
  2130. {
  2131. "name": "Markus Lanthaler",
  2132. "email": "mail@markus-lanthaler.com",
  2133. "homepage": "http://www.markus-lanthaler.com",
  2134. "role": "Developer"
  2135. }
  2136. ],
  2137. "description": "IRI handling for PHP",
  2138. "homepage": "http://www.markus-lanthaler.com",
  2139. "keywords": [
  2140. "URN",
  2141. "iri",
  2142. "uri",
  2143. "url"
  2144. ],
  2145. "support": {
  2146. "issues": "https://github.com/lanthaler/IRI/issues",
  2147. "source": "https://github.com/lanthaler/IRI/tree/master"
  2148. },
  2149. "time": "2014-01-21T13:43:39+00:00"
  2150. },
  2151. {
  2152. "name": "ml/json-ld",
  2153. "version": "1.2.1",
  2154. "source": {
  2155. "type": "git",
  2156. "url": "https://github.com/lanthaler/JsonLD.git",
  2157. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  2158. },
  2159. "dist": {
  2160. "type": "zip",
  2161. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2162. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2163. "shasum": ""
  2164. },
  2165. "require": {
  2166. "ext-json": "*",
  2167. "ml/iri": "^1.1.1",
  2168. "php": ">=5.3.0"
  2169. },
  2170. "require-dev": {
  2171. "json-ld/tests": "1.0",
  2172. "phpunit/phpunit": "^4"
  2173. },
  2174. "type": "library",
  2175. "autoload": {
  2176. "psr-4": {
  2177. "ML\\JsonLD\\": ""
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "Markus Lanthaler",
  2187. "email": "mail@markus-lanthaler.com",
  2188. "homepage": "http://www.markus-lanthaler.com",
  2189. "role": "Developer"
  2190. }
  2191. ],
  2192. "description": "JSON-LD Processor for PHP",
  2193. "homepage": "http://www.markus-lanthaler.com",
  2194. "keywords": [
  2195. "JSON-LD",
  2196. "jsonld"
  2197. ],
  2198. "support": {
  2199. "issues": "https://github.com/lanthaler/JsonLD/issues",
  2200. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  2201. },
  2202. "time": "2022-09-29T08:45:17+00:00"
  2203. },
  2204. {
  2205. "name": "monolog/monolog",
  2206. "version": "3.8.0",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://github.com/Seldaek/monolog.git",
  2210. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2215. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2216. "shasum": ""
  2217. },
  2218. "require": {
  2219. "php": ">=8.1",
  2220. "psr/log": "^2.0 || ^3.0"
  2221. },
  2222. "provide": {
  2223. "psr/log-implementation": "3.0.0"
  2224. },
  2225. "require-dev": {
  2226. "aws/aws-sdk-php": "^3.0",
  2227. "doctrine/couchdb": "~1.0@dev",
  2228. "elasticsearch/elasticsearch": "^7 || ^8",
  2229. "ext-json": "*",
  2230. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2231. "guzzlehttp/guzzle": "^7.4.5",
  2232. "guzzlehttp/psr7": "^2.2",
  2233. "mongodb/mongodb": "^1.8",
  2234. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2235. "php-console/php-console": "^3.1.8",
  2236. "phpstan/phpstan": "^2",
  2237. "phpstan/phpstan-deprecation-rules": "^2",
  2238. "phpstan/phpstan-strict-rules": "^2",
  2239. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2240. "predis/predis": "^1.1 || ^2",
  2241. "rollbar/rollbar": "^4.0",
  2242. "ruflin/elastica": "^7 || ^8",
  2243. "symfony/mailer": "^5.4 || ^6",
  2244. "symfony/mime": "^5.4 || ^6"
  2245. },
  2246. "suggest": {
  2247. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2248. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2249. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2250. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2251. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2252. "ext-mbstring": "Allow to work properly with unicode symbols",
  2253. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2254. "ext-openssl": "Required to send log messages using SSL",
  2255. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2256. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2257. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2258. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2259. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2260. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "branch-alias": {
  2265. "dev-main": "3.x-dev"
  2266. }
  2267. },
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Monolog\\": "src/Monolog"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Jordi Boggiano",
  2280. "email": "j.boggiano@seld.be",
  2281. "homepage": "https://seld.be"
  2282. }
  2283. ],
  2284. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2285. "homepage": "https://github.com/Seldaek/monolog",
  2286. "keywords": [
  2287. "log",
  2288. "logging",
  2289. "psr-3"
  2290. ],
  2291. "support": {
  2292. "issues": "https://github.com/Seldaek/monolog/issues",
  2293. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2294. },
  2295. "funding": [
  2296. {
  2297. "url": "https://github.com/Seldaek",
  2298. "type": "github"
  2299. },
  2300. {
  2301. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2302. "type": "tidelift"
  2303. }
  2304. ],
  2305. "time": "2024-11-12T13:57:08+00:00"
  2306. },
  2307. {
  2308. "name": "nette/schema",
  2309. "version": "v1.3.2",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/nette/schema.git",
  2313. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2318. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2319. "shasum": ""
  2320. },
  2321. "require": {
  2322. "nette/utils": "^4.0",
  2323. "php": "8.1 - 8.4"
  2324. },
  2325. "require-dev": {
  2326. "nette/tester": "^2.5.2",
  2327. "phpstan/phpstan-nette": "^1.0",
  2328. "tracy/tracy": "^2.8"
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "branch-alias": {
  2333. "dev-master": "1.3-dev"
  2334. }
  2335. },
  2336. "autoload": {
  2337. "classmap": [
  2338. "src/"
  2339. ]
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "BSD-3-Clause",
  2344. "GPL-2.0-only",
  2345. "GPL-3.0-only"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "David Grudl",
  2350. "homepage": "https://davidgrudl.com"
  2351. },
  2352. {
  2353. "name": "Nette Community",
  2354. "homepage": "https://nette.org/contributors"
  2355. }
  2356. ],
  2357. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2358. "homepage": "https://nette.org",
  2359. "keywords": [
  2360. "config",
  2361. "nette"
  2362. ],
  2363. "support": {
  2364. "issues": "https://github.com/nette/schema/issues",
  2365. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2366. },
  2367. "time": "2024-10-06T23:10:23+00:00"
  2368. },
  2369. {
  2370. "name": "nette/utils",
  2371. "version": "v4.0.5",
  2372. "source": {
  2373. "type": "git",
  2374. "url": "https://github.com/nette/utils.git",
  2375. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2376. },
  2377. "dist": {
  2378. "type": "zip",
  2379. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2380. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2381. "shasum": ""
  2382. },
  2383. "require": {
  2384. "php": "8.0 - 8.4"
  2385. },
  2386. "conflict": {
  2387. "nette/finder": "<3",
  2388. "nette/schema": "<1.2.2"
  2389. },
  2390. "require-dev": {
  2391. "jetbrains/phpstorm-attributes": "dev-master",
  2392. "nette/tester": "^2.5",
  2393. "phpstan/phpstan": "^1.0",
  2394. "tracy/tracy": "^2.9"
  2395. },
  2396. "suggest": {
  2397. "ext-gd": "to use Image",
  2398. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2399. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2400. "ext-json": "to use Nette\\Utils\\Json",
  2401. "ext-mbstring": "to use Strings::lower() etc...",
  2402. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "4.0-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "classmap": [
  2412. "src/"
  2413. ]
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "BSD-3-Clause",
  2418. "GPL-2.0-only",
  2419. "GPL-3.0-only"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "David Grudl",
  2424. "homepage": "https://davidgrudl.com"
  2425. },
  2426. {
  2427. "name": "Nette Community",
  2428. "homepage": "https://nette.org/contributors"
  2429. }
  2430. ],
  2431. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2432. "homepage": "https://nette.org",
  2433. "keywords": [
  2434. "array",
  2435. "core",
  2436. "datetime",
  2437. "images",
  2438. "json",
  2439. "nette",
  2440. "paginator",
  2441. "password",
  2442. "slugify",
  2443. "string",
  2444. "unicode",
  2445. "utf-8",
  2446. "utility",
  2447. "validation"
  2448. ],
  2449. "support": {
  2450. "issues": "https://github.com/nette/utils/issues",
  2451. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2452. },
  2453. "time": "2024-08-07T15:39:19+00:00"
  2454. },
  2455. {
  2456. "name": "oscarotero/html-parser",
  2457. "version": "v0.1.8",
  2458. "source": {
  2459. "type": "git",
  2460. "url": "https://github.com/oscarotero/html-parser.git",
  2461. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d"
  2462. },
  2463. "dist": {
  2464. "type": "zip",
  2465. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d",
  2466. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d",
  2467. "shasum": ""
  2468. },
  2469. "require": {
  2470. "php": "^7.2 || ^8"
  2471. },
  2472. "require-dev": {
  2473. "friendsofphp/php-cs-fixer": "^2.11",
  2474. "phpunit/phpunit": "^8.0"
  2475. },
  2476. "type": "library",
  2477. "autoload": {
  2478. "psr-4": {
  2479. "HtmlParser\\": "src"
  2480. }
  2481. },
  2482. "notification-url": "https://packagist.org/downloads/",
  2483. "license": [
  2484. "MIT"
  2485. ],
  2486. "authors": [
  2487. {
  2488. "name": "Oscar Otero",
  2489. "email": "oom@oscarotero.com",
  2490. "homepage": "http://oscarotero.com",
  2491. "role": "Developer"
  2492. }
  2493. ],
  2494. "description": "Parse html strings to DOMDocument",
  2495. "homepage": "https://github.com/oscarotero/html-parser",
  2496. "keywords": [
  2497. "dom",
  2498. "html",
  2499. "parser"
  2500. ],
  2501. "support": {
  2502. "email": "oom@oscarotero.com",
  2503. "issues": "https://github.com/oscarotero/html-parser/issues",
  2504. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8"
  2505. },
  2506. "time": "2023-11-29T20:28:41+00:00"
  2507. },
  2508. {
  2509. "name": "phpdocumentor/reflection-common",
  2510. "version": "2.2.0",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2514. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2519. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2520. "shasum": ""
  2521. },
  2522. "require": {
  2523. "php": "^7.2 || ^8.0"
  2524. },
  2525. "type": "library",
  2526. "extra": {
  2527. "branch-alias": {
  2528. "dev-2.x": "2.x-dev"
  2529. }
  2530. },
  2531. "autoload": {
  2532. "psr-4": {
  2533. "phpDocumentor\\Reflection\\": "src/"
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "Jaap van Otterdijk",
  2543. "email": "opensource@ijaap.nl"
  2544. }
  2545. ],
  2546. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2547. "homepage": "http://www.phpdoc.org",
  2548. "keywords": [
  2549. "FQSEN",
  2550. "phpDocumentor",
  2551. "phpdoc",
  2552. "reflection",
  2553. "static analysis"
  2554. ],
  2555. "support": {
  2556. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2557. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2558. },
  2559. "time": "2020-06-27T09:03:43+00:00"
  2560. },
  2561. {
  2562. "name": "phpdocumentor/reflection-docblock",
  2563. "version": "5.6.0",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2567. "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/f3558a4c23426d12bffeaab463f8a8d8b681193c",
  2572. "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c",
  2573. "shasum": ""
  2574. },
  2575. "require": {
  2576. "doctrine/deprecations": "^1.1",
  2577. "ext-filter": "*",
  2578. "php": "^7.4 || ^8.0",
  2579. "phpdocumentor/reflection-common": "^2.2",
  2580. "phpdocumentor/type-resolver": "^1.7",
  2581. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2582. "webmozart/assert": "^1.9.1"
  2583. },
  2584. "require-dev": {
  2585. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2586. "phpstan/extension-installer": "^1.1",
  2587. "phpstan/phpstan": "^1.8",
  2588. "phpstan/phpstan-mockery": "^1.1",
  2589. "phpstan/phpstan-webmozart-assert": "^1.2",
  2590. "phpunit/phpunit": "^9.5",
  2591. "psalm/phar": "^5.26"
  2592. },
  2593. "type": "library",
  2594. "extra": {
  2595. "branch-alias": {
  2596. "dev-master": "5.x-dev"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "phpDocumentor\\Reflection\\": "src"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Mike van Riel",
  2611. "email": "me@mikevanriel.com"
  2612. },
  2613. {
  2614. "name": "Jaap van Otterdijk",
  2615. "email": "opensource@ijaap.nl"
  2616. }
  2617. ],
  2618. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2619. "support": {
  2620. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2621. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.0"
  2622. },
  2623. "time": "2024-11-12T11:25:25+00:00"
  2624. },
  2625. {
  2626. "name": "phpdocumentor/type-resolver",
  2627. "version": "1.10.0",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2631. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2636. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "doctrine/deprecations": "^1.0",
  2641. "php": "^7.3 || ^8.0",
  2642. "phpdocumentor/reflection-common": "^2.0",
  2643. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2644. },
  2645. "require-dev": {
  2646. "ext-tokenizer": "*",
  2647. "phpbench/phpbench": "^1.2",
  2648. "phpstan/extension-installer": "^1.1",
  2649. "phpstan/phpstan": "^1.8",
  2650. "phpstan/phpstan-phpunit": "^1.1",
  2651. "phpunit/phpunit": "^9.5",
  2652. "rector/rector": "^0.13.9",
  2653. "vimeo/psalm": "^4.25"
  2654. },
  2655. "type": "library",
  2656. "extra": {
  2657. "branch-alias": {
  2658. "dev-1.x": "1.x-dev"
  2659. }
  2660. },
  2661. "autoload": {
  2662. "psr-4": {
  2663. "phpDocumentor\\Reflection\\": "src"
  2664. }
  2665. },
  2666. "notification-url": "https://packagist.org/downloads/",
  2667. "license": [
  2668. "MIT"
  2669. ],
  2670. "authors": [
  2671. {
  2672. "name": "Mike van Riel",
  2673. "email": "me@mikevanriel.com"
  2674. }
  2675. ],
  2676. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2677. "support": {
  2678. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2679. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  2680. },
  2681. "time": "2024-11-09T15:12:26+00:00"
  2682. },
  2683. {
  2684. "name": "phpstan/phpdoc-parser",
  2685. "version": "1.33.0",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2689. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2694. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2695. "shasum": ""
  2696. },
  2697. "require": {
  2698. "php": "^7.2 || ^8.0"
  2699. },
  2700. "require-dev": {
  2701. "doctrine/annotations": "^2.0",
  2702. "nikic/php-parser": "^4.15",
  2703. "php-parallel-lint/php-parallel-lint": "^1.2",
  2704. "phpstan/extension-installer": "^1.0",
  2705. "phpstan/phpstan": "^1.5",
  2706. "phpstan/phpstan-phpunit": "^1.1",
  2707. "phpstan/phpstan-strict-rules": "^1.0",
  2708. "phpunit/phpunit": "^9.5",
  2709. "symfony/process": "^5.2"
  2710. },
  2711. "type": "library",
  2712. "autoload": {
  2713. "psr-4": {
  2714. "PHPStan\\PhpDocParser\\": [
  2715. "src/"
  2716. ]
  2717. }
  2718. },
  2719. "notification-url": "https://packagist.org/downloads/",
  2720. "license": [
  2721. "MIT"
  2722. ],
  2723. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2724. "support": {
  2725. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2726. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2727. },
  2728. "time": "2024-10-13T11:25:22+00:00"
  2729. },
  2730. {
  2731. "name": "psr/cache",
  2732. "version": "3.0.0",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/php-fig/cache.git",
  2736. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2741. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2742. "shasum": ""
  2743. },
  2744. "require": {
  2745. "php": ">=8.0.0"
  2746. },
  2747. "type": "library",
  2748. "extra": {
  2749. "branch-alias": {
  2750. "dev-master": "1.0.x-dev"
  2751. }
  2752. },
  2753. "autoload": {
  2754. "psr-4": {
  2755. "Psr\\Cache\\": "src/"
  2756. }
  2757. },
  2758. "notification-url": "https://packagist.org/downloads/",
  2759. "license": [
  2760. "MIT"
  2761. ],
  2762. "authors": [
  2763. {
  2764. "name": "PHP-FIG",
  2765. "homepage": "https://www.php-fig.org/"
  2766. }
  2767. ],
  2768. "description": "Common interface for caching libraries",
  2769. "keywords": [
  2770. "cache",
  2771. "psr",
  2772. "psr-6"
  2773. ],
  2774. "support": {
  2775. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2776. },
  2777. "time": "2021-02-03T23:26:27+00:00"
  2778. },
  2779. {
  2780. "name": "psr/clock",
  2781. "version": "1.0.0",
  2782. "source": {
  2783. "type": "git",
  2784. "url": "https://github.com/php-fig/clock.git",
  2785. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2786. },
  2787. "dist": {
  2788. "type": "zip",
  2789. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2790. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2791. "shasum": ""
  2792. },
  2793. "require": {
  2794. "php": "^7.0 || ^8.0"
  2795. },
  2796. "type": "library",
  2797. "autoload": {
  2798. "psr-4": {
  2799. "Psr\\Clock\\": "src/"
  2800. }
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "authors": [
  2807. {
  2808. "name": "PHP-FIG",
  2809. "homepage": "https://www.php-fig.org/"
  2810. }
  2811. ],
  2812. "description": "Common interface for reading the clock.",
  2813. "homepage": "https://github.com/php-fig/clock",
  2814. "keywords": [
  2815. "clock",
  2816. "now",
  2817. "psr",
  2818. "psr-20",
  2819. "time"
  2820. ],
  2821. "support": {
  2822. "issues": "https://github.com/php-fig/clock/issues",
  2823. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2824. },
  2825. "time": "2022-11-25T14:36:26+00:00"
  2826. },
  2827. {
  2828. "name": "psr/container",
  2829. "version": "2.0.2",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://github.com/php-fig/container.git",
  2833. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2834. },
  2835. "dist": {
  2836. "type": "zip",
  2837. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2838. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2839. "shasum": ""
  2840. },
  2841. "require": {
  2842. "php": ">=7.4.0"
  2843. },
  2844. "type": "library",
  2845. "extra": {
  2846. "branch-alias": {
  2847. "dev-master": "2.0.x-dev"
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Psr\\Container\\": "src/"
  2853. }
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "MIT"
  2858. ],
  2859. "authors": [
  2860. {
  2861. "name": "PHP-FIG",
  2862. "homepage": "https://www.php-fig.org/"
  2863. }
  2864. ],
  2865. "description": "Common Container Interface (PHP FIG PSR-11)",
  2866. "homepage": "https://github.com/php-fig/container",
  2867. "keywords": [
  2868. "PSR-11",
  2869. "container",
  2870. "container-interface",
  2871. "container-interop",
  2872. "psr"
  2873. ],
  2874. "support": {
  2875. "issues": "https://github.com/php-fig/container/issues",
  2876. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2877. },
  2878. "time": "2021-11-05T16:47:00+00:00"
  2879. },
  2880. {
  2881. "name": "psr/event-dispatcher",
  2882. "version": "1.0.0",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/php-fig/event-dispatcher.git",
  2886. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2891. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2892. "shasum": ""
  2893. },
  2894. "require": {
  2895. "php": ">=7.2.0"
  2896. },
  2897. "type": "library",
  2898. "extra": {
  2899. "branch-alias": {
  2900. "dev-master": "1.0.x-dev"
  2901. }
  2902. },
  2903. "autoload": {
  2904. "psr-4": {
  2905. "Psr\\EventDispatcher\\": "src/"
  2906. }
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "MIT"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "PHP-FIG",
  2915. "homepage": "http://www.php-fig.org/"
  2916. }
  2917. ],
  2918. "description": "Standard interfaces for event handling.",
  2919. "keywords": [
  2920. "events",
  2921. "psr",
  2922. "psr-14"
  2923. ],
  2924. "support": {
  2925. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2926. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2927. },
  2928. "time": "2019-01-08T18:20:26+00:00"
  2929. },
  2930. {
  2931. "name": "psr/http-client",
  2932. "version": "1.0.3",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/php-fig/http-client.git",
  2936. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2941. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "php": "^7.0 || ^8.0",
  2946. "psr/http-message": "^1.0 || ^2.0"
  2947. },
  2948. "type": "library",
  2949. "extra": {
  2950. "branch-alias": {
  2951. "dev-master": "1.0.x-dev"
  2952. }
  2953. },
  2954. "autoload": {
  2955. "psr-4": {
  2956. "Psr\\Http\\Client\\": "src/"
  2957. }
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "MIT"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "PHP-FIG",
  2966. "homepage": "https://www.php-fig.org/"
  2967. }
  2968. ],
  2969. "description": "Common interface for HTTP clients",
  2970. "homepage": "https://github.com/php-fig/http-client",
  2971. "keywords": [
  2972. "http",
  2973. "http-client",
  2974. "psr",
  2975. "psr-18"
  2976. ],
  2977. "support": {
  2978. "source": "https://github.com/php-fig/http-client"
  2979. },
  2980. "time": "2023-09-23T14:17:50+00:00"
  2981. },
  2982. {
  2983. "name": "psr/http-factory",
  2984. "version": "1.1.0",
  2985. "source": {
  2986. "type": "git",
  2987. "url": "https://github.com/php-fig/http-factory.git",
  2988. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2989. },
  2990. "dist": {
  2991. "type": "zip",
  2992. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2993. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2994. "shasum": ""
  2995. },
  2996. "require": {
  2997. "php": ">=7.1",
  2998. "psr/http-message": "^1.0 || ^2.0"
  2999. },
  3000. "type": "library",
  3001. "extra": {
  3002. "branch-alias": {
  3003. "dev-master": "1.0.x-dev"
  3004. }
  3005. },
  3006. "autoload": {
  3007. "psr-4": {
  3008. "Psr\\Http\\Message\\": "src/"
  3009. }
  3010. },
  3011. "notification-url": "https://packagist.org/downloads/",
  3012. "license": [
  3013. "MIT"
  3014. ],
  3015. "authors": [
  3016. {
  3017. "name": "PHP-FIG",
  3018. "homepage": "https://www.php-fig.org/"
  3019. }
  3020. ],
  3021. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3022. "keywords": [
  3023. "factory",
  3024. "http",
  3025. "message",
  3026. "psr",
  3027. "psr-17",
  3028. "psr-7",
  3029. "request",
  3030. "response"
  3031. ],
  3032. "support": {
  3033. "source": "https://github.com/php-fig/http-factory"
  3034. },
  3035. "time": "2024-04-15T12:06:14+00:00"
  3036. },
  3037. {
  3038. "name": "psr/http-message",
  3039. "version": "2.0",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/php-fig/http-message.git",
  3043. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3048. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": "^7.2 || ^8.0"
  3053. },
  3054. "type": "library",
  3055. "extra": {
  3056. "branch-alias": {
  3057. "dev-master": "2.0.x-dev"
  3058. }
  3059. },
  3060. "autoload": {
  3061. "psr-4": {
  3062. "Psr\\Http\\Message\\": "src/"
  3063. }
  3064. },
  3065. "notification-url": "https://packagist.org/downloads/",
  3066. "license": [
  3067. "MIT"
  3068. ],
  3069. "authors": [
  3070. {
  3071. "name": "PHP-FIG",
  3072. "homepage": "https://www.php-fig.org/"
  3073. }
  3074. ],
  3075. "description": "Common interface for HTTP messages",
  3076. "homepage": "https://github.com/php-fig/http-message",
  3077. "keywords": [
  3078. "http",
  3079. "http-message",
  3080. "psr",
  3081. "psr-7",
  3082. "request",
  3083. "response"
  3084. ],
  3085. "support": {
  3086. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3087. },
  3088. "time": "2023-04-04T09:54:51+00:00"
  3089. },
  3090. {
  3091. "name": "psr/link",
  3092. "version": "2.0.1",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/php-fig/link.git",
  3096. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  3101. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  3102. "shasum": ""
  3103. },
  3104. "require": {
  3105. "php": ">=8.0.0"
  3106. },
  3107. "suggest": {
  3108. "fig/link-util": "Provides some useful PSR-13 utilities"
  3109. },
  3110. "type": "library",
  3111. "extra": {
  3112. "branch-alias": {
  3113. "dev-master": "2.0.x-dev"
  3114. }
  3115. },
  3116. "autoload": {
  3117. "psr-4": {
  3118. "Psr\\Link\\": "src/"
  3119. }
  3120. },
  3121. "notification-url": "https://packagist.org/downloads/",
  3122. "license": [
  3123. "MIT"
  3124. ],
  3125. "authors": [
  3126. {
  3127. "name": "PHP-FIG",
  3128. "homepage": "http://www.php-fig.org/"
  3129. }
  3130. ],
  3131. "description": "Common interfaces for HTTP links",
  3132. "homepage": "https://github.com/php-fig/link",
  3133. "keywords": [
  3134. "http",
  3135. "http-link",
  3136. "link",
  3137. "psr",
  3138. "psr-13",
  3139. "rest"
  3140. ],
  3141. "support": {
  3142. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3143. },
  3144. "time": "2021-03-11T23:00:27+00:00"
  3145. },
  3146. {
  3147. "name": "psr/log",
  3148. "version": "3.0.2",
  3149. "source": {
  3150. "type": "git",
  3151. "url": "https://github.com/php-fig/log.git",
  3152. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3153. },
  3154. "dist": {
  3155. "type": "zip",
  3156. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3157. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3158. "shasum": ""
  3159. },
  3160. "require": {
  3161. "php": ">=8.0.0"
  3162. },
  3163. "type": "library",
  3164. "extra": {
  3165. "branch-alias": {
  3166. "dev-master": "3.x-dev"
  3167. }
  3168. },
  3169. "autoload": {
  3170. "psr-4": {
  3171. "Psr\\Log\\": "src"
  3172. }
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "PHP-FIG",
  3181. "homepage": "https://www.php-fig.org/"
  3182. }
  3183. ],
  3184. "description": "Common interface for logging libraries",
  3185. "homepage": "https://github.com/php-fig/log",
  3186. "keywords": [
  3187. "log",
  3188. "psr",
  3189. "psr-3"
  3190. ],
  3191. "support": {
  3192. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3193. },
  3194. "time": "2024-09-11T13:17:53+00:00"
  3195. },
  3196. {
  3197. "name": "symfony/apache-pack",
  3198. "version": "v1.0.1",
  3199. "source": {
  3200. "type": "git",
  3201. "url": "https://github.com/symfony/apache-pack.git",
  3202. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3203. },
  3204. "dist": {
  3205. "type": "zip",
  3206. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3207. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3208. "shasum": ""
  3209. },
  3210. "type": "symfony-pack",
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "MIT"
  3214. ],
  3215. "description": "A pack for Apache support in Symfony",
  3216. "support": {
  3217. "issues": "https://github.com/symfony/apache-pack/issues",
  3218. "source": "https://github.com/symfony/apache-pack/tree/master"
  3219. },
  3220. "time": "2017-12-12T01:46:35+00:00"
  3221. },
  3222. {
  3223. "name": "symfony/asset",
  3224. "version": "v7.1.6",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/symfony/asset.git",
  3228. "reference": "0dcd51490d7fc9fbf3c8f5aec6df182920fc0426"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/symfony/asset/zipball/0dcd51490d7fc9fbf3c8f5aec6df182920fc0426",
  3233. "reference": "0dcd51490d7fc9fbf3c8f5aec6df182920fc0426",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "php": ">=8.2"
  3238. },
  3239. "conflict": {
  3240. "symfony/http-foundation": "<6.4"
  3241. },
  3242. "require-dev": {
  3243. "symfony/http-client": "^6.4|^7.0",
  3244. "symfony/http-foundation": "^6.4|^7.0",
  3245. "symfony/http-kernel": "^6.4|^7.0"
  3246. },
  3247. "type": "library",
  3248. "autoload": {
  3249. "psr-4": {
  3250. "Symfony\\Component\\Asset\\": ""
  3251. },
  3252. "exclude-from-classmap": [
  3253. "/Tests/"
  3254. ]
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "MIT"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Fabien Potencier",
  3263. "email": "fabien@symfony.com"
  3264. },
  3265. {
  3266. "name": "Symfony Community",
  3267. "homepage": "https://symfony.com/contributors"
  3268. }
  3269. ],
  3270. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3271. "homepage": "https://symfony.com",
  3272. "support": {
  3273. "source": "https://github.com/symfony/asset/tree/v7.1.6"
  3274. },
  3275. "funding": [
  3276. {
  3277. "url": "https://symfony.com/sponsor",
  3278. "type": "custom"
  3279. },
  3280. {
  3281. "url": "https://github.com/fabpot",
  3282. "type": "github"
  3283. },
  3284. {
  3285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3286. "type": "tidelift"
  3287. }
  3288. ],
  3289. "time": "2024-10-25T15:11:02+00:00"
  3290. },
  3291. {
  3292. "name": "symfony/asset-mapper",
  3293. "version": "v7.1.6",
  3294. "source": {
  3295. "type": "git",
  3296. "url": "https://github.com/symfony/asset-mapper.git",
  3297. "reference": "f918f7e4cb2f4c1f29cc43f986473ddb2392a445"
  3298. },
  3299. "dist": {
  3300. "type": "zip",
  3301. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/f918f7e4cb2f4c1f29cc43f986473ddb2392a445",
  3302. "reference": "f918f7e4cb2f4c1f29cc43f986473ddb2392a445",
  3303. "shasum": ""
  3304. },
  3305. "require": {
  3306. "composer/semver": "^3.0",
  3307. "php": ">=8.2",
  3308. "symfony/deprecation-contracts": "^2.1|^3",
  3309. "symfony/filesystem": "^7.1",
  3310. "symfony/http-client": "^6.4|^7.0"
  3311. },
  3312. "conflict": {
  3313. "symfony/framework-bundle": "<6.4"
  3314. },
  3315. "require-dev": {
  3316. "symfony/asset": "^6.4|^7.0",
  3317. "symfony/browser-kit": "^6.4|^7.0",
  3318. "symfony/console": "^6.4|^7.0",
  3319. "symfony/event-dispatcher-contracts": "^3.0",
  3320. "symfony/finder": "^6.4|^7.0",
  3321. "symfony/framework-bundle": "^6.4|^7.0",
  3322. "symfony/http-foundation": "^6.4|^7.0",
  3323. "symfony/http-kernel": "^6.4|^7.0",
  3324. "symfony/web-link": "^6.4|^7.0"
  3325. },
  3326. "type": "library",
  3327. "autoload": {
  3328. "psr-4": {
  3329. "Symfony\\Component\\AssetMapper\\": ""
  3330. },
  3331. "exclude-from-classmap": [
  3332. "/Tests/"
  3333. ]
  3334. },
  3335. "notification-url": "https://packagist.org/downloads/",
  3336. "license": [
  3337. "MIT"
  3338. ],
  3339. "authors": [
  3340. {
  3341. "name": "Fabien Potencier",
  3342. "email": "fabien@symfony.com"
  3343. },
  3344. {
  3345. "name": "Symfony Community",
  3346. "homepage": "https://symfony.com/contributors"
  3347. }
  3348. ],
  3349. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3350. "homepage": "https://symfony.com",
  3351. "support": {
  3352. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.6"
  3353. },
  3354. "funding": [
  3355. {
  3356. "url": "https://symfony.com/sponsor",
  3357. "type": "custom"
  3358. },
  3359. {
  3360. "url": "https://github.com/fabpot",
  3361. "type": "github"
  3362. },
  3363. {
  3364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3365. "type": "tidelift"
  3366. }
  3367. ],
  3368. "time": "2024-09-25T14:20:29+00:00"
  3369. },
  3370. {
  3371. "name": "symfony/cache",
  3372. "version": "v7.1.7",
  3373. "source": {
  3374. "type": "git",
  3375. "url": "https://github.com/symfony/cache.git",
  3376. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  3377. },
  3378. "dist": {
  3379. "type": "zip",
  3380. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  3381. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  3382. "shasum": ""
  3383. },
  3384. "require": {
  3385. "php": ">=8.2",
  3386. "psr/cache": "^2.0|^3.0",
  3387. "psr/log": "^1.1|^2|^3",
  3388. "symfony/cache-contracts": "^2.5|^3",
  3389. "symfony/deprecation-contracts": "^2.5|^3.0",
  3390. "symfony/service-contracts": "^2.5|^3",
  3391. "symfony/var-exporter": "^6.4|^7.0"
  3392. },
  3393. "conflict": {
  3394. "doctrine/dbal": "<3.6",
  3395. "symfony/dependency-injection": "<6.4",
  3396. "symfony/http-kernel": "<6.4",
  3397. "symfony/var-dumper": "<6.4"
  3398. },
  3399. "provide": {
  3400. "psr/cache-implementation": "2.0|3.0",
  3401. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3402. "symfony/cache-implementation": "1.1|2.0|3.0"
  3403. },
  3404. "require-dev": {
  3405. "cache/integration-tests": "dev-master",
  3406. "doctrine/dbal": "^3.6|^4",
  3407. "predis/predis": "^1.1|^2.0",
  3408. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3409. "symfony/config": "^6.4|^7.0",
  3410. "symfony/dependency-injection": "^6.4|^7.0",
  3411. "symfony/filesystem": "^6.4|^7.0",
  3412. "symfony/http-kernel": "^6.4|^7.0",
  3413. "symfony/messenger": "^6.4|^7.0",
  3414. "symfony/var-dumper": "^6.4|^7.0"
  3415. },
  3416. "type": "library",
  3417. "autoload": {
  3418. "psr-4": {
  3419. "Symfony\\Component\\Cache\\": ""
  3420. },
  3421. "classmap": [
  3422. "Traits/ValueWrapper.php"
  3423. ],
  3424. "exclude-from-classmap": [
  3425. "/Tests/"
  3426. ]
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "MIT"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "Nicolas Grekas",
  3435. "email": "p@tchwork.com"
  3436. },
  3437. {
  3438. "name": "Symfony Community",
  3439. "homepage": "https://symfony.com/contributors"
  3440. }
  3441. ],
  3442. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3443. "homepage": "https://symfony.com",
  3444. "keywords": [
  3445. "caching",
  3446. "psr6"
  3447. ],
  3448. "support": {
  3449. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  3450. },
  3451. "funding": [
  3452. {
  3453. "url": "https://symfony.com/sponsor",
  3454. "type": "custom"
  3455. },
  3456. {
  3457. "url": "https://github.com/fabpot",
  3458. "type": "github"
  3459. },
  3460. {
  3461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3462. "type": "tidelift"
  3463. }
  3464. ],
  3465. "time": "2024-11-05T15:34:55+00:00"
  3466. },
  3467. {
  3468. "name": "symfony/cache-contracts",
  3469. "version": "v3.5.0",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/symfony/cache-contracts.git",
  3473. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3478. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3479. "shasum": ""
  3480. },
  3481. "require": {
  3482. "php": ">=8.1",
  3483. "psr/cache": "^3.0"
  3484. },
  3485. "type": "library",
  3486. "extra": {
  3487. "branch-alias": {
  3488. "dev-main": "3.5-dev"
  3489. },
  3490. "thanks": {
  3491. "name": "symfony/contracts",
  3492. "url": "https://github.com/symfony/contracts"
  3493. }
  3494. },
  3495. "autoload": {
  3496. "psr-4": {
  3497. "Symfony\\Contracts\\Cache\\": ""
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "Nicolas Grekas",
  3507. "email": "p@tchwork.com"
  3508. },
  3509. {
  3510. "name": "Symfony Community",
  3511. "homepage": "https://symfony.com/contributors"
  3512. }
  3513. ],
  3514. "description": "Generic abstractions related to caching",
  3515. "homepage": "https://symfony.com",
  3516. "keywords": [
  3517. "abstractions",
  3518. "contracts",
  3519. "decoupling",
  3520. "interfaces",
  3521. "interoperability",
  3522. "standards"
  3523. ],
  3524. "support": {
  3525. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3526. },
  3527. "funding": [
  3528. {
  3529. "url": "https://symfony.com/sponsor",
  3530. "type": "custom"
  3531. },
  3532. {
  3533. "url": "https://github.com/fabpot",
  3534. "type": "github"
  3535. },
  3536. {
  3537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3538. "type": "tidelift"
  3539. }
  3540. ],
  3541. "time": "2024-04-18T09:32:20+00:00"
  3542. },
  3543. {
  3544. "name": "symfony/clock",
  3545. "version": "v7.1.6",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/symfony/clock.git",
  3549. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  3554. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "php": ">=8.2",
  3559. "psr/clock": "^1.0",
  3560. "symfony/polyfill-php83": "^1.28"
  3561. },
  3562. "provide": {
  3563. "psr/clock-implementation": "1.0"
  3564. },
  3565. "type": "library",
  3566. "autoload": {
  3567. "files": [
  3568. "Resources/now.php"
  3569. ],
  3570. "psr-4": {
  3571. "Symfony\\Component\\Clock\\": ""
  3572. },
  3573. "exclude-from-classmap": [
  3574. "/Tests/"
  3575. ]
  3576. },
  3577. "notification-url": "https://packagist.org/downloads/",
  3578. "license": [
  3579. "MIT"
  3580. ],
  3581. "authors": [
  3582. {
  3583. "name": "Nicolas Grekas",
  3584. "email": "p@tchwork.com"
  3585. },
  3586. {
  3587. "name": "Symfony Community",
  3588. "homepage": "https://symfony.com/contributors"
  3589. }
  3590. ],
  3591. "description": "Decouples applications from the system clock",
  3592. "homepage": "https://symfony.com",
  3593. "keywords": [
  3594. "clock",
  3595. "psr20",
  3596. "time"
  3597. ],
  3598. "support": {
  3599. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  3600. },
  3601. "funding": [
  3602. {
  3603. "url": "https://symfony.com/sponsor",
  3604. "type": "custom"
  3605. },
  3606. {
  3607. "url": "https://github.com/fabpot",
  3608. "type": "github"
  3609. },
  3610. {
  3611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3612. "type": "tidelift"
  3613. }
  3614. ],
  3615. "time": "2024-09-25T14:20:29+00:00"
  3616. },
  3617. {
  3618. "name": "symfony/config",
  3619. "version": "v7.1.7",
  3620. "source": {
  3621. "type": "git",
  3622. "url": "https://github.com/symfony/config.git",
  3623. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8"
  3624. },
  3625. "dist": {
  3626. "type": "zip",
  3627. "url": "https://api.github.com/repos/symfony/config/zipball/dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  3628. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  3629. "shasum": ""
  3630. },
  3631. "require": {
  3632. "php": ">=8.2",
  3633. "symfony/deprecation-contracts": "^2.5|^3",
  3634. "symfony/filesystem": "^7.1",
  3635. "symfony/polyfill-ctype": "~1.8"
  3636. },
  3637. "conflict": {
  3638. "symfony/finder": "<6.4",
  3639. "symfony/service-contracts": "<2.5"
  3640. },
  3641. "require-dev": {
  3642. "symfony/event-dispatcher": "^6.4|^7.0",
  3643. "symfony/finder": "^6.4|^7.0",
  3644. "symfony/messenger": "^6.4|^7.0",
  3645. "symfony/service-contracts": "^2.5|^3",
  3646. "symfony/yaml": "^6.4|^7.0"
  3647. },
  3648. "type": "library",
  3649. "autoload": {
  3650. "psr-4": {
  3651. "Symfony\\Component\\Config\\": ""
  3652. },
  3653. "exclude-from-classmap": [
  3654. "/Tests/"
  3655. ]
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Fabien Potencier",
  3664. "email": "fabien@symfony.com"
  3665. },
  3666. {
  3667. "name": "Symfony Community",
  3668. "homepage": "https://symfony.com/contributors"
  3669. }
  3670. ],
  3671. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3672. "homepage": "https://symfony.com",
  3673. "support": {
  3674. "source": "https://github.com/symfony/config/tree/v7.1.7"
  3675. },
  3676. "funding": [
  3677. {
  3678. "url": "https://symfony.com/sponsor",
  3679. "type": "custom"
  3680. },
  3681. {
  3682. "url": "https://github.com/fabpot",
  3683. "type": "github"
  3684. },
  3685. {
  3686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3687. "type": "tidelift"
  3688. }
  3689. ],
  3690. "time": "2024-11-04T11:34:07+00:00"
  3691. },
  3692. {
  3693. "name": "symfony/console",
  3694. "version": "v7.1.7",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/symfony/console.git",
  3698. "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/symfony/console/zipball/3284aafcac338b6e86fd955ee4d794cbe434151a",
  3703. "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a",
  3704. "shasum": ""
  3705. },
  3706. "require": {
  3707. "php": ">=8.2",
  3708. "symfony/polyfill-mbstring": "~1.0",
  3709. "symfony/service-contracts": "^2.5|^3",
  3710. "symfony/string": "^6.4|^7.0"
  3711. },
  3712. "conflict": {
  3713. "symfony/dependency-injection": "<6.4",
  3714. "symfony/dotenv": "<6.4",
  3715. "symfony/event-dispatcher": "<6.4",
  3716. "symfony/lock": "<6.4",
  3717. "symfony/process": "<6.4"
  3718. },
  3719. "provide": {
  3720. "psr/log-implementation": "1.0|2.0|3.0"
  3721. },
  3722. "require-dev": {
  3723. "psr/log": "^1|^2|^3",
  3724. "symfony/config": "^6.4|^7.0",
  3725. "symfony/dependency-injection": "^6.4|^7.0",
  3726. "symfony/event-dispatcher": "^6.4|^7.0",
  3727. "symfony/http-foundation": "^6.4|^7.0",
  3728. "symfony/http-kernel": "^6.4|^7.0",
  3729. "symfony/lock": "^6.4|^7.0",
  3730. "symfony/messenger": "^6.4|^7.0",
  3731. "symfony/process": "^6.4|^7.0",
  3732. "symfony/stopwatch": "^6.4|^7.0",
  3733. "symfony/var-dumper": "^6.4|^7.0"
  3734. },
  3735. "type": "library",
  3736. "autoload": {
  3737. "psr-4": {
  3738. "Symfony\\Component\\Console\\": ""
  3739. },
  3740. "exclude-from-classmap": [
  3741. "/Tests/"
  3742. ]
  3743. },
  3744. "notification-url": "https://packagist.org/downloads/",
  3745. "license": [
  3746. "MIT"
  3747. ],
  3748. "authors": [
  3749. {
  3750. "name": "Fabien Potencier",
  3751. "email": "fabien@symfony.com"
  3752. },
  3753. {
  3754. "name": "Symfony Community",
  3755. "homepage": "https://symfony.com/contributors"
  3756. }
  3757. ],
  3758. "description": "Eases the creation of beautiful and testable command line interfaces",
  3759. "homepage": "https://symfony.com",
  3760. "keywords": [
  3761. "cli",
  3762. "command-line",
  3763. "console",
  3764. "terminal"
  3765. ],
  3766. "support": {
  3767. "source": "https://github.com/symfony/console/tree/v7.1.7"
  3768. },
  3769. "funding": [
  3770. {
  3771. "url": "https://symfony.com/sponsor",
  3772. "type": "custom"
  3773. },
  3774. {
  3775. "url": "https://github.com/fabpot",
  3776. "type": "github"
  3777. },
  3778. {
  3779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3780. "type": "tidelift"
  3781. }
  3782. ],
  3783. "time": "2024-11-05T15:34:55+00:00"
  3784. },
  3785. {
  3786. "name": "symfony/dependency-injection",
  3787. "version": "v7.1.6",
  3788. "source": {
  3789. "type": "git",
  3790. "url": "https://github.com/symfony/dependency-injection.git",
  3791. "reference": "1f12f9d580ef8dd09e3b756aa111cc2d5f311bfd"
  3792. },
  3793. "dist": {
  3794. "type": "zip",
  3795. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f12f9d580ef8dd09e3b756aa111cc2d5f311bfd",
  3796. "reference": "1f12f9d580ef8dd09e3b756aa111cc2d5f311bfd",
  3797. "shasum": ""
  3798. },
  3799. "require": {
  3800. "php": ">=8.2",
  3801. "psr/container": "^1.1|^2.0",
  3802. "symfony/deprecation-contracts": "^2.5|^3",
  3803. "symfony/service-contracts": "^3.5",
  3804. "symfony/var-exporter": "^6.4|^7.0"
  3805. },
  3806. "conflict": {
  3807. "ext-psr": "<1.1|>=2",
  3808. "symfony/config": "<6.4",
  3809. "symfony/finder": "<6.4",
  3810. "symfony/yaml": "<6.4"
  3811. },
  3812. "provide": {
  3813. "psr/container-implementation": "1.1|2.0",
  3814. "symfony/service-implementation": "1.1|2.0|3.0"
  3815. },
  3816. "require-dev": {
  3817. "symfony/config": "^6.4|^7.0",
  3818. "symfony/expression-language": "^6.4|^7.0",
  3819. "symfony/yaml": "^6.4|^7.0"
  3820. },
  3821. "type": "library",
  3822. "autoload": {
  3823. "psr-4": {
  3824. "Symfony\\Component\\DependencyInjection\\": ""
  3825. },
  3826. "exclude-from-classmap": [
  3827. "/Tests/"
  3828. ]
  3829. },
  3830. "notification-url": "https://packagist.org/downloads/",
  3831. "license": [
  3832. "MIT"
  3833. ],
  3834. "authors": [
  3835. {
  3836. "name": "Fabien Potencier",
  3837. "email": "fabien@symfony.com"
  3838. },
  3839. {
  3840. "name": "Symfony Community",
  3841. "homepage": "https://symfony.com/contributors"
  3842. }
  3843. ],
  3844. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3845. "homepage": "https://symfony.com",
  3846. "support": {
  3847. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.6"
  3848. },
  3849. "funding": [
  3850. {
  3851. "url": "https://symfony.com/sponsor",
  3852. "type": "custom"
  3853. },
  3854. {
  3855. "url": "https://github.com/fabpot",
  3856. "type": "github"
  3857. },
  3858. {
  3859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3860. "type": "tidelift"
  3861. }
  3862. ],
  3863. "time": "2024-10-25T15:11:02+00:00"
  3864. },
  3865. {
  3866. "name": "symfony/deprecation-contracts",
  3867. "version": "v3.5.0",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/symfony/deprecation-contracts.git",
  3871. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3876. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "php": ">=8.1"
  3881. },
  3882. "type": "library",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-main": "3.5-dev"
  3886. },
  3887. "thanks": {
  3888. "name": "symfony/contracts",
  3889. "url": "https://github.com/symfony/contracts"
  3890. }
  3891. },
  3892. "autoload": {
  3893. "files": [
  3894. "function.php"
  3895. ]
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Nicolas Grekas",
  3904. "email": "p@tchwork.com"
  3905. },
  3906. {
  3907. "name": "Symfony Community",
  3908. "homepage": "https://symfony.com/contributors"
  3909. }
  3910. ],
  3911. "description": "A generic function and convention to trigger deprecation notices",
  3912. "homepage": "https://symfony.com",
  3913. "support": {
  3914. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3915. },
  3916. "funding": [
  3917. {
  3918. "url": "https://symfony.com/sponsor",
  3919. "type": "custom"
  3920. },
  3921. {
  3922. "url": "https://github.com/fabpot",
  3923. "type": "github"
  3924. },
  3925. {
  3926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3927. "type": "tidelift"
  3928. }
  3929. ],
  3930. "time": "2024-04-18T09:32:20+00:00"
  3931. },
  3932. {
  3933. "name": "symfony/doctrine-bridge",
  3934. "version": "v7.1.6",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://github.com/symfony/doctrine-bridge.git",
  3938. "reference": "3fcfb37b738def92757b6ac5365a3147b2e2dd36"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/3fcfb37b738def92757b6ac5365a3147b2e2dd36",
  3943. "reference": "3fcfb37b738def92757b6ac5365a3147b2e2dd36",
  3944. "shasum": ""
  3945. },
  3946. "require": {
  3947. "doctrine/event-manager": "^2",
  3948. "doctrine/persistence": "^3.1",
  3949. "php": ">=8.2",
  3950. "symfony/deprecation-contracts": "^2.5|^3",
  3951. "symfony/polyfill-ctype": "~1.8",
  3952. "symfony/polyfill-mbstring": "~1.0",
  3953. "symfony/service-contracts": "^2.5|^3"
  3954. },
  3955. "conflict": {
  3956. "doctrine/dbal": "<3.6",
  3957. "doctrine/lexer": "<1.1",
  3958. "doctrine/orm": "<2.15",
  3959. "symfony/cache": "<6.4",
  3960. "symfony/dependency-injection": "<6.4",
  3961. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3962. "symfony/http-foundation": "<6.4",
  3963. "symfony/http-kernel": "<6.4",
  3964. "symfony/lock": "<6.4",
  3965. "symfony/messenger": "<6.4",
  3966. "symfony/property-info": "<6.4",
  3967. "symfony/security-bundle": "<6.4",
  3968. "symfony/security-core": "<6.4",
  3969. "symfony/validator": "<6.4"
  3970. },
  3971. "require-dev": {
  3972. "doctrine/collections": "^1.0|^2.0",
  3973. "doctrine/data-fixtures": "^1.1",
  3974. "doctrine/dbal": "^3.6|^4",
  3975. "doctrine/orm": "^2.15|^3",
  3976. "psr/log": "^1|^2|^3",
  3977. "symfony/cache": "^6.4|^7.0",
  3978. "symfony/config": "^6.4|^7.0",
  3979. "symfony/dependency-injection": "^6.4|^7.0",
  3980. "symfony/doctrine-messenger": "^6.4|^7.0",
  3981. "symfony/expression-language": "^6.4|^7.0",
  3982. "symfony/form": "^6.4.6|^7.0.6",
  3983. "symfony/http-kernel": "^6.4|^7.0",
  3984. "symfony/lock": "^6.4|^7.0",
  3985. "symfony/messenger": "^6.4|^7.0",
  3986. "symfony/property-access": "^6.4|^7.0",
  3987. "symfony/property-info": "^6.4|^7.0",
  3988. "symfony/security-core": "^6.4|^7.0",
  3989. "symfony/stopwatch": "^6.4|^7.0",
  3990. "symfony/translation": "^6.4|^7.0",
  3991. "symfony/type-info": "^7.1",
  3992. "symfony/uid": "^6.4|^7.0",
  3993. "symfony/validator": "^6.4|^7.0",
  3994. "symfony/var-dumper": "^6.4|^7.0"
  3995. },
  3996. "type": "symfony-bridge",
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Symfony\\Bridge\\Doctrine\\": ""
  4000. },
  4001. "exclude-from-classmap": [
  4002. "/Tests/"
  4003. ]
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Fabien Potencier",
  4012. "email": "fabien@symfony.com"
  4013. },
  4014. {
  4015. "name": "Symfony Community",
  4016. "homepage": "https://symfony.com/contributors"
  4017. }
  4018. ],
  4019. "description": "Provides integration for Doctrine with various Symfony components",
  4020. "homepage": "https://symfony.com",
  4021. "support": {
  4022. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.6"
  4023. },
  4024. "funding": [
  4025. {
  4026. "url": "https://symfony.com/sponsor",
  4027. "type": "custom"
  4028. },
  4029. {
  4030. "url": "https://github.com/fabpot",
  4031. "type": "github"
  4032. },
  4033. {
  4034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4035. "type": "tidelift"
  4036. }
  4037. ],
  4038. "time": "2024-10-18T09:42:06+00:00"
  4039. },
  4040. {
  4041. "name": "symfony/doctrine-messenger",
  4042. "version": "v7.1.6",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/symfony/doctrine-messenger.git",
  4046. "reference": "b2f548cdc9c85258493e022aefa53a44e5b9dfa3"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/b2f548cdc9c85258493e022aefa53a44e5b9dfa3",
  4051. "reference": "b2f548cdc9c85258493e022aefa53a44e5b9dfa3",
  4052. "shasum": ""
  4053. },
  4054. "require": {
  4055. "doctrine/dbal": "^3.6|^4",
  4056. "php": ">=8.2",
  4057. "symfony/messenger": "^6.4|^7.0",
  4058. "symfony/service-contracts": "^2.5|^3"
  4059. },
  4060. "conflict": {
  4061. "doctrine/persistence": "<1.3"
  4062. },
  4063. "require-dev": {
  4064. "doctrine/persistence": "^1.3|^2|^3",
  4065. "symfony/property-access": "^6.4|^7.0",
  4066. "symfony/serializer": "^6.4|^7.0"
  4067. },
  4068. "type": "symfony-messenger-bridge",
  4069. "autoload": {
  4070. "psr-4": {
  4071. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4072. },
  4073. "exclude-from-classmap": [
  4074. "/Tests/"
  4075. ]
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "authors": [
  4082. {
  4083. "name": "Fabien Potencier",
  4084. "email": "fabien@symfony.com"
  4085. },
  4086. {
  4087. "name": "Symfony Community",
  4088. "homepage": "https://symfony.com/contributors"
  4089. }
  4090. ],
  4091. "description": "Symfony Doctrine Messenger Bridge",
  4092. "homepage": "https://symfony.com",
  4093. "support": {
  4094. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.6"
  4095. },
  4096. "funding": [
  4097. {
  4098. "url": "https://symfony.com/sponsor",
  4099. "type": "custom"
  4100. },
  4101. {
  4102. "url": "https://github.com/fabpot",
  4103. "type": "github"
  4104. },
  4105. {
  4106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4107. "type": "tidelift"
  4108. }
  4109. ],
  4110. "time": "2024-10-18T09:46:03+00:00"
  4111. },
  4112. {
  4113. "name": "symfony/dotenv",
  4114. "version": "v7.1.6",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/symfony/dotenv.git",
  4118. "reference": "56a10f3032a6c2f085b13bc429e9d78a2c895dc4"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/symfony/dotenv/zipball/56a10f3032a6c2f085b13bc429e9d78a2c895dc4",
  4123. "reference": "56a10f3032a6c2f085b13bc429e9d78a2c895dc4",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": ">=8.2"
  4128. },
  4129. "conflict": {
  4130. "symfony/console": "<6.4",
  4131. "symfony/process": "<6.4"
  4132. },
  4133. "require-dev": {
  4134. "symfony/console": "^6.4|^7.0",
  4135. "symfony/process": "^6.4|^7.0"
  4136. },
  4137. "type": "library",
  4138. "autoload": {
  4139. "psr-4": {
  4140. "Symfony\\Component\\Dotenv\\": ""
  4141. },
  4142. "exclude-from-classmap": [
  4143. "/Tests/"
  4144. ]
  4145. },
  4146. "notification-url": "https://packagist.org/downloads/",
  4147. "license": [
  4148. "MIT"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "Fabien Potencier",
  4153. "email": "fabien@symfony.com"
  4154. },
  4155. {
  4156. "name": "Symfony Community",
  4157. "homepage": "https://symfony.com/contributors"
  4158. }
  4159. ],
  4160. "description": "Registers environment variables from a .env file",
  4161. "homepage": "https://symfony.com",
  4162. "keywords": [
  4163. "dotenv",
  4164. "env",
  4165. "environment"
  4166. ],
  4167. "support": {
  4168. "source": "https://github.com/symfony/dotenv/tree/v7.1.6"
  4169. },
  4170. "funding": [
  4171. {
  4172. "url": "https://symfony.com/sponsor",
  4173. "type": "custom"
  4174. },
  4175. {
  4176. "url": "https://github.com/fabpot",
  4177. "type": "github"
  4178. },
  4179. {
  4180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4181. "type": "tidelift"
  4182. }
  4183. ],
  4184. "time": "2024-09-28T11:14:12+00:00"
  4185. },
  4186. {
  4187. "name": "symfony/error-handler",
  4188. "version": "v7.1.7",
  4189. "source": {
  4190. "type": "git",
  4191. "url": "https://github.com/symfony/error-handler.git",
  4192. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  4193. },
  4194. "dist": {
  4195. "type": "zip",
  4196. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  4197. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  4198. "shasum": ""
  4199. },
  4200. "require": {
  4201. "php": ">=8.2",
  4202. "psr/log": "^1|^2|^3",
  4203. "symfony/var-dumper": "^6.4|^7.0"
  4204. },
  4205. "conflict": {
  4206. "symfony/deprecation-contracts": "<2.5",
  4207. "symfony/http-kernel": "<6.4"
  4208. },
  4209. "require-dev": {
  4210. "symfony/deprecation-contracts": "^2.5|^3",
  4211. "symfony/http-kernel": "^6.4|^7.0",
  4212. "symfony/serializer": "^6.4|^7.0"
  4213. },
  4214. "bin": [
  4215. "Resources/bin/patch-type-declarations"
  4216. ],
  4217. "type": "library",
  4218. "autoload": {
  4219. "psr-4": {
  4220. "Symfony\\Component\\ErrorHandler\\": ""
  4221. },
  4222. "exclude-from-classmap": [
  4223. "/Tests/"
  4224. ]
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Fabien Potencier",
  4233. "email": "fabien@symfony.com"
  4234. },
  4235. {
  4236. "name": "Symfony Community",
  4237. "homepage": "https://symfony.com/contributors"
  4238. }
  4239. ],
  4240. "description": "Provides tools to manage errors and ease debugging PHP code",
  4241. "homepage": "https://symfony.com",
  4242. "support": {
  4243. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://symfony.com/sponsor",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://github.com/fabpot",
  4252. "type": "github"
  4253. },
  4254. {
  4255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4256. "type": "tidelift"
  4257. }
  4258. ],
  4259. "time": "2024-11-05T15:34:55+00:00"
  4260. },
  4261. {
  4262. "name": "symfony/event-dispatcher",
  4263. "version": "v7.1.6",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/symfony/event-dispatcher.git",
  4267. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  4272. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  4273. "shasum": ""
  4274. },
  4275. "require": {
  4276. "php": ">=8.2",
  4277. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4278. },
  4279. "conflict": {
  4280. "symfony/dependency-injection": "<6.4",
  4281. "symfony/service-contracts": "<2.5"
  4282. },
  4283. "provide": {
  4284. "psr/event-dispatcher-implementation": "1.0",
  4285. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4286. },
  4287. "require-dev": {
  4288. "psr/log": "^1|^2|^3",
  4289. "symfony/config": "^6.4|^7.0",
  4290. "symfony/dependency-injection": "^6.4|^7.0",
  4291. "symfony/error-handler": "^6.4|^7.0",
  4292. "symfony/expression-language": "^6.4|^7.0",
  4293. "symfony/http-foundation": "^6.4|^7.0",
  4294. "symfony/service-contracts": "^2.5|^3",
  4295. "symfony/stopwatch": "^6.4|^7.0"
  4296. },
  4297. "type": "library",
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Symfony\\Component\\EventDispatcher\\": ""
  4301. },
  4302. "exclude-from-classmap": [
  4303. "/Tests/"
  4304. ]
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "MIT"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "Fabien Potencier",
  4313. "email": "fabien@symfony.com"
  4314. },
  4315. {
  4316. "name": "Symfony Community",
  4317. "homepage": "https://symfony.com/contributors"
  4318. }
  4319. ],
  4320. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4321. "homepage": "https://symfony.com",
  4322. "support": {
  4323. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  4324. },
  4325. "funding": [
  4326. {
  4327. "url": "https://symfony.com/sponsor",
  4328. "type": "custom"
  4329. },
  4330. {
  4331. "url": "https://github.com/fabpot",
  4332. "type": "github"
  4333. },
  4334. {
  4335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4336. "type": "tidelift"
  4337. }
  4338. ],
  4339. "time": "2024-09-25T14:20:29+00:00"
  4340. },
  4341. {
  4342. "name": "symfony/event-dispatcher-contracts",
  4343. "version": "v3.5.0",
  4344. "source": {
  4345. "type": "git",
  4346. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4347. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4348. },
  4349. "dist": {
  4350. "type": "zip",
  4351. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4352. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4353. "shasum": ""
  4354. },
  4355. "require": {
  4356. "php": ">=8.1",
  4357. "psr/event-dispatcher": "^1"
  4358. },
  4359. "type": "library",
  4360. "extra": {
  4361. "branch-alias": {
  4362. "dev-main": "3.5-dev"
  4363. },
  4364. "thanks": {
  4365. "name": "symfony/contracts",
  4366. "url": "https://github.com/symfony/contracts"
  4367. }
  4368. },
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Symfony\\Contracts\\EventDispatcher\\": ""
  4372. }
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "Nicolas Grekas",
  4381. "email": "p@tchwork.com"
  4382. },
  4383. {
  4384. "name": "Symfony Community",
  4385. "homepage": "https://symfony.com/contributors"
  4386. }
  4387. ],
  4388. "description": "Generic abstractions related to dispatching event",
  4389. "homepage": "https://symfony.com",
  4390. "keywords": [
  4391. "abstractions",
  4392. "contracts",
  4393. "decoupling",
  4394. "interfaces",
  4395. "interoperability",
  4396. "standards"
  4397. ],
  4398. "support": {
  4399. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4400. },
  4401. "funding": [
  4402. {
  4403. "url": "https://symfony.com/sponsor",
  4404. "type": "custom"
  4405. },
  4406. {
  4407. "url": "https://github.com/fabpot",
  4408. "type": "github"
  4409. },
  4410. {
  4411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4412. "type": "tidelift"
  4413. }
  4414. ],
  4415. "time": "2024-04-18T09:32:20+00:00"
  4416. },
  4417. {
  4418. "name": "symfony/expression-language",
  4419. "version": "v7.1.6",
  4420. "source": {
  4421. "type": "git",
  4422. "url": "https://github.com/symfony/expression-language.git",
  4423. "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5"
  4424. },
  4425. "dist": {
  4426. "type": "zip",
  4427. "url": "https://api.github.com/repos/symfony/expression-language/zipball/c3a1224bc144b36cd79149b42c1aecd5f81395a5",
  4428. "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5",
  4429. "shasum": ""
  4430. },
  4431. "require": {
  4432. "php": ">=8.2",
  4433. "symfony/cache": "^6.4|^7.0",
  4434. "symfony/deprecation-contracts": "^2.5|^3",
  4435. "symfony/service-contracts": "^2.5|^3"
  4436. },
  4437. "type": "library",
  4438. "autoload": {
  4439. "psr-4": {
  4440. "Symfony\\Component\\ExpressionLanguage\\": ""
  4441. },
  4442. "exclude-from-classmap": [
  4443. "/Tests/"
  4444. ]
  4445. },
  4446. "notification-url": "https://packagist.org/downloads/",
  4447. "license": [
  4448. "MIT"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Fabien Potencier",
  4453. "email": "fabien@symfony.com"
  4454. },
  4455. {
  4456. "name": "Symfony Community",
  4457. "homepage": "https://symfony.com/contributors"
  4458. }
  4459. ],
  4460. "description": "Provides an engine that can compile and evaluate expressions",
  4461. "homepage": "https://symfony.com",
  4462. "support": {
  4463. "source": "https://github.com/symfony/expression-language/tree/v7.1.6"
  4464. },
  4465. "funding": [
  4466. {
  4467. "url": "https://symfony.com/sponsor",
  4468. "type": "custom"
  4469. },
  4470. {
  4471. "url": "https://github.com/fabpot",
  4472. "type": "github"
  4473. },
  4474. {
  4475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4476. "type": "tidelift"
  4477. }
  4478. ],
  4479. "time": "2024-10-09T08:46:59+00:00"
  4480. },
  4481. {
  4482. "name": "symfony/filesystem",
  4483. "version": "v7.1.6",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/symfony/filesystem.git",
  4487. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  4492. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  4493. "shasum": ""
  4494. },
  4495. "require": {
  4496. "php": ">=8.2",
  4497. "symfony/polyfill-ctype": "~1.8",
  4498. "symfony/polyfill-mbstring": "~1.8"
  4499. },
  4500. "require-dev": {
  4501. "symfony/process": "^6.4|^7.0"
  4502. },
  4503. "type": "library",
  4504. "autoload": {
  4505. "psr-4": {
  4506. "Symfony\\Component\\Filesystem\\": ""
  4507. },
  4508. "exclude-from-classmap": [
  4509. "/Tests/"
  4510. ]
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "MIT"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "Fabien Potencier",
  4519. "email": "fabien@symfony.com"
  4520. },
  4521. {
  4522. "name": "Symfony Community",
  4523. "homepage": "https://symfony.com/contributors"
  4524. }
  4525. ],
  4526. "description": "Provides basic utilities for the filesystem",
  4527. "homepage": "https://symfony.com",
  4528. "support": {
  4529. "source": "https://github.com/symfony/filesystem/tree/v7.1.6"
  4530. },
  4531. "funding": [
  4532. {
  4533. "url": "https://symfony.com/sponsor",
  4534. "type": "custom"
  4535. },
  4536. {
  4537. "url": "https://github.com/fabpot",
  4538. "type": "github"
  4539. },
  4540. {
  4541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4542. "type": "tidelift"
  4543. }
  4544. ],
  4545. "time": "2024-10-25T15:11:02+00:00"
  4546. },
  4547. {
  4548. "name": "symfony/finder",
  4549. "version": "v7.1.6",
  4550. "source": {
  4551. "type": "git",
  4552. "url": "https://github.com/symfony/finder.git",
  4553. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  4554. },
  4555. "dist": {
  4556. "type": "zip",
  4557. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  4558. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  4559. "shasum": ""
  4560. },
  4561. "require": {
  4562. "php": ">=8.2"
  4563. },
  4564. "require-dev": {
  4565. "symfony/filesystem": "^6.4|^7.0"
  4566. },
  4567. "type": "library",
  4568. "autoload": {
  4569. "psr-4": {
  4570. "Symfony\\Component\\Finder\\": ""
  4571. },
  4572. "exclude-from-classmap": [
  4573. "/Tests/"
  4574. ]
  4575. },
  4576. "notification-url": "https://packagist.org/downloads/",
  4577. "license": [
  4578. "MIT"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "Fabien Potencier",
  4583. "email": "fabien@symfony.com"
  4584. },
  4585. {
  4586. "name": "Symfony Community",
  4587. "homepage": "https://symfony.com/contributors"
  4588. }
  4589. ],
  4590. "description": "Finds files and directories via an intuitive fluent interface",
  4591. "homepage": "https://symfony.com",
  4592. "support": {
  4593. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  4594. },
  4595. "funding": [
  4596. {
  4597. "url": "https://symfony.com/sponsor",
  4598. "type": "custom"
  4599. },
  4600. {
  4601. "url": "https://github.com/fabpot",
  4602. "type": "github"
  4603. },
  4604. {
  4605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4606. "type": "tidelift"
  4607. }
  4608. ],
  4609. "time": "2024-10-01T08:31:23+00:00"
  4610. },
  4611. {
  4612. "name": "symfony/flex",
  4613. "version": "v2.4.7",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://github.com/symfony/flex.git",
  4617. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4622. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4623. "shasum": ""
  4624. },
  4625. "require": {
  4626. "composer-plugin-api": "^2.1",
  4627. "php": ">=8.0"
  4628. },
  4629. "conflict": {
  4630. "composer/semver": "<1.7.2"
  4631. },
  4632. "require-dev": {
  4633. "composer/composer": "^2.1",
  4634. "symfony/dotenv": "^5.4|^6.0",
  4635. "symfony/filesystem": "^5.4|^6.0",
  4636. "symfony/phpunit-bridge": "^5.4|^6.0",
  4637. "symfony/process": "^5.4|^6.0"
  4638. },
  4639. "type": "composer-plugin",
  4640. "extra": {
  4641. "class": "Symfony\\Flex\\Flex"
  4642. },
  4643. "autoload": {
  4644. "psr-4": {
  4645. "Symfony\\Flex\\": "src"
  4646. }
  4647. },
  4648. "notification-url": "https://packagist.org/downloads/",
  4649. "license": [
  4650. "MIT"
  4651. ],
  4652. "authors": [
  4653. {
  4654. "name": "Fabien Potencier",
  4655. "email": "fabien.potencier@gmail.com"
  4656. }
  4657. ],
  4658. "description": "Composer plugin for Symfony",
  4659. "support": {
  4660. "issues": "https://github.com/symfony/flex/issues",
  4661. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  4662. },
  4663. "funding": [
  4664. {
  4665. "url": "https://symfony.com/sponsor",
  4666. "type": "custom"
  4667. },
  4668. {
  4669. "url": "https://github.com/fabpot",
  4670. "type": "github"
  4671. },
  4672. {
  4673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4674. "type": "tidelift"
  4675. }
  4676. ],
  4677. "time": "2024-10-07T08:51:54+00:00"
  4678. },
  4679. {
  4680. "name": "symfony/form",
  4681. "version": "v7.1.6",
  4682. "source": {
  4683. "type": "git",
  4684. "url": "https://github.com/symfony/form.git",
  4685. "reference": "7a48dda96fe16711fc042df38ca1a7dd4d9d6387"
  4686. },
  4687. "dist": {
  4688. "type": "zip",
  4689. "url": "https://api.github.com/repos/symfony/form/zipball/7a48dda96fe16711fc042df38ca1a7dd4d9d6387",
  4690. "reference": "7a48dda96fe16711fc042df38ca1a7dd4d9d6387",
  4691. "shasum": ""
  4692. },
  4693. "require": {
  4694. "php": ">=8.2",
  4695. "symfony/deprecation-contracts": "^2.5|^3",
  4696. "symfony/event-dispatcher": "^6.4|^7.0",
  4697. "symfony/options-resolver": "^6.4|^7.0",
  4698. "symfony/polyfill-ctype": "~1.8",
  4699. "symfony/polyfill-intl-icu": "^1.21",
  4700. "symfony/polyfill-mbstring": "~1.0",
  4701. "symfony/property-access": "^6.4|^7.0",
  4702. "symfony/service-contracts": "^2.5|^3"
  4703. },
  4704. "conflict": {
  4705. "symfony/console": "<6.4",
  4706. "symfony/dependency-injection": "<6.4",
  4707. "symfony/doctrine-bridge": "<6.4",
  4708. "symfony/error-handler": "<6.4",
  4709. "symfony/framework-bundle": "<6.4",
  4710. "symfony/http-kernel": "<6.4",
  4711. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4712. "symfony/translation-contracts": "<2.5",
  4713. "symfony/twig-bridge": "<6.4"
  4714. },
  4715. "require-dev": {
  4716. "doctrine/collections": "^1.0|^2.0",
  4717. "symfony/config": "^6.4|^7.0",
  4718. "symfony/console": "^6.4|^7.0",
  4719. "symfony/dependency-injection": "^6.4|^7.0",
  4720. "symfony/expression-language": "^6.4|^7.0",
  4721. "symfony/html-sanitizer": "^6.4|^7.0",
  4722. "symfony/http-foundation": "^6.4|^7.0",
  4723. "symfony/http-kernel": "^6.4|^7.0",
  4724. "symfony/intl": "^6.4|^7.0",
  4725. "symfony/security-core": "^6.4|^7.0",
  4726. "symfony/security-csrf": "^6.4|^7.0",
  4727. "symfony/translation": "^6.4.3|^7.0.3",
  4728. "symfony/uid": "^6.4|^7.0",
  4729. "symfony/validator": "^6.4|^7.0",
  4730. "symfony/var-dumper": "^6.4|^7.0"
  4731. },
  4732. "type": "library",
  4733. "autoload": {
  4734. "psr-4": {
  4735. "Symfony\\Component\\Form\\": ""
  4736. },
  4737. "exclude-from-classmap": [
  4738. "/Tests/"
  4739. ]
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "MIT"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "Fabien Potencier",
  4748. "email": "fabien@symfony.com"
  4749. },
  4750. {
  4751. "name": "Symfony Community",
  4752. "homepage": "https://symfony.com/contributors"
  4753. }
  4754. ],
  4755. "description": "Allows to easily create, process and reuse HTML forms",
  4756. "homepage": "https://symfony.com",
  4757. "support": {
  4758. "source": "https://github.com/symfony/form/tree/v7.1.6"
  4759. },
  4760. "funding": [
  4761. {
  4762. "url": "https://symfony.com/sponsor",
  4763. "type": "custom"
  4764. },
  4765. {
  4766. "url": "https://github.com/fabpot",
  4767. "type": "github"
  4768. },
  4769. {
  4770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4771. "type": "tidelift"
  4772. }
  4773. ],
  4774. "time": "2024-10-09T08:46:59+00:00"
  4775. },
  4776. {
  4777. "name": "symfony/framework-bundle",
  4778. "version": "v7.1.6",
  4779. "source": {
  4780. "type": "git",
  4781. "url": "https://github.com/symfony/framework-bundle.git",
  4782. "reference": "1d616d762905091e798d64c53ffe3840ccfc3d89"
  4783. },
  4784. "dist": {
  4785. "type": "zip",
  4786. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/1d616d762905091e798d64c53ffe3840ccfc3d89",
  4787. "reference": "1d616d762905091e798d64c53ffe3840ccfc3d89",
  4788. "shasum": ""
  4789. },
  4790. "require": {
  4791. "composer-runtime-api": ">=2.1",
  4792. "ext-xml": "*",
  4793. "php": ">=8.2",
  4794. "symfony/cache": "^6.4|^7.0",
  4795. "symfony/config": "^6.4|^7.0",
  4796. "symfony/dependency-injection": "^7.1.5",
  4797. "symfony/deprecation-contracts": "^2.5|^3",
  4798. "symfony/error-handler": "^6.4|^7.0",
  4799. "symfony/event-dispatcher": "^6.4|^7.0",
  4800. "symfony/filesystem": "^7.1",
  4801. "symfony/finder": "^6.4|^7.0",
  4802. "symfony/http-foundation": "^6.4|^7.0",
  4803. "symfony/http-kernel": "^6.4|^7.0",
  4804. "symfony/polyfill-mbstring": "~1.0",
  4805. "symfony/routing": "^6.4|^7.0"
  4806. },
  4807. "conflict": {
  4808. "doctrine/persistence": "<1.3",
  4809. "phpdocumentor/reflection-docblock": "<3.2.2",
  4810. "phpdocumentor/type-resolver": "<1.4.0",
  4811. "symfony/asset": "<6.4",
  4812. "symfony/asset-mapper": "<6.4",
  4813. "symfony/clock": "<6.4",
  4814. "symfony/console": "<6.4",
  4815. "symfony/dom-crawler": "<6.4",
  4816. "symfony/dotenv": "<6.4",
  4817. "symfony/form": "<6.4",
  4818. "symfony/http-client": "<6.4",
  4819. "symfony/lock": "<6.4",
  4820. "symfony/mailer": "<6.4",
  4821. "symfony/messenger": "<6.4",
  4822. "symfony/mime": "<6.4",
  4823. "symfony/property-access": "<6.4",
  4824. "symfony/property-info": "<6.4",
  4825. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4826. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4827. "symfony/security-core": "<6.4",
  4828. "symfony/security-csrf": "<6.4",
  4829. "symfony/serializer": "<6.4",
  4830. "symfony/stopwatch": "<6.4",
  4831. "symfony/translation": "<6.4",
  4832. "symfony/twig-bridge": "<6.4",
  4833. "symfony/twig-bundle": "<6.4",
  4834. "symfony/validator": "<6.4",
  4835. "symfony/web-profiler-bundle": "<6.4",
  4836. "symfony/workflow": "<6.4"
  4837. },
  4838. "require-dev": {
  4839. "doctrine/persistence": "^1.3|^2|^3",
  4840. "dragonmantank/cron-expression": "^3.1",
  4841. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4842. "seld/jsonlint": "^1.10",
  4843. "symfony/asset": "^6.4|^7.0",
  4844. "symfony/asset-mapper": "^6.4|^7.0",
  4845. "symfony/browser-kit": "^6.4|^7.0",
  4846. "symfony/clock": "^6.4|^7.0",
  4847. "symfony/console": "^6.4|^7.0",
  4848. "symfony/css-selector": "^6.4|^7.0",
  4849. "symfony/dom-crawler": "^6.4|^7.0",
  4850. "symfony/dotenv": "^6.4|^7.0",
  4851. "symfony/expression-language": "^6.4|^7.0",
  4852. "symfony/form": "^6.4|^7.0",
  4853. "symfony/html-sanitizer": "^6.4|^7.0",
  4854. "symfony/http-client": "^6.4|^7.0",
  4855. "symfony/lock": "^6.4|^7.0",
  4856. "symfony/mailer": "^6.4|^7.0",
  4857. "symfony/messenger": "^6.4|^7.0",
  4858. "symfony/mime": "^6.4|^7.0",
  4859. "symfony/notifier": "^6.4|^7.0",
  4860. "symfony/polyfill-intl-icu": "~1.0",
  4861. "symfony/process": "^6.4|^7.0",
  4862. "symfony/property-info": "^6.4|^7.0",
  4863. "symfony/rate-limiter": "^6.4|^7.0",
  4864. "symfony/scheduler": "^6.4.4|^7.0.4",
  4865. "symfony/security-bundle": "^6.4|^7.0",
  4866. "symfony/semaphore": "^6.4|^7.0",
  4867. "symfony/serializer": "^6.4|^7.0",
  4868. "symfony/stopwatch": "^6.4|^7.0",
  4869. "symfony/string": "^6.4|^7.0",
  4870. "symfony/translation": "^6.4|^7.0",
  4871. "symfony/twig-bundle": "^6.4|^7.0",
  4872. "symfony/type-info": "^7.1",
  4873. "symfony/uid": "^6.4|^7.0",
  4874. "symfony/validator": "^6.4|^7.0",
  4875. "symfony/web-link": "^6.4|^7.0",
  4876. "symfony/workflow": "^6.4|^7.0",
  4877. "symfony/yaml": "^6.4|^7.0",
  4878. "twig/twig": "^3.0.4"
  4879. },
  4880. "type": "symfony-bundle",
  4881. "autoload": {
  4882. "psr-4": {
  4883. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4884. },
  4885. "exclude-from-classmap": [
  4886. "/Tests/"
  4887. ]
  4888. },
  4889. "notification-url": "https://packagist.org/downloads/",
  4890. "license": [
  4891. "MIT"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "Fabien Potencier",
  4896. "email": "fabien@symfony.com"
  4897. },
  4898. {
  4899. "name": "Symfony Community",
  4900. "homepage": "https://symfony.com/contributors"
  4901. }
  4902. ],
  4903. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4904. "homepage": "https://symfony.com",
  4905. "support": {
  4906. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.6"
  4907. },
  4908. "funding": [
  4909. {
  4910. "url": "https://symfony.com/sponsor",
  4911. "type": "custom"
  4912. },
  4913. {
  4914. "url": "https://github.com/fabpot",
  4915. "type": "github"
  4916. },
  4917. {
  4918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4919. "type": "tidelift"
  4920. }
  4921. ],
  4922. "time": "2024-10-25T15:11:02+00:00"
  4923. },
  4924. {
  4925. "name": "symfony/http-client",
  4926. "version": "v7.1.7",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://github.com/symfony/http-client.git",
  4930. "reference": "90ab2a4992dcf5d1f19a9b8737eba36a7c305fd0"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://api.github.com/repos/symfony/http-client/zipball/90ab2a4992dcf5d1f19a9b8737eba36a7c305fd0",
  4935. "reference": "90ab2a4992dcf5d1f19a9b8737eba36a7c305fd0",
  4936. "shasum": ""
  4937. },
  4938. "require": {
  4939. "php": ">=8.2",
  4940. "psr/log": "^1|^2|^3",
  4941. "symfony/deprecation-contracts": "^2.5|^3",
  4942. "symfony/http-client-contracts": "^3.4.1",
  4943. "symfony/service-contracts": "^2.5|^3"
  4944. },
  4945. "conflict": {
  4946. "php-http/discovery": "<1.15",
  4947. "symfony/http-foundation": "<6.4"
  4948. },
  4949. "provide": {
  4950. "php-http/async-client-implementation": "*",
  4951. "php-http/client-implementation": "*",
  4952. "psr/http-client-implementation": "1.0",
  4953. "symfony/http-client-implementation": "3.0"
  4954. },
  4955. "require-dev": {
  4956. "amphp/amp": "^2.5",
  4957. "amphp/http-client": "^4.2.1",
  4958. "amphp/http-tunnel": "^1.0",
  4959. "amphp/socket": "^1.1",
  4960. "guzzlehttp/promises": "^1.4|^2.0",
  4961. "nyholm/psr7": "^1.0",
  4962. "php-http/httplug": "^1.0|^2.0",
  4963. "psr/http-client": "^1.0",
  4964. "symfony/dependency-injection": "^6.4|^7.0",
  4965. "symfony/http-kernel": "^6.4|^7.0",
  4966. "symfony/messenger": "^6.4|^7.0",
  4967. "symfony/process": "^6.4|^7.0",
  4968. "symfony/rate-limiter": "^6.4|^7.0",
  4969. "symfony/stopwatch": "^6.4|^7.0"
  4970. },
  4971. "type": "library",
  4972. "autoload": {
  4973. "psr-4": {
  4974. "Symfony\\Component\\HttpClient\\": ""
  4975. },
  4976. "exclude-from-classmap": [
  4977. "/Tests/"
  4978. ]
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "MIT"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Nicolas Grekas",
  4987. "email": "p@tchwork.com"
  4988. },
  4989. {
  4990. "name": "Symfony Community",
  4991. "homepage": "https://symfony.com/contributors"
  4992. }
  4993. ],
  4994. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4995. "homepage": "https://symfony.com",
  4996. "keywords": [
  4997. "http"
  4998. ],
  4999. "support": {
  5000. "source": "https://github.com/symfony/http-client/tree/v7.1.7"
  5001. },
  5002. "funding": [
  5003. {
  5004. "url": "https://symfony.com/sponsor",
  5005. "type": "custom"
  5006. },
  5007. {
  5008. "url": "https://github.com/fabpot",
  5009. "type": "github"
  5010. },
  5011. {
  5012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5013. "type": "tidelift"
  5014. }
  5015. ],
  5016. "time": "2024-11-05T16:45:54+00:00"
  5017. },
  5018. {
  5019. "name": "symfony/http-client-contracts",
  5020. "version": "v3.5.0",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/symfony/http-client-contracts.git",
  5024. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5029. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "php": ">=8.1"
  5034. },
  5035. "type": "library",
  5036. "extra": {
  5037. "branch-alias": {
  5038. "dev-main": "3.5-dev"
  5039. },
  5040. "thanks": {
  5041. "name": "symfony/contracts",
  5042. "url": "https://github.com/symfony/contracts"
  5043. }
  5044. },
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Symfony\\Contracts\\HttpClient\\": ""
  5048. },
  5049. "exclude-from-classmap": [
  5050. "/Test/"
  5051. ]
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "MIT"
  5056. ],
  5057. "authors": [
  5058. {
  5059. "name": "Nicolas Grekas",
  5060. "email": "p@tchwork.com"
  5061. },
  5062. {
  5063. "name": "Symfony Community",
  5064. "homepage": "https://symfony.com/contributors"
  5065. }
  5066. ],
  5067. "description": "Generic abstractions related to HTTP clients",
  5068. "homepage": "https://symfony.com",
  5069. "keywords": [
  5070. "abstractions",
  5071. "contracts",
  5072. "decoupling",
  5073. "interfaces",
  5074. "interoperability",
  5075. "standards"
  5076. ],
  5077. "support": {
  5078. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5079. },
  5080. "funding": [
  5081. {
  5082. "url": "https://symfony.com/sponsor",
  5083. "type": "custom"
  5084. },
  5085. {
  5086. "url": "https://github.com/fabpot",
  5087. "type": "github"
  5088. },
  5089. {
  5090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5091. "type": "tidelift"
  5092. }
  5093. ],
  5094. "time": "2024-04-18T09:32:20+00:00"
  5095. },
  5096. {
  5097. "name": "symfony/http-foundation",
  5098. "version": "v7.1.7",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/symfony/http-foundation.git",
  5102. "reference": "5183b61657807099d98f3367bcccb850238b17a9"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5183b61657807099d98f3367bcccb850238b17a9",
  5107. "reference": "5183b61657807099d98f3367bcccb850238b17a9",
  5108. "shasum": ""
  5109. },
  5110. "require": {
  5111. "php": ">=8.2",
  5112. "symfony/polyfill-mbstring": "~1.1",
  5113. "symfony/polyfill-php83": "^1.27"
  5114. },
  5115. "conflict": {
  5116. "doctrine/dbal": "<3.6",
  5117. "symfony/cache": "<6.4"
  5118. },
  5119. "require-dev": {
  5120. "doctrine/dbal": "^3.6|^4",
  5121. "predis/predis": "^1.1|^2.0",
  5122. "symfony/cache": "^6.4|^7.0",
  5123. "symfony/dependency-injection": "^6.4|^7.0",
  5124. "symfony/expression-language": "^6.4|^7.0",
  5125. "symfony/http-kernel": "^6.4|^7.0",
  5126. "symfony/mime": "^6.4|^7.0",
  5127. "symfony/rate-limiter": "^6.4|^7.0"
  5128. },
  5129. "type": "library",
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Symfony\\Component\\HttpFoundation\\": ""
  5133. },
  5134. "exclude-from-classmap": [
  5135. "/Tests/"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "MIT"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "Fabien Potencier",
  5145. "email": "fabien@symfony.com"
  5146. },
  5147. {
  5148. "name": "Symfony Community",
  5149. "homepage": "https://symfony.com/contributors"
  5150. }
  5151. ],
  5152. "description": "Defines an object-oriented layer for the HTTP specification",
  5153. "homepage": "https://symfony.com",
  5154. "support": {
  5155. "source": "https://github.com/symfony/http-foundation/tree/v7.1.7"
  5156. },
  5157. "funding": [
  5158. {
  5159. "url": "https://symfony.com/sponsor",
  5160. "type": "custom"
  5161. },
  5162. {
  5163. "url": "https://github.com/fabpot",
  5164. "type": "github"
  5165. },
  5166. {
  5167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5168. "type": "tidelift"
  5169. }
  5170. ],
  5171. "time": "2024-11-06T09:02:46+00:00"
  5172. },
  5173. {
  5174. "name": "symfony/http-kernel",
  5175. "version": "v7.1.7",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/symfony/http-kernel.git",
  5179. "reference": "7f137cda31fd41e422edcdc01915f2c095b84399"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7f137cda31fd41e422edcdc01915f2c095b84399",
  5184. "reference": "7f137cda31fd41e422edcdc01915f2c095b84399",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": ">=8.2",
  5189. "psr/log": "^1|^2|^3",
  5190. "symfony/deprecation-contracts": "^2.5|^3",
  5191. "symfony/error-handler": "^6.4|^7.0",
  5192. "symfony/event-dispatcher": "^6.4|^7.0",
  5193. "symfony/http-foundation": "^6.4|^7.0",
  5194. "symfony/polyfill-ctype": "^1.8"
  5195. },
  5196. "conflict": {
  5197. "symfony/browser-kit": "<6.4",
  5198. "symfony/cache": "<6.4",
  5199. "symfony/config": "<6.4",
  5200. "symfony/console": "<6.4",
  5201. "symfony/dependency-injection": "<6.4",
  5202. "symfony/doctrine-bridge": "<6.4",
  5203. "symfony/form": "<6.4",
  5204. "symfony/http-client": "<6.4",
  5205. "symfony/http-client-contracts": "<2.5",
  5206. "symfony/mailer": "<6.4",
  5207. "symfony/messenger": "<6.4",
  5208. "symfony/translation": "<6.4",
  5209. "symfony/translation-contracts": "<2.5",
  5210. "symfony/twig-bridge": "<6.4",
  5211. "symfony/validator": "<6.4",
  5212. "symfony/var-dumper": "<6.4",
  5213. "twig/twig": "<3.0.4"
  5214. },
  5215. "provide": {
  5216. "psr/log-implementation": "1.0|2.0|3.0"
  5217. },
  5218. "require-dev": {
  5219. "psr/cache": "^1.0|^2.0|^3.0",
  5220. "symfony/browser-kit": "^6.4|^7.0",
  5221. "symfony/clock": "^6.4|^7.0",
  5222. "symfony/config": "^6.4|^7.0",
  5223. "symfony/console": "^6.4|^7.0",
  5224. "symfony/css-selector": "^6.4|^7.0",
  5225. "symfony/dependency-injection": "^6.4|^7.0",
  5226. "symfony/dom-crawler": "^6.4|^7.0",
  5227. "symfony/expression-language": "^6.4|^7.0",
  5228. "symfony/finder": "^6.4|^7.0",
  5229. "symfony/http-client-contracts": "^2.5|^3",
  5230. "symfony/process": "^6.4|^7.0",
  5231. "symfony/property-access": "^7.1",
  5232. "symfony/routing": "^6.4|^7.0",
  5233. "symfony/serializer": "^7.1",
  5234. "symfony/stopwatch": "^6.4|^7.0",
  5235. "symfony/translation": "^6.4|^7.0",
  5236. "symfony/translation-contracts": "^2.5|^3",
  5237. "symfony/uid": "^6.4|^7.0",
  5238. "symfony/validator": "^6.4|^7.0",
  5239. "symfony/var-dumper": "^6.4|^7.0",
  5240. "symfony/var-exporter": "^6.4|^7.0",
  5241. "twig/twig": "^3.0.4"
  5242. },
  5243. "type": "library",
  5244. "autoload": {
  5245. "psr-4": {
  5246. "Symfony\\Component\\HttpKernel\\": ""
  5247. },
  5248. "exclude-from-classmap": [
  5249. "/Tests/"
  5250. ]
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Fabien Potencier",
  5259. "email": "fabien@symfony.com"
  5260. },
  5261. {
  5262. "name": "Symfony Community",
  5263. "homepage": "https://symfony.com/contributors"
  5264. }
  5265. ],
  5266. "description": "Provides a structured process for converting a Request into a Response",
  5267. "homepage": "https://symfony.com",
  5268. "support": {
  5269. "source": "https://github.com/symfony/http-kernel/tree/v7.1.7"
  5270. },
  5271. "funding": [
  5272. {
  5273. "url": "https://symfony.com/sponsor",
  5274. "type": "custom"
  5275. },
  5276. {
  5277. "url": "https://github.com/fabpot",
  5278. "type": "github"
  5279. },
  5280. {
  5281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5282. "type": "tidelift"
  5283. }
  5284. ],
  5285. "time": "2024-11-06T09:54:34+00:00"
  5286. },
  5287. {
  5288. "name": "symfony/intl",
  5289. "version": "v7.1.7",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/symfony/intl.git",
  5293. "reference": "4770ebd8f6d96c6bff8ad2c76ffcf02955acfd49"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/symfony/intl/zipball/4770ebd8f6d96c6bff8ad2c76ffcf02955acfd49",
  5298. "reference": "4770ebd8f6d96c6bff8ad2c76ffcf02955acfd49",
  5299. "shasum": ""
  5300. },
  5301. "require": {
  5302. "php": ">=8.2",
  5303. "symfony/deprecation-contracts": "^2.5|^3"
  5304. },
  5305. "conflict": {
  5306. "symfony/string": "<7.1"
  5307. },
  5308. "require-dev": {
  5309. "symfony/filesystem": "^6.4|^7.0",
  5310. "symfony/var-exporter": "^6.4|^7.0"
  5311. },
  5312. "type": "library",
  5313. "autoload": {
  5314. "psr-4": {
  5315. "Symfony\\Component\\Intl\\": ""
  5316. },
  5317. "exclude-from-classmap": [
  5318. "/Tests/",
  5319. "/Resources/data/"
  5320. ]
  5321. },
  5322. "notification-url": "https://packagist.org/downloads/",
  5323. "license": [
  5324. "MIT"
  5325. ],
  5326. "authors": [
  5327. {
  5328. "name": "Bernhard Schussek",
  5329. "email": "bschussek@gmail.com"
  5330. },
  5331. {
  5332. "name": "Eriksen Costa",
  5333. "email": "eriksen.costa@infranology.com.br"
  5334. },
  5335. {
  5336. "name": "Igor Wiedler",
  5337. "email": "igor@wiedler.ch"
  5338. },
  5339. {
  5340. "name": "Symfony Community",
  5341. "homepage": "https://symfony.com/contributors"
  5342. }
  5343. ],
  5344. "description": "Provides access to the localization data of the ICU library",
  5345. "homepage": "https://symfony.com",
  5346. "keywords": [
  5347. "i18n",
  5348. "icu",
  5349. "internationalization",
  5350. "intl",
  5351. "l10n",
  5352. "localization"
  5353. ],
  5354. "support": {
  5355. "source": "https://github.com/symfony/intl/tree/v7.1.7"
  5356. },
  5357. "funding": [
  5358. {
  5359. "url": "https://symfony.com/sponsor",
  5360. "type": "custom"
  5361. },
  5362. {
  5363. "url": "https://github.com/fabpot",
  5364. "type": "github"
  5365. },
  5366. {
  5367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5368. "type": "tidelift"
  5369. }
  5370. ],
  5371. "time": "2024-11-05T15:34:55+00:00"
  5372. },
  5373. {
  5374. "name": "symfony/mailer",
  5375. "version": "v7.1.6",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/symfony/mailer.git",
  5379. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  5384. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "egulias/email-validator": "^2.1.10|^3|^4",
  5389. "php": ">=8.2",
  5390. "psr/event-dispatcher": "^1",
  5391. "psr/log": "^1|^2|^3",
  5392. "symfony/event-dispatcher": "^6.4|^7.0",
  5393. "symfony/mime": "^6.4|^7.0",
  5394. "symfony/service-contracts": "^2.5|^3"
  5395. },
  5396. "conflict": {
  5397. "symfony/http-client-contracts": "<2.5",
  5398. "symfony/http-kernel": "<6.4",
  5399. "symfony/messenger": "<6.4",
  5400. "symfony/mime": "<6.4",
  5401. "symfony/twig-bridge": "<6.4"
  5402. },
  5403. "require-dev": {
  5404. "symfony/console": "^6.4|^7.0",
  5405. "symfony/http-client": "^6.4|^7.0",
  5406. "symfony/messenger": "^6.4|^7.0",
  5407. "symfony/twig-bridge": "^6.4|^7.0"
  5408. },
  5409. "type": "library",
  5410. "autoload": {
  5411. "psr-4": {
  5412. "Symfony\\Component\\Mailer\\": ""
  5413. },
  5414. "exclude-from-classmap": [
  5415. "/Tests/"
  5416. ]
  5417. },
  5418. "notification-url": "https://packagist.org/downloads/",
  5419. "license": [
  5420. "MIT"
  5421. ],
  5422. "authors": [
  5423. {
  5424. "name": "Fabien Potencier",
  5425. "email": "fabien@symfony.com"
  5426. },
  5427. {
  5428. "name": "Symfony Community",
  5429. "homepage": "https://symfony.com/contributors"
  5430. }
  5431. ],
  5432. "description": "Helps sending emails",
  5433. "homepage": "https://symfony.com",
  5434. "support": {
  5435. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  5436. },
  5437. "funding": [
  5438. {
  5439. "url": "https://symfony.com/sponsor",
  5440. "type": "custom"
  5441. },
  5442. {
  5443. "url": "https://github.com/fabpot",
  5444. "type": "github"
  5445. },
  5446. {
  5447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5448. "type": "tidelift"
  5449. }
  5450. ],
  5451. "time": "2024-09-25T14:20:29+00:00"
  5452. },
  5453. {
  5454. "name": "symfony/messenger",
  5455. "version": "v7.1.6",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/symfony/messenger.git",
  5459. "reference": "a391d2cb2b15436c0e3fbdf983440e762a30f88b"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/symfony/messenger/zipball/a391d2cb2b15436c0e3fbdf983440e762a30f88b",
  5464. "reference": "a391d2cb2b15436c0e3fbdf983440e762a30f88b",
  5465. "shasum": ""
  5466. },
  5467. "require": {
  5468. "php": ">=8.2",
  5469. "psr/log": "^1|^2|^3",
  5470. "symfony/clock": "^6.4|^7.0"
  5471. },
  5472. "conflict": {
  5473. "symfony/console": "<6.4",
  5474. "symfony/event-dispatcher": "<6.4",
  5475. "symfony/event-dispatcher-contracts": "<2.5",
  5476. "symfony/framework-bundle": "<6.4",
  5477. "symfony/http-kernel": "<6.4",
  5478. "symfony/serializer": "<6.4"
  5479. },
  5480. "require-dev": {
  5481. "psr/cache": "^1.0|^2.0|^3.0",
  5482. "symfony/console": "^6.4|^7.0",
  5483. "symfony/dependency-injection": "^6.4|^7.0",
  5484. "symfony/event-dispatcher": "^6.4|^7.0",
  5485. "symfony/http-kernel": "^6.4|^7.0",
  5486. "symfony/process": "^6.4|^7.0",
  5487. "symfony/property-access": "^6.4|^7.0",
  5488. "symfony/rate-limiter": "^6.4|^7.0",
  5489. "symfony/routing": "^6.4|^7.0",
  5490. "symfony/serializer": "^6.4|^7.0",
  5491. "symfony/service-contracts": "^2.5|^3",
  5492. "symfony/stopwatch": "^6.4|^7.0",
  5493. "symfony/validator": "^6.4|^7.0"
  5494. },
  5495. "type": "library",
  5496. "autoload": {
  5497. "psr-4": {
  5498. "Symfony\\Component\\Messenger\\": ""
  5499. },
  5500. "exclude-from-classmap": [
  5501. "/Tests/"
  5502. ]
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "Samuel Roze",
  5511. "email": "samuel.roze@gmail.com"
  5512. },
  5513. {
  5514. "name": "Symfony Community",
  5515. "homepage": "https://symfony.com/contributors"
  5516. }
  5517. ],
  5518. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5519. "homepage": "https://symfony.com",
  5520. "support": {
  5521. "source": "https://github.com/symfony/messenger/tree/v7.1.6"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://symfony.com/sponsor",
  5526. "type": "custom"
  5527. },
  5528. {
  5529. "url": "https://github.com/fabpot",
  5530. "type": "github"
  5531. },
  5532. {
  5533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5534. "type": "tidelift"
  5535. }
  5536. ],
  5537. "time": "2024-09-25T14:20:29+00:00"
  5538. },
  5539. {
  5540. "name": "symfony/mime",
  5541. "version": "v7.1.6",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/symfony/mime.git",
  5545. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  5550. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": ">=8.2",
  5555. "symfony/polyfill-intl-idn": "^1.10",
  5556. "symfony/polyfill-mbstring": "^1.0"
  5557. },
  5558. "conflict": {
  5559. "egulias/email-validator": "~3.0.0",
  5560. "phpdocumentor/reflection-docblock": "<3.2.2",
  5561. "phpdocumentor/type-resolver": "<1.4.0",
  5562. "symfony/mailer": "<6.4",
  5563. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5564. },
  5565. "require-dev": {
  5566. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5567. "league/html-to-markdown": "^5.0",
  5568. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5569. "symfony/dependency-injection": "^6.4|^7.0",
  5570. "symfony/process": "^6.4|^7.0",
  5571. "symfony/property-access": "^6.4|^7.0",
  5572. "symfony/property-info": "^6.4|^7.0",
  5573. "symfony/serializer": "^6.4.3|^7.0.3"
  5574. },
  5575. "type": "library",
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Symfony\\Component\\Mime\\": ""
  5579. },
  5580. "exclude-from-classmap": [
  5581. "/Tests/"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Fabien Potencier",
  5591. "email": "fabien@symfony.com"
  5592. },
  5593. {
  5594. "name": "Symfony Community",
  5595. "homepage": "https://symfony.com/contributors"
  5596. }
  5597. ],
  5598. "description": "Allows manipulating MIME messages",
  5599. "homepage": "https://symfony.com",
  5600. "keywords": [
  5601. "mime",
  5602. "mime-type"
  5603. ],
  5604. "support": {
  5605. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  5606. },
  5607. "funding": [
  5608. {
  5609. "url": "https://symfony.com/sponsor",
  5610. "type": "custom"
  5611. },
  5612. {
  5613. "url": "https://github.com/fabpot",
  5614. "type": "github"
  5615. },
  5616. {
  5617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5618. "type": "tidelift"
  5619. }
  5620. ],
  5621. "time": "2024-10-25T15:11:02+00:00"
  5622. },
  5623. {
  5624. "name": "symfony/monolog-bridge",
  5625. "version": "v7.1.6",
  5626. "source": {
  5627. "type": "git",
  5628. "url": "https://github.com/symfony/monolog-bridge.git",
  5629. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e"
  5630. },
  5631. "dist": {
  5632. "type": "zip",
  5633. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  5634. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  5635. "shasum": ""
  5636. },
  5637. "require": {
  5638. "monolog/monolog": "^3",
  5639. "php": ">=8.2",
  5640. "symfony/http-kernel": "^6.4|^7.0",
  5641. "symfony/service-contracts": "^2.5|^3"
  5642. },
  5643. "conflict": {
  5644. "symfony/console": "<6.4",
  5645. "symfony/http-foundation": "<6.4",
  5646. "symfony/security-core": "<6.4"
  5647. },
  5648. "require-dev": {
  5649. "symfony/console": "^6.4|^7.0",
  5650. "symfony/http-client": "^6.4|^7.0",
  5651. "symfony/mailer": "^6.4|^7.0",
  5652. "symfony/messenger": "^6.4|^7.0",
  5653. "symfony/mime": "^6.4|^7.0",
  5654. "symfony/security-core": "^6.4|^7.0",
  5655. "symfony/var-dumper": "^6.4|^7.0"
  5656. },
  5657. "type": "symfony-bridge",
  5658. "autoload": {
  5659. "psr-4": {
  5660. "Symfony\\Bridge\\Monolog\\": ""
  5661. },
  5662. "exclude-from-classmap": [
  5663. "/Tests/"
  5664. ]
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "Fabien Potencier",
  5673. "email": "fabien@symfony.com"
  5674. },
  5675. {
  5676. "name": "Symfony Community",
  5677. "homepage": "https://symfony.com/contributors"
  5678. }
  5679. ],
  5680. "description": "Provides integration for Monolog with various Symfony components",
  5681. "homepage": "https://symfony.com",
  5682. "support": {
  5683. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.6"
  5684. },
  5685. "funding": [
  5686. {
  5687. "url": "https://symfony.com/sponsor",
  5688. "type": "custom"
  5689. },
  5690. {
  5691. "url": "https://github.com/fabpot",
  5692. "type": "github"
  5693. },
  5694. {
  5695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5696. "type": "tidelift"
  5697. }
  5698. ],
  5699. "time": "2024-10-14T08:49:35+00:00"
  5700. },
  5701. {
  5702. "name": "symfony/monolog-bundle",
  5703. "version": "v3.10.0",
  5704. "source": {
  5705. "type": "git",
  5706. "url": "https://github.com/symfony/monolog-bundle.git",
  5707. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5708. },
  5709. "dist": {
  5710. "type": "zip",
  5711. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5712. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5713. "shasum": ""
  5714. },
  5715. "require": {
  5716. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5717. "php": ">=7.2.5",
  5718. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5719. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5720. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5721. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5722. },
  5723. "require-dev": {
  5724. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5725. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5726. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5727. },
  5728. "type": "symfony-bundle",
  5729. "extra": {
  5730. "branch-alias": {
  5731. "dev-master": "3.x-dev"
  5732. }
  5733. },
  5734. "autoload": {
  5735. "psr-4": {
  5736. "Symfony\\Bundle\\MonologBundle\\": ""
  5737. },
  5738. "exclude-from-classmap": [
  5739. "/Tests/"
  5740. ]
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "MIT"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "Fabien Potencier",
  5749. "email": "fabien@symfony.com"
  5750. },
  5751. {
  5752. "name": "Symfony Community",
  5753. "homepage": "https://symfony.com/contributors"
  5754. }
  5755. ],
  5756. "description": "Symfony MonologBundle",
  5757. "homepage": "https://symfony.com",
  5758. "keywords": [
  5759. "log",
  5760. "logging"
  5761. ],
  5762. "support": {
  5763. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5764. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5765. },
  5766. "funding": [
  5767. {
  5768. "url": "https://symfony.com/sponsor",
  5769. "type": "custom"
  5770. },
  5771. {
  5772. "url": "https://github.com/fabpot",
  5773. "type": "github"
  5774. },
  5775. {
  5776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5777. "type": "tidelift"
  5778. }
  5779. ],
  5780. "time": "2023-11-06T17:08:13+00:00"
  5781. },
  5782. {
  5783. "name": "symfony/notifier",
  5784. "version": "v7.1.6",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/symfony/notifier.git",
  5788. "reference": "e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/symfony/notifier/zipball/e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f",
  5793. "reference": "e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f",
  5794. "shasum": ""
  5795. },
  5796. "require": {
  5797. "php": ">=8.2",
  5798. "psr/log": "^1|^2|^3"
  5799. },
  5800. "conflict": {
  5801. "symfony/event-dispatcher": "<6.4",
  5802. "symfony/event-dispatcher-contracts": "<2.5",
  5803. "symfony/http-client-contracts": "<2.5",
  5804. "symfony/http-kernel": "<6.4"
  5805. },
  5806. "require-dev": {
  5807. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5808. "symfony/http-client-contracts": "^2.5|^3",
  5809. "symfony/http-foundation": "^6.4|^7.0",
  5810. "symfony/messenger": "^6.4|^7.0"
  5811. },
  5812. "type": "library",
  5813. "autoload": {
  5814. "psr-4": {
  5815. "Symfony\\Component\\Notifier\\": ""
  5816. },
  5817. "exclude-from-classmap": [
  5818. "/Tests/"
  5819. ]
  5820. },
  5821. "notification-url": "https://packagist.org/downloads/",
  5822. "license": [
  5823. "MIT"
  5824. ],
  5825. "authors": [
  5826. {
  5827. "name": "Fabien Potencier",
  5828. "email": "fabien@symfony.com"
  5829. },
  5830. {
  5831. "name": "Symfony Community",
  5832. "homepage": "https://symfony.com/contributors"
  5833. }
  5834. ],
  5835. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5836. "homepage": "https://symfony.com",
  5837. "keywords": [
  5838. "notification",
  5839. "notifier"
  5840. ],
  5841. "support": {
  5842. "source": "https://github.com/symfony/notifier/tree/v7.1.6"
  5843. },
  5844. "funding": [
  5845. {
  5846. "url": "https://symfony.com/sponsor",
  5847. "type": "custom"
  5848. },
  5849. {
  5850. "url": "https://github.com/fabpot",
  5851. "type": "github"
  5852. },
  5853. {
  5854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5855. "type": "tidelift"
  5856. }
  5857. ],
  5858. "time": "2024-09-25T14:20:29+00:00"
  5859. },
  5860. {
  5861. "name": "symfony/options-resolver",
  5862. "version": "v7.1.6",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/symfony/options-resolver.git",
  5866. "reference": "85e95eeede2d41cd146146e98c9c81d9214cae85"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/85e95eeede2d41cd146146e98c9c81d9214cae85",
  5871. "reference": "85e95eeede2d41cd146146e98c9c81d9214cae85",
  5872. "shasum": ""
  5873. },
  5874. "require": {
  5875. "php": ">=8.2",
  5876. "symfony/deprecation-contracts": "^2.5|^3"
  5877. },
  5878. "type": "library",
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Symfony\\Component\\OptionsResolver\\": ""
  5882. },
  5883. "exclude-from-classmap": [
  5884. "/Tests/"
  5885. ]
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Fabien Potencier",
  5894. "email": "fabien@symfony.com"
  5895. },
  5896. {
  5897. "name": "Symfony Community",
  5898. "homepage": "https://symfony.com/contributors"
  5899. }
  5900. ],
  5901. "description": "Provides an improved replacement for the array_replace PHP function",
  5902. "homepage": "https://symfony.com",
  5903. "keywords": [
  5904. "config",
  5905. "configuration",
  5906. "options"
  5907. ],
  5908. "support": {
  5909. "source": "https://github.com/symfony/options-resolver/tree/v7.1.6"
  5910. },
  5911. "funding": [
  5912. {
  5913. "url": "https://symfony.com/sponsor",
  5914. "type": "custom"
  5915. },
  5916. {
  5917. "url": "https://github.com/fabpot",
  5918. "type": "github"
  5919. },
  5920. {
  5921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5922. "type": "tidelift"
  5923. }
  5924. ],
  5925. "time": "2024-09-25T14:20:29+00:00"
  5926. },
  5927. {
  5928. "name": "symfony/password-hasher",
  5929. "version": "v7.1.6",
  5930. "source": {
  5931. "type": "git",
  5932. "url": "https://github.com/symfony/password-hasher.git",
  5933. "reference": "2e618d1af51805e5a1fbda326d00b77c6c1037d5"
  5934. },
  5935. "dist": {
  5936. "type": "zip",
  5937. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/2e618d1af51805e5a1fbda326d00b77c6c1037d5",
  5938. "reference": "2e618d1af51805e5a1fbda326d00b77c6c1037d5",
  5939. "shasum": ""
  5940. },
  5941. "require": {
  5942. "php": ">=8.2"
  5943. },
  5944. "conflict": {
  5945. "symfony/security-core": "<6.4"
  5946. },
  5947. "require-dev": {
  5948. "symfony/console": "^6.4|^7.0",
  5949. "symfony/security-core": "^6.4|^7.0"
  5950. },
  5951. "type": "library",
  5952. "autoload": {
  5953. "psr-4": {
  5954. "Symfony\\Component\\PasswordHasher\\": ""
  5955. },
  5956. "exclude-from-classmap": [
  5957. "/Tests/"
  5958. ]
  5959. },
  5960. "notification-url": "https://packagist.org/downloads/",
  5961. "license": [
  5962. "MIT"
  5963. ],
  5964. "authors": [
  5965. {
  5966. "name": "Robin Chalas",
  5967. "email": "robin.chalas@gmail.com"
  5968. },
  5969. {
  5970. "name": "Symfony Community",
  5971. "homepage": "https://symfony.com/contributors"
  5972. }
  5973. ],
  5974. "description": "Provides password hashing utilities",
  5975. "homepage": "https://symfony.com",
  5976. "keywords": [
  5977. "hashing",
  5978. "password"
  5979. ],
  5980. "support": {
  5981. "source": "https://github.com/symfony/password-hasher/tree/v7.1.6"
  5982. },
  5983. "funding": [
  5984. {
  5985. "url": "https://symfony.com/sponsor",
  5986. "type": "custom"
  5987. },
  5988. {
  5989. "url": "https://github.com/fabpot",
  5990. "type": "github"
  5991. },
  5992. {
  5993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5994. "type": "tidelift"
  5995. }
  5996. ],
  5997. "time": "2024-09-25T14:20:29+00:00"
  5998. },
  5999. {
  6000. "name": "symfony/polyfill-intl-grapheme",
  6001. "version": "v1.31.0",
  6002. "source": {
  6003. "type": "git",
  6004. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6005. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6006. },
  6007. "dist": {
  6008. "type": "zip",
  6009. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6010. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6011. "shasum": ""
  6012. },
  6013. "require": {
  6014. "php": ">=7.2"
  6015. },
  6016. "suggest": {
  6017. "ext-intl": "For best performance"
  6018. },
  6019. "type": "library",
  6020. "extra": {
  6021. "thanks": {
  6022. "name": "symfony/polyfill",
  6023. "url": "https://github.com/symfony/polyfill"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "files": [
  6028. "bootstrap.php"
  6029. ],
  6030. "psr-4": {
  6031. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6032. }
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Nicolas Grekas",
  6041. "email": "p@tchwork.com"
  6042. },
  6043. {
  6044. "name": "Symfony Community",
  6045. "homepage": "https://symfony.com/contributors"
  6046. }
  6047. ],
  6048. "description": "Symfony polyfill for intl's grapheme_* functions",
  6049. "homepage": "https://symfony.com",
  6050. "keywords": [
  6051. "compatibility",
  6052. "grapheme",
  6053. "intl",
  6054. "polyfill",
  6055. "portable",
  6056. "shim"
  6057. ],
  6058. "support": {
  6059. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6060. },
  6061. "funding": [
  6062. {
  6063. "url": "https://symfony.com/sponsor",
  6064. "type": "custom"
  6065. },
  6066. {
  6067. "url": "https://github.com/fabpot",
  6068. "type": "github"
  6069. },
  6070. {
  6071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6072. "type": "tidelift"
  6073. }
  6074. ],
  6075. "time": "2024-09-09T11:45:10+00:00"
  6076. },
  6077. {
  6078. "name": "symfony/polyfill-intl-icu",
  6079. "version": "v1.31.0",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6083. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  6088. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  6089. "shasum": ""
  6090. },
  6091. "require": {
  6092. "php": ">=7.2"
  6093. },
  6094. "suggest": {
  6095. "ext-intl": "For best performance and support of other locales than \"en\""
  6096. },
  6097. "type": "library",
  6098. "extra": {
  6099. "thanks": {
  6100. "name": "symfony/polyfill",
  6101. "url": "https://github.com/symfony/polyfill"
  6102. }
  6103. },
  6104. "autoload": {
  6105. "files": [
  6106. "bootstrap.php"
  6107. ],
  6108. "psr-4": {
  6109. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6110. },
  6111. "classmap": [
  6112. "Resources/stubs"
  6113. ],
  6114. "exclude-from-classmap": [
  6115. "/Tests/"
  6116. ]
  6117. },
  6118. "notification-url": "https://packagist.org/downloads/",
  6119. "license": [
  6120. "MIT"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "Nicolas Grekas",
  6125. "email": "p@tchwork.com"
  6126. },
  6127. {
  6128. "name": "Symfony Community",
  6129. "homepage": "https://symfony.com/contributors"
  6130. }
  6131. ],
  6132. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6133. "homepage": "https://symfony.com",
  6134. "keywords": [
  6135. "compatibility",
  6136. "icu",
  6137. "intl",
  6138. "polyfill",
  6139. "portable",
  6140. "shim"
  6141. ],
  6142. "support": {
  6143. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  6144. },
  6145. "funding": [
  6146. {
  6147. "url": "https://symfony.com/sponsor",
  6148. "type": "custom"
  6149. },
  6150. {
  6151. "url": "https://github.com/fabpot",
  6152. "type": "github"
  6153. },
  6154. {
  6155. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6156. "type": "tidelift"
  6157. }
  6158. ],
  6159. "time": "2024-09-09T11:45:10+00:00"
  6160. },
  6161. {
  6162. "name": "symfony/polyfill-intl-idn",
  6163. "version": "v1.31.0",
  6164. "source": {
  6165. "type": "git",
  6166. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6167. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6168. },
  6169. "dist": {
  6170. "type": "zip",
  6171. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6172. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6173. "shasum": ""
  6174. },
  6175. "require": {
  6176. "php": ">=7.2",
  6177. "symfony/polyfill-intl-normalizer": "^1.10"
  6178. },
  6179. "suggest": {
  6180. "ext-intl": "For best performance"
  6181. },
  6182. "type": "library",
  6183. "extra": {
  6184. "thanks": {
  6185. "name": "symfony/polyfill",
  6186. "url": "https://github.com/symfony/polyfill"
  6187. }
  6188. },
  6189. "autoload": {
  6190. "files": [
  6191. "bootstrap.php"
  6192. ],
  6193. "psr-4": {
  6194. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6195. }
  6196. },
  6197. "notification-url": "https://packagist.org/downloads/",
  6198. "license": [
  6199. "MIT"
  6200. ],
  6201. "authors": [
  6202. {
  6203. "name": "Laurent Bassin",
  6204. "email": "laurent@bassin.info"
  6205. },
  6206. {
  6207. "name": "Trevor Rowbotham",
  6208. "email": "trevor.rowbotham@pm.me"
  6209. },
  6210. {
  6211. "name": "Symfony Community",
  6212. "homepage": "https://symfony.com/contributors"
  6213. }
  6214. ],
  6215. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6216. "homepage": "https://symfony.com",
  6217. "keywords": [
  6218. "compatibility",
  6219. "idn",
  6220. "intl",
  6221. "polyfill",
  6222. "portable",
  6223. "shim"
  6224. ],
  6225. "support": {
  6226. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6227. },
  6228. "funding": [
  6229. {
  6230. "url": "https://symfony.com/sponsor",
  6231. "type": "custom"
  6232. },
  6233. {
  6234. "url": "https://github.com/fabpot",
  6235. "type": "github"
  6236. },
  6237. {
  6238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6239. "type": "tidelift"
  6240. }
  6241. ],
  6242. "time": "2024-09-09T11:45:10+00:00"
  6243. },
  6244. {
  6245. "name": "symfony/polyfill-intl-normalizer",
  6246. "version": "v1.31.0",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6250. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6255. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6256. "shasum": ""
  6257. },
  6258. "require": {
  6259. "php": ">=7.2"
  6260. },
  6261. "suggest": {
  6262. "ext-intl": "For best performance"
  6263. },
  6264. "type": "library",
  6265. "extra": {
  6266. "thanks": {
  6267. "name": "symfony/polyfill",
  6268. "url": "https://github.com/symfony/polyfill"
  6269. }
  6270. },
  6271. "autoload": {
  6272. "files": [
  6273. "bootstrap.php"
  6274. ],
  6275. "psr-4": {
  6276. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6277. },
  6278. "classmap": [
  6279. "Resources/stubs"
  6280. ]
  6281. },
  6282. "notification-url": "https://packagist.org/downloads/",
  6283. "license": [
  6284. "MIT"
  6285. ],
  6286. "authors": [
  6287. {
  6288. "name": "Nicolas Grekas",
  6289. "email": "p@tchwork.com"
  6290. },
  6291. {
  6292. "name": "Symfony Community",
  6293. "homepage": "https://symfony.com/contributors"
  6294. }
  6295. ],
  6296. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6297. "homepage": "https://symfony.com",
  6298. "keywords": [
  6299. "compatibility",
  6300. "intl",
  6301. "normalizer",
  6302. "polyfill",
  6303. "portable",
  6304. "shim"
  6305. ],
  6306. "support": {
  6307. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6308. },
  6309. "funding": [
  6310. {
  6311. "url": "https://symfony.com/sponsor",
  6312. "type": "custom"
  6313. },
  6314. {
  6315. "url": "https://github.com/fabpot",
  6316. "type": "github"
  6317. },
  6318. {
  6319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6320. "type": "tidelift"
  6321. }
  6322. ],
  6323. "time": "2024-09-09T11:45:10+00:00"
  6324. },
  6325. {
  6326. "name": "symfony/polyfill-mbstring",
  6327. "version": "v1.31.0",
  6328. "source": {
  6329. "type": "git",
  6330. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6331. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6332. },
  6333. "dist": {
  6334. "type": "zip",
  6335. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6336. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6337. "shasum": ""
  6338. },
  6339. "require": {
  6340. "php": ">=7.2"
  6341. },
  6342. "provide": {
  6343. "ext-mbstring": "*"
  6344. },
  6345. "suggest": {
  6346. "ext-mbstring": "For best performance"
  6347. },
  6348. "type": "library",
  6349. "extra": {
  6350. "thanks": {
  6351. "name": "symfony/polyfill",
  6352. "url": "https://github.com/symfony/polyfill"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "files": [
  6357. "bootstrap.php"
  6358. ],
  6359. "psr-4": {
  6360. "Symfony\\Polyfill\\Mbstring\\": ""
  6361. }
  6362. },
  6363. "notification-url": "https://packagist.org/downloads/",
  6364. "license": [
  6365. "MIT"
  6366. ],
  6367. "authors": [
  6368. {
  6369. "name": "Nicolas Grekas",
  6370. "email": "p@tchwork.com"
  6371. },
  6372. {
  6373. "name": "Symfony Community",
  6374. "homepage": "https://symfony.com/contributors"
  6375. }
  6376. ],
  6377. "description": "Symfony polyfill for the Mbstring extension",
  6378. "homepage": "https://symfony.com",
  6379. "keywords": [
  6380. "compatibility",
  6381. "mbstring",
  6382. "polyfill",
  6383. "portable",
  6384. "shim"
  6385. ],
  6386. "support": {
  6387. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6388. },
  6389. "funding": [
  6390. {
  6391. "url": "https://symfony.com/sponsor",
  6392. "type": "custom"
  6393. },
  6394. {
  6395. "url": "https://github.com/fabpot",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2024-09-09T11:45:10+00:00"
  6404. },
  6405. {
  6406. "name": "symfony/polyfill-php83",
  6407. "version": "v1.31.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/symfony/polyfill-php83.git",
  6411. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6416. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "php": ">=7.2"
  6421. },
  6422. "type": "library",
  6423. "extra": {
  6424. "thanks": {
  6425. "name": "symfony/polyfill",
  6426. "url": "https://github.com/symfony/polyfill"
  6427. }
  6428. },
  6429. "autoload": {
  6430. "files": [
  6431. "bootstrap.php"
  6432. ],
  6433. "psr-4": {
  6434. "Symfony\\Polyfill\\Php83\\": ""
  6435. },
  6436. "classmap": [
  6437. "Resources/stubs"
  6438. ]
  6439. },
  6440. "notification-url": "https://packagist.org/downloads/",
  6441. "license": [
  6442. "MIT"
  6443. ],
  6444. "authors": [
  6445. {
  6446. "name": "Nicolas Grekas",
  6447. "email": "p@tchwork.com"
  6448. },
  6449. {
  6450. "name": "Symfony Community",
  6451. "homepage": "https://symfony.com/contributors"
  6452. }
  6453. ],
  6454. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6455. "homepage": "https://symfony.com",
  6456. "keywords": [
  6457. "compatibility",
  6458. "polyfill",
  6459. "portable",
  6460. "shim"
  6461. ],
  6462. "support": {
  6463. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6464. },
  6465. "funding": [
  6466. {
  6467. "url": "https://symfony.com/sponsor",
  6468. "type": "custom"
  6469. },
  6470. {
  6471. "url": "https://github.com/fabpot",
  6472. "type": "github"
  6473. },
  6474. {
  6475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6476. "type": "tidelift"
  6477. }
  6478. ],
  6479. "time": "2024-09-09T11:45:10+00:00"
  6480. },
  6481. {
  6482. "name": "symfony/process",
  6483. "version": "v7.1.7",
  6484. "source": {
  6485. "type": "git",
  6486. "url": "https://github.com/symfony/process.git",
  6487. "reference": "9b8a40b7289767aa7117e957573c2a535efe6585"
  6488. },
  6489. "dist": {
  6490. "type": "zip",
  6491. "url": "https://api.github.com/repos/symfony/process/zipball/9b8a40b7289767aa7117e957573c2a535efe6585",
  6492. "reference": "9b8a40b7289767aa7117e957573c2a535efe6585",
  6493. "shasum": ""
  6494. },
  6495. "require": {
  6496. "php": ">=8.2"
  6497. },
  6498. "type": "library",
  6499. "autoload": {
  6500. "psr-4": {
  6501. "Symfony\\Component\\Process\\": ""
  6502. },
  6503. "exclude-from-classmap": [
  6504. "/Tests/"
  6505. ]
  6506. },
  6507. "notification-url": "https://packagist.org/downloads/",
  6508. "license": [
  6509. "MIT"
  6510. ],
  6511. "authors": [
  6512. {
  6513. "name": "Fabien Potencier",
  6514. "email": "fabien@symfony.com"
  6515. },
  6516. {
  6517. "name": "Symfony Community",
  6518. "homepage": "https://symfony.com/contributors"
  6519. }
  6520. ],
  6521. "description": "Executes commands in sub-processes",
  6522. "homepage": "https://symfony.com",
  6523. "support": {
  6524. "source": "https://github.com/symfony/process/tree/v7.1.7"
  6525. },
  6526. "funding": [
  6527. {
  6528. "url": "https://symfony.com/sponsor",
  6529. "type": "custom"
  6530. },
  6531. {
  6532. "url": "https://github.com/fabpot",
  6533. "type": "github"
  6534. },
  6535. {
  6536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6537. "type": "tidelift"
  6538. }
  6539. ],
  6540. "time": "2024-11-06T09:25:12+00:00"
  6541. },
  6542. {
  6543. "name": "symfony/property-access",
  6544. "version": "v7.1.6",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://github.com/symfony/property-access.git",
  6548. "reference": "975d7f7fd8fcb952364c6badc46d01a580532bf9"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://api.github.com/repos/symfony/property-access/zipball/975d7f7fd8fcb952364c6badc46d01a580532bf9",
  6553. "reference": "975d7f7fd8fcb952364c6badc46d01a580532bf9",
  6554. "shasum": ""
  6555. },
  6556. "require": {
  6557. "php": ">=8.2",
  6558. "symfony/property-info": "^6.4|^7.0"
  6559. },
  6560. "require-dev": {
  6561. "symfony/cache": "^6.4|^7.0"
  6562. },
  6563. "type": "library",
  6564. "autoload": {
  6565. "psr-4": {
  6566. "Symfony\\Component\\PropertyAccess\\": ""
  6567. },
  6568. "exclude-from-classmap": [
  6569. "/Tests/"
  6570. ]
  6571. },
  6572. "notification-url": "https://packagist.org/downloads/",
  6573. "license": [
  6574. "MIT"
  6575. ],
  6576. "authors": [
  6577. {
  6578. "name": "Fabien Potencier",
  6579. "email": "fabien@symfony.com"
  6580. },
  6581. {
  6582. "name": "Symfony Community",
  6583. "homepage": "https://symfony.com/contributors"
  6584. }
  6585. ],
  6586. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6587. "homepage": "https://symfony.com",
  6588. "keywords": [
  6589. "access",
  6590. "array",
  6591. "extraction",
  6592. "index",
  6593. "injection",
  6594. "object",
  6595. "property",
  6596. "property-path",
  6597. "reflection"
  6598. ],
  6599. "support": {
  6600. "source": "https://github.com/symfony/property-access/tree/v7.1.6"
  6601. },
  6602. "funding": [
  6603. {
  6604. "url": "https://symfony.com/sponsor",
  6605. "type": "custom"
  6606. },
  6607. {
  6608. "url": "https://github.com/fabpot",
  6609. "type": "github"
  6610. },
  6611. {
  6612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6613. "type": "tidelift"
  6614. }
  6615. ],
  6616. "time": "2024-09-25T14:20:29+00:00"
  6617. },
  6618. {
  6619. "name": "symfony/property-info",
  6620. "version": "v7.1.6",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/symfony/property-info.git",
  6624. "reference": "6b630ff585d9fdc72f50369885ad4364a849cf02"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/symfony/property-info/zipball/6b630ff585d9fdc72f50369885ad4364a849cf02",
  6629. "reference": "6b630ff585d9fdc72f50369885ad4364a849cf02",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=8.2",
  6634. "symfony/string": "^6.4|^7.0",
  6635. "symfony/type-info": "^7.1"
  6636. },
  6637. "conflict": {
  6638. "phpdocumentor/reflection-docblock": "<5.2",
  6639. "phpdocumentor/type-resolver": "<1.5.1",
  6640. "symfony/dependency-injection": "<6.4",
  6641. "symfony/serializer": "<6.4"
  6642. },
  6643. "require-dev": {
  6644. "phpdocumentor/reflection-docblock": "^5.2",
  6645. "phpstan/phpdoc-parser": "^1.0",
  6646. "symfony/cache": "^6.4|^7.0",
  6647. "symfony/dependency-injection": "^6.4|^7.0",
  6648. "symfony/serializer": "^6.4|^7.0"
  6649. },
  6650. "type": "library",
  6651. "autoload": {
  6652. "psr-4": {
  6653. "Symfony\\Component\\PropertyInfo\\": ""
  6654. },
  6655. "exclude-from-classmap": [
  6656. "/Tests/"
  6657. ]
  6658. },
  6659. "notification-url": "https://packagist.org/downloads/",
  6660. "license": [
  6661. "MIT"
  6662. ],
  6663. "authors": [
  6664. {
  6665. "name": "Kévin Dunglas",
  6666. "email": "dunglas@gmail.com"
  6667. },
  6668. {
  6669. "name": "Symfony Community",
  6670. "homepage": "https://symfony.com/contributors"
  6671. }
  6672. ],
  6673. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6674. "homepage": "https://symfony.com",
  6675. "keywords": [
  6676. "doctrine",
  6677. "phpdoc",
  6678. "property",
  6679. "symfony",
  6680. "type",
  6681. "validator"
  6682. ],
  6683. "support": {
  6684. "source": "https://github.com/symfony/property-info/tree/v7.1.6"
  6685. },
  6686. "funding": [
  6687. {
  6688. "url": "https://symfony.com/sponsor",
  6689. "type": "custom"
  6690. },
  6691. {
  6692. "url": "https://github.com/fabpot",
  6693. "type": "github"
  6694. },
  6695. {
  6696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6697. "type": "tidelift"
  6698. }
  6699. ],
  6700. "time": "2024-09-25T14:20:29+00:00"
  6701. },
  6702. {
  6703. "name": "symfony/routing",
  6704. "version": "v7.1.6",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://github.com/symfony/routing.git",
  6708. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  6713. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  6714. "shasum": ""
  6715. },
  6716. "require": {
  6717. "php": ">=8.2",
  6718. "symfony/deprecation-contracts": "^2.5|^3"
  6719. },
  6720. "conflict": {
  6721. "symfony/config": "<6.4",
  6722. "symfony/dependency-injection": "<6.4",
  6723. "symfony/yaml": "<6.4"
  6724. },
  6725. "require-dev": {
  6726. "psr/log": "^1|^2|^3",
  6727. "symfony/config": "^6.4|^7.0",
  6728. "symfony/dependency-injection": "^6.4|^7.0",
  6729. "symfony/expression-language": "^6.4|^7.0",
  6730. "symfony/http-foundation": "^6.4|^7.0",
  6731. "symfony/yaml": "^6.4|^7.0"
  6732. },
  6733. "type": "library",
  6734. "autoload": {
  6735. "psr-4": {
  6736. "Symfony\\Component\\Routing\\": ""
  6737. },
  6738. "exclude-from-classmap": [
  6739. "/Tests/"
  6740. ]
  6741. },
  6742. "notification-url": "https://packagist.org/downloads/",
  6743. "license": [
  6744. "MIT"
  6745. ],
  6746. "authors": [
  6747. {
  6748. "name": "Fabien Potencier",
  6749. "email": "fabien@symfony.com"
  6750. },
  6751. {
  6752. "name": "Symfony Community",
  6753. "homepage": "https://symfony.com/contributors"
  6754. }
  6755. ],
  6756. "description": "Maps an HTTP request to a set of configuration variables",
  6757. "homepage": "https://symfony.com",
  6758. "keywords": [
  6759. "router",
  6760. "routing",
  6761. "uri",
  6762. "url"
  6763. ],
  6764. "support": {
  6765. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  6766. },
  6767. "funding": [
  6768. {
  6769. "url": "https://symfony.com/sponsor",
  6770. "type": "custom"
  6771. },
  6772. {
  6773. "url": "https://github.com/fabpot",
  6774. "type": "github"
  6775. },
  6776. {
  6777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6778. "type": "tidelift"
  6779. }
  6780. ],
  6781. "time": "2024-10-01T08:31:23+00:00"
  6782. },
  6783. {
  6784. "name": "symfony/runtime",
  6785. "version": "v7.1.7",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/symfony/runtime.git",
  6789. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/symfony/runtime/zipball/9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  6794. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  6795. "shasum": ""
  6796. },
  6797. "require": {
  6798. "composer-plugin-api": "^1.0|^2.0",
  6799. "php": ">=8.2"
  6800. },
  6801. "conflict": {
  6802. "symfony/dotenv": "<6.4"
  6803. },
  6804. "require-dev": {
  6805. "composer/composer": "^2.6",
  6806. "symfony/console": "^6.4|^7.0",
  6807. "symfony/dotenv": "^6.4|^7.0",
  6808. "symfony/http-foundation": "^6.4|^7.0",
  6809. "symfony/http-kernel": "^6.4|^7.0"
  6810. },
  6811. "type": "composer-plugin",
  6812. "extra": {
  6813. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6814. },
  6815. "autoload": {
  6816. "psr-4": {
  6817. "Symfony\\Component\\Runtime\\": "",
  6818. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6819. },
  6820. "exclude-from-classmap": [
  6821. "/Tests/"
  6822. ]
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "MIT"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "Nicolas Grekas",
  6831. "email": "p@tchwork.com"
  6832. },
  6833. {
  6834. "name": "Symfony Community",
  6835. "homepage": "https://symfony.com/contributors"
  6836. }
  6837. ],
  6838. "description": "Enables decoupling PHP applications from global state",
  6839. "homepage": "https://symfony.com",
  6840. "keywords": [
  6841. "runtime"
  6842. ],
  6843. "support": {
  6844. "source": "https://github.com/symfony/runtime/tree/v7.1.7"
  6845. },
  6846. "funding": [
  6847. {
  6848. "url": "https://symfony.com/sponsor",
  6849. "type": "custom"
  6850. },
  6851. {
  6852. "url": "https://github.com/fabpot",
  6853. "type": "github"
  6854. },
  6855. {
  6856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6857. "type": "tidelift"
  6858. }
  6859. ],
  6860. "time": "2024-11-05T16:45:54+00:00"
  6861. },
  6862. {
  6863. "name": "symfony/security-bundle",
  6864. "version": "v7.1.6",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/symfony/security-bundle.git",
  6868. "reference": "7df1d3d431be03fbeb1b162eebca424005b48cdd"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/7df1d3d431be03fbeb1b162eebca424005b48cdd",
  6873. "reference": "7df1d3d431be03fbeb1b162eebca424005b48cdd",
  6874. "shasum": ""
  6875. },
  6876. "require": {
  6877. "composer-runtime-api": ">=2.1",
  6878. "ext-xml": "*",
  6879. "php": ">=8.2",
  6880. "symfony/clock": "^6.4|^7.0",
  6881. "symfony/config": "^6.4|^7.0",
  6882. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6883. "symfony/event-dispatcher": "^6.4|^7.0",
  6884. "symfony/http-foundation": "^6.4|^7.0",
  6885. "symfony/http-kernel": "^6.4|^7.0",
  6886. "symfony/password-hasher": "^6.4|^7.0",
  6887. "symfony/security-core": "^6.4|^7.0",
  6888. "symfony/security-csrf": "^6.4|^7.0",
  6889. "symfony/security-http": "^7.1",
  6890. "symfony/service-contracts": "^2.5|^3"
  6891. },
  6892. "conflict": {
  6893. "symfony/browser-kit": "<6.4",
  6894. "symfony/console": "<6.4",
  6895. "symfony/framework-bundle": "<6.4",
  6896. "symfony/http-client": "<6.4",
  6897. "symfony/ldap": "<6.4",
  6898. "symfony/serializer": "<6.4",
  6899. "symfony/twig-bundle": "<6.4",
  6900. "symfony/validator": "<6.4"
  6901. },
  6902. "require-dev": {
  6903. "symfony/asset": "^6.4|^7.0",
  6904. "symfony/browser-kit": "^6.4|^7.0",
  6905. "symfony/console": "^6.4|^7.0",
  6906. "symfony/css-selector": "^6.4|^7.0",
  6907. "symfony/dom-crawler": "^6.4|^7.0",
  6908. "symfony/expression-language": "^6.4|^7.0",
  6909. "symfony/form": "^6.4|^7.0",
  6910. "symfony/framework-bundle": "^6.4|^7.0",
  6911. "symfony/http-client": "^6.4|^7.0",
  6912. "symfony/ldap": "^6.4|^7.0",
  6913. "symfony/process": "^6.4|^7.0",
  6914. "symfony/rate-limiter": "^6.4|^7.0",
  6915. "symfony/serializer": "^6.4|^7.0",
  6916. "symfony/translation": "^6.4|^7.0",
  6917. "symfony/twig-bridge": "^6.4|^7.0",
  6918. "symfony/twig-bundle": "^6.4|^7.0",
  6919. "symfony/validator": "^6.4|^7.0",
  6920. "symfony/yaml": "^6.4|^7.0",
  6921. "twig/twig": "^3.0.4",
  6922. "web-token/jwt-library": "^3.3.2|^4.0"
  6923. },
  6924. "type": "symfony-bundle",
  6925. "autoload": {
  6926. "psr-4": {
  6927. "Symfony\\Bundle\\SecurityBundle\\": ""
  6928. },
  6929. "exclude-from-classmap": [
  6930. "/Tests/"
  6931. ]
  6932. },
  6933. "notification-url": "https://packagist.org/downloads/",
  6934. "license": [
  6935. "MIT"
  6936. ],
  6937. "authors": [
  6938. {
  6939. "name": "Fabien Potencier",
  6940. "email": "fabien@symfony.com"
  6941. },
  6942. {
  6943. "name": "Symfony Community",
  6944. "homepage": "https://symfony.com/contributors"
  6945. }
  6946. ],
  6947. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6948. "homepage": "https://symfony.com",
  6949. "support": {
  6950. "source": "https://github.com/symfony/security-bundle/tree/v7.1.6"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2024-09-25T14:20:29+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/security-core",
  6970. "version": "v7.1.6",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/security-core.git",
  6974. "reference": "6f3ffbfa1ece94f3a6d97e6e96e9994e9d1bbce2"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/security-core/zipball/6f3ffbfa1ece94f3a6d97e6e96e9994e9d1bbce2",
  6979. "reference": "6f3ffbfa1ece94f3a6d97e6e96e9994e9d1bbce2",
  6980. "shasum": ""
  6981. },
  6982. "require": {
  6983. "php": ">=8.2",
  6984. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6985. "symfony/password-hasher": "^6.4|^7.0",
  6986. "symfony/service-contracts": "^2.5|^3"
  6987. },
  6988. "conflict": {
  6989. "symfony/dependency-injection": "<6.4",
  6990. "symfony/event-dispatcher": "<6.4",
  6991. "symfony/http-foundation": "<6.4",
  6992. "symfony/ldap": "<6.4",
  6993. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6994. "symfony/validator": "<6.4"
  6995. },
  6996. "require-dev": {
  6997. "psr/cache": "^1.0|^2.0|^3.0",
  6998. "psr/container": "^1.1|^2.0",
  6999. "psr/log": "^1|^2|^3",
  7000. "symfony/cache": "^6.4|^7.0",
  7001. "symfony/dependency-injection": "^6.4|^7.0",
  7002. "symfony/event-dispatcher": "^6.4|^7.0",
  7003. "symfony/expression-language": "^6.4|^7.0",
  7004. "symfony/http-foundation": "^6.4|^7.0",
  7005. "symfony/ldap": "^6.4|^7.0",
  7006. "symfony/string": "^6.4|^7.0",
  7007. "symfony/translation": "^6.4.3|^7.0.3",
  7008. "symfony/validator": "^6.4|^7.0"
  7009. },
  7010. "type": "library",
  7011. "autoload": {
  7012. "psr-4": {
  7013. "Symfony\\Component\\Security\\Core\\": ""
  7014. },
  7015. "exclude-from-classmap": [
  7016. "/Tests/"
  7017. ]
  7018. },
  7019. "notification-url": "https://packagist.org/downloads/",
  7020. "license": [
  7021. "MIT"
  7022. ],
  7023. "authors": [
  7024. {
  7025. "name": "Fabien Potencier",
  7026. "email": "fabien@symfony.com"
  7027. },
  7028. {
  7029. "name": "Symfony Community",
  7030. "homepage": "https://symfony.com/contributors"
  7031. }
  7032. ],
  7033. "description": "Symfony Security Component - Core Library",
  7034. "homepage": "https://symfony.com",
  7035. "support": {
  7036. "source": "https://github.com/symfony/security-core/tree/v7.1.6"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://symfony.com/sponsor",
  7041. "type": "custom"
  7042. },
  7043. {
  7044. "url": "https://github.com/fabpot",
  7045. "type": "github"
  7046. },
  7047. {
  7048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7049. "type": "tidelift"
  7050. }
  7051. ],
  7052. "time": "2024-10-25T15:11:02+00:00"
  7053. },
  7054. {
  7055. "name": "symfony/security-csrf",
  7056. "version": "v7.1.6",
  7057. "source": {
  7058. "type": "git",
  7059. "url": "https://github.com/symfony/security-csrf.git",
  7060. "reference": "23b460d3447fd61970e0ed5ec7a0301296a17f06"
  7061. },
  7062. "dist": {
  7063. "type": "zip",
  7064. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/23b460d3447fd61970e0ed5ec7a0301296a17f06",
  7065. "reference": "23b460d3447fd61970e0ed5ec7a0301296a17f06",
  7066. "shasum": ""
  7067. },
  7068. "require": {
  7069. "php": ">=8.2",
  7070. "symfony/security-core": "^6.4|^7.0"
  7071. },
  7072. "conflict": {
  7073. "symfony/http-foundation": "<6.4"
  7074. },
  7075. "require-dev": {
  7076. "symfony/http-foundation": "^6.4|^7.0"
  7077. },
  7078. "type": "library",
  7079. "autoload": {
  7080. "psr-4": {
  7081. "Symfony\\Component\\Security\\Csrf\\": ""
  7082. },
  7083. "exclude-from-classmap": [
  7084. "/Tests/"
  7085. ]
  7086. },
  7087. "notification-url": "https://packagist.org/downloads/",
  7088. "license": [
  7089. "MIT"
  7090. ],
  7091. "authors": [
  7092. {
  7093. "name": "Fabien Potencier",
  7094. "email": "fabien@symfony.com"
  7095. },
  7096. {
  7097. "name": "Symfony Community",
  7098. "homepage": "https://symfony.com/contributors"
  7099. }
  7100. ],
  7101. "description": "Symfony Security Component - CSRF Library",
  7102. "homepage": "https://symfony.com",
  7103. "support": {
  7104. "source": "https://github.com/symfony/security-csrf/tree/v7.1.6"
  7105. },
  7106. "funding": [
  7107. {
  7108. "url": "https://symfony.com/sponsor",
  7109. "type": "custom"
  7110. },
  7111. {
  7112. "url": "https://github.com/fabpot",
  7113. "type": "github"
  7114. },
  7115. {
  7116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7117. "type": "tidelift"
  7118. }
  7119. ],
  7120. "time": "2024-09-25T14:20:29+00:00"
  7121. },
  7122. {
  7123. "name": "symfony/security-http",
  7124. "version": "v7.1.7",
  7125. "source": {
  7126. "type": "git",
  7127. "url": "https://github.com/symfony/security-http.git",
  7128. "reference": "d551ee81377b2b12abe04135564f2e4e6945f90f"
  7129. },
  7130. "dist": {
  7131. "type": "zip",
  7132. "url": "https://api.github.com/repos/symfony/security-http/zipball/d551ee81377b2b12abe04135564f2e4e6945f90f",
  7133. "reference": "d551ee81377b2b12abe04135564f2e4e6945f90f",
  7134. "shasum": ""
  7135. },
  7136. "require": {
  7137. "php": ">=8.2",
  7138. "symfony/deprecation-contracts": "^2.5|^3",
  7139. "symfony/http-foundation": "^6.4|^7.0",
  7140. "symfony/http-kernel": "^6.4|^7.0",
  7141. "symfony/polyfill-mbstring": "~1.0",
  7142. "symfony/property-access": "^6.4|^7.0",
  7143. "symfony/security-core": "^6.4|^7.0",
  7144. "symfony/service-contracts": "^2.5|^3"
  7145. },
  7146. "conflict": {
  7147. "symfony/clock": "<6.4",
  7148. "symfony/event-dispatcher": "<6.4",
  7149. "symfony/http-client-contracts": "<3.0",
  7150. "symfony/security-bundle": "<6.4",
  7151. "symfony/security-csrf": "<6.4"
  7152. },
  7153. "require-dev": {
  7154. "psr/log": "^1|^2|^3",
  7155. "symfony/cache": "^6.4|^7.0",
  7156. "symfony/clock": "^6.4|^7.0",
  7157. "symfony/expression-language": "^6.4|^7.0",
  7158. "symfony/http-client": "^6.4|^7.0",
  7159. "symfony/http-client-contracts": "^3.0",
  7160. "symfony/rate-limiter": "^6.4|^7.0",
  7161. "symfony/routing": "^6.4|^7.0",
  7162. "symfony/security-csrf": "^6.4|^7.0",
  7163. "symfony/translation": "^6.4|^7.0",
  7164. "web-token/jwt-library": "^3.3.2|^4.0"
  7165. },
  7166. "type": "library",
  7167. "autoload": {
  7168. "psr-4": {
  7169. "Symfony\\Component\\Security\\Http\\": ""
  7170. },
  7171. "exclude-from-classmap": [
  7172. "/Tests/"
  7173. ]
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Fabien Potencier",
  7182. "email": "fabien@symfony.com"
  7183. },
  7184. {
  7185. "name": "Symfony Community",
  7186. "homepage": "https://symfony.com/contributors"
  7187. }
  7188. ],
  7189. "description": "Symfony Security Component - HTTP Integration",
  7190. "homepage": "https://symfony.com",
  7191. "support": {
  7192. "source": "https://github.com/symfony/security-http/tree/v7.1.7"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2024-11-05T15:34:55+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/serializer",
  7212. "version": "v7.1.6",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/serializer.git",
  7216. "reference": "537f125ed7ddb8fffac34a83dfd6905e044ca76f"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/serializer/zipball/537f125ed7ddb8fffac34a83dfd6905e044ca76f",
  7221. "reference": "537f125ed7ddb8fffac34a83dfd6905e044ca76f",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "php": ">=8.2",
  7226. "symfony/deprecation-contracts": "^2.5|^3",
  7227. "symfony/polyfill-ctype": "~1.8"
  7228. },
  7229. "conflict": {
  7230. "phpdocumentor/reflection-docblock": "<3.2.2",
  7231. "phpdocumentor/type-resolver": "<1.4.0",
  7232. "symfony/dependency-injection": "<6.4",
  7233. "symfony/property-access": "<6.4",
  7234. "symfony/property-info": "<6.4",
  7235. "symfony/type-info": "<7.1.5",
  7236. "symfony/uid": "<6.4",
  7237. "symfony/validator": "<6.4",
  7238. "symfony/yaml": "<6.4"
  7239. },
  7240. "require-dev": {
  7241. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7242. "phpstan/phpdoc-parser": "^1.0",
  7243. "seld/jsonlint": "^1.10",
  7244. "symfony/cache": "^6.4|^7.0",
  7245. "symfony/config": "^6.4|^7.0",
  7246. "symfony/console": "^6.4|^7.0",
  7247. "symfony/dependency-injection": "^6.4|^7.0",
  7248. "symfony/error-handler": "^6.4|^7.0",
  7249. "symfony/filesystem": "^6.4|^7.0",
  7250. "symfony/form": "^6.4|^7.0",
  7251. "symfony/http-foundation": "^6.4|^7.0",
  7252. "symfony/http-kernel": "^6.4|^7.0",
  7253. "symfony/messenger": "^6.4|^7.0",
  7254. "symfony/mime": "^6.4|^7.0",
  7255. "symfony/property-access": "^6.4|^7.0",
  7256. "symfony/property-info": "^6.4|^7.0",
  7257. "symfony/translation-contracts": "^2.5|^3",
  7258. "symfony/type-info": "^7.1.5",
  7259. "symfony/uid": "^6.4|^7.0",
  7260. "symfony/validator": "^6.4|^7.0",
  7261. "symfony/var-dumper": "^6.4|^7.0",
  7262. "symfony/var-exporter": "^6.4|^7.0",
  7263. "symfony/yaml": "^6.4|^7.0"
  7264. },
  7265. "type": "library",
  7266. "autoload": {
  7267. "psr-4": {
  7268. "Symfony\\Component\\Serializer\\": ""
  7269. },
  7270. "exclude-from-classmap": [
  7271. "/Tests/"
  7272. ]
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "MIT"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Fabien Potencier",
  7281. "email": "fabien@symfony.com"
  7282. },
  7283. {
  7284. "name": "Symfony Community",
  7285. "homepage": "https://symfony.com/contributors"
  7286. }
  7287. ],
  7288. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7289. "homepage": "https://symfony.com",
  7290. "support": {
  7291. "source": "https://github.com/symfony/serializer/tree/v7.1.6"
  7292. },
  7293. "funding": [
  7294. {
  7295. "url": "https://symfony.com/sponsor",
  7296. "type": "custom"
  7297. },
  7298. {
  7299. "url": "https://github.com/fabpot",
  7300. "type": "github"
  7301. },
  7302. {
  7303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7304. "type": "tidelift"
  7305. }
  7306. ],
  7307. "time": "2024-10-09T08:46:59+00:00"
  7308. },
  7309. {
  7310. "name": "symfony/service-contracts",
  7311. "version": "v3.5.0",
  7312. "source": {
  7313. "type": "git",
  7314. "url": "https://github.com/symfony/service-contracts.git",
  7315. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7316. },
  7317. "dist": {
  7318. "type": "zip",
  7319. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7320. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7321. "shasum": ""
  7322. },
  7323. "require": {
  7324. "php": ">=8.1",
  7325. "psr/container": "^1.1|^2.0",
  7326. "symfony/deprecation-contracts": "^2.5|^3"
  7327. },
  7328. "conflict": {
  7329. "ext-psr": "<1.1|>=2"
  7330. },
  7331. "type": "library",
  7332. "extra": {
  7333. "branch-alias": {
  7334. "dev-main": "3.5-dev"
  7335. },
  7336. "thanks": {
  7337. "name": "symfony/contracts",
  7338. "url": "https://github.com/symfony/contracts"
  7339. }
  7340. },
  7341. "autoload": {
  7342. "psr-4": {
  7343. "Symfony\\Contracts\\Service\\": ""
  7344. },
  7345. "exclude-from-classmap": [
  7346. "/Test/"
  7347. ]
  7348. },
  7349. "notification-url": "https://packagist.org/downloads/",
  7350. "license": [
  7351. "MIT"
  7352. ],
  7353. "authors": [
  7354. {
  7355. "name": "Nicolas Grekas",
  7356. "email": "p@tchwork.com"
  7357. },
  7358. {
  7359. "name": "Symfony Community",
  7360. "homepage": "https://symfony.com/contributors"
  7361. }
  7362. ],
  7363. "description": "Generic abstractions related to writing services",
  7364. "homepage": "https://symfony.com",
  7365. "keywords": [
  7366. "abstractions",
  7367. "contracts",
  7368. "decoupling",
  7369. "interfaces",
  7370. "interoperability",
  7371. "standards"
  7372. ],
  7373. "support": {
  7374. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7375. },
  7376. "funding": [
  7377. {
  7378. "url": "https://symfony.com/sponsor",
  7379. "type": "custom"
  7380. },
  7381. {
  7382. "url": "https://github.com/fabpot",
  7383. "type": "github"
  7384. },
  7385. {
  7386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7387. "type": "tidelift"
  7388. }
  7389. ],
  7390. "time": "2024-04-18T09:32:20+00:00"
  7391. },
  7392. {
  7393. "name": "symfony/stimulus-bundle",
  7394. "version": "v2.21.0",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/symfony/stimulus-bundle.git",
  7398. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  7403. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "php": ">=8.1",
  7408. "symfony/config": "^5.4|^6.0|^7.0",
  7409. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7410. "symfony/deprecation-contracts": "^2.0|^3.0",
  7411. "symfony/finder": "^5.4|^6.0|^7.0",
  7412. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7413. "twig/twig": "^2.15.3|^3.8"
  7414. },
  7415. "require-dev": {
  7416. "symfony/asset-mapper": "^6.3|^7.0",
  7417. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7418. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7419. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7420. "zenstruck/browser": "^1.4"
  7421. },
  7422. "type": "symfony-bundle",
  7423. "autoload": {
  7424. "psr-4": {
  7425. "Symfony\\UX\\StimulusBundle\\": "src"
  7426. }
  7427. },
  7428. "notification-url": "https://packagist.org/downloads/",
  7429. "license": [
  7430. "MIT"
  7431. ],
  7432. "authors": [
  7433. {
  7434. "name": "Symfony Community",
  7435. "homepage": "https://symfony.com/contributors"
  7436. }
  7437. ],
  7438. "description": "Integration with your Symfony app & Stimulus!",
  7439. "keywords": [
  7440. "symfony-ux"
  7441. ],
  7442. "support": {
  7443. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  7444. },
  7445. "funding": [
  7446. {
  7447. "url": "https://symfony.com/sponsor",
  7448. "type": "custom"
  7449. },
  7450. {
  7451. "url": "https://github.com/fabpot",
  7452. "type": "github"
  7453. },
  7454. {
  7455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7456. "type": "tidelift"
  7457. }
  7458. ],
  7459. "time": "2024-10-05T22:11:16+00:00"
  7460. },
  7461. {
  7462. "name": "symfony/stopwatch",
  7463. "version": "v7.1.6",
  7464. "source": {
  7465. "type": "git",
  7466. "url": "https://github.com/symfony/stopwatch.git",
  7467. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05"
  7468. },
  7469. "dist": {
  7470. "type": "zip",
  7471. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  7472. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  7473. "shasum": ""
  7474. },
  7475. "require": {
  7476. "php": ">=8.2",
  7477. "symfony/service-contracts": "^2.5|^3"
  7478. },
  7479. "type": "library",
  7480. "autoload": {
  7481. "psr-4": {
  7482. "Symfony\\Component\\Stopwatch\\": ""
  7483. },
  7484. "exclude-from-classmap": [
  7485. "/Tests/"
  7486. ]
  7487. },
  7488. "notification-url": "https://packagist.org/downloads/",
  7489. "license": [
  7490. "MIT"
  7491. ],
  7492. "authors": [
  7493. {
  7494. "name": "Fabien Potencier",
  7495. "email": "fabien@symfony.com"
  7496. },
  7497. {
  7498. "name": "Symfony Community",
  7499. "homepage": "https://symfony.com/contributors"
  7500. }
  7501. ],
  7502. "description": "Provides a way to profile code",
  7503. "homepage": "https://symfony.com",
  7504. "support": {
  7505. "source": "https://github.com/symfony/stopwatch/tree/v7.1.6"
  7506. },
  7507. "funding": [
  7508. {
  7509. "url": "https://symfony.com/sponsor",
  7510. "type": "custom"
  7511. },
  7512. {
  7513. "url": "https://github.com/fabpot",
  7514. "type": "github"
  7515. },
  7516. {
  7517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7518. "type": "tidelift"
  7519. }
  7520. ],
  7521. "time": "2024-09-25T14:20:29+00:00"
  7522. },
  7523. {
  7524. "name": "symfony/string",
  7525. "version": "v7.1.6",
  7526. "source": {
  7527. "type": "git",
  7528. "url": "https://github.com/symfony/string.git",
  7529. "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626"
  7530. },
  7531. "dist": {
  7532. "type": "zip",
  7533. "url": "https://api.github.com/repos/symfony/string/zipball/61b72d66bf96c360a727ae6232df5ac83c71f626",
  7534. "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626",
  7535. "shasum": ""
  7536. },
  7537. "require": {
  7538. "php": ">=8.2",
  7539. "symfony/polyfill-ctype": "~1.8",
  7540. "symfony/polyfill-intl-grapheme": "~1.0",
  7541. "symfony/polyfill-intl-normalizer": "~1.0",
  7542. "symfony/polyfill-mbstring": "~1.0"
  7543. },
  7544. "conflict": {
  7545. "symfony/translation-contracts": "<2.5"
  7546. },
  7547. "require-dev": {
  7548. "symfony/emoji": "^7.1",
  7549. "symfony/error-handler": "^6.4|^7.0",
  7550. "symfony/http-client": "^6.4|^7.0",
  7551. "symfony/intl": "^6.4|^7.0",
  7552. "symfony/translation-contracts": "^2.5|^3.0",
  7553. "symfony/var-exporter": "^6.4|^7.0"
  7554. },
  7555. "type": "library",
  7556. "autoload": {
  7557. "files": [
  7558. "Resources/functions.php"
  7559. ],
  7560. "psr-4": {
  7561. "Symfony\\Component\\String\\": ""
  7562. },
  7563. "exclude-from-classmap": [
  7564. "/Tests/"
  7565. ]
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "MIT"
  7570. ],
  7571. "authors": [
  7572. {
  7573. "name": "Nicolas Grekas",
  7574. "email": "p@tchwork.com"
  7575. },
  7576. {
  7577. "name": "Symfony Community",
  7578. "homepage": "https://symfony.com/contributors"
  7579. }
  7580. ],
  7581. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7582. "homepage": "https://symfony.com",
  7583. "keywords": [
  7584. "grapheme",
  7585. "i18n",
  7586. "string",
  7587. "unicode",
  7588. "utf-8",
  7589. "utf8"
  7590. ],
  7591. "support": {
  7592. "source": "https://github.com/symfony/string/tree/v7.1.6"
  7593. },
  7594. "funding": [
  7595. {
  7596. "url": "https://symfony.com/sponsor",
  7597. "type": "custom"
  7598. },
  7599. {
  7600. "url": "https://github.com/fabpot",
  7601. "type": "github"
  7602. },
  7603. {
  7604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7605. "type": "tidelift"
  7606. }
  7607. ],
  7608. "time": "2024-09-25T14:20:29+00:00"
  7609. },
  7610. {
  7611. "name": "symfony/translation",
  7612. "version": "v7.1.6",
  7613. "source": {
  7614. "type": "git",
  7615. "url": "https://github.com/symfony/translation.git",
  7616. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7617. },
  7618. "dist": {
  7619. "type": "zip",
  7620. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7621. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7622. "shasum": ""
  7623. },
  7624. "require": {
  7625. "php": ">=8.2",
  7626. "symfony/polyfill-mbstring": "~1.0",
  7627. "symfony/translation-contracts": "^2.5|^3.0"
  7628. },
  7629. "conflict": {
  7630. "symfony/config": "<6.4",
  7631. "symfony/console": "<6.4",
  7632. "symfony/dependency-injection": "<6.4",
  7633. "symfony/http-client-contracts": "<2.5",
  7634. "symfony/http-kernel": "<6.4",
  7635. "symfony/service-contracts": "<2.5",
  7636. "symfony/twig-bundle": "<6.4",
  7637. "symfony/yaml": "<6.4"
  7638. },
  7639. "provide": {
  7640. "symfony/translation-implementation": "2.3|3.0"
  7641. },
  7642. "require-dev": {
  7643. "nikic/php-parser": "^4.18|^5.0",
  7644. "psr/log": "^1|^2|^3",
  7645. "symfony/config": "^6.4|^7.0",
  7646. "symfony/console": "^6.4|^7.0",
  7647. "symfony/dependency-injection": "^6.4|^7.0",
  7648. "symfony/finder": "^6.4|^7.0",
  7649. "symfony/http-client-contracts": "^2.5|^3.0",
  7650. "symfony/http-kernel": "^6.4|^7.0",
  7651. "symfony/intl": "^6.4|^7.0",
  7652. "symfony/polyfill-intl-icu": "^1.21",
  7653. "symfony/routing": "^6.4|^7.0",
  7654. "symfony/service-contracts": "^2.5|^3",
  7655. "symfony/yaml": "^6.4|^7.0"
  7656. },
  7657. "type": "library",
  7658. "autoload": {
  7659. "files": [
  7660. "Resources/functions.php"
  7661. ],
  7662. "psr-4": {
  7663. "Symfony\\Component\\Translation\\": ""
  7664. },
  7665. "exclude-from-classmap": [
  7666. "/Tests/"
  7667. ]
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Fabien Potencier",
  7676. "email": "fabien@symfony.com"
  7677. },
  7678. {
  7679. "name": "Symfony Community",
  7680. "homepage": "https://symfony.com/contributors"
  7681. }
  7682. ],
  7683. "description": "Provides tools to internationalize your application",
  7684. "homepage": "https://symfony.com",
  7685. "support": {
  7686. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7687. },
  7688. "funding": [
  7689. {
  7690. "url": "https://symfony.com/sponsor",
  7691. "type": "custom"
  7692. },
  7693. {
  7694. "url": "https://github.com/fabpot",
  7695. "type": "github"
  7696. },
  7697. {
  7698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7699. "type": "tidelift"
  7700. }
  7701. ],
  7702. "time": "2024-09-28T12:35:13+00:00"
  7703. },
  7704. {
  7705. "name": "symfony/translation-contracts",
  7706. "version": "v3.5.0",
  7707. "source": {
  7708. "type": "git",
  7709. "url": "https://github.com/symfony/translation-contracts.git",
  7710. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7711. },
  7712. "dist": {
  7713. "type": "zip",
  7714. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7715. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7716. "shasum": ""
  7717. },
  7718. "require": {
  7719. "php": ">=8.1"
  7720. },
  7721. "type": "library",
  7722. "extra": {
  7723. "branch-alias": {
  7724. "dev-main": "3.5-dev"
  7725. },
  7726. "thanks": {
  7727. "name": "symfony/contracts",
  7728. "url": "https://github.com/symfony/contracts"
  7729. }
  7730. },
  7731. "autoload": {
  7732. "psr-4": {
  7733. "Symfony\\Contracts\\Translation\\": ""
  7734. },
  7735. "exclude-from-classmap": [
  7736. "/Test/"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Nicolas Grekas",
  7746. "email": "p@tchwork.com"
  7747. },
  7748. {
  7749. "name": "Symfony Community",
  7750. "homepage": "https://symfony.com/contributors"
  7751. }
  7752. ],
  7753. "description": "Generic abstractions related to translation",
  7754. "homepage": "https://symfony.com",
  7755. "keywords": [
  7756. "abstractions",
  7757. "contracts",
  7758. "decoupling",
  7759. "interfaces",
  7760. "interoperability",
  7761. "standards"
  7762. ],
  7763. "support": {
  7764. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7765. },
  7766. "funding": [
  7767. {
  7768. "url": "https://symfony.com/sponsor",
  7769. "type": "custom"
  7770. },
  7771. {
  7772. "url": "https://github.com/fabpot",
  7773. "type": "github"
  7774. },
  7775. {
  7776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7777. "type": "tidelift"
  7778. }
  7779. ],
  7780. "time": "2024-04-18T09:32:20+00:00"
  7781. },
  7782. {
  7783. "name": "symfony/twig-bridge",
  7784. "version": "v7.1.6",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://github.com/symfony/twig-bridge.git",
  7788. "reference": "91c67942b0e535272e4d7a89619094a5acd8479d"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/91c67942b0e535272e4d7a89619094a5acd8479d",
  7793. "reference": "91c67942b0e535272e4d7a89619094a5acd8479d",
  7794. "shasum": ""
  7795. },
  7796. "require": {
  7797. "php": ">=8.2",
  7798. "symfony/translation-contracts": "^2.5|^3",
  7799. "twig/twig": "^3.9"
  7800. },
  7801. "conflict": {
  7802. "phpdocumentor/reflection-docblock": "<3.2.2",
  7803. "phpdocumentor/type-resolver": "<1.4.0",
  7804. "symfony/console": "<6.4",
  7805. "symfony/form": "<6.4",
  7806. "symfony/http-foundation": "<6.4",
  7807. "symfony/http-kernel": "<6.4",
  7808. "symfony/mime": "<6.4",
  7809. "symfony/serializer": "<6.4",
  7810. "symfony/translation": "<6.4",
  7811. "symfony/workflow": "<6.4"
  7812. },
  7813. "require-dev": {
  7814. "egulias/email-validator": "^2.1.10|^3|^4",
  7815. "league/html-to-markdown": "^5.0",
  7816. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7817. "symfony/asset": "^6.4|^7.0",
  7818. "symfony/asset-mapper": "^6.4|^7.0",
  7819. "symfony/console": "^6.4|^7.0",
  7820. "symfony/dependency-injection": "^6.4|^7.0",
  7821. "symfony/emoji": "^7.1",
  7822. "symfony/expression-language": "^6.4|^7.0",
  7823. "symfony/finder": "^6.4|^7.0",
  7824. "symfony/form": "^6.4|^7.0",
  7825. "symfony/html-sanitizer": "^6.4|^7.0",
  7826. "symfony/http-foundation": "^6.4|^7.0",
  7827. "symfony/http-kernel": "^6.4|^7.0",
  7828. "symfony/intl": "^6.4|^7.0",
  7829. "symfony/mime": "^6.4|^7.0",
  7830. "symfony/polyfill-intl-icu": "~1.0",
  7831. "symfony/property-info": "^6.4|^7.0",
  7832. "symfony/routing": "^6.4|^7.0",
  7833. "symfony/security-acl": "^2.8|^3.0",
  7834. "symfony/security-core": "^6.4|^7.0",
  7835. "symfony/security-csrf": "^6.4|^7.0",
  7836. "symfony/security-http": "^6.4|^7.0",
  7837. "symfony/serializer": "^6.4.3|^7.0.3",
  7838. "symfony/stopwatch": "^6.4|^7.0",
  7839. "symfony/translation": "^6.4|^7.0",
  7840. "symfony/web-link": "^6.4|^7.0",
  7841. "symfony/workflow": "^6.4|^7.0",
  7842. "symfony/yaml": "^6.4|^7.0",
  7843. "twig/cssinliner-extra": "^2.12|^3",
  7844. "twig/inky-extra": "^2.12|^3",
  7845. "twig/markdown-extra": "^2.12|^3"
  7846. },
  7847. "type": "symfony-bridge",
  7848. "autoload": {
  7849. "psr-4": {
  7850. "Symfony\\Bridge\\Twig\\": ""
  7851. },
  7852. "exclude-from-classmap": [
  7853. "/Tests/"
  7854. ]
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Fabien Potencier",
  7863. "email": "fabien@symfony.com"
  7864. },
  7865. {
  7866. "name": "Symfony Community",
  7867. "homepage": "https://symfony.com/contributors"
  7868. }
  7869. ],
  7870. "description": "Provides integration for Twig with various Symfony components",
  7871. "homepage": "https://symfony.com",
  7872. "support": {
  7873. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.6"
  7874. },
  7875. "funding": [
  7876. {
  7877. "url": "https://symfony.com/sponsor",
  7878. "type": "custom"
  7879. },
  7880. {
  7881. "url": "https://github.com/fabpot",
  7882. "type": "github"
  7883. },
  7884. {
  7885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7886. "type": "tidelift"
  7887. }
  7888. ],
  7889. "time": "2024-10-25T15:11:02+00:00"
  7890. },
  7891. {
  7892. "name": "symfony/twig-bundle",
  7893. "version": "v7.1.6",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://github.com/symfony/twig-bundle.git",
  7897. "reference": "af902314a71fb412ae412094f7e1d7e49594507b"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/af902314a71fb412ae412094f7e1d7e49594507b",
  7902. "reference": "af902314a71fb412ae412094f7e1d7e49594507b",
  7903. "shasum": ""
  7904. },
  7905. "require": {
  7906. "composer-runtime-api": ">=2.1",
  7907. "php": ">=8.2",
  7908. "symfony/config": "^6.4|^7.0",
  7909. "symfony/dependency-injection": "^6.4|^7.0",
  7910. "symfony/http-foundation": "^6.4|^7.0",
  7911. "symfony/http-kernel": "^6.4|^7.0",
  7912. "symfony/twig-bridge": "^6.4|^7.0",
  7913. "twig/twig": "^3.0.4"
  7914. },
  7915. "conflict": {
  7916. "symfony/framework-bundle": "<6.4",
  7917. "symfony/translation": "<6.4"
  7918. },
  7919. "require-dev": {
  7920. "symfony/asset": "^6.4|^7.0",
  7921. "symfony/expression-language": "^6.4|^7.0",
  7922. "symfony/finder": "^6.4|^7.0",
  7923. "symfony/form": "^6.4|^7.0",
  7924. "symfony/framework-bundle": "^6.4|^7.0",
  7925. "symfony/routing": "^6.4|^7.0",
  7926. "symfony/stopwatch": "^6.4|^7.0",
  7927. "symfony/translation": "^6.4|^7.0",
  7928. "symfony/web-link": "^6.4|^7.0",
  7929. "symfony/yaml": "^6.4|^7.0"
  7930. },
  7931. "type": "symfony-bundle",
  7932. "autoload": {
  7933. "psr-4": {
  7934. "Symfony\\Bundle\\TwigBundle\\": ""
  7935. },
  7936. "exclude-from-classmap": [
  7937. "/Tests/"
  7938. ]
  7939. },
  7940. "notification-url": "https://packagist.org/downloads/",
  7941. "license": [
  7942. "MIT"
  7943. ],
  7944. "authors": [
  7945. {
  7946. "name": "Fabien Potencier",
  7947. "email": "fabien@symfony.com"
  7948. },
  7949. {
  7950. "name": "Symfony Community",
  7951. "homepage": "https://symfony.com/contributors"
  7952. }
  7953. ],
  7954. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7955. "homepage": "https://symfony.com",
  7956. "support": {
  7957. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.6"
  7958. },
  7959. "funding": [
  7960. {
  7961. "url": "https://symfony.com/sponsor",
  7962. "type": "custom"
  7963. },
  7964. {
  7965. "url": "https://github.com/fabpot",
  7966. "type": "github"
  7967. },
  7968. {
  7969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7970. "type": "tidelift"
  7971. }
  7972. ],
  7973. "time": "2024-09-25T14:20:29+00:00"
  7974. },
  7975. {
  7976. "name": "symfony/type-info",
  7977. "version": "v7.1.6",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/symfony/type-info.git",
  7981. "reference": "a13032128c307470955c45c99201349b15cd7f4a"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/symfony/type-info/zipball/a13032128c307470955c45c99201349b15cd7f4a",
  7986. "reference": "a13032128c307470955c45c99201349b15cd7f4a",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": ">=8.2",
  7991. "psr/container": "^1.1|^2.0"
  7992. },
  7993. "conflict": {
  7994. "phpstan/phpdoc-parser": "<1.0",
  7995. "symfony/dependency-injection": "<6.4",
  7996. "symfony/property-info": "<6.4"
  7997. },
  7998. "require-dev": {
  7999. "phpstan/phpdoc-parser": "^1.0",
  8000. "symfony/dependency-injection": "^6.4|^7.0",
  8001. "symfony/property-info": "^6.4|^7.0"
  8002. },
  8003. "type": "library",
  8004. "autoload": {
  8005. "psr-4": {
  8006. "Symfony\\Component\\TypeInfo\\": ""
  8007. },
  8008. "exclude-from-classmap": [
  8009. "/Tests/"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "MIT"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Mathias Arlaud",
  8019. "email": "mathias.arlaud@gmail.com"
  8020. },
  8021. {
  8022. "name": "Baptiste LEDUC",
  8023. "email": "baptiste.leduc@gmail.com"
  8024. },
  8025. {
  8026. "name": "Symfony Community",
  8027. "homepage": "https://symfony.com/contributors"
  8028. }
  8029. ],
  8030. "description": "Extracts PHP types information.",
  8031. "homepage": "https://symfony.com",
  8032. "keywords": [
  8033. "PHPStan",
  8034. "phpdoc",
  8035. "symfony",
  8036. "type"
  8037. ],
  8038. "support": {
  8039. "source": "https://github.com/symfony/type-info/tree/v7.1.6"
  8040. },
  8041. "funding": [
  8042. {
  8043. "url": "https://symfony.com/sponsor",
  8044. "type": "custom"
  8045. },
  8046. {
  8047. "url": "https://github.com/fabpot",
  8048. "type": "github"
  8049. },
  8050. {
  8051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8052. "type": "tidelift"
  8053. }
  8054. ],
  8055. "time": "2024-09-25T14:20:29+00:00"
  8056. },
  8057. {
  8058. "name": "symfony/ux-turbo",
  8059. "version": "v2.21.0",
  8060. "source": {
  8061. "type": "git",
  8062. "url": "https://github.com/symfony/ux-turbo.git",
  8063. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  8064. },
  8065. "dist": {
  8066. "type": "zip",
  8067. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  8068. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  8069. "shasum": ""
  8070. },
  8071. "require": {
  8072. "php": ">=8.1",
  8073. "symfony/stimulus-bundle": "^2.9.1"
  8074. },
  8075. "conflict": {
  8076. "symfony/flex": "<1.13"
  8077. },
  8078. "require-dev": {
  8079. "dbrekelmans/bdi": "dev-main",
  8080. "doctrine/doctrine-bundle": "^2.4.3",
  8081. "doctrine/orm": "^2.8 | 3.0",
  8082. "phpstan/phpstan": "^1.10",
  8083. "symfony/asset-mapper": "^6.4|^7.0",
  8084. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  8085. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8086. "symfony/form": "^5.4|^6.0|^7.0",
  8087. "symfony/framework-bundle": "^6.4|^7.0",
  8088. "symfony/mercure-bundle": "^0.3.7",
  8089. "symfony/messenger": "^5.4|^6.0|^7.0",
  8090. "symfony/panther": "^2.1",
  8091. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8092. "symfony/process": "^5.4|6.3.*|^7.0",
  8093. "symfony/property-access": "^5.4|^6.0|^7.0",
  8094. "symfony/security-core": "^5.4|^6.0|^7.0",
  8095. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8096. "symfony/twig-bundle": "^6.4|^7.0",
  8097. "symfony/ux-twig-component": "^2.21",
  8098. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  8099. },
  8100. "type": "symfony-bundle",
  8101. "extra": {
  8102. "thanks": {
  8103. "name": "symfony/ux",
  8104. "url": "https://github.com/symfony/ux"
  8105. }
  8106. },
  8107. "autoload": {
  8108. "psr-4": {
  8109. "Symfony\\UX\\Turbo\\": "src/"
  8110. }
  8111. },
  8112. "notification-url": "https://packagist.org/downloads/",
  8113. "license": [
  8114. "MIT"
  8115. ],
  8116. "authors": [
  8117. {
  8118. "name": "Kévin Dunglas",
  8119. "email": "kevin@dunglas.fr"
  8120. },
  8121. {
  8122. "name": "Symfony Community",
  8123. "homepage": "https://symfony.com/contributors"
  8124. }
  8125. ],
  8126. "description": "Hotwire Turbo integration for Symfony",
  8127. "homepage": "https://symfony.com",
  8128. "keywords": [
  8129. "hotwire",
  8130. "javascript",
  8131. "mercure",
  8132. "symfony-ux",
  8133. "turbo",
  8134. "turbo-stream"
  8135. ],
  8136. "support": {
  8137. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  8138. },
  8139. "funding": [
  8140. {
  8141. "url": "https://symfony.com/sponsor",
  8142. "type": "custom"
  8143. },
  8144. {
  8145. "url": "https://github.com/fabpot",
  8146. "type": "github"
  8147. },
  8148. {
  8149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8150. "type": "tidelift"
  8151. }
  8152. ],
  8153. "time": "2024-10-21T19:07:02+00:00"
  8154. },
  8155. {
  8156. "name": "symfony/validator",
  8157. "version": "v7.1.7",
  8158. "source": {
  8159. "type": "git",
  8160. "url": "https://github.com/symfony/validator.git",
  8161. "reference": "7ec52f844ee39f6d8120e421df75b972deff29eb"
  8162. },
  8163. "dist": {
  8164. "type": "zip",
  8165. "url": "https://api.github.com/repos/symfony/validator/zipball/7ec52f844ee39f6d8120e421df75b972deff29eb",
  8166. "reference": "7ec52f844ee39f6d8120e421df75b972deff29eb",
  8167. "shasum": ""
  8168. },
  8169. "require": {
  8170. "php": ">=8.2",
  8171. "symfony/deprecation-contracts": "^2.5|^3",
  8172. "symfony/polyfill-ctype": "~1.8",
  8173. "symfony/polyfill-mbstring": "~1.0",
  8174. "symfony/polyfill-php83": "^1.27",
  8175. "symfony/translation-contracts": "^2.5|^3"
  8176. },
  8177. "conflict": {
  8178. "doctrine/lexer": "<1.1",
  8179. "symfony/dependency-injection": "<6.4",
  8180. "symfony/doctrine-bridge": "<7.0",
  8181. "symfony/expression-language": "<6.4",
  8182. "symfony/http-kernel": "<6.4",
  8183. "symfony/intl": "<6.4",
  8184. "symfony/property-info": "<6.4",
  8185. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8186. "symfony/yaml": "<6.4"
  8187. },
  8188. "require-dev": {
  8189. "egulias/email-validator": "^2.1.10|^3|^4",
  8190. "symfony/cache": "^6.4|^7.0",
  8191. "symfony/config": "^6.4|^7.0",
  8192. "symfony/console": "^6.4|^7.0",
  8193. "symfony/dependency-injection": "^6.4|^7.0",
  8194. "symfony/expression-language": "^6.4|^7.0",
  8195. "symfony/finder": "^6.4|^7.0",
  8196. "symfony/http-client": "^6.4|^7.0",
  8197. "symfony/http-foundation": "^6.4|^7.0",
  8198. "symfony/http-kernel": "^6.4|^7.0",
  8199. "symfony/intl": "^6.4|^7.0",
  8200. "symfony/mime": "^6.4|^7.0",
  8201. "symfony/property-access": "^6.4|^7.0",
  8202. "symfony/property-info": "^6.4|^7.0",
  8203. "symfony/translation": "^6.4.3|^7.0.3",
  8204. "symfony/type-info": "^7.1",
  8205. "symfony/yaml": "^6.4|^7.0"
  8206. },
  8207. "type": "library",
  8208. "autoload": {
  8209. "psr-4": {
  8210. "Symfony\\Component\\Validator\\": ""
  8211. },
  8212. "exclude-from-classmap": [
  8213. "/Tests/",
  8214. "/Resources/bin/"
  8215. ]
  8216. },
  8217. "notification-url": "https://packagist.org/downloads/",
  8218. "license": [
  8219. "MIT"
  8220. ],
  8221. "authors": [
  8222. {
  8223. "name": "Fabien Potencier",
  8224. "email": "fabien@symfony.com"
  8225. },
  8226. {
  8227. "name": "Symfony Community",
  8228. "homepage": "https://symfony.com/contributors"
  8229. }
  8230. ],
  8231. "description": "Provides tools to validate values",
  8232. "homepage": "https://symfony.com",
  8233. "support": {
  8234. "source": "https://github.com/symfony/validator/tree/v7.1.7"
  8235. },
  8236. "funding": [
  8237. {
  8238. "url": "https://symfony.com/sponsor",
  8239. "type": "custom"
  8240. },
  8241. {
  8242. "url": "https://github.com/fabpot",
  8243. "type": "github"
  8244. },
  8245. {
  8246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8247. "type": "tidelift"
  8248. }
  8249. ],
  8250. "time": "2024-11-04T11:34:07+00:00"
  8251. },
  8252. {
  8253. "name": "symfony/var-dumper",
  8254. "version": "v7.1.7",
  8255. "source": {
  8256. "type": "git",
  8257. "url": "https://github.com/symfony/var-dumper.git",
  8258. "reference": "f6ea51f669760cacd7464bf7eaa0be87b8072db1"
  8259. },
  8260. "dist": {
  8261. "type": "zip",
  8262. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f6ea51f669760cacd7464bf7eaa0be87b8072db1",
  8263. "reference": "f6ea51f669760cacd7464bf7eaa0be87b8072db1",
  8264. "shasum": ""
  8265. },
  8266. "require": {
  8267. "php": ">=8.2",
  8268. "symfony/polyfill-mbstring": "~1.0"
  8269. },
  8270. "conflict": {
  8271. "symfony/console": "<6.4"
  8272. },
  8273. "require-dev": {
  8274. "ext-iconv": "*",
  8275. "symfony/console": "^6.4|^7.0",
  8276. "symfony/http-kernel": "^6.4|^7.0",
  8277. "symfony/process": "^6.4|^7.0",
  8278. "symfony/uid": "^6.4|^7.0",
  8279. "twig/twig": "^3.0.4"
  8280. },
  8281. "bin": [
  8282. "Resources/bin/var-dump-server"
  8283. ],
  8284. "type": "library",
  8285. "autoload": {
  8286. "files": [
  8287. "Resources/functions/dump.php"
  8288. ],
  8289. "psr-4": {
  8290. "Symfony\\Component\\VarDumper\\": ""
  8291. },
  8292. "exclude-from-classmap": [
  8293. "/Tests/"
  8294. ]
  8295. },
  8296. "notification-url": "https://packagist.org/downloads/",
  8297. "license": [
  8298. "MIT"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Nicolas Grekas",
  8303. "email": "p@tchwork.com"
  8304. },
  8305. {
  8306. "name": "Symfony Community",
  8307. "homepage": "https://symfony.com/contributors"
  8308. }
  8309. ],
  8310. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8311. "homepage": "https://symfony.com",
  8312. "keywords": [
  8313. "debug",
  8314. "dump"
  8315. ],
  8316. "support": {
  8317. "source": "https://github.com/symfony/var-dumper/tree/v7.1.7"
  8318. },
  8319. "funding": [
  8320. {
  8321. "url": "https://symfony.com/sponsor",
  8322. "type": "custom"
  8323. },
  8324. {
  8325. "url": "https://github.com/fabpot",
  8326. "type": "github"
  8327. },
  8328. {
  8329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8330. "type": "tidelift"
  8331. }
  8332. ],
  8333. "time": "2024-11-05T15:34:55+00:00"
  8334. },
  8335. {
  8336. "name": "symfony/var-exporter",
  8337. "version": "v7.1.6",
  8338. "source": {
  8339. "type": "git",
  8340. "url": "https://github.com/symfony/var-exporter.git",
  8341. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  8342. },
  8343. "dist": {
  8344. "type": "zip",
  8345. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  8346. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  8347. "shasum": ""
  8348. },
  8349. "require": {
  8350. "php": ">=8.2"
  8351. },
  8352. "require-dev": {
  8353. "symfony/property-access": "^6.4|^7.0",
  8354. "symfony/serializer": "^6.4|^7.0",
  8355. "symfony/var-dumper": "^6.4|^7.0"
  8356. },
  8357. "type": "library",
  8358. "autoload": {
  8359. "psr-4": {
  8360. "Symfony\\Component\\VarExporter\\": ""
  8361. },
  8362. "exclude-from-classmap": [
  8363. "/Tests/"
  8364. ]
  8365. },
  8366. "notification-url": "https://packagist.org/downloads/",
  8367. "license": [
  8368. "MIT"
  8369. ],
  8370. "authors": [
  8371. {
  8372. "name": "Nicolas Grekas",
  8373. "email": "p@tchwork.com"
  8374. },
  8375. {
  8376. "name": "Symfony Community",
  8377. "homepage": "https://symfony.com/contributors"
  8378. }
  8379. ],
  8380. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8381. "homepage": "https://symfony.com",
  8382. "keywords": [
  8383. "clone",
  8384. "construct",
  8385. "export",
  8386. "hydrate",
  8387. "instantiate",
  8388. "lazy-loading",
  8389. "proxy",
  8390. "serialize"
  8391. ],
  8392. "support": {
  8393. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  8394. },
  8395. "funding": [
  8396. {
  8397. "url": "https://symfony.com/sponsor",
  8398. "type": "custom"
  8399. },
  8400. {
  8401. "url": "https://github.com/fabpot",
  8402. "type": "github"
  8403. },
  8404. {
  8405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8406. "type": "tidelift"
  8407. }
  8408. ],
  8409. "time": "2024-09-25T14:20:29+00:00"
  8410. },
  8411. {
  8412. "name": "symfony/web-link",
  8413. "version": "v7.1.6",
  8414. "source": {
  8415. "type": "git",
  8416. "url": "https://github.com/symfony/web-link.git",
  8417. "reference": "383aa7566f25e3a1ab323732c2cc6a1748120d3a"
  8418. },
  8419. "dist": {
  8420. "type": "zip",
  8421. "url": "https://api.github.com/repos/symfony/web-link/zipball/383aa7566f25e3a1ab323732c2cc6a1748120d3a",
  8422. "reference": "383aa7566f25e3a1ab323732c2cc6a1748120d3a",
  8423. "shasum": ""
  8424. },
  8425. "require": {
  8426. "php": ">=8.2",
  8427. "psr/link": "^1.1|^2.0"
  8428. },
  8429. "conflict": {
  8430. "symfony/http-kernel": "<6.4"
  8431. },
  8432. "provide": {
  8433. "psr/link-implementation": "1.0|2.0"
  8434. },
  8435. "require-dev": {
  8436. "symfony/http-kernel": "^6.4|^7.0"
  8437. },
  8438. "type": "library",
  8439. "autoload": {
  8440. "psr-4": {
  8441. "Symfony\\Component\\WebLink\\": ""
  8442. },
  8443. "exclude-from-classmap": [
  8444. "/Tests/"
  8445. ]
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "MIT"
  8450. ],
  8451. "authors": [
  8452. {
  8453. "name": "Kévin Dunglas",
  8454. "email": "dunglas@gmail.com"
  8455. },
  8456. {
  8457. "name": "Symfony Community",
  8458. "homepage": "https://symfony.com/contributors"
  8459. }
  8460. ],
  8461. "description": "Manages links between resources",
  8462. "homepage": "https://symfony.com",
  8463. "keywords": [
  8464. "dns-prefetch",
  8465. "http",
  8466. "http2",
  8467. "link",
  8468. "performance",
  8469. "prefetch",
  8470. "preload",
  8471. "prerender",
  8472. "psr13",
  8473. "push"
  8474. ],
  8475. "support": {
  8476. "source": "https://github.com/symfony/web-link/tree/v7.1.6"
  8477. },
  8478. "funding": [
  8479. {
  8480. "url": "https://symfony.com/sponsor",
  8481. "type": "custom"
  8482. },
  8483. {
  8484. "url": "https://github.com/fabpot",
  8485. "type": "github"
  8486. },
  8487. {
  8488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8489. "type": "tidelift"
  8490. }
  8491. ],
  8492. "time": "2024-09-25T14:20:29+00:00"
  8493. },
  8494. {
  8495. "name": "symfony/workflow",
  8496. "version": "v7.1.6",
  8497. "source": {
  8498. "type": "git",
  8499. "url": "https://github.com/symfony/workflow.git",
  8500. "reference": "b5dca7ecc55ec401939cd101d1a23d64bbce113b"
  8501. },
  8502. "dist": {
  8503. "type": "zip",
  8504. "url": "https://api.github.com/repos/symfony/workflow/zipball/b5dca7ecc55ec401939cd101d1a23d64bbce113b",
  8505. "reference": "b5dca7ecc55ec401939cd101d1a23d64bbce113b",
  8506. "shasum": ""
  8507. },
  8508. "require": {
  8509. "php": ">=8.2"
  8510. },
  8511. "conflict": {
  8512. "symfony/event-dispatcher": "<6.4"
  8513. },
  8514. "require-dev": {
  8515. "psr/log": "^1|^2|^3",
  8516. "symfony/dependency-injection": "^6.4|^7.0",
  8517. "symfony/error-handler": "^6.4|^7.0",
  8518. "symfony/event-dispatcher": "^6.4|^7.0",
  8519. "symfony/expression-language": "^6.4|^7.0",
  8520. "symfony/http-kernel": "^6.4|^7.0",
  8521. "symfony/security-core": "^6.4|^7.0",
  8522. "symfony/stopwatch": "^6.4|^7.0",
  8523. "symfony/validator": "^6.4|^7.0"
  8524. },
  8525. "type": "library",
  8526. "autoload": {
  8527. "psr-4": {
  8528. "Symfony\\Component\\Workflow\\": ""
  8529. },
  8530. "exclude-from-classmap": [
  8531. "/Tests/"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "MIT"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Fabien Potencier",
  8541. "email": "fabien@symfony.com"
  8542. },
  8543. {
  8544. "name": "Grégoire Pineau",
  8545. "email": "lyrixx@lyrixx.info"
  8546. },
  8547. {
  8548. "name": "Symfony Community",
  8549. "homepage": "https://symfony.com/contributors"
  8550. }
  8551. ],
  8552. "description": "Provides tools for managing a workflow or finite state machine",
  8553. "homepage": "https://symfony.com",
  8554. "keywords": [
  8555. "petrinet",
  8556. "place",
  8557. "state",
  8558. "statemachine",
  8559. "transition",
  8560. "workflow"
  8561. ],
  8562. "support": {
  8563. "source": "https://github.com/symfony/workflow/tree/v7.1.6"
  8564. },
  8565. "funding": [
  8566. {
  8567. "url": "https://symfony.com/sponsor",
  8568. "type": "custom"
  8569. },
  8570. {
  8571. "url": "https://github.com/fabpot",
  8572. "type": "github"
  8573. },
  8574. {
  8575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8576. "type": "tidelift"
  8577. }
  8578. ],
  8579. "time": "2024-09-25T14:20:29+00:00"
  8580. },
  8581. {
  8582. "name": "symfony/yaml",
  8583. "version": "v7.1.6",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/symfony/yaml.git",
  8587. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8592. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8593. "shasum": ""
  8594. },
  8595. "require": {
  8596. "php": ">=8.2",
  8597. "symfony/polyfill-ctype": "^1.8"
  8598. },
  8599. "conflict": {
  8600. "symfony/console": "<6.4"
  8601. },
  8602. "require-dev": {
  8603. "symfony/console": "^6.4|^7.0"
  8604. },
  8605. "bin": [
  8606. "Resources/bin/yaml-lint"
  8607. ],
  8608. "type": "library",
  8609. "autoload": {
  8610. "psr-4": {
  8611. "Symfony\\Component\\Yaml\\": ""
  8612. },
  8613. "exclude-from-classmap": [
  8614. "/Tests/"
  8615. ]
  8616. },
  8617. "notification-url": "https://packagist.org/downloads/",
  8618. "license": [
  8619. "MIT"
  8620. ],
  8621. "authors": [
  8622. {
  8623. "name": "Fabien Potencier",
  8624. "email": "fabien@symfony.com"
  8625. },
  8626. {
  8627. "name": "Symfony Community",
  8628. "homepage": "https://symfony.com/contributors"
  8629. }
  8630. ],
  8631. "description": "Loads and dumps YAML files",
  8632. "homepage": "https://symfony.com",
  8633. "support": {
  8634. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  8635. },
  8636. "funding": [
  8637. {
  8638. "url": "https://symfony.com/sponsor",
  8639. "type": "custom"
  8640. },
  8641. {
  8642. "url": "https://github.com/fabpot",
  8643. "type": "github"
  8644. },
  8645. {
  8646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8647. "type": "tidelift"
  8648. }
  8649. ],
  8650. "time": "2024-09-25T14:20:29+00:00"
  8651. },
  8652. {
  8653. "name": "twig/extra-bundle",
  8654. "version": "v3.13.0",
  8655. "source": {
  8656. "type": "git",
  8657. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8658. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  8659. },
  8660. "dist": {
  8661. "type": "zip",
  8662. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8663. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8664. "shasum": ""
  8665. },
  8666. "require": {
  8667. "php": ">=8.0.2",
  8668. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8669. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8670. "twig/twig": "^3.0|^4.0"
  8671. },
  8672. "require-dev": {
  8673. "league/commonmark": "^1.0|^2.0",
  8674. "symfony/phpunit-bridge": "^6.4|^7.0",
  8675. "twig/cache-extra": "^3.0",
  8676. "twig/cssinliner-extra": "^3.0",
  8677. "twig/html-extra": "^3.0",
  8678. "twig/inky-extra": "^3.0",
  8679. "twig/intl-extra": "^3.0",
  8680. "twig/markdown-extra": "^3.0",
  8681. "twig/string-extra": "^3.0"
  8682. },
  8683. "type": "symfony-bundle",
  8684. "autoload": {
  8685. "psr-4": {
  8686. "Twig\\Extra\\TwigExtraBundle\\": ""
  8687. },
  8688. "exclude-from-classmap": [
  8689. "/Tests/"
  8690. ]
  8691. },
  8692. "notification-url": "https://packagist.org/downloads/",
  8693. "license": [
  8694. "MIT"
  8695. ],
  8696. "authors": [
  8697. {
  8698. "name": "Fabien Potencier",
  8699. "email": "fabien@symfony.com",
  8700. "homepage": "http://fabien.potencier.org",
  8701. "role": "Lead Developer"
  8702. }
  8703. ],
  8704. "description": "A Symfony bundle for extra Twig extensions",
  8705. "homepage": "https://twig.symfony.com",
  8706. "keywords": [
  8707. "bundle",
  8708. "extra",
  8709. "twig"
  8710. ],
  8711. "support": {
  8712. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  8713. },
  8714. "funding": [
  8715. {
  8716. "url": "https://github.com/fabpot",
  8717. "type": "github"
  8718. },
  8719. {
  8720. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8721. "type": "tidelift"
  8722. }
  8723. ],
  8724. "time": "2024-09-01T20:39:12+00:00"
  8725. },
  8726. {
  8727. "name": "twig/intl-extra",
  8728. "version": "v3.13.0",
  8729. "source": {
  8730. "type": "git",
  8731. "url": "https://github.com/twigphp/intl-extra.git",
  8732. "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38"
  8733. },
  8734. "dist": {
  8735. "type": "zip",
  8736. "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
  8737. "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
  8738. "shasum": ""
  8739. },
  8740. "require": {
  8741. "php": ">=8.0.2",
  8742. "symfony/intl": "^5.4|^6.4|^7.0",
  8743. "twig/twig": "^3.13|^4.0"
  8744. },
  8745. "require-dev": {
  8746. "symfony/phpunit-bridge": "^6.4|^7.0"
  8747. },
  8748. "type": "library",
  8749. "autoload": {
  8750. "psr-4": {
  8751. "Twig\\Extra\\Intl\\": ""
  8752. },
  8753. "exclude-from-classmap": [
  8754. "/Tests/"
  8755. ]
  8756. },
  8757. "notification-url": "https://packagist.org/downloads/",
  8758. "license": [
  8759. "MIT"
  8760. ],
  8761. "authors": [
  8762. {
  8763. "name": "Fabien Potencier",
  8764. "email": "fabien@symfony.com",
  8765. "homepage": "http://fabien.potencier.org",
  8766. "role": "Lead Developer"
  8767. }
  8768. ],
  8769. "description": "A Twig extension for Intl",
  8770. "homepage": "https://twig.symfony.com",
  8771. "keywords": [
  8772. "intl",
  8773. "twig"
  8774. ],
  8775. "support": {
  8776. "source": "https://github.com/twigphp/intl-extra/tree/v3.13.0"
  8777. },
  8778. "funding": [
  8779. {
  8780. "url": "https://github.com/fabpot",
  8781. "type": "github"
  8782. },
  8783. {
  8784. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8785. "type": "tidelift"
  8786. }
  8787. ],
  8788. "time": "2024-09-03T13:08:40+00:00"
  8789. },
  8790. {
  8791. "name": "twig/markdown-extra",
  8792. "version": "v3.13.0",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/twigphp/markdown-extra.git",
  8796. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25f23c02936f8c7157a8413154c06a462c9c20d3",
  8801. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3",
  8802. "shasum": ""
  8803. },
  8804. "require": {
  8805. "php": ">=8.0.2",
  8806. "symfony/deprecation-contracts": "^2.5|^3",
  8807. "twig/twig": "^3.13|^4.0"
  8808. },
  8809. "require-dev": {
  8810. "erusev/parsedown": "^1.7",
  8811. "league/commonmark": "^1.0|^2.0",
  8812. "league/html-to-markdown": "^4.8|^5.0",
  8813. "michelf/php-markdown": "^1.8|^2.0",
  8814. "symfony/phpunit-bridge": "^6.4|^7.0"
  8815. },
  8816. "type": "library",
  8817. "autoload": {
  8818. "files": [
  8819. "Resources/functions.php"
  8820. ],
  8821. "psr-4": {
  8822. "Twig\\Extra\\Markdown\\": ""
  8823. },
  8824. "exclude-from-classmap": [
  8825. "/Tests/"
  8826. ]
  8827. },
  8828. "notification-url": "https://packagist.org/downloads/",
  8829. "license": [
  8830. "MIT"
  8831. ],
  8832. "authors": [
  8833. {
  8834. "name": "Fabien Potencier",
  8835. "email": "fabien@symfony.com",
  8836. "homepage": "http://fabien.potencier.org",
  8837. "role": "Lead Developer"
  8838. }
  8839. ],
  8840. "description": "A Twig extension for Markdown",
  8841. "homepage": "https://twig.symfony.com",
  8842. "keywords": [
  8843. "html",
  8844. "markdown",
  8845. "twig"
  8846. ],
  8847. "support": {
  8848. "source": "https://github.com/twigphp/markdown-extra/tree/v3.13.0"
  8849. },
  8850. "funding": [
  8851. {
  8852. "url": "https://github.com/fabpot",
  8853. "type": "github"
  8854. },
  8855. {
  8856. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8857. "type": "tidelift"
  8858. }
  8859. ],
  8860. "time": "2024-09-03T20:17:35+00:00"
  8861. },
  8862. {
  8863. "name": "twig/twig",
  8864. "version": "v3.14.2",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/twigphp/Twig.git",
  8868. "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a",
  8873. "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": ">=8.0.2",
  8878. "symfony/deprecation-contracts": "^2.5|^3",
  8879. "symfony/polyfill-ctype": "^1.8",
  8880. "symfony/polyfill-mbstring": "^1.3",
  8881. "symfony/polyfill-php81": "^1.29"
  8882. },
  8883. "require-dev": {
  8884. "psr/container": "^1.0|^2.0",
  8885. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8886. },
  8887. "type": "library",
  8888. "autoload": {
  8889. "files": [
  8890. "src/Resources/core.php",
  8891. "src/Resources/debug.php",
  8892. "src/Resources/escaper.php",
  8893. "src/Resources/string_loader.php"
  8894. ],
  8895. "psr-4": {
  8896. "Twig\\": "src/"
  8897. }
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "BSD-3-Clause"
  8902. ],
  8903. "authors": [
  8904. {
  8905. "name": "Fabien Potencier",
  8906. "email": "fabien@symfony.com",
  8907. "homepage": "http://fabien.potencier.org",
  8908. "role": "Lead Developer"
  8909. },
  8910. {
  8911. "name": "Twig Team",
  8912. "role": "Contributors"
  8913. },
  8914. {
  8915. "name": "Armin Ronacher",
  8916. "email": "armin.ronacher@active-4.com",
  8917. "role": "Project Founder"
  8918. }
  8919. ],
  8920. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8921. "homepage": "https://twig.symfony.com",
  8922. "keywords": [
  8923. "templating"
  8924. ],
  8925. "support": {
  8926. "issues": "https://github.com/twigphp/Twig/issues",
  8927. "source": "https://github.com/twigphp/Twig/tree/v3.14.2"
  8928. },
  8929. "funding": [
  8930. {
  8931. "url": "https://github.com/fabpot",
  8932. "type": "github"
  8933. },
  8934. {
  8935. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8936. "type": "tidelift"
  8937. }
  8938. ],
  8939. "time": "2024-11-07T12:36:22+00:00"
  8940. },
  8941. {
  8942. "name": "webmozart/assert",
  8943. "version": "1.11.0",
  8944. "source": {
  8945. "type": "git",
  8946. "url": "https://github.com/webmozarts/assert.git",
  8947. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8948. },
  8949. "dist": {
  8950. "type": "zip",
  8951. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8952. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8953. "shasum": ""
  8954. },
  8955. "require": {
  8956. "ext-ctype": "*",
  8957. "php": "^7.2 || ^8.0"
  8958. },
  8959. "conflict": {
  8960. "phpstan/phpstan": "<0.12.20",
  8961. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8962. },
  8963. "require-dev": {
  8964. "phpunit/phpunit": "^8.5.13"
  8965. },
  8966. "type": "library",
  8967. "extra": {
  8968. "branch-alias": {
  8969. "dev-master": "1.10-dev"
  8970. }
  8971. },
  8972. "autoload": {
  8973. "psr-4": {
  8974. "Webmozart\\Assert\\": "src/"
  8975. }
  8976. },
  8977. "notification-url": "https://packagist.org/downloads/",
  8978. "license": [
  8979. "MIT"
  8980. ],
  8981. "authors": [
  8982. {
  8983. "name": "Bernhard Schussek",
  8984. "email": "bschussek@gmail.com"
  8985. }
  8986. ],
  8987. "description": "Assertions to validate method input/output with nice error messages.",
  8988. "keywords": [
  8989. "assert",
  8990. "check",
  8991. "validate"
  8992. ],
  8993. "support": {
  8994. "issues": "https://github.com/webmozarts/assert/issues",
  8995. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8996. },
  8997. "time": "2022-06-03T18:03:27+00:00"
  8998. }
  8999. ],
  9000. "packages-dev": [
  9001. {
  9002. "name": "fakerphp/faker",
  9003. "version": "v1.24.0",
  9004. "source": {
  9005. "type": "git",
  9006. "url": "https://github.com/FakerPHP/Faker.git",
  9007. "reference": "a136842a532bac9ecd8a1c723852b09915d7db50"
  9008. },
  9009. "dist": {
  9010. "type": "zip",
  9011. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/a136842a532bac9ecd8a1c723852b09915d7db50",
  9012. "reference": "a136842a532bac9ecd8a1c723852b09915d7db50",
  9013. "shasum": ""
  9014. },
  9015. "require": {
  9016. "php": "^7.4 || ^8.0",
  9017. "psr/container": "^1.0 || ^2.0",
  9018. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9019. },
  9020. "conflict": {
  9021. "fzaninotto/faker": "*"
  9022. },
  9023. "require-dev": {
  9024. "bamarni/composer-bin-plugin": "^1.4.1",
  9025. "doctrine/persistence": "^1.3 || ^2.0",
  9026. "ext-intl": "*",
  9027. "phpunit/phpunit": "^9.5.26",
  9028. "symfony/phpunit-bridge": "^5.4.16"
  9029. },
  9030. "suggest": {
  9031. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9032. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9033. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9034. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9035. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9036. },
  9037. "type": "library",
  9038. "autoload": {
  9039. "psr-4": {
  9040. "Faker\\": "src/Faker/"
  9041. }
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "MIT"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "François Zaninotto"
  9050. }
  9051. ],
  9052. "description": "Faker is a PHP library that generates fake data for you.",
  9053. "keywords": [
  9054. "data",
  9055. "faker",
  9056. "fixtures"
  9057. ],
  9058. "support": {
  9059. "issues": "https://github.com/FakerPHP/Faker/issues",
  9060. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.0"
  9061. },
  9062. "time": "2024-11-07T15:11:20+00:00"
  9063. },
  9064. {
  9065. "name": "masterminds/html5",
  9066. "version": "2.9.0",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/Masterminds/html5-php.git",
  9070. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9075. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "ext-dom": "*",
  9080. "php": ">=5.3.0"
  9081. },
  9082. "require-dev": {
  9083. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "2.7-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "psr-4": {
  9093. "Masterminds\\": "src"
  9094. }
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "MIT"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Matt Butcher",
  9103. "email": "technosophos@gmail.com"
  9104. },
  9105. {
  9106. "name": "Matt Farina",
  9107. "email": "matt@mattfarina.com"
  9108. },
  9109. {
  9110. "name": "Asmir Mustafic",
  9111. "email": "goetas@gmail.com"
  9112. }
  9113. ],
  9114. "description": "An HTML5 parser and serializer.",
  9115. "homepage": "http://masterminds.github.io/html5-php",
  9116. "keywords": [
  9117. "HTML5",
  9118. "dom",
  9119. "html",
  9120. "parser",
  9121. "querypath",
  9122. "serializer",
  9123. "xml"
  9124. ],
  9125. "support": {
  9126. "issues": "https://github.com/Masterminds/html5-php/issues",
  9127. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9128. },
  9129. "time": "2024-03-31T07:05:07+00:00"
  9130. },
  9131. {
  9132. "name": "myclabs/deep-copy",
  9133. "version": "1.12.1",
  9134. "source": {
  9135. "type": "git",
  9136. "url": "https://github.com/myclabs/DeepCopy.git",
  9137. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9138. },
  9139. "dist": {
  9140. "type": "zip",
  9141. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9142. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9143. "shasum": ""
  9144. },
  9145. "require": {
  9146. "php": "^7.1 || ^8.0"
  9147. },
  9148. "conflict": {
  9149. "doctrine/collections": "<1.6.8",
  9150. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9151. },
  9152. "require-dev": {
  9153. "doctrine/collections": "^1.6.8",
  9154. "doctrine/common": "^2.13.3 || ^3.2.2",
  9155. "phpspec/prophecy": "^1.10",
  9156. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9157. },
  9158. "type": "library",
  9159. "autoload": {
  9160. "files": [
  9161. "src/DeepCopy/deep_copy.php"
  9162. ],
  9163. "psr-4": {
  9164. "DeepCopy\\": "src/DeepCopy/"
  9165. }
  9166. },
  9167. "notification-url": "https://packagist.org/downloads/",
  9168. "license": [
  9169. "MIT"
  9170. ],
  9171. "description": "Create deep copies (clones) of your objects",
  9172. "keywords": [
  9173. "clone",
  9174. "copy",
  9175. "duplicate",
  9176. "object",
  9177. "object graph"
  9178. ],
  9179. "support": {
  9180. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9181. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9182. },
  9183. "funding": [
  9184. {
  9185. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9186. "type": "tidelift"
  9187. }
  9188. ],
  9189. "time": "2024-11-08T17:47:46+00:00"
  9190. },
  9191. {
  9192. "name": "nikic/php-parser",
  9193. "version": "v5.3.1",
  9194. "source": {
  9195. "type": "git",
  9196. "url": "https://github.com/nikic/PHP-Parser.git",
  9197. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  9198. },
  9199. "dist": {
  9200. "type": "zip",
  9201. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  9202. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  9203. "shasum": ""
  9204. },
  9205. "require": {
  9206. "ext-ctype": "*",
  9207. "ext-json": "*",
  9208. "ext-tokenizer": "*",
  9209. "php": ">=7.4"
  9210. },
  9211. "require-dev": {
  9212. "ircmaxell/php-yacc": "^0.0.7",
  9213. "phpunit/phpunit": "^9.0"
  9214. },
  9215. "bin": [
  9216. "bin/php-parse"
  9217. ],
  9218. "type": "library",
  9219. "extra": {
  9220. "branch-alias": {
  9221. "dev-master": "5.0-dev"
  9222. }
  9223. },
  9224. "autoload": {
  9225. "psr-4": {
  9226. "PhpParser\\": "lib/PhpParser"
  9227. }
  9228. },
  9229. "notification-url": "https://packagist.org/downloads/",
  9230. "license": [
  9231. "BSD-3-Clause"
  9232. ],
  9233. "authors": [
  9234. {
  9235. "name": "Nikita Popov"
  9236. }
  9237. ],
  9238. "description": "A PHP parser written in PHP",
  9239. "keywords": [
  9240. "parser",
  9241. "php"
  9242. ],
  9243. "support": {
  9244. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9245. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  9246. },
  9247. "time": "2024-10-08T18:51:32+00:00"
  9248. },
  9249. {
  9250. "name": "phar-io/manifest",
  9251. "version": "2.0.4",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/phar-io/manifest.git",
  9255. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9260. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "ext-dom": "*",
  9265. "ext-libxml": "*",
  9266. "ext-phar": "*",
  9267. "ext-xmlwriter": "*",
  9268. "phar-io/version": "^3.0.1",
  9269. "php": "^7.2 || ^8.0"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "2.0.x-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Arne Blankerts",
  9289. "email": "arne@blankerts.de",
  9290. "role": "Developer"
  9291. },
  9292. {
  9293. "name": "Sebastian Heuer",
  9294. "email": "sebastian@phpeople.de",
  9295. "role": "Developer"
  9296. },
  9297. {
  9298. "name": "Sebastian Bergmann",
  9299. "email": "sebastian@phpunit.de",
  9300. "role": "Developer"
  9301. }
  9302. ],
  9303. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9304. "support": {
  9305. "issues": "https://github.com/phar-io/manifest/issues",
  9306. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9307. },
  9308. "funding": [
  9309. {
  9310. "url": "https://github.com/theseer",
  9311. "type": "github"
  9312. }
  9313. ],
  9314. "time": "2024-03-03T12:33:53+00:00"
  9315. },
  9316. {
  9317. "name": "phar-io/version",
  9318. "version": "3.2.1",
  9319. "source": {
  9320. "type": "git",
  9321. "url": "https://github.com/phar-io/version.git",
  9322. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9323. },
  9324. "dist": {
  9325. "type": "zip",
  9326. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9327. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9328. "shasum": ""
  9329. },
  9330. "require": {
  9331. "php": "^7.2 || ^8.0"
  9332. },
  9333. "type": "library",
  9334. "autoload": {
  9335. "classmap": [
  9336. "src/"
  9337. ]
  9338. },
  9339. "notification-url": "https://packagist.org/downloads/",
  9340. "license": [
  9341. "BSD-3-Clause"
  9342. ],
  9343. "authors": [
  9344. {
  9345. "name": "Arne Blankerts",
  9346. "email": "arne@blankerts.de",
  9347. "role": "Developer"
  9348. },
  9349. {
  9350. "name": "Sebastian Heuer",
  9351. "email": "sebastian@phpeople.de",
  9352. "role": "Developer"
  9353. },
  9354. {
  9355. "name": "Sebastian Bergmann",
  9356. "email": "sebastian@phpunit.de",
  9357. "role": "Developer"
  9358. }
  9359. ],
  9360. "description": "Library for handling version information and constraints",
  9361. "support": {
  9362. "issues": "https://github.com/phar-io/version/issues",
  9363. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9364. },
  9365. "time": "2022-02-21T01:04:05+00:00"
  9366. },
  9367. {
  9368. "name": "phpunit/php-code-coverage",
  9369. "version": "9.2.32",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9373. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9378. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "ext-dom": "*",
  9383. "ext-libxml": "*",
  9384. "ext-xmlwriter": "*",
  9385. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9386. "php": ">=7.3",
  9387. "phpunit/php-file-iterator": "^3.0.6",
  9388. "phpunit/php-text-template": "^2.0.4",
  9389. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9390. "sebastian/complexity": "^2.0.3",
  9391. "sebastian/environment": "^5.1.5",
  9392. "sebastian/lines-of-code": "^1.0.4",
  9393. "sebastian/version": "^3.0.2",
  9394. "theseer/tokenizer": "^1.2.3"
  9395. },
  9396. "require-dev": {
  9397. "phpunit/phpunit": "^9.6"
  9398. },
  9399. "suggest": {
  9400. "ext-pcov": "PHP extension that provides line coverage",
  9401. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9402. },
  9403. "type": "library",
  9404. "extra": {
  9405. "branch-alias": {
  9406. "dev-main": "9.2.x-dev"
  9407. }
  9408. },
  9409. "autoload": {
  9410. "classmap": [
  9411. "src/"
  9412. ]
  9413. },
  9414. "notification-url": "https://packagist.org/downloads/",
  9415. "license": [
  9416. "BSD-3-Clause"
  9417. ],
  9418. "authors": [
  9419. {
  9420. "name": "Sebastian Bergmann",
  9421. "email": "sebastian@phpunit.de",
  9422. "role": "lead"
  9423. }
  9424. ],
  9425. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9426. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9427. "keywords": [
  9428. "coverage",
  9429. "testing",
  9430. "xunit"
  9431. ],
  9432. "support": {
  9433. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9434. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9435. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9436. },
  9437. "funding": [
  9438. {
  9439. "url": "https://github.com/sebastianbergmann",
  9440. "type": "github"
  9441. }
  9442. ],
  9443. "time": "2024-08-22T04:23:01+00:00"
  9444. },
  9445. {
  9446. "name": "phpunit/php-file-iterator",
  9447. "version": "3.0.6",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9451. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9456. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": ">=7.3"
  9461. },
  9462. "require-dev": {
  9463. "phpunit/phpunit": "^9.3"
  9464. },
  9465. "type": "library",
  9466. "extra": {
  9467. "branch-alias": {
  9468. "dev-master": "3.0-dev"
  9469. }
  9470. },
  9471. "autoload": {
  9472. "classmap": [
  9473. "src/"
  9474. ]
  9475. },
  9476. "notification-url": "https://packagist.org/downloads/",
  9477. "license": [
  9478. "BSD-3-Clause"
  9479. ],
  9480. "authors": [
  9481. {
  9482. "name": "Sebastian Bergmann",
  9483. "email": "sebastian@phpunit.de",
  9484. "role": "lead"
  9485. }
  9486. ],
  9487. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9488. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9489. "keywords": [
  9490. "filesystem",
  9491. "iterator"
  9492. ],
  9493. "support": {
  9494. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9495. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9496. },
  9497. "funding": [
  9498. {
  9499. "url": "https://github.com/sebastianbergmann",
  9500. "type": "github"
  9501. }
  9502. ],
  9503. "time": "2021-12-02T12:48:52+00:00"
  9504. },
  9505. {
  9506. "name": "phpunit/php-invoker",
  9507. "version": "3.1.1",
  9508. "source": {
  9509. "type": "git",
  9510. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9511. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9512. },
  9513. "dist": {
  9514. "type": "zip",
  9515. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9516. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9517. "shasum": ""
  9518. },
  9519. "require": {
  9520. "php": ">=7.3"
  9521. },
  9522. "require-dev": {
  9523. "ext-pcntl": "*",
  9524. "phpunit/phpunit": "^9.3"
  9525. },
  9526. "suggest": {
  9527. "ext-pcntl": "*"
  9528. },
  9529. "type": "library",
  9530. "extra": {
  9531. "branch-alias": {
  9532. "dev-master": "3.1-dev"
  9533. }
  9534. },
  9535. "autoload": {
  9536. "classmap": [
  9537. "src/"
  9538. ]
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "BSD-3-Clause"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Sebastian Bergmann",
  9547. "email": "sebastian@phpunit.de",
  9548. "role": "lead"
  9549. }
  9550. ],
  9551. "description": "Invoke callables with a timeout",
  9552. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9553. "keywords": [
  9554. "process"
  9555. ],
  9556. "support": {
  9557. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9558. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9559. },
  9560. "funding": [
  9561. {
  9562. "url": "https://github.com/sebastianbergmann",
  9563. "type": "github"
  9564. }
  9565. ],
  9566. "time": "2020-09-28T05:58:55+00:00"
  9567. },
  9568. {
  9569. "name": "phpunit/php-text-template",
  9570. "version": "2.0.4",
  9571. "source": {
  9572. "type": "git",
  9573. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9574. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9575. },
  9576. "dist": {
  9577. "type": "zip",
  9578. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9579. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9580. "shasum": ""
  9581. },
  9582. "require": {
  9583. "php": ">=7.3"
  9584. },
  9585. "require-dev": {
  9586. "phpunit/phpunit": "^9.3"
  9587. },
  9588. "type": "library",
  9589. "extra": {
  9590. "branch-alias": {
  9591. "dev-master": "2.0-dev"
  9592. }
  9593. },
  9594. "autoload": {
  9595. "classmap": [
  9596. "src/"
  9597. ]
  9598. },
  9599. "notification-url": "https://packagist.org/downloads/",
  9600. "license": [
  9601. "BSD-3-Clause"
  9602. ],
  9603. "authors": [
  9604. {
  9605. "name": "Sebastian Bergmann",
  9606. "email": "sebastian@phpunit.de",
  9607. "role": "lead"
  9608. }
  9609. ],
  9610. "description": "Simple template engine.",
  9611. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9612. "keywords": [
  9613. "template"
  9614. ],
  9615. "support": {
  9616. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9617. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9618. },
  9619. "funding": [
  9620. {
  9621. "url": "https://github.com/sebastianbergmann",
  9622. "type": "github"
  9623. }
  9624. ],
  9625. "time": "2020-10-26T05:33:50+00:00"
  9626. },
  9627. {
  9628. "name": "phpunit/php-timer",
  9629. "version": "5.0.3",
  9630. "source": {
  9631. "type": "git",
  9632. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9633. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9634. },
  9635. "dist": {
  9636. "type": "zip",
  9637. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9638. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9639. "shasum": ""
  9640. },
  9641. "require": {
  9642. "php": ">=7.3"
  9643. },
  9644. "require-dev": {
  9645. "phpunit/phpunit": "^9.3"
  9646. },
  9647. "type": "library",
  9648. "extra": {
  9649. "branch-alias": {
  9650. "dev-master": "5.0-dev"
  9651. }
  9652. },
  9653. "autoload": {
  9654. "classmap": [
  9655. "src/"
  9656. ]
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "license": [
  9660. "BSD-3-Clause"
  9661. ],
  9662. "authors": [
  9663. {
  9664. "name": "Sebastian Bergmann",
  9665. "email": "sebastian@phpunit.de",
  9666. "role": "lead"
  9667. }
  9668. ],
  9669. "description": "Utility class for timing",
  9670. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9671. "keywords": [
  9672. "timer"
  9673. ],
  9674. "support": {
  9675. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9676. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://github.com/sebastianbergmann",
  9681. "type": "github"
  9682. }
  9683. ],
  9684. "time": "2020-10-26T13:16:10+00:00"
  9685. },
  9686. {
  9687. "name": "phpunit/phpunit",
  9688. "version": "9.6.21",
  9689. "source": {
  9690. "type": "git",
  9691. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9692. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  9693. },
  9694. "dist": {
  9695. "type": "zip",
  9696. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9697. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9698. "shasum": ""
  9699. },
  9700. "require": {
  9701. "doctrine/instantiator": "^1.5.0 || ^2",
  9702. "ext-dom": "*",
  9703. "ext-json": "*",
  9704. "ext-libxml": "*",
  9705. "ext-mbstring": "*",
  9706. "ext-xml": "*",
  9707. "ext-xmlwriter": "*",
  9708. "myclabs/deep-copy": "^1.12.0",
  9709. "phar-io/manifest": "^2.0.4",
  9710. "phar-io/version": "^3.2.1",
  9711. "php": ">=7.3",
  9712. "phpunit/php-code-coverage": "^9.2.32",
  9713. "phpunit/php-file-iterator": "^3.0.6",
  9714. "phpunit/php-invoker": "^3.1.1",
  9715. "phpunit/php-text-template": "^2.0.4",
  9716. "phpunit/php-timer": "^5.0.3",
  9717. "sebastian/cli-parser": "^1.0.2",
  9718. "sebastian/code-unit": "^1.0.8",
  9719. "sebastian/comparator": "^4.0.8",
  9720. "sebastian/diff": "^4.0.6",
  9721. "sebastian/environment": "^5.1.5",
  9722. "sebastian/exporter": "^4.0.6",
  9723. "sebastian/global-state": "^5.0.7",
  9724. "sebastian/object-enumerator": "^4.0.4",
  9725. "sebastian/resource-operations": "^3.0.4",
  9726. "sebastian/type": "^3.2.1",
  9727. "sebastian/version": "^3.0.2"
  9728. },
  9729. "suggest": {
  9730. "ext-soap": "To be able to generate mocks based on WSDL files",
  9731. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9732. },
  9733. "bin": [
  9734. "phpunit"
  9735. ],
  9736. "type": "library",
  9737. "extra": {
  9738. "branch-alias": {
  9739. "dev-master": "9.6-dev"
  9740. }
  9741. },
  9742. "autoload": {
  9743. "files": [
  9744. "src/Framework/Assert/Functions.php"
  9745. ],
  9746. "classmap": [
  9747. "src/"
  9748. ]
  9749. },
  9750. "notification-url": "https://packagist.org/downloads/",
  9751. "license": [
  9752. "BSD-3-Clause"
  9753. ],
  9754. "authors": [
  9755. {
  9756. "name": "Sebastian Bergmann",
  9757. "email": "sebastian@phpunit.de",
  9758. "role": "lead"
  9759. }
  9760. ],
  9761. "description": "The PHP Unit Testing framework.",
  9762. "homepage": "https://phpunit.de/",
  9763. "keywords": [
  9764. "phpunit",
  9765. "testing",
  9766. "xunit"
  9767. ],
  9768. "support": {
  9769. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9770. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9771. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  9772. },
  9773. "funding": [
  9774. {
  9775. "url": "https://phpunit.de/sponsors.html",
  9776. "type": "custom"
  9777. },
  9778. {
  9779. "url": "https://github.com/sebastianbergmann",
  9780. "type": "github"
  9781. },
  9782. {
  9783. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9784. "type": "tidelift"
  9785. }
  9786. ],
  9787. "time": "2024-09-19T10:50:18+00:00"
  9788. },
  9789. {
  9790. "name": "sebastian/cli-parser",
  9791. "version": "1.0.2",
  9792. "source": {
  9793. "type": "git",
  9794. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9795. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9796. },
  9797. "dist": {
  9798. "type": "zip",
  9799. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9800. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9801. "shasum": ""
  9802. },
  9803. "require": {
  9804. "php": ">=7.3"
  9805. },
  9806. "require-dev": {
  9807. "phpunit/phpunit": "^9.3"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-master": "1.0-dev"
  9813. }
  9814. },
  9815. "autoload": {
  9816. "classmap": [
  9817. "src/"
  9818. ]
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "BSD-3-Clause"
  9823. ],
  9824. "authors": [
  9825. {
  9826. "name": "Sebastian Bergmann",
  9827. "email": "sebastian@phpunit.de",
  9828. "role": "lead"
  9829. }
  9830. ],
  9831. "description": "Library for parsing CLI options",
  9832. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9833. "support": {
  9834. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9835. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://github.com/sebastianbergmann",
  9840. "type": "github"
  9841. }
  9842. ],
  9843. "time": "2024-03-02T06:27:43+00:00"
  9844. },
  9845. {
  9846. "name": "sebastian/code-unit",
  9847. "version": "1.0.8",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9851. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9856. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": ">=7.3"
  9861. },
  9862. "require-dev": {
  9863. "phpunit/phpunit": "^9.3"
  9864. },
  9865. "type": "library",
  9866. "extra": {
  9867. "branch-alias": {
  9868. "dev-master": "1.0-dev"
  9869. }
  9870. },
  9871. "autoload": {
  9872. "classmap": [
  9873. "src/"
  9874. ]
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "BSD-3-Clause"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Sebastian Bergmann",
  9883. "email": "sebastian@phpunit.de",
  9884. "role": "lead"
  9885. }
  9886. ],
  9887. "description": "Collection of value objects that represent the PHP code units",
  9888. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9889. "support": {
  9890. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9891. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9892. },
  9893. "funding": [
  9894. {
  9895. "url": "https://github.com/sebastianbergmann",
  9896. "type": "github"
  9897. }
  9898. ],
  9899. "time": "2020-10-26T13:08:54+00:00"
  9900. },
  9901. {
  9902. "name": "sebastian/code-unit-reverse-lookup",
  9903. "version": "2.0.3",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9907. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9912. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9913. "shasum": ""
  9914. },
  9915. "require": {
  9916. "php": ">=7.3"
  9917. },
  9918. "require-dev": {
  9919. "phpunit/phpunit": "^9.3"
  9920. },
  9921. "type": "library",
  9922. "extra": {
  9923. "branch-alias": {
  9924. "dev-master": "2.0-dev"
  9925. }
  9926. },
  9927. "autoload": {
  9928. "classmap": [
  9929. "src/"
  9930. ]
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "BSD-3-Clause"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Sebastian Bergmann",
  9939. "email": "sebastian@phpunit.de"
  9940. }
  9941. ],
  9942. "description": "Looks up which function or method a line of code belongs to",
  9943. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9944. "support": {
  9945. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9946. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9947. },
  9948. "funding": [
  9949. {
  9950. "url": "https://github.com/sebastianbergmann",
  9951. "type": "github"
  9952. }
  9953. ],
  9954. "time": "2020-09-28T05:30:19+00:00"
  9955. },
  9956. {
  9957. "name": "sebastian/comparator",
  9958. "version": "4.0.8",
  9959. "source": {
  9960. "type": "git",
  9961. "url": "https://github.com/sebastianbergmann/comparator.git",
  9962. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9963. },
  9964. "dist": {
  9965. "type": "zip",
  9966. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9967. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9968. "shasum": ""
  9969. },
  9970. "require": {
  9971. "php": ">=7.3",
  9972. "sebastian/diff": "^4.0",
  9973. "sebastian/exporter": "^4.0"
  9974. },
  9975. "require-dev": {
  9976. "phpunit/phpunit": "^9.3"
  9977. },
  9978. "type": "library",
  9979. "extra": {
  9980. "branch-alias": {
  9981. "dev-master": "4.0-dev"
  9982. }
  9983. },
  9984. "autoload": {
  9985. "classmap": [
  9986. "src/"
  9987. ]
  9988. },
  9989. "notification-url": "https://packagist.org/downloads/",
  9990. "license": [
  9991. "BSD-3-Clause"
  9992. ],
  9993. "authors": [
  9994. {
  9995. "name": "Sebastian Bergmann",
  9996. "email": "sebastian@phpunit.de"
  9997. },
  9998. {
  9999. "name": "Jeff Welch",
  10000. "email": "whatthejeff@gmail.com"
  10001. },
  10002. {
  10003. "name": "Volker Dusch",
  10004. "email": "github@wallbash.com"
  10005. },
  10006. {
  10007. "name": "Bernhard Schussek",
  10008. "email": "bschussek@2bepublished.at"
  10009. }
  10010. ],
  10011. "description": "Provides the functionality to compare PHP values for equality",
  10012. "homepage": "https://github.com/sebastianbergmann/comparator",
  10013. "keywords": [
  10014. "comparator",
  10015. "compare",
  10016. "equality"
  10017. ],
  10018. "support": {
  10019. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10020. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10021. },
  10022. "funding": [
  10023. {
  10024. "url": "https://github.com/sebastianbergmann",
  10025. "type": "github"
  10026. }
  10027. ],
  10028. "time": "2022-09-14T12:41:17+00:00"
  10029. },
  10030. {
  10031. "name": "sebastian/complexity",
  10032. "version": "2.0.3",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/sebastianbergmann/complexity.git",
  10036. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10041. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "nikic/php-parser": "^4.18 || ^5.0",
  10046. "php": ">=7.3"
  10047. },
  10048. "require-dev": {
  10049. "phpunit/phpunit": "^9.3"
  10050. },
  10051. "type": "library",
  10052. "extra": {
  10053. "branch-alias": {
  10054. "dev-master": "2.0-dev"
  10055. }
  10056. },
  10057. "autoload": {
  10058. "classmap": [
  10059. "src/"
  10060. ]
  10061. },
  10062. "notification-url": "https://packagist.org/downloads/",
  10063. "license": [
  10064. "BSD-3-Clause"
  10065. ],
  10066. "authors": [
  10067. {
  10068. "name": "Sebastian Bergmann",
  10069. "email": "sebastian@phpunit.de",
  10070. "role": "lead"
  10071. }
  10072. ],
  10073. "description": "Library for calculating the complexity of PHP code units",
  10074. "homepage": "https://github.com/sebastianbergmann/complexity",
  10075. "support": {
  10076. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10077. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10078. },
  10079. "funding": [
  10080. {
  10081. "url": "https://github.com/sebastianbergmann",
  10082. "type": "github"
  10083. }
  10084. ],
  10085. "time": "2023-12-22T06:19:30+00:00"
  10086. },
  10087. {
  10088. "name": "sebastian/diff",
  10089. "version": "4.0.6",
  10090. "source": {
  10091. "type": "git",
  10092. "url": "https://github.com/sebastianbergmann/diff.git",
  10093. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10094. },
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10098. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10099. "shasum": ""
  10100. },
  10101. "require": {
  10102. "php": ">=7.3"
  10103. },
  10104. "require-dev": {
  10105. "phpunit/phpunit": "^9.3",
  10106. "symfony/process": "^4.2 || ^5"
  10107. },
  10108. "type": "library",
  10109. "extra": {
  10110. "branch-alias": {
  10111. "dev-master": "4.0-dev"
  10112. }
  10113. },
  10114. "autoload": {
  10115. "classmap": [
  10116. "src/"
  10117. ]
  10118. },
  10119. "notification-url": "https://packagist.org/downloads/",
  10120. "license": [
  10121. "BSD-3-Clause"
  10122. ],
  10123. "authors": [
  10124. {
  10125. "name": "Sebastian Bergmann",
  10126. "email": "sebastian@phpunit.de"
  10127. },
  10128. {
  10129. "name": "Kore Nordmann",
  10130. "email": "mail@kore-nordmann.de"
  10131. }
  10132. ],
  10133. "description": "Diff implementation",
  10134. "homepage": "https://github.com/sebastianbergmann/diff",
  10135. "keywords": [
  10136. "diff",
  10137. "udiff",
  10138. "unidiff",
  10139. "unified diff"
  10140. ],
  10141. "support": {
  10142. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10143. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10144. },
  10145. "funding": [
  10146. {
  10147. "url": "https://github.com/sebastianbergmann",
  10148. "type": "github"
  10149. }
  10150. ],
  10151. "time": "2024-03-02T06:30:58+00:00"
  10152. },
  10153. {
  10154. "name": "sebastian/environment",
  10155. "version": "5.1.5",
  10156. "source": {
  10157. "type": "git",
  10158. "url": "https://github.com/sebastianbergmann/environment.git",
  10159. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10160. },
  10161. "dist": {
  10162. "type": "zip",
  10163. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10164. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10165. "shasum": ""
  10166. },
  10167. "require": {
  10168. "php": ">=7.3"
  10169. },
  10170. "require-dev": {
  10171. "phpunit/phpunit": "^9.3"
  10172. },
  10173. "suggest": {
  10174. "ext-posix": "*"
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "5.1-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "classmap": [
  10184. "src/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Sebastian Bergmann",
  10194. "email": "sebastian@phpunit.de"
  10195. }
  10196. ],
  10197. "description": "Provides functionality to handle HHVM/PHP environments",
  10198. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10199. "keywords": [
  10200. "Xdebug",
  10201. "environment",
  10202. "hhvm"
  10203. ],
  10204. "support": {
  10205. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10206. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10207. },
  10208. "funding": [
  10209. {
  10210. "url": "https://github.com/sebastianbergmann",
  10211. "type": "github"
  10212. }
  10213. ],
  10214. "time": "2023-02-03T06:03:51+00:00"
  10215. },
  10216. {
  10217. "name": "sebastian/exporter",
  10218. "version": "4.0.6",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/sebastianbergmann/exporter.git",
  10222. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  10227. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "php": ">=7.3",
  10232. "sebastian/recursion-context": "^4.0"
  10233. },
  10234. "require-dev": {
  10235. "ext-mbstring": "*",
  10236. "phpunit/phpunit": "^9.3"
  10237. },
  10238. "type": "library",
  10239. "extra": {
  10240. "branch-alias": {
  10241. "dev-master": "4.0-dev"
  10242. }
  10243. },
  10244. "autoload": {
  10245. "classmap": [
  10246. "src/"
  10247. ]
  10248. },
  10249. "notification-url": "https://packagist.org/downloads/",
  10250. "license": [
  10251. "BSD-3-Clause"
  10252. ],
  10253. "authors": [
  10254. {
  10255. "name": "Sebastian Bergmann",
  10256. "email": "sebastian@phpunit.de"
  10257. },
  10258. {
  10259. "name": "Jeff Welch",
  10260. "email": "whatthejeff@gmail.com"
  10261. },
  10262. {
  10263. "name": "Volker Dusch",
  10264. "email": "github@wallbash.com"
  10265. },
  10266. {
  10267. "name": "Adam Harvey",
  10268. "email": "aharvey@php.net"
  10269. },
  10270. {
  10271. "name": "Bernhard Schussek",
  10272. "email": "bschussek@gmail.com"
  10273. }
  10274. ],
  10275. "description": "Provides the functionality to export PHP variables for visualization",
  10276. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10277. "keywords": [
  10278. "export",
  10279. "exporter"
  10280. ],
  10281. "support": {
  10282. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10283. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10284. },
  10285. "funding": [
  10286. {
  10287. "url": "https://github.com/sebastianbergmann",
  10288. "type": "github"
  10289. }
  10290. ],
  10291. "time": "2024-03-02T06:33:00+00:00"
  10292. },
  10293. {
  10294. "name": "sebastian/global-state",
  10295. "version": "5.0.7",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/sebastianbergmann/global-state.git",
  10299. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10304. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "php": ">=7.3",
  10309. "sebastian/object-reflector": "^2.0",
  10310. "sebastian/recursion-context": "^4.0"
  10311. },
  10312. "require-dev": {
  10313. "ext-dom": "*",
  10314. "phpunit/phpunit": "^9.3"
  10315. },
  10316. "suggest": {
  10317. "ext-uopz": "*"
  10318. },
  10319. "type": "library",
  10320. "extra": {
  10321. "branch-alias": {
  10322. "dev-master": "5.0-dev"
  10323. }
  10324. },
  10325. "autoload": {
  10326. "classmap": [
  10327. "src/"
  10328. ]
  10329. },
  10330. "notification-url": "https://packagist.org/downloads/",
  10331. "license": [
  10332. "BSD-3-Clause"
  10333. ],
  10334. "authors": [
  10335. {
  10336. "name": "Sebastian Bergmann",
  10337. "email": "sebastian@phpunit.de"
  10338. }
  10339. ],
  10340. "description": "Snapshotting of global state",
  10341. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10342. "keywords": [
  10343. "global state"
  10344. ],
  10345. "support": {
  10346. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10347. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10348. },
  10349. "funding": [
  10350. {
  10351. "url": "https://github.com/sebastianbergmann",
  10352. "type": "github"
  10353. }
  10354. ],
  10355. "time": "2024-03-02T06:35:11+00:00"
  10356. },
  10357. {
  10358. "name": "sebastian/lines-of-code",
  10359. "version": "1.0.4",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10363. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10368. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "nikic/php-parser": "^4.18 || ^5.0",
  10373. "php": ">=7.3"
  10374. },
  10375. "require-dev": {
  10376. "phpunit/phpunit": "^9.3"
  10377. },
  10378. "type": "library",
  10379. "extra": {
  10380. "branch-alias": {
  10381. "dev-master": "1.0-dev"
  10382. }
  10383. },
  10384. "autoload": {
  10385. "classmap": [
  10386. "src/"
  10387. ]
  10388. },
  10389. "notification-url": "https://packagist.org/downloads/",
  10390. "license": [
  10391. "BSD-3-Clause"
  10392. ],
  10393. "authors": [
  10394. {
  10395. "name": "Sebastian Bergmann",
  10396. "email": "sebastian@phpunit.de",
  10397. "role": "lead"
  10398. }
  10399. ],
  10400. "description": "Library for counting the lines of code in PHP source code",
  10401. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10402. "support": {
  10403. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10404. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10405. },
  10406. "funding": [
  10407. {
  10408. "url": "https://github.com/sebastianbergmann",
  10409. "type": "github"
  10410. }
  10411. ],
  10412. "time": "2023-12-22T06:20:34+00:00"
  10413. },
  10414. {
  10415. "name": "sebastian/object-enumerator",
  10416. "version": "4.0.4",
  10417. "source": {
  10418. "type": "git",
  10419. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10420. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10421. },
  10422. "dist": {
  10423. "type": "zip",
  10424. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10425. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10426. "shasum": ""
  10427. },
  10428. "require": {
  10429. "php": ">=7.3",
  10430. "sebastian/object-reflector": "^2.0",
  10431. "sebastian/recursion-context": "^4.0"
  10432. },
  10433. "require-dev": {
  10434. "phpunit/phpunit": "^9.3"
  10435. },
  10436. "type": "library",
  10437. "extra": {
  10438. "branch-alias": {
  10439. "dev-master": "4.0-dev"
  10440. }
  10441. },
  10442. "autoload": {
  10443. "classmap": [
  10444. "src/"
  10445. ]
  10446. },
  10447. "notification-url": "https://packagist.org/downloads/",
  10448. "license": [
  10449. "BSD-3-Clause"
  10450. ],
  10451. "authors": [
  10452. {
  10453. "name": "Sebastian Bergmann",
  10454. "email": "sebastian@phpunit.de"
  10455. }
  10456. ],
  10457. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10458. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10459. "support": {
  10460. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10461. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10462. },
  10463. "funding": [
  10464. {
  10465. "url": "https://github.com/sebastianbergmann",
  10466. "type": "github"
  10467. }
  10468. ],
  10469. "time": "2020-10-26T13:12:34+00:00"
  10470. },
  10471. {
  10472. "name": "sebastian/object-reflector",
  10473. "version": "2.0.4",
  10474. "source": {
  10475. "type": "git",
  10476. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10477. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10478. },
  10479. "dist": {
  10480. "type": "zip",
  10481. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10482. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10483. "shasum": ""
  10484. },
  10485. "require": {
  10486. "php": ">=7.3"
  10487. },
  10488. "require-dev": {
  10489. "phpunit/phpunit": "^9.3"
  10490. },
  10491. "type": "library",
  10492. "extra": {
  10493. "branch-alias": {
  10494. "dev-master": "2.0-dev"
  10495. }
  10496. },
  10497. "autoload": {
  10498. "classmap": [
  10499. "src/"
  10500. ]
  10501. },
  10502. "notification-url": "https://packagist.org/downloads/",
  10503. "license": [
  10504. "BSD-3-Clause"
  10505. ],
  10506. "authors": [
  10507. {
  10508. "name": "Sebastian Bergmann",
  10509. "email": "sebastian@phpunit.de"
  10510. }
  10511. ],
  10512. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10513. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10514. "support": {
  10515. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10516. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10517. },
  10518. "funding": [
  10519. {
  10520. "url": "https://github.com/sebastianbergmann",
  10521. "type": "github"
  10522. }
  10523. ],
  10524. "time": "2020-10-26T13:14:26+00:00"
  10525. },
  10526. {
  10527. "name": "sebastian/recursion-context",
  10528. "version": "4.0.5",
  10529. "source": {
  10530. "type": "git",
  10531. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10532. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10533. },
  10534. "dist": {
  10535. "type": "zip",
  10536. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10537. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10538. "shasum": ""
  10539. },
  10540. "require": {
  10541. "php": ">=7.3"
  10542. },
  10543. "require-dev": {
  10544. "phpunit/phpunit": "^9.3"
  10545. },
  10546. "type": "library",
  10547. "extra": {
  10548. "branch-alias": {
  10549. "dev-master": "4.0-dev"
  10550. }
  10551. },
  10552. "autoload": {
  10553. "classmap": [
  10554. "src/"
  10555. ]
  10556. },
  10557. "notification-url": "https://packagist.org/downloads/",
  10558. "license": [
  10559. "BSD-3-Clause"
  10560. ],
  10561. "authors": [
  10562. {
  10563. "name": "Sebastian Bergmann",
  10564. "email": "sebastian@phpunit.de"
  10565. },
  10566. {
  10567. "name": "Jeff Welch",
  10568. "email": "whatthejeff@gmail.com"
  10569. },
  10570. {
  10571. "name": "Adam Harvey",
  10572. "email": "aharvey@php.net"
  10573. }
  10574. ],
  10575. "description": "Provides functionality to recursively process PHP variables",
  10576. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10577. "support": {
  10578. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10579. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10580. },
  10581. "funding": [
  10582. {
  10583. "url": "https://github.com/sebastianbergmann",
  10584. "type": "github"
  10585. }
  10586. ],
  10587. "time": "2023-02-03T06:07:39+00:00"
  10588. },
  10589. {
  10590. "name": "sebastian/resource-operations",
  10591. "version": "3.0.4",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10595. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10600. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": ">=7.3"
  10605. },
  10606. "require-dev": {
  10607. "phpunit/phpunit": "^9.0"
  10608. },
  10609. "type": "library",
  10610. "extra": {
  10611. "branch-alias": {
  10612. "dev-main": "3.0-dev"
  10613. }
  10614. },
  10615. "autoload": {
  10616. "classmap": [
  10617. "src/"
  10618. ]
  10619. },
  10620. "notification-url": "https://packagist.org/downloads/",
  10621. "license": [
  10622. "BSD-3-Clause"
  10623. ],
  10624. "authors": [
  10625. {
  10626. "name": "Sebastian Bergmann",
  10627. "email": "sebastian@phpunit.de"
  10628. }
  10629. ],
  10630. "description": "Provides a list of PHP built-in functions that operate on resources",
  10631. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10632. "support": {
  10633. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10634. },
  10635. "funding": [
  10636. {
  10637. "url": "https://github.com/sebastianbergmann",
  10638. "type": "github"
  10639. }
  10640. ],
  10641. "time": "2024-03-14T16:00:52+00:00"
  10642. },
  10643. {
  10644. "name": "sebastian/type",
  10645. "version": "3.2.1",
  10646. "source": {
  10647. "type": "git",
  10648. "url": "https://github.com/sebastianbergmann/type.git",
  10649. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10650. },
  10651. "dist": {
  10652. "type": "zip",
  10653. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10654. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10655. "shasum": ""
  10656. },
  10657. "require": {
  10658. "php": ">=7.3"
  10659. },
  10660. "require-dev": {
  10661. "phpunit/phpunit": "^9.5"
  10662. },
  10663. "type": "library",
  10664. "extra": {
  10665. "branch-alias": {
  10666. "dev-master": "3.2-dev"
  10667. }
  10668. },
  10669. "autoload": {
  10670. "classmap": [
  10671. "src/"
  10672. ]
  10673. },
  10674. "notification-url": "https://packagist.org/downloads/",
  10675. "license": [
  10676. "BSD-3-Clause"
  10677. ],
  10678. "authors": [
  10679. {
  10680. "name": "Sebastian Bergmann",
  10681. "email": "sebastian@phpunit.de",
  10682. "role": "lead"
  10683. }
  10684. ],
  10685. "description": "Collection of value objects that represent the types of the PHP type system",
  10686. "homepage": "https://github.com/sebastianbergmann/type",
  10687. "support": {
  10688. "issues": "https://github.com/sebastianbergmann/type/issues",
  10689. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10690. },
  10691. "funding": [
  10692. {
  10693. "url": "https://github.com/sebastianbergmann",
  10694. "type": "github"
  10695. }
  10696. ],
  10697. "time": "2023-02-03T06:13:03+00:00"
  10698. },
  10699. {
  10700. "name": "sebastian/version",
  10701. "version": "3.0.2",
  10702. "source": {
  10703. "type": "git",
  10704. "url": "https://github.com/sebastianbergmann/version.git",
  10705. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10706. },
  10707. "dist": {
  10708. "type": "zip",
  10709. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10710. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10711. "shasum": ""
  10712. },
  10713. "require": {
  10714. "php": ">=7.3"
  10715. },
  10716. "type": "library",
  10717. "extra": {
  10718. "branch-alias": {
  10719. "dev-master": "3.0-dev"
  10720. }
  10721. },
  10722. "autoload": {
  10723. "classmap": [
  10724. "src/"
  10725. ]
  10726. },
  10727. "notification-url": "https://packagist.org/downloads/",
  10728. "license": [
  10729. "BSD-3-Clause"
  10730. ],
  10731. "authors": [
  10732. {
  10733. "name": "Sebastian Bergmann",
  10734. "email": "sebastian@phpunit.de",
  10735. "role": "lead"
  10736. }
  10737. ],
  10738. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10739. "homepage": "https://github.com/sebastianbergmann/version",
  10740. "support": {
  10741. "issues": "https://github.com/sebastianbergmann/version/issues",
  10742. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10743. },
  10744. "funding": [
  10745. {
  10746. "url": "https://github.com/sebastianbergmann",
  10747. "type": "github"
  10748. }
  10749. ],
  10750. "time": "2020-09-28T06:39:44+00:00"
  10751. },
  10752. {
  10753. "name": "symfony/browser-kit",
  10754. "version": "v7.1.6",
  10755. "source": {
  10756. "type": "git",
  10757. "url": "https://github.com/symfony/browser-kit.git",
  10758. "reference": "714becc9ba9b20115ffededc58f6b7172dc394cf"
  10759. },
  10760. "dist": {
  10761. "type": "zip",
  10762. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/714becc9ba9b20115ffededc58f6b7172dc394cf",
  10763. "reference": "714becc9ba9b20115ffededc58f6b7172dc394cf",
  10764. "shasum": ""
  10765. },
  10766. "require": {
  10767. "php": ">=8.2",
  10768. "symfony/dom-crawler": "^6.4|^7.0"
  10769. },
  10770. "require-dev": {
  10771. "symfony/css-selector": "^6.4|^7.0",
  10772. "symfony/http-client": "^6.4|^7.0",
  10773. "symfony/mime": "^6.4|^7.0",
  10774. "symfony/process": "^6.4|^7.0"
  10775. },
  10776. "type": "library",
  10777. "autoload": {
  10778. "psr-4": {
  10779. "Symfony\\Component\\BrowserKit\\": ""
  10780. },
  10781. "exclude-from-classmap": [
  10782. "/Tests/"
  10783. ]
  10784. },
  10785. "notification-url": "https://packagist.org/downloads/",
  10786. "license": [
  10787. "MIT"
  10788. ],
  10789. "authors": [
  10790. {
  10791. "name": "Fabien Potencier",
  10792. "email": "fabien@symfony.com"
  10793. },
  10794. {
  10795. "name": "Symfony Community",
  10796. "homepage": "https://symfony.com/contributors"
  10797. }
  10798. ],
  10799. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10800. "homepage": "https://symfony.com",
  10801. "support": {
  10802. "source": "https://github.com/symfony/browser-kit/tree/v7.1.6"
  10803. },
  10804. "funding": [
  10805. {
  10806. "url": "https://symfony.com/sponsor",
  10807. "type": "custom"
  10808. },
  10809. {
  10810. "url": "https://github.com/fabpot",
  10811. "type": "github"
  10812. },
  10813. {
  10814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10815. "type": "tidelift"
  10816. }
  10817. ],
  10818. "time": "2024-10-25T15:11:02+00:00"
  10819. },
  10820. {
  10821. "name": "symfony/css-selector",
  10822. "version": "v7.1.6",
  10823. "source": {
  10824. "type": "git",
  10825. "url": "https://github.com/symfony/css-selector.git",
  10826. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  10827. },
  10828. "dist": {
  10829. "type": "zip",
  10830. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  10831. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  10832. "shasum": ""
  10833. },
  10834. "require": {
  10835. "php": ">=8.2"
  10836. },
  10837. "type": "library",
  10838. "autoload": {
  10839. "psr-4": {
  10840. "Symfony\\Component\\CssSelector\\": ""
  10841. },
  10842. "exclude-from-classmap": [
  10843. "/Tests/"
  10844. ]
  10845. },
  10846. "notification-url": "https://packagist.org/downloads/",
  10847. "license": [
  10848. "MIT"
  10849. ],
  10850. "authors": [
  10851. {
  10852. "name": "Fabien Potencier",
  10853. "email": "fabien@symfony.com"
  10854. },
  10855. {
  10856. "name": "Jean-François Simon",
  10857. "email": "jeanfrancois.simon@sensiolabs.com"
  10858. },
  10859. {
  10860. "name": "Symfony Community",
  10861. "homepage": "https://symfony.com/contributors"
  10862. }
  10863. ],
  10864. "description": "Converts CSS selectors to XPath expressions",
  10865. "homepage": "https://symfony.com",
  10866. "support": {
  10867. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  10868. },
  10869. "funding": [
  10870. {
  10871. "url": "https://symfony.com/sponsor",
  10872. "type": "custom"
  10873. },
  10874. {
  10875. "url": "https://github.com/fabpot",
  10876. "type": "github"
  10877. },
  10878. {
  10879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10880. "type": "tidelift"
  10881. }
  10882. ],
  10883. "time": "2024-09-25T14:20:29+00:00"
  10884. },
  10885. {
  10886. "name": "symfony/debug-bundle",
  10887. "version": "v7.1.6",
  10888. "source": {
  10889. "type": "git",
  10890. "url": "https://github.com/symfony/debug-bundle.git",
  10891. "reference": "c91a650aa390071d22dfaf32c2ff77fda27e9583"
  10892. },
  10893. "dist": {
  10894. "type": "zip",
  10895. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/c91a650aa390071d22dfaf32c2ff77fda27e9583",
  10896. "reference": "c91a650aa390071d22dfaf32c2ff77fda27e9583",
  10897. "shasum": ""
  10898. },
  10899. "require": {
  10900. "ext-xml": "*",
  10901. "php": ">=8.2",
  10902. "symfony/dependency-injection": "^6.4|^7.0",
  10903. "symfony/http-kernel": "^6.4|^7.0",
  10904. "symfony/twig-bridge": "^6.4|^7.0",
  10905. "symfony/var-dumper": "^6.4|^7.0"
  10906. },
  10907. "conflict": {
  10908. "symfony/config": "<6.4",
  10909. "symfony/dependency-injection": "<6.4"
  10910. },
  10911. "require-dev": {
  10912. "symfony/config": "^6.4|^7.0",
  10913. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10914. },
  10915. "type": "symfony-bundle",
  10916. "autoload": {
  10917. "psr-4": {
  10918. "Symfony\\Bundle\\DebugBundle\\": ""
  10919. },
  10920. "exclude-from-classmap": [
  10921. "/Tests/"
  10922. ]
  10923. },
  10924. "notification-url": "https://packagist.org/downloads/",
  10925. "license": [
  10926. "MIT"
  10927. ],
  10928. "authors": [
  10929. {
  10930. "name": "Fabien Potencier",
  10931. "email": "fabien@symfony.com"
  10932. },
  10933. {
  10934. "name": "Symfony Community",
  10935. "homepage": "https://symfony.com/contributors"
  10936. }
  10937. ],
  10938. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10939. "homepage": "https://symfony.com",
  10940. "support": {
  10941. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.6"
  10942. },
  10943. "funding": [
  10944. {
  10945. "url": "https://symfony.com/sponsor",
  10946. "type": "custom"
  10947. },
  10948. {
  10949. "url": "https://github.com/fabpot",
  10950. "type": "github"
  10951. },
  10952. {
  10953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10954. "type": "tidelift"
  10955. }
  10956. ],
  10957. "time": "2024-09-25T14:20:29+00:00"
  10958. },
  10959. {
  10960. "name": "symfony/dom-crawler",
  10961. "version": "v7.1.6",
  10962. "source": {
  10963. "type": "git",
  10964. "url": "https://github.com/symfony/dom-crawler.git",
  10965. "reference": "794ddd5481ba15d8a04132c95e211cd5656e09fb"
  10966. },
  10967. "dist": {
  10968. "type": "zip",
  10969. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/794ddd5481ba15d8a04132c95e211cd5656e09fb",
  10970. "reference": "794ddd5481ba15d8a04132c95e211cd5656e09fb",
  10971. "shasum": ""
  10972. },
  10973. "require": {
  10974. "masterminds/html5": "^2.6",
  10975. "php": ">=8.2",
  10976. "symfony/polyfill-ctype": "~1.8",
  10977. "symfony/polyfill-mbstring": "~1.0"
  10978. },
  10979. "require-dev": {
  10980. "symfony/css-selector": "^6.4|^7.0"
  10981. },
  10982. "type": "library",
  10983. "autoload": {
  10984. "psr-4": {
  10985. "Symfony\\Component\\DomCrawler\\": ""
  10986. },
  10987. "exclude-from-classmap": [
  10988. "/Tests/"
  10989. ]
  10990. },
  10991. "notification-url": "https://packagist.org/downloads/",
  10992. "license": [
  10993. "MIT"
  10994. ],
  10995. "authors": [
  10996. {
  10997. "name": "Fabien Potencier",
  10998. "email": "fabien@symfony.com"
  10999. },
  11000. {
  11001. "name": "Symfony Community",
  11002. "homepage": "https://symfony.com/contributors"
  11003. }
  11004. ],
  11005. "description": "Eases DOM navigation for HTML and XML documents",
  11006. "homepage": "https://symfony.com",
  11007. "support": {
  11008. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.6"
  11009. },
  11010. "funding": [
  11011. {
  11012. "url": "https://symfony.com/sponsor",
  11013. "type": "custom"
  11014. },
  11015. {
  11016. "url": "https://github.com/fabpot",
  11017. "type": "github"
  11018. },
  11019. {
  11020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11021. "type": "tidelift"
  11022. }
  11023. ],
  11024. "time": "2024-10-25T15:11:02+00:00"
  11025. },
  11026. {
  11027. "name": "symfony/maker-bundle",
  11028. "version": "v1.61.0",
  11029. "source": {
  11030. "type": "git",
  11031. "url": "https://github.com/symfony/maker-bundle.git",
  11032. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  11033. },
  11034. "dist": {
  11035. "type": "zip",
  11036. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  11037. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  11038. "shasum": ""
  11039. },
  11040. "require": {
  11041. "doctrine/inflector": "^2.0",
  11042. "nikic/php-parser": "^4.18|^5.0",
  11043. "php": ">=8.1",
  11044. "symfony/config": "^6.4|^7.0",
  11045. "symfony/console": "^6.4|^7.0",
  11046. "symfony/dependency-injection": "^6.4|^7.0",
  11047. "symfony/deprecation-contracts": "^2.2|^3",
  11048. "symfony/filesystem": "^6.4|^7.0",
  11049. "symfony/finder": "^6.4|^7.0",
  11050. "symfony/framework-bundle": "^6.4|^7.0",
  11051. "symfony/http-kernel": "^6.4|^7.0",
  11052. "symfony/process": "^6.4|^7.0"
  11053. },
  11054. "conflict": {
  11055. "doctrine/doctrine-bundle": "<2.10",
  11056. "doctrine/orm": "<2.15"
  11057. },
  11058. "require-dev": {
  11059. "composer/semver": "^3.0",
  11060. "doctrine/doctrine-bundle": "^2.5.0",
  11061. "doctrine/orm": "^2.15|^3",
  11062. "symfony/http-client": "^6.4|^7.0",
  11063. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  11064. "symfony/security-core": "^6.4|^7.0",
  11065. "symfony/yaml": "^6.4|^7.0",
  11066. "twig/twig": "^3.0|^4.x-dev"
  11067. },
  11068. "type": "symfony-bundle",
  11069. "extra": {
  11070. "branch-alias": {
  11071. "dev-main": "1.x-dev"
  11072. }
  11073. },
  11074. "autoload": {
  11075. "psr-4": {
  11076. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11077. }
  11078. },
  11079. "notification-url": "https://packagist.org/downloads/",
  11080. "license": [
  11081. "MIT"
  11082. ],
  11083. "authors": [
  11084. {
  11085. "name": "Symfony Community",
  11086. "homepage": "https://symfony.com/contributors"
  11087. }
  11088. ],
  11089. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11090. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11091. "keywords": [
  11092. "code generator",
  11093. "dev",
  11094. "generator",
  11095. "scaffold",
  11096. "scaffolding"
  11097. ],
  11098. "support": {
  11099. "issues": "https://github.com/symfony/maker-bundle/issues",
  11100. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  11101. },
  11102. "funding": [
  11103. {
  11104. "url": "https://symfony.com/sponsor",
  11105. "type": "custom"
  11106. },
  11107. {
  11108. "url": "https://github.com/fabpot",
  11109. "type": "github"
  11110. },
  11111. {
  11112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11113. "type": "tidelift"
  11114. }
  11115. ],
  11116. "time": "2024-08-29T22:50:23+00:00"
  11117. },
  11118. {
  11119. "name": "symfony/phpunit-bridge",
  11120. "version": "v7.1.6",
  11121. "source": {
  11122. "type": "git",
  11123. "url": "https://github.com/symfony/phpunit-bridge.git",
  11124. "reference": "c6b9d8f52d3e276bedb49612aa4a2a046171287f"
  11125. },
  11126. "dist": {
  11127. "type": "zip",
  11128. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/c6b9d8f52d3e276bedb49612aa4a2a046171287f",
  11129. "reference": "c6b9d8f52d3e276bedb49612aa4a2a046171287f",
  11130. "shasum": ""
  11131. },
  11132. "require": {
  11133. "php": ">=7.2.5"
  11134. },
  11135. "conflict": {
  11136. "phpunit/phpunit": "<7.5|9.1.2"
  11137. },
  11138. "require-dev": {
  11139. "symfony/deprecation-contracts": "^2.5|^3.0",
  11140. "symfony/error-handler": "^5.4|^6.4|^7.0",
  11141. "symfony/polyfill-php81": "^1.27"
  11142. },
  11143. "bin": [
  11144. "bin/simple-phpunit"
  11145. ],
  11146. "type": "symfony-bridge",
  11147. "extra": {
  11148. "thanks": {
  11149. "name": "phpunit/phpunit",
  11150. "url": "https://github.com/sebastianbergmann/phpunit"
  11151. }
  11152. },
  11153. "autoload": {
  11154. "files": [
  11155. "bootstrap.php"
  11156. ],
  11157. "psr-4": {
  11158. "Symfony\\Bridge\\PhpUnit\\": ""
  11159. },
  11160. "exclude-from-classmap": [
  11161. "/Tests/",
  11162. "/bin/"
  11163. ]
  11164. },
  11165. "notification-url": "https://packagist.org/downloads/",
  11166. "license": [
  11167. "MIT"
  11168. ],
  11169. "authors": [
  11170. {
  11171. "name": "Nicolas Grekas",
  11172. "email": "p@tchwork.com"
  11173. },
  11174. {
  11175. "name": "Symfony Community",
  11176. "homepage": "https://symfony.com/contributors"
  11177. }
  11178. ],
  11179. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  11180. "homepage": "https://symfony.com",
  11181. "support": {
  11182. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.6"
  11183. },
  11184. "funding": [
  11185. {
  11186. "url": "https://symfony.com/sponsor",
  11187. "type": "custom"
  11188. },
  11189. {
  11190. "url": "https://github.com/fabpot",
  11191. "type": "github"
  11192. },
  11193. {
  11194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11195. "type": "tidelift"
  11196. }
  11197. ],
  11198. "time": "2024-09-25T14:20:29+00:00"
  11199. },
  11200. {
  11201. "name": "symfony/web-profiler-bundle",
  11202. "version": "v7.1.7",
  11203. "source": {
  11204. "type": "git",
  11205. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11206. "reference": "13d97a9acb23663550495fa2480e8cc95033ad61"
  11207. },
  11208. "dist": {
  11209. "type": "zip",
  11210. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/13d97a9acb23663550495fa2480e8cc95033ad61",
  11211. "reference": "13d97a9acb23663550495fa2480e8cc95033ad61",
  11212. "shasum": ""
  11213. },
  11214. "require": {
  11215. "php": ">=8.2",
  11216. "symfony/config": "^6.4|^7.0",
  11217. "symfony/framework-bundle": "^6.4|^7.0",
  11218. "symfony/http-kernel": "^6.4|^7.0",
  11219. "symfony/routing": "^6.4|^7.0",
  11220. "symfony/twig-bundle": "^6.4|^7.0",
  11221. "twig/twig": "^3.10"
  11222. },
  11223. "conflict": {
  11224. "symfony/form": "<6.4",
  11225. "symfony/mailer": "<6.4",
  11226. "symfony/messenger": "<6.4"
  11227. },
  11228. "require-dev": {
  11229. "symfony/browser-kit": "^6.4|^7.0",
  11230. "symfony/console": "^6.4|^7.0",
  11231. "symfony/css-selector": "^6.4|^7.0",
  11232. "symfony/stopwatch": "^6.4|^7.0"
  11233. },
  11234. "type": "symfony-bundle",
  11235. "autoload": {
  11236. "psr-4": {
  11237. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11238. },
  11239. "exclude-from-classmap": [
  11240. "/Tests/"
  11241. ]
  11242. },
  11243. "notification-url": "https://packagist.org/downloads/",
  11244. "license": [
  11245. "MIT"
  11246. ],
  11247. "authors": [
  11248. {
  11249. "name": "Fabien Potencier",
  11250. "email": "fabien@symfony.com"
  11251. },
  11252. {
  11253. "name": "Symfony Community",
  11254. "homepage": "https://symfony.com/contributors"
  11255. }
  11256. ],
  11257. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11258. "homepage": "https://symfony.com",
  11259. "keywords": [
  11260. "dev"
  11261. ],
  11262. "support": {
  11263. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.7"
  11264. },
  11265. "funding": [
  11266. {
  11267. "url": "https://symfony.com/sponsor",
  11268. "type": "custom"
  11269. },
  11270. {
  11271. "url": "https://github.com/fabpot",
  11272. "type": "github"
  11273. },
  11274. {
  11275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11276. "type": "tidelift"
  11277. }
  11278. ],
  11279. "time": "2024-11-05T07:52:02+00:00"
  11280. },
  11281. {
  11282. "name": "theseer/tokenizer",
  11283. "version": "1.2.3",
  11284. "source": {
  11285. "type": "git",
  11286. "url": "https://github.com/theseer/tokenizer.git",
  11287. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11288. },
  11289. "dist": {
  11290. "type": "zip",
  11291. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11292. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11293. "shasum": ""
  11294. },
  11295. "require": {
  11296. "ext-dom": "*",
  11297. "ext-tokenizer": "*",
  11298. "ext-xmlwriter": "*",
  11299. "php": "^7.2 || ^8.0"
  11300. },
  11301. "type": "library",
  11302. "autoload": {
  11303. "classmap": [
  11304. "src/"
  11305. ]
  11306. },
  11307. "notification-url": "https://packagist.org/downloads/",
  11308. "license": [
  11309. "BSD-3-Clause"
  11310. ],
  11311. "authors": [
  11312. {
  11313. "name": "Arne Blankerts",
  11314. "email": "arne@blankerts.de",
  11315. "role": "Developer"
  11316. }
  11317. ],
  11318. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11319. "support": {
  11320. "issues": "https://github.com/theseer/tokenizer/issues",
  11321. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11322. },
  11323. "funding": [
  11324. {
  11325. "url": "https://github.com/theseer",
  11326. "type": "github"
  11327. }
  11328. ],
  11329. "time": "2024-03-03T12:36:25+00:00"
  11330. }
  11331. ],
  11332. "aliases": [],
  11333. "minimum-stability": "stable",
  11334. "stability-flags": {},
  11335. "prefer-stable": true,
  11336. "prefer-lowest": false,
  11337. "platform": {
  11338. "php": ">=8.2",
  11339. "ext-ctype": "*",
  11340. "ext-iconv": "*"
  11341. },
  11342. "platform-dev": {},
  11343. "plugin-api-version": "2.6.0"
  11344. }