composer.lock 399 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077
  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": "166dcd3fd87f8aa3058db20811e93bc4",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.5.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/48a792895a2b7a6ee65dd5442c299d7b835b6137",
  20. "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137",
  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.2"
  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-09-25T07:49:53+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.3.3",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/doctrine/persistence.git",
  1321. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1326. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  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.11.1",
  1341. "phpstan/phpstan-phpunit": "^1",
  1342. "phpstan/phpstan-strict-rules": "^1.1",
  1343. "phpunit/phpunit": "^8.5 || ^9.5",
  1344. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1345. "vimeo/psalm": "4.30.0 || 5.24.0"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\Persistence\\": "src/Persistence"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Guilherme Blanco",
  1360. "email": "guilhermeblanco@gmail.com"
  1361. },
  1362. {
  1363. "name": "Roman Borschel",
  1364. "email": "roman@code-factory.org"
  1365. },
  1366. {
  1367. "name": "Benjamin Eberlei",
  1368. "email": "kontakt@beberlei.de"
  1369. },
  1370. {
  1371. "name": "Jonathan Wage",
  1372. "email": "jonwage@gmail.com"
  1373. },
  1374. {
  1375. "name": "Johannes Schmitt",
  1376. "email": "schmittjoh@gmail.com"
  1377. },
  1378. {
  1379. "name": "Marco Pivetta",
  1380. "email": "ocramius@gmail.com"
  1381. }
  1382. ],
  1383. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1384. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1385. "keywords": [
  1386. "mapper",
  1387. "object",
  1388. "odm",
  1389. "orm",
  1390. "persistence"
  1391. ],
  1392. "support": {
  1393. "issues": "https://github.com/doctrine/persistence/issues",
  1394. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1395. },
  1396. "funding": [
  1397. {
  1398. "url": "https://www.doctrine-project.org/sponsorship.html",
  1399. "type": "custom"
  1400. },
  1401. {
  1402. "url": "https://www.patreon.com/phpdoctrine",
  1403. "type": "patreon"
  1404. },
  1405. {
  1406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1407. "type": "tidelift"
  1408. }
  1409. ],
  1410. "time": "2024-06-20T10:14:30+00:00"
  1411. },
  1412. {
  1413. "name": "doctrine/sql-formatter",
  1414. "version": "1.5.1",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/doctrine/sql-formatter.git",
  1418. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1423. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": "^8.1"
  1428. },
  1429. "require-dev": {
  1430. "doctrine/coding-standard": "^12",
  1431. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1432. "phpstan/phpstan": "^1.10",
  1433. "phpunit/phpunit": "^10.5",
  1434. "vimeo/psalm": "^5.24"
  1435. },
  1436. "bin": [
  1437. "bin/sql-formatter"
  1438. ],
  1439. "type": "library",
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\SqlFormatter\\": "src"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Jeremy Dorn",
  1452. "email": "jeremy@jeremydorn.com",
  1453. "homepage": "https://jeremydorn.com/"
  1454. }
  1455. ],
  1456. "description": "a PHP SQL highlighting library",
  1457. "homepage": "https://github.com/doctrine/sql-formatter/",
  1458. "keywords": [
  1459. "highlight",
  1460. "sql"
  1461. ],
  1462. "support": {
  1463. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1464. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1465. },
  1466. "time": "2024-10-21T18:21:57+00:00"
  1467. },
  1468. {
  1469. "name": "egulias/email-validator",
  1470. "version": "4.0.2",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/egulias/EmailValidator.git",
  1474. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1479. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "doctrine/lexer": "^2.0 || ^3.0",
  1484. "php": ">=8.1",
  1485. "symfony/polyfill-intl-idn": "^1.26"
  1486. },
  1487. "require-dev": {
  1488. "phpunit/phpunit": "^10.2",
  1489. "vimeo/psalm": "^5.12"
  1490. },
  1491. "suggest": {
  1492. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1493. },
  1494. "type": "library",
  1495. "extra": {
  1496. "branch-alias": {
  1497. "dev-master": "4.0.x-dev"
  1498. }
  1499. },
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Egulias\\EmailValidator\\": "src"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Eduardo Gulias Davis"
  1512. }
  1513. ],
  1514. "description": "A library for validating emails against several RFCs",
  1515. "homepage": "https://github.com/egulias/EmailValidator",
  1516. "keywords": [
  1517. "email",
  1518. "emailvalidation",
  1519. "emailvalidator",
  1520. "validation",
  1521. "validator"
  1522. ],
  1523. "support": {
  1524. "issues": "https://github.com/egulias/EmailValidator/issues",
  1525. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1526. },
  1527. "funding": [
  1528. {
  1529. "url": "https://github.com/egulias",
  1530. "type": "github"
  1531. }
  1532. ],
  1533. "time": "2023-10-06T06:47:41+00:00"
  1534. },
  1535. {
  1536. "name": "embed/embed",
  1537. "version": "v4.4.12",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/oscarotero/Embed.git",
  1541. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1546. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1547. "shasum": ""
  1548. },
  1549. "require": {
  1550. "composer/ca-bundle": "^1.0",
  1551. "ext-curl": "*",
  1552. "ext-dom": "*",
  1553. "ext-json": "*",
  1554. "ext-mbstring": "*",
  1555. "ml/json-ld": "^1.1",
  1556. "oscarotero/html-parser": "^0.1.4",
  1557. "php": "^7.4|^8",
  1558. "psr/http-client": "^1.0",
  1559. "psr/http-factory": "^1.0",
  1560. "psr/http-message": "^1.0|^2.0"
  1561. },
  1562. "require-dev": {
  1563. "brick/varexporter": "^0.3.1",
  1564. "friendsofphp/php-cs-fixer": "^2.0",
  1565. "nyholm/psr7": "^1.2",
  1566. "oscarotero/php-cs-fixer-config": "^1.0",
  1567. "phpunit/phpunit": "^9.0",
  1568. "symfony/css-selector": "^5.0"
  1569. },
  1570. "suggest": {
  1571. "symfony/css-selector": "If you want to get elements using css selectors"
  1572. },
  1573. "type": "library",
  1574. "autoload": {
  1575. "files": [
  1576. "src/functions.php"
  1577. ],
  1578. "psr-4": {
  1579. "Embed\\": "src"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Oscar Otero",
  1589. "email": "oom@oscarotero.com",
  1590. "homepage": "http://oscarotero.com",
  1591. "role": "Developer"
  1592. }
  1593. ],
  1594. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1595. "homepage": "https://github.com/oscarotero/Embed",
  1596. "keywords": [
  1597. "embed",
  1598. "embedly",
  1599. "oembed",
  1600. "opengraph",
  1601. "twitter cards"
  1602. ],
  1603. "support": {
  1604. "email": "oom@oscarotero.com",
  1605. "issues": "https://github.com/oscarotero/Embed/issues",
  1606. "source": "https://github.com/oscarotero/Embed/tree/v4.4.12"
  1607. },
  1608. "funding": [
  1609. {
  1610. "url": "https://paypal.me/oscarotero",
  1611. "type": "custom"
  1612. },
  1613. {
  1614. "url": "https://github.com/oscarotero",
  1615. "type": "github"
  1616. },
  1617. {
  1618. "url": "https://www.patreon.com/misteroom",
  1619. "type": "patreon"
  1620. }
  1621. ],
  1622. "time": "2024-07-24T14:08:11+00:00"
  1623. },
  1624. {
  1625. "name": "laminas/laminas-diactoros",
  1626. "version": "3.5.0",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/laminas/laminas-diactoros.git",
  1630. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  1635. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  1640. "psr/http-factory": "^1.1",
  1641. "psr/http-message": "^1.1 || ^2.0"
  1642. },
  1643. "conflict": {
  1644. "amphp/amp": "<2.6.4"
  1645. },
  1646. "provide": {
  1647. "psr/http-factory-implementation": "^1.0",
  1648. "psr/http-message-implementation": "^1.1 || ^2.0"
  1649. },
  1650. "require-dev": {
  1651. "ext-curl": "*",
  1652. "ext-dom": "*",
  1653. "ext-gd": "*",
  1654. "ext-libxml": "*",
  1655. "http-interop/http-factory-tests": "^2.2.0",
  1656. "laminas/laminas-coding-standard": "~2.5.0",
  1657. "php-http/psr7-integration-tests": "^1.4.0",
  1658. "phpunit/phpunit": "^10.5.36",
  1659. "psalm/plugin-phpunit": "^0.19.0",
  1660. "vimeo/psalm": "^5.26.1"
  1661. },
  1662. "type": "library",
  1663. "extra": {
  1664. "laminas": {
  1665. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  1666. "module": "Laminas\\Diactoros"
  1667. }
  1668. },
  1669. "autoload": {
  1670. "files": [
  1671. "src/functions/create_uploaded_file.php",
  1672. "src/functions/marshal_headers_from_sapi.php",
  1673. "src/functions/marshal_method_from_sapi.php",
  1674. "src/functions/marshal_protocol_version_from_sapi.php",
  1675. "src/functions/normalize_server.php",
  1676. "src/functions/normalize_uploaded_files.php",
  1677. "src/functions/parse_cookie_header.php"
  1678. ],
  1679. "psr-4": {
  1680. "Laminas\\Diactoros\\": "src/"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "BSD-3-Clause"
  1686. ],
  1687. "description": "PSR HTTP Message implementations",
  1688. "homepage": "https://laminas.dev",
  1689. "keywords": [
  1690. "http",
  1691. "laminas",
  1692. "psr",
  1693. "psr-17",
  1694. "psr-7"
  1695. ],
  1696. "support": {
  1697. "chat": "https://laminas.dev/chat",
  1698. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  1699. "forum": "https://discourse.laminas.dev",
  1700. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  1701. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  1702. "source": "https://github.com/laminas/laminas-diactoros"
  1703. },
  1704. "funding": [
  1705. {
  1706. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1707. "type": "community_bridge"
  1708. }
  1709. ],
  1710. "time": "2024-10-14T11:59:49+00:00"
  1711. },
  1712. {
  1713. "name": "league/commonmark",
  1714. "version": "2.5.3",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/thephpleague/commonmark.git",
  1718. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1723. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "ext-mbstring": "*",
  1728. "league/config": "^1.1.1",
  1729. "php": "^7.4 || ^8.0",
  1730. "psr/event-dispatcher": "^1.0",
  1731. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1732. "symfony/polyfill-php80": "^1.16"
  1733. },
  1734. "require-dev": {
  1735. "cebe/markdown": "^1.0",
  1736. "commonmark/cmark": "0.31.1",
  1737. "commonmark/commonmark.js": "0.31.1",
  1738. "composer/package-versions-deprecated": "^1.8",
  1739. "embed/embed": "^4.4",
  1740. "erusev/parsedown": "^1.0",
  1741. "ext-json": "*",
  1742. "github/gfm": "0.29.0",
  1743. "michelf/php-markdown": "^1.4 || ^2.0",
  1744. "nyholm/psr7": "^1.5",
  1745. "phpstan/phpstan": "^1.8.2",
  1746. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1747. "scrutinizer/ocular": "^1.8.1",
  1748. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1749. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1750. "unleashedtech/php-coding-standard": "^3.1.1",
  1751. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1752. },
  1753. "suggest": {
  1754. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-main": "2.6-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "League\\CommonMark\\": "src"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "BSD-3-Clause"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Colin O'Dell",
  1774. "email": "colinodell@gmail.com",
  1775. "homepage": "https://www.colinodell.com",
  1776. "role": "Lead Developer"
  1777. }
  1778. ],
  1779. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1780. "homepage": "https://commonmark.thephpleague.com",
  1781. "keywords": [
  1782. "commonmark",
  1783. "flavored",
  1784. "gfm",
  1785. "github",
  1786. "github-flavored",
  1787. "markdown",
  1788. "md",
  1789. "parser"
  1790. ],
  1791. "support": {
  1792. "docs": "https://commonmark.thephpleague.com/",
  1793. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1794. "issues": "https://github.com/thephpleague/commonmark/issues",
  1795. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1796. "source": "https://github.com/thephpleague/commonmark"
  1797. },
  1798. "funding": [
  1799. {
  1800. "url": "https://www.colinodell.com/sponsor",
  1801. "type": "custom"
  1802. },
  1803. {
  1804. "url": "https://www.paypal.me/colinpodell/10.00",
  1805. "type": "custom"
  1806. },
  1807. {
  1808. "url": "https://github.com/colinodell",
  1809. "type": "github"
  1810. },
  1811. {
  1812. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1813. "type": "tidelift"
  1814. }
  1815. ],
  1816. "time": "2024-08-16T11:46:16+00:00"
  1817. },
  1818. {
  1819. "name": "league/config",
  1820. "version": "v1.2.0",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/thephpleague/config.git",
  1824. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1829. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "dflydev/dot-access-data": "^3.0.1",
  1834. "nette/schema": "^1.2",
  1835. "php": "^7.4 || ^8.0"
  1836. },
  1837. "require-dev": {
  1838. "phpstan/phpstan": "^1.8.2",
  1839. "phpunit/phpunit": "^9.5.5",
  1840. "scrutinizer/ocular": "^1.8.1",
  1841. "unleashedtech/php-coding-standard": "^3.1",
  1842. "vimeo/psalm": "^4.7.3"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-main": "1.2-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "League\\Config\\": "src"
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "BSD-3-Clause"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Colin O'Dell",
  1862. "email": "colinodell@gmail.com",
  1863. "homepage": "https://www.colinodell.com",
  1864. "role": "Lead Developer"
  1865. }
  1866. ],
  1867. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1868. "homepage": "https://config.thephpleague.com",
  1869. "keywords": [
  1870. "array",
  1871. "config",
  1872. "configuration",
  1873. "dot",
  1874. "dot-access",
  1875. "nested",
  1876. "schema"
  1877. ],
  1878. "support": {
  1879. "docs": "https://config.thephpleague.com/",
  1880. "issues": "https://github.com/thephpleague/config/issues",
  1881. "rss": "https://github.com/thephpleague/config/releases.atom",
  1882. "source": "https://github.com/thephpleague/config"
  1883. },
  1884. "funding": [
  1885. {
  1886. "url": "https://www.colinodell.com/sponsor",
  1887. "type": "custom"
  1888. },
  1889. {
  1890. "url": "https://www.paypal.me/colinpodell/10.00",
  1891. "type": "custom"
  1892. },
  1893. {
  1894. "url": "https://github.com/colinodell",
  1895. "type": "github"
  1896. }
  1897. ],
  1898. "time": "2022-12-11T20:36:23+00:00"
  1899. },
  1900. {
  1901. "name": "ml/iri",
  1902. "version": "1.1.4",
  1903. "target-dir": "ML/IRI",
  1904. "source": {
  1905. "type": "git",
  1906. "url": "https://github.com/lanthaler/IRI.git",
  1907. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  1908. },
  1909. "dist": {
  1910. "type": "zip",
  1911. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  1912. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  1913. "shasum": ""
  1914. },
  1915. "require": {
  1916. "lib-pcre": ">=4.0",
  1917. "php": ">=5.3.0"
  1918. },
  1919. "type": "library",
  1920. "autoload": {
  1921. "psr-0": {
  1922. "ML\\IRI": ""
  1923. }
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "MIT"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Markus Lanthaler",
  1932. "email": "mail@markus-lanthaler.com",
  1933. "homepage": "http://www.markus-lanthaler.com",
  1934. "role": "Developer"
  1935. }
  1936. ],
  1937. "description": "IRI handling for PHP",
  1938. "homepage": "http://www.markus-lanthaler.com",
  1939. "keywords": [
  1940. "URN",
  1941. "iri",
  1942. "uri",
  1943. "url"
  1944. ],
  1945. "support": {
  1946. "issues": "https://github.com/lanthaler/IRI/issues",
  1947. "source": "https://github.com/lanthaler/IRI/tree/master"
  1948. },
  1949. "time": "2014-01-21T13:43:39+00:00"
  1950. },
  1951. {
  1952. "name": "ml/json-ld",
  1953. "version": "1.2.1",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://github.com/lanthaler/JsonLD.git",
  1957. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  1958. },
  1959. "dist": {
  1960. "type": "zip",
  1961. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  1962. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  1963. "shasum": ""
  1964. },
  1965. "require": {
  1966. "ext-json": "*",
  1967. "ml/iri": "^1.1.1",
  1968. "php": ">=5.3.0"
  1969. },
  1970. "require-dev": {
  1971. "json-ld/tests": "1.0",
  1972. "phpunit/phpunit": "^4"
  1973. },
  1974. "type": "library",
  1975. "autoload": {
  1976. "psr-4": {
  1977. "ML\\JsonLD\\": ""
  1978. }
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "authors": [
  1985. {
  1986. "name": "Markus Lanthaler",
  1987. "email": "mail@markus-lanthaler.com",
  1988. "homepage": "http://www.markus-lanthaler.com",
  1989. "role": "Developer"
  1990. }
  1991. ],
  1992. "description": "JSON-LD Processor for PHP",
  1993. "homepage": "http://www.markus-lanthaler.com",
  1994. "keywords": [
  1995. "JSON-LD",
  1996. "jsonld"
  1997. ],
  1998. "support": {
  1999. "issues": "https://github.com/lanthaler/JsonLD/issues",
  2000. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  2001. },
  2002. "time": "2022-09-29T08:45:17+00:00"
  2003. },
  2004. {
  2005. "name": "monolog/monolog",
  2006. "version": "3.7.0",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://github.com/Seldaek/monolog.git",
  2010. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2015. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2016. "shasum": ""
  2017. },
  2018. "require": {
  2019. "php": ">=8.1",
  2020. "psr/log": "^2.0 || ^3.0"
  2021. },
  2022. "provide": {
  2023. "psr/log-implementation": "3.0.0"
  2024. },
  2025. "require-dev": {
  2026. "aws/aws-sdk-php": "^3.0",
  2027. "doctrine/couchdb": "~1.0@dev",
  2028. "elasticsearch/elasticsearch": "^7 || ^8",
  2029. "ext-json": "*",
  2030. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2031. "guzzlehttp/guzzle": "^7.4.5",
  2032. "guzzlehttp/psr7": "^2.2",
  2033. "mongodb/mongodb": "^1.8",
  2034. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2035. "phpstan/phpstan": "^1.9",
  2036. "phpstan/phpstan-deprecation-rules": "^1.0",
  2037. "phpstan/phpstan-strict-rules": "^1.4",
  2038. "phpunit/phpunit": "^10.5.17",
  2039. "predis/predis": "^1.1 || ^2",
  2040. "ruflin/elastica": "^7",
  2041. "symfony/mailer": "^5.4 || ^6",
  2042. "symfony/mime": "^5.4 || ^6"
  2043. },
  2044. "suggest": {
  2045. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2046. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2047. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2048. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2049. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2050. "ext-mbstring": "Allow to work properly with unicode symbols",
  2051. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2052. "ext-openssl": "Required to send log messages using SSL",
  2053. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2054. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2055. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2056. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2057. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2058. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2059. },
  2060. "type": "library",
  2061. "extra": {
  2062. "branch-alias": {
  2063. "dev-main": "3.x-dev"
  2064. }
  2065. },
  2066. "autoload": {
  2067. "psr-4": {
  2068. "Monolog\\": "src/Monolog"
  2069. }
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Jordi Boggiano",
  2078. "email": "j.boggiano@seld.be",
  2079. "homepage": "https://seld.be"
  2080. }
  2081. ],
  2082. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2083. "homepage": "https://github.com/Seldaek/monolog",
  2084. "keywords": [
  2085. "log",
  2086. "logging",
  2087. "psr-3"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/Seldaek/monolog/issues",
  2091. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2092. },
  2093. "funding": [
  2094. {
  2095. "url": "https://github.com/Seldaek",
  2096. "type": "github"
  2097. },
  2098. {
  2099. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2100. "type": "tidelift"
  2101. }
  2102. ],
  2103. "time": "2024-06-28T09:40:51+00:00"
  2104. },
  2105. {
  2106. "name": "nette/schema",
  2107. "version": "v1.3.2",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/nette/schema.git",
  2111. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2116. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2117. "shasum": ""
  2118. },
  2119. "require": {
  2120. "nette/utils": "^4.0",
  2121. "php": "8.1 - 8.4"
  2122. },
  2123. "require-dev": {
  2124. "nette/tester": "^2.5.2",
  2125. "phpstan/phpstan-nette": "^1.0",
  2126. "tracy/tracy": "^2.8"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "1.3-dev"
  2132. }
  2133. },
  2134. "autoload": {
  2135. "classmap": [
  2136. "src/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "BSD-3-Clause",
  2142. "GPL-2.0-only",
  2143. "GPL-3.0-only"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "David Grudl",
  2148. "homepage": "https://davidgrudl.com"
  2149. },
  2150. {
  2151. "name": "Nette Community",
  2152. "homepage": "https://nette.org/contributors"
  2153. }
  2154. ],
  2155. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2156. "homepage": "https://nette.org",
  2157. "keywords": [
  2158. "config",
  2159. "nette"
  2160. ],
  2161. "support": {
  2162. "issues": "https://github.com/nette/schema/issues",
  2163. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2164. },
  2165. "time": "2024-10-06T23:10:23+00:00"
  2166. },
  2167. {
  2168. "name": "nette/utils",
  2169. "version": "v4.0.5",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/nette/utils.git",
  2173. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2178. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2179. "shasum": ""
  2180. },
  2181. "require": {
  2182. "php": "8.0 - 8.4"
  2183. },
  2184. "conflict": {
  2185. "nette/finder": "<3",
  2186. "nette/schema": "<1.2.2"
  2187. },
  2188. "require-dev": {
  2189. "jetbrains/phpstorm-attributes": "dev-master",
  2190. "nette/tester": "^2.5",
  2191. "phpstan/phpstan": "^1.0",
  2192. "tracy/tracy": "^2.9"
  2193. },
  2194. "suggest": {
  2195. "ext-gd": "to use Image",
  2196. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2197. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2198. "ext-json": "to use Nette\\Utils\\Json",
  2199. "ext-mbstring": "to use Strings::lower() etc...",
  2200. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "4.0-dev"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "classmap": [
  2210. "src/"
  2211. ]
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "BSD-3-Clause",
  2216. "GPL-2.0-only",
  2217. "GPL-3.0-only"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "David Grudl",
  2222. "homepage": "https://davidgrudl.com"
  2223. },
  2224. {
  2225. "name": "Nette Community",
  2226. "homepage": "https://nette.org/contributors"
  2227. }
  2228. ],
  2229. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2230. "homepage": "https://nette.org",
  2231. "keywords": [
  2232. "array",
  2233. "core",
  2234. "datetime",
  2235. "images",
  2236. "json",
  2237. "nette",
  2238. "paginator",
  2239. "password",
  2240. "slugify",
  2241. "string",
  2242. "unicode",
  2243. "utf-8",
  2244. "utility",
  2245. "validation"
  2246. ],
  2247. "support": {
  2248. "issues": "https://github.com/nette/utils/issues",
  2249. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2250. },
  2251. "time": "2024-08-07T15:39:19+00:00"
  2252. },
  2253. {
  2254. "name": "oscarotero/html-parser",
  2255. "version": "v0.1.8",
  2256. "source": {
  2257. "type": "git",
  2258. "url": "https://github.com/oscarotero/html-parser.git",
  2259. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d"
  2260. },
  2261. "dist": {
  2262. "type": "zip",
  2263. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d",
  2264. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d",
  2265. "shasum": ""
  2266. },
  2267. "require": {
  2268. "php": "^7.2 || ^8"
  2269. },
  2270. "require-dev": {
  2271. "friendsofphp/php-cs-fixer": "^2.11",
  2272. "phpunit/phpunit": "^8.0"
  2273. },
  2274. "type": "library",
  2275. "autoload": {
  2276. "psr-4": {
  2277. "HtmlParser\\": "src"
  2278. }
  2279. },
  2280. "notification-url": "https://packagist.org/downloads/",
  2281. "license": [
  2282. "MIT"
  2283. ],
  2284. "authors": [
  2285. {
  2286. "name": "Oscar Otero",
  2287. "email": "oom@oscarotero.com",
  2288. "homepage": "http://oscarotero.com",
  2289. "role": "Developer"
  2290. }
  2291. ],
  2292. "description": "Parse html strings to DOMDocument",
  2293. "homepage": "https://github.com/oscarotero/html-parser",
  2294. "keywords": [
  2295. "dom",
  2296. "html",
  2297. "parser"
  2298. ],
  2299. "support": {
  2300. "email": "oom@oscarotero.com",
  2301. "issues": "https://github.com/oscarotero/html-parser/issues",
  2302. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8"
  2303. },
  2304. "time": "2023-11-29T20:28:41+00:00"
  2305. },
  2306. {
  2307. "name": "phpdocumentor/reflection-common",
  2308. "version": "2.2.0",
  2309. "source": {
  2310. "type": "git",
  2311. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2312. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2313. },
  2314. "dist": {
  2315. "type": "zip",
  2316. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2317. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2318. "shasum": ""
  2319. },
  2320. "require": {
  2321. "php": "^7.2 || ^8.0"
  2322. },
  2323. "type": "library",
  2324. "extra": {
  2325. "branch-alias": {
  2326. "dev-2.x": "2.x-dev"
  2327. }
  2328. },
  2329. "autoload": {
  2330. "psr-4": {
  2331. "phpDocumentor\\Reflection\\": "src/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Jaap van Otterdijk",
  2341. "email": "opensource@ijaap.nl"
  2342. }
  2343. ],
  2344. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2345. "homepage": "http://www.phpdoc.org",
  2346. "keywords": [
  2347. "FQSEN",
  2348. "phpDocumentor",
  2349. "phpdoc",
  2350. "reflection",
  2351. "static analysis"
  2352. ],
  2353. "support": {
  2354. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2355. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2356. },
  2357. "time": "2020-06-27T09:03:43+00:00"
  2358. },
  2359. {
  2360. "name": "phpdocumentor/reflection-docblock",
  2361. "version": "5.4.1",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2365. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2370. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "doctrine/deprecations": "^1.1",
  2375. "ext-filter": "*",
  2376. "php": "^7.4 || ^8.0",
  2377. "phpdocumentor/reflection-common": "^2.2",
  2378. "phpdocumentor/type-resolver": "^1.7",
  2379. "phpstan/phpdoc-parser": "^1.7",
  2380. "webmozart/assert": "^1.9.1"
  2381. },
  2382. "require-dev": {
  2383. "mockery/mockery": "~1.3.5",
  2384. "phpstan/extension-installer": "^1.1",
  2385. "phpstan/phpstan": "^1.8",
  2386. "phpstan/phpstan-mockery": "^1.1",
  2387. "phpstan/phpstan-webmozart-assert": "^1.2",
  2388. "phpunit/phpunit": "^9.5",
  2389. "vimeo/psalm": "^5.13"
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "5.x-dev"
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "phpDocumentor\\Reflection\\": "src"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Mike van Riel",
  2409. "email": "me@mikevanriel.com"
  2410. },
  2411. {
  2412. "name": "Jaap van Otterdijk",
  2413. "email": "opensource@ijaap.nl"
  2414. }
  2415. ],
  2416. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2417. "support": {
  2418. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2419. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2420. },
  2421. "time": "2024-05-21T05:55:05+00:00"
  2422. },
  2423. {
  2424. "name": "phpdocumentor/type-resolver",
  2425. "version": "1.8.2",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2429. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2434. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "doctrine/deprecations": "^1.0",
  2439. "php": "^7.3 || ^8.0",
  2440. "phpdocumentor/reflection-common": "^2.0",
  2441. "phpstan/phpdoc-parser": "^1.13"
  2442. },
  2443. "require-dev": {
  2444. "ext-tokenizer": "*",
  2445. "phpbench/phpbench": "^1.2",
  2446. "phpstan/extension-installer": "^1.1",
  2447. "phpstan/phpstan": "^1.8",
  2448. "phpstan/phpstan-phpunit": "^1.1",
  2449. "phpunit/phpunit": "^9.5",
  2450. "rector/rector": "^0.13.9",
  2451. "vimeo/psalm": "^4.25"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-1.x": "1.x-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "psr-4": {
  2461. "phpDocumentor\\Reflection\\": "src"
  2462. }
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Mike van Riel",
  2471. "email": "me@mikevanriel.com"
  2472. }
  2473. ],
  2474. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2475. "support": {
  2476. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2477. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2478. },
  2479. "time": "2024-02-23T11:10:43+00:00"
  2480. },
  2481. {
  2482. "name": "phpstan/phpdoc-parser",
  2483. "version": "1.33.0",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2487. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2492. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": "^7.2 || ^8.0"
  2497. },
  2498. "require-dev": {
  2499. "doctrine/annotations": "^2.0",
  2500. "nikic/php-parser": "^4.15",
  2501. "php-parallel-lint/php-parallel-lint": "^1.2",
  2502. "phpstan/extension-installer": "^1.0",
  2503. "phpstan/phpstan": "^1.5",
  2504. "phpstan/phpstan-phpunit": "^1.1",
  2505. "phpstan/phpstan-strict-rules": "^1.0",
  2506. "phpunit/phpunit": "^9.5",
  2507. "symfony/process": "^5.2"
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-4": {
  2512. "PHPStan\\PhpDocParser\\": [
  2513. "src/"
  2514. ]
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2522. "support": {
  2523. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2524. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2525. },
  2526. "time": "2024-10-13T11:25:22+00:00"
  2527. },
  2528. {
  2529. "name": "psr/cache",
  2530. "version": "3.0.0",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/php-fig/cache.git",
  2534. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2539. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "php": ">=8.0.0"
  2544. },
  2545. "type": "library",
  2546. "extra": {
  2547. "branch-alias": {
  2548. "dev-master": "1.0.x-dev"
  2549. }
  2550. },
  2551. "autoload": {
  2552. "psr-4": {
  2553. "Psr\\Cache\\": "src/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "PHP-FIG",
  2563. "homepage": "https://www.php-fig.org/"
  2564. }
  2565. ],
  2566. "description": "Common interface for caching libraries",
  2567. "keywords": [
  2568. "cache",
  2569. "psr",
  2570. "psr-6"
  2571. ],
  2572. "support": {
  2573. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2574. },
  2575. "time": "2021-02-03T23:26:27+00:00"
  2576. },
  2577. {
  2578. "name": "psr/clock",
  2579. "version": "1.0.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/php-fig/clock.git",
  2583. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2588. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2589. "shasum": ""
  2590. },
  2591. "require": {
  2592. "php": "^7.0 || ^8.0"
  2593. },
  2594. "type": "library",
  2595. "autoload": {
  2596. "psr-4": {
  2597. "Psr\\Clock\\": "src/"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "PHP-FIG",
  2607. "homepage": "https://www.php-fig.org/"
  2608. }
  2609. ],
  2610. "description": "Common interface for reading the clock.",
  2611. "homepage": "https://github.com/php-fig/clock",
  2612. "keywords": [
  2613. "clock",
  2614. "now",
  2615. "psr",
  2616. "psr-20",
  2617. "time"
  2618. ],
  2619. "support": {
  2620. "issues": "https://github.com/php-fig/clock/issues",
  2621. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2622. },
  2623. "time": "2022-11-25T14:36:26+00:00"
  2624. },
  2625. {
  2626. "name": "psr/container",
  2627. "version": "2.0.2",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/php-fig/container.git",
  2631. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2636. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "php": ">=7.4.0"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-master": "2.0.x-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Psr\\Container\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "PHP-FIG",
  2660. "homepage": "https://www.php-fig.org/"
  2661. }
  2662. ],
  2663. "description": "Common Container Interface (PHP FIG PSR-11)",
  2664. "homepage": "https://github.com/php-fig/container",
  2665. "keywords": [
  2666. "PSR-11",
  2667. "container",
  2668. "container-interface",
  2669. "container-interop",
  2670. "psr"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/php-fig/container/issues",
  2674. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2675. },
  2676. "time": "2021-11-05T16:47:00+00:00"
  2677. },
  2678. {
  2679. "name": "psr/event-dispatcher",
  2680. "version": "1.0.0",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/php-fig/event-dispatcher.git",
  2684. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2689. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "php": ">=7.2.0"
  2694. },
  2695. "type": "library",
  2696. "extra": {
  2697. "branch-alias": {
  2698. "dev-master": "1.0.x-dev"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Psr\\EventDispatcher\\": "src/"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "PHP-FIG",
  2713. "homepage": "http://www.php-fig.org/"
  2714. }
  2715. ],
  2716. "description": "Standard interfaces for event handling.",
  2717. "keywords": [
  2718. "events",
  2719. "psr",
  2720. "psr-14"
  2721. ],
  2722. "support": {
  2723. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2724. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2725. },
  2726. "time": "2019-01-08T18:20:26+00:00"
  2727. },
  2728. {
  2729. "name": "psr/http-client",
  2730. "version": "1.0.3",
  2731. "source": {
  2732. "type": "git",
  2733. "url": "https://github.com/php-fig/http-client.git",
  2734. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2735. },
  2736. "dist": {
  2737. "type": "zip",
  2738. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2739. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2740. "shasum": ""
  2741. },
  2742. "require": {
  2743. "php": "^7.0 || ^8.0",
  2744. "psr/http-message": "^1.0 || ^2.0"
  2745. },
  2746. "type": "library",
  2747. "extra": {
  2748. "branch-alias": {
  2749. "dev-master": "1.0.x-dev"
  2750. }
  2751. },
  2752. "autoload": {
  2753. "psr-4": {
  2754. "Psr\\Http\\Client\\": "src/"
  2755. }
  2756. },
  2757. "notification-url": "https://packagist.org/downloads/",
  2758. "license": [
  2759. "MIT"
  2760. ],
  2761. "authors": [
  2762. {
  2763. "name": "PHP-FIG",
  2764. "homepage": "https://www.php-fig.org/"
  2765. }
  2766. ],
  2767. "description": "Common interface for HTTP clients",
  2768. "homepage": "https://github.com/php-fig/http-client",
  2769. "keywords": [
  2770. "http",
  2771. "http-client",
  2772. "psr",
  2773. "psr-18"
  2774. ],
  2775. "support": {
  2776. "source": "https://github.com/php-fig/http-client"
  2777. },
  2778. "time": "2023-09-23T14:17:50+00:00"
  2779. },
  2780. {
  2781. "name": "psr/http-factory",
  2782. "version": "1.1.0",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://github.com/php-fig/http-factory.git",
  2786. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2791. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2792. "shasum": ""
  2793. },
  2794. "require": {
  2795. "php": ">=7.1",
  2796. "psr/http-message": "^1.0 || ^2.0"
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "1.0.x-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Psr\\Http\\Message\\": "src/"
  2807. }
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "PHP-FIG",
  2816. "homepage": "https://www.php-fig.org/"
  2817. }
  2818. ],
  2819. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2820. "keywords": [
  2821. "factory",
  2822. "http",
  2823. "message",
  2824. "psr",
  2825. "psr-17",
  2826. "psr-7",
  2827. "request",
  2828. "response"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/php-fig/http-factory"
  2832. },
  2833. "time": "2024-04-15T12:06:14+00:00"
  2834. },
  2835. {
  2836. "name": "psr/http-message",
  2837. "version": "2.0",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/php-fig/http-message.git",
  2841. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2846. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "php": "^7.2 || ^8.0"
  2851. },
  2852. "type": "library",
  2853. "extra": {
  2854. "branch-alias": {
  2855. "dev-master": "2.0.x-dev"
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "Psr\\Http\\Message\\": "src/"
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "PHP-FIG",
  2870. "homepage": "https://www.php-fig.org/"
  2871. }
  2872. ],
  2873. "description": "Common interface for HTTP messages",
  2874. "homepage": "https://github.com/php-fig/http-message",
  2875. "keywords": [
  2876. "http",
  2877. "http-message",
  2878. "psr",
  2879. "psr-7",
  2880. "request",
  2881. "response"
  2882. ],
  2883. "support": {
  2884. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2885. },
  2886. "time": "2023-04-04T09:54:51+00:00"
  2887. },
  2888. {
  2889. "name": "psr/link",
  2890. "version": "2.0.1",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/php-fig/link.git",
  2894. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2899. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2900. "shasum": ""
  2901. },
  2902. "require": {
  2903. "php": ">=8.0.0"
  2904. },
  2905. "suggest": {
  2906. "fig/link-util": "Provides some useful PSR-13 utilities"
  2907. },
  2908. "type": "library",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-master": "2.0.x-dev"
  2912. }
  2913. },
  2914. "autoload": {
  2915. "psr-4": {
  2916. "Psr\\Link\\": "src/"
  2917. }
  2918. },
  2919. "notification-url": "https://packagist.org/downloads/",
  2920. "license": [
  2921. "MIT"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "PHP-FIG",
  2926. "homepage": "http://www.php-fig.org/"
  2927. }
  2928. ],
  2929. "description": "Common interfaces for HTTP links",
  2930. "homepage": "https://github.com/php-fig/link",
  2931. "keywords": [
  2932. "http",
  2933. "http-link",
  2934. "link",
  2935. "psr",
  2936. "psr-13",
  2937. "rest"
  2938. ],
  2939. "support": {
  2940. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2941. },
  2942. "time": "2021-03-11T23:00:27+00:00"
  2943. },
  2944. {
  2945. "name": "psr/log",
  2946. "version": "3.0.2",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/php-fig/log.git",
  2950. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2955. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2956. "shasum": ""
  2957. },
  2958. "require": {
  2959. "php": ">=8.0.0"
  2960. },
  2961. "type": "library",
  2962. "extra": {
  2963. "branch-alias": {
  2964. "dev-master": "3.x-dev"
  2965. }
  2966. },
  2967. "autoload": {
  2968. "psr-4": {
  2969. "Psr\\Log\\": "src"
  2970. }
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "PHP-FIG",
  2979. "homepage": "https://www.php-fig.org/"
  2980. }
  2981. ],
  2982. "description": "Common interface for logging libraries",
  2983. "homepage": "https://github.com/php-fig/log",
  2984. "keywords": [
  2985. "log",
  2986. "psr",
  2987. "psr-3"
  2988. ],
  2989. "support": {
  2990. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2991. },
  2992. "time": "2024-09-11T13:17:53+00:00"
  2993. },
  2994. {
  2995. "name": "symfony/apache-pack",
  2996. "version": "v1.0.1",
  2997. "source": {
  2998. "type": "git",
  2999. "url": "https://github.com/symfony/apache-pack.git",
  3000. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3001. },
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3005. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3006. "shasum": ""
  3007. },
  3008. "type": "symfony-pack",
  3009. "notification-url": "https://packagist.org/downloads/",
  3010. "license": [
  3011. "MIT"
  3012. ],
  3013. "description": "A pack for Apache support in Symfony",
  3014. "support": {
  3015. "issues": "https://github.com/symfony/apache-pack/issues",
  3016. "source": "https://github.com/symfony/apache-pack/tree/master"
  3017. },
  3018. "time": "2017-12-12T01:46:35+00:00"
  3019. },
  3020. {
  3021. "name": "symfony/asset",
  3022. "version": "v7.1.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/symfony/asset.git",
  3026. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  3031. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  3032. "shasum": ""
  3033. },
  3034. "require": {
  3035. "php": ">=8.2"
  3036. },
  3037. "conflict": {
  3038. "symfony/http-foundation": "<6.4"
  3039. },
  3040. "require-dev": {
  3041. "symfony/http-client": "^6.4|^7.0",
  3042. "symfony/http-foundation": "^6.4|^7.0",
  3043. "symfony/http-kernel": "^6.4|^7.0"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "psr-4": {
  3048. "Symfony\\Component\\Asset\\": ""
  3049. },
  3050. "exclude-from-classmap": [
  3051. "/Tests/"
  3052. ]
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Fabien Potencier",
  3061. "email": "fabien@symfony.com"
  3062. },
  3063. {
  3064. "name": "Symfony Community",
  3065. "homepage": "https://symfony.com/contributors"
  3066. }
  3067. ],
  3068. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3069. "homepage": "https://symfony.com",
  3070. "support": {
  3071. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  3072. },
  3073. "funding": [
  3074. {
  3075. "url": "https://symfony.com/sponsor",
  3076. "type": "custom"
  3077. },
  3078. {
  3079. "url": "https://github.com/fabpot",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3084. "type": "tidelift"
  3085. }
  3086. ],
  3087. "time": "2024-05-31T14:57:53+00:00"
  3088. },
  3089. {
  3090. "name": "symfony/asset-mapper",
  3091. "version": "v7.1.5",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/symfony/asset-mapper.git",
  3095. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  3100. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "composer/semver": "^3.0",
  3105. "php": ">=8.2",
  3106. "symfony/deprecation-contracts": "^2.1|^3",
  3107. "symfony/filesystem": "^7.1",
  3108. "symfony/http-client": "^6.4|^7.0"
  3109. },
  3110. "conflict": {
  3111. "symfony/framework-bundle": "<6.4"
  3112. },
  3113. "require-dev": {
  3114. "symfony/asset": "^6.4|^7.0",
  3115. "symfony/browser-kit": "^6.4|^7.0",
  3116. "symfony/console": "^6.4|^7.0",
  3117. "symfony/event-dispatcher-contracts": "^3.0",
  3118. "symfony/finder": "^6.4|^7.0",
  3119. "symfony/framework-bundle": "^6.4|^7.0",
  3120. "symfony/http-foundation": "^6.4|^7.0",
  3121. "symfony/http-kernel": "^6.4|^7.0",
  3122. "symfony/web-link": "^6.4|^7.0"
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "psr-4": {
  3127. "Symfony\\Component\\AssetMapper\\": ""
  3128. },
  3129. "exclude-from-classmap": [
  3130. "/Tests/"
  3131. ]
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Fabien Potencier",
  3140. "email": "fabien@symfony.com"
  3141. },
  3142. {
  3143. "name": "Symfony Community",
  3144. "homepage": "https://symfony.com/contributors"
  3145. }
  3146. ],
  3147. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3148. "homepage": "https://symfony.com",
  3149. "support": {
  3150. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  3151. },
  3152. "funding": [
  3153. {
  3154. "url": "https://symfony.com/sponsor",
  3155. "type": "custom"
  3156. },
  3157. {
  3158. "url": "https://github.com/fabpot",
  3159. "type": "github"
  3160. },
  3161. {
  3162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3163. "type": "tidelift"
  3164. }
  3165. ],
  3166. "time": "2024-09-19T08:57:32+00:00"
  3167. },
  3168. {
  3169. "name": "symfony/cache",
  3170. "version": "v7.1.5",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/symfony/cache.git",
  3174. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  3179. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "php": ">=8.2",
  3184. "psr/cache": "^2.0|^3.0",
  3185. "psr/log": "^1.1|^2|^3",
  3186. "symfony/cache-contracts": "^2.5|^3",
  3187. "symfony/deprecation-contracts": "^2.5|^3.0",
  3188. "symfony/service-contracts": "^2.5|^3",
  3189. "symfony/var-exporter": "^6.4|^7.0"
  3190. },
  3191. "conflict": {
  3192. "doctrine/dbal": "<3.6",
  3193. "symfony/dependency-injection": "<6.4",
  3194. "symfony/http-kernel": "<6.4",
  3195. "symfony/var-dumper": "<6.4"
  3196. },
  3197. "provide": {
  3198. "psr/cache-implementation": "2.0|3.0",
  3199. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3200. "symfony/cache-implementation": "1.1|2.0|3.0"
  3201. },
  3202. "require-dev": {
  3203. "cache/integration-tests": "dev-master",
  3204. "doctrine/dbal": "^3.6|^4",
  3205. "predis/predis": "^1.1|^2.0",
  3206. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3207. "symfony/config": "^6.4|^7.0",
  3208. "symfony/dependency-injection": "^6.4|^7.0",
  3209. "symfony/filesystem": "^6.4|^7.0",
  3210. "symfony/http-kernel": "^6.4|^7.0",
  3211. "symfony/messenger": "^6.4|^7.0",
  3212. "symfony/var-dumper": "^6.4|^7.0"
  3213. },
  3214. "type": "library",
  3215. "autoload": {
  3216. "psr-4": {
  3217. "Symfony\\Component\\Cache\\": ""
  3218. },
  3219. "classmap": [
  3220. "Traits/ValueWrapper.php"
  3221. ],
  3222. "exclude-from-classmap": [
  3223. "/Tests/"
  3224. ]
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "authors": [
  3231. {
  3232. "name": "Nicolas Grekas",
  3233. "email": "p@tchwork.com"
  3234. },
  3235. {
  3236. "name": "Symfony Community",
  3237. "homepage": "https://symfony.com/contributors"
  3238. }
  3239. ],
  3240. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3241. "homepage": "https://symfony.com",
  3242. "keywords": [
  3243. "caching",
  3244. "psr6"
  3245. ],
  3246. "support": {
  3247. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://symfony.com/sponsor",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://github.com/fabpot",
  3256. "type": "github"
  3257. },
  3258. {
  3259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3260. "type": "tidelift"
  3261. }
  3262. ],
  3263. "time": "2024-09-17T09:16:35+00:00"
  3264. },
  3265. {
  3266. "name": "symfony/cache-contracts",
  3267. "version": "v3.5.0",
  3268. "source": {
  3269. "type": "git",
  3270. "url": "https://github.com/symfony/cache-contracts.git",
  3271. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3272. },
  3273. "dist": {
  3274. "type": "zip",
  3275. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3276. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3277. "shasum": ""
  3278. },
  3279. "require": {
  3280. "php": ">=8.1",
  3281. "psr/cache": "^3.0"
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-main": "3.5-dev"
  3287. },
  3288. "thanks": {
  3289. "name": "symfony/contracts",
  3290. "url": "https://github.com/symfony/contracts"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Symfony\\Contracts\\Cache\\": ""
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Nicolas Grekas",
  3305. "email": "p@tchwork.com"
  3306. },
  3307. {
  3308. "name": "Symfony Community",
  3309. "homepage": "https://symfony.com/contributors"
  3310. }
  3311. ],
  3312. "description": "Generic abstractions related to caching",
  3313. "homepage": "https://symfony.com",
  3314. "keywords": [
  3315. "abstractions",
  3316. "contracts",
  3317. "decoupling",
  3318. "interfaces",
  3319. "interoperability",
  3320. "standards"
  3321. ],
  3322. "support": {
  3323. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2024-04-18T09:32:20+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/clock",
  3343. "version": "v7.1.1",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/clock.git",
  3347. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3352. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=8.2",
  3357. "psr/clock": "^1.0",
  3358. "symfony/polyfill-php83": "^1.28"
  3359. },
  3360. "provide": {
  3361. "psr/clock-implementation": "1.0"
  3362. },
  3363. "type": "library",
  3364. "autoload": {
  3365. "files": [
  3366. "Resources/now.php"
  3367. ],
  3368. "psr-4": {
  3369. "Symfony\\Component\\Clock\\": ""
  3370. },
  3371. "exclude-from-classmap": [
  3372. "/Tests/"
  3373. ]
  3374. },
  3375. "notification-url": "https://packagist.org/downloads/",
  3376. "license": [
  3377. "MIT"
  3378. ],
  3379. "authors": [
  3380. {
  3381. "name": "Nicolas Grekas",
  3382. "email": "p@tchwork.com"
  3383. },
  3384. {
  3385. "name": "Symfony Community",
  3386. "homepage": "https://symfony.com/contributors"
  3387. }
  3388. ],
  3389. "description": "Decouples applications from the system clock",
  3390. "homepage": "https://symfony.com",
  3391. "keywords": [
  3392. "clock",
  3393. "psr20",
  3394. "time"
  3395. ],
  3396. "support": {
  3397. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3398. },
  3399. "funding": [
  3400. {
  3401. "url": "https://symfony.com/sponsor",
  3402. "type": "custom"
  3403. },
  3404. {
  3405. "url": "https://github.com/fabpot",
  3406. "type": "github"
  3407. },
  3408. {
  3409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3410. "type": "tidelift"
  3411. }
  3412. ],
  3413. "time": "2024-05-31T14:57:53+00:00"
  3414. },
  3415. {
  3416. "name": "symfony/config",
  3417. "version": "v7.1.1",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/symfony/config.git",
  3421. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3426. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "php": ">=8.2",
  3431. "symfony/deprecation-contracts": "^2.5|^3",
  3432. "symfony/filesystem": "^7.1",
  3433. "symfony/polyfill-ctype": "~1.8"
  3434. },
  3435. "conflict": {
  3436. "symfony/finder": "<6.4",
  3437. "symfony/service-contracts": "<2.5"
  3438. },
  3439. "require-dev": {
  3440. "symfony/event-dispatcher": "^6.4|^7.0",
  3441. "symfony/finder": "^6.4|^7.0",
  3442. "symfony/messenger": "^6.4|^7.0",
  3443. "symfony/service-contracts": "^2.5|^3",
  3444. "symfony/yaml": "^6.4|^7.0"
  3445. },
  3446. "type": "library",
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Symfony\\Component\\Config\\": ""
  3450. },
  3451. "exclude-from-classmap": [
  3452. "/Tests/"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Fabien Potencier",
  3462. "email": "fabien@symfony.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3470. "homepage": "https://symfony.com",
  3471. "support": {
  3472. "source": "https://github.com/symfony/config/tree/v7.1.1"
  3473. },
  3474. "funding": [
  3475. {
  3476. "url": "https://symfony.com/sponsor",
  3477. "type": "custom"
  3478. },
  3479. {
  3480. "url": "https://github.com/fabpot",
  3481. "type": "github"
  3482. },
  3483. {
  3484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3485. "type": "tidelift"
  3486. }
  3487. ],
  3488. "time": "2024-05-31T14:57:53+00:00"
  3489. },
  3490. {
  3491. "name": "symfony/console",
  3492. "version": "v7.1.5",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/symfony/console.git",
  3496. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3501. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "php": ">=8.2",
  3506. "symfony/polyfill-mbstring": "~1.0",
  3507. "symfony/service-contracts": "^2.5|^3",
  3508. "symfony/string": "^6.4|^7.0"
  3509. },
  3510. "conflict": {
  3511. "symfony/dependency-injection": "<6.4",
  3512. "symfony/dotenv": "<6.4",
  3513. "symfony/event-dispatcher": "<6.4",
  3514. "symfony/lock": "<6.4",
  3515. "symfony/process": "<6.4"
  3516. },
  3517. "provide": {
  3518. "psr/log-implementation": "1.0|2.0|3.0"
  3519. },
  3520. "require-dev": {
  3521. "psr/log": "^1|^2|^3",
  3522. "symfony/config": "^6.4|^7.0",
  3523. "symfony/dependency-injection": "^6.4|^7.0",
  3524. "symfony/event-dispatcher": "^6.4|^7.0",
  3525. "symfony/http-foundation": "^6.4|^7.0",
  3526. "symfony/http-kernel": "^6.4|^7.0",
  3527. "symfony/lock": "^6.4|^7.0",
  3528. "symfony/messenger": "^6.4|^7.0",
  3529. "symfony/process": "^6.4|^7.0",
  3530. "symfony/stopwatch": "^6.4|^7.0",
  3531. "symfony/var-dumper": "^6.4|^7.0"
  3532. },
  3533. "type": "library",
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Symfony\\Component\\Console\\": ""
  3537. },
  3538. "exclude-from-classmap": [
  3539. "/Tests/"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "MIT"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Fabien Potencier",
  3549. "email": "fabien@symfony.com"
  3550. },
  3551. {
  3552. "name": "Symfony Community",
  3553. "homepage": "https://symfony.com/contributors"
  3554. }
  3555. ],
  3556. "description": "Eases the creation of beautiful and testable command line interfaces",
  3557. "homepage": "https://symfony.com",
  3558. "keywords": [
  3559. "cli",
  3560. "command-line",
  3561. "console",
  3562. "terminal"
  3563. ],
  3564. "support": {
  3565. "source": "https://github.com/symfony/console/tree/v7.1.5"
  3566. },
  3567. "funding": [
  3568. {
  3569. "url": "https://symfony.com/sponsor",
  3570. "type": "custom"
  3571. },
  3572. {
  3573. "url": "https://github.com/fabpot",
  3574. "type": "github"
  3575. },
  3576. {
  3577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3578. "type": "tidelift"
  3579. }
  3580. ],
  3581. "time": "2024-09-20T08:28:38+00:00"
  3582. },
  3583. {
  3584. "name": "symfony/dependency-injection",
  3585. "version": "v7.1.5",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/symfony/dependency-injection.git",
  3589. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  3594. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "php": ">=8.2",
  3599. "psr/container": "^1.1|^2.0",
  3600. "symfony/deprecation-contracts": "^2.5|^3",
  3601. "symfony/service-contracts": "^3.5",
  3602. "symfony/var-exporter": "^6.4|^7.0"
  3603. },
  3604. "conflict": {
  3605. "ext-psr": "<1.1|>=2",
  3606. "symfony/config": "<6.4",
  3607. "symfony/finder": "<6.4",
  3608. "symfony/yaml": "<6.4"
  3609. },
  3610. "provide": {
  3611. "psr/container-implementation": "1.1|2.0",
  3612. "symfony/service-implementation": "1.1|2.0|3.0"
  3613. },
  3614. "require-dev": {
  3615. "symfony/config": "^6.4|^7.0",
  3616. "symfony/expression-language": "^6.4|^7.0",
  3617. "symfony/yaml": "^6.4|^7.0"
  3618. },
  3619. "type": "library",
  3620. "autoload": {
  3621. "psr-4": {
  3622. "Symfony\\Component\\DependencyInjection\\": ""
  3623. },
  3624. "exclude-from-classmap": [
  3625. "/Tests/"
  3626. ]
  3627. },
  3628. "notification-url": "https://packagist.org/downloads/",
  3629. "license": [
  3630. "MIT"
  3631. ],
  3632. "authors": [
  3633. {
  3634. "name": "Fabien Potencier",
  3635. "email": "fabien@symfony.com"
  3636. },
  3637. {
  3638. "name": "Symfony Community",
  3639. "homepage": "https://symfony.com/contributors"
  3640. }
  3641. ],
  3642. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3643. "homepage": "https://symfony.com",
  3644. "support": {
  3645. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  3646. },
  3647. "funding": [
  3648. {
  3649. "url": "https://symfony.com/sponsor",
  3650. "type": "custom"
  3651. },
  3652. {
  3653. "url": "https://github.com/fabpot",
  3654. "type": "github"
  3655. },
  3656. {
  3657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3658. "type": "tidelift"
  3659. }
  3660. ],
  3661. "time": "2024-09-20T08:28:38+00:00"
  3662. },
  3663. {
  3664. "name": "symfony/deprecation-contracts",
  3665. "version": "v3.5.0",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/symfony/deprecation-contracts.git",
  3669. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3674. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3675. "shasum": ""
  3676. },
  3677. "require": {
  3678. "php": ">=8.1"
  3679. },
  3680. "type": "library",
  3681. "extra": {
  3682. "branch-alias": {
  3683. "dev-main": "3.5-dev"
  3684. },
  3685. "thanks": {
  3686. "name": "symfony/contracts",
  3687. "url": "https://github.com/symfony/contracts"
  3688. }
  3689. },
  3690. "autoload": {
  3691. "files": [
  3692. "function.php"
  3693. ]
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "MIT"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "Nicolas Grekas",
  3702. "email": "p@tchwork.com"
  3703. },
  3704. {
  3705. "name": "Symfony Community",
  3706. "homepage": "https://symfony.com/contributors"
  3707. }
  3708. ],
  3709. "description": "A generic function and convention to trigger deprecation notices",
  3710. "homepage": "https://symfony.com",
  3711. "support": {
  3712. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3713. },
  3714. "funding": [
  3715. {
  3716. "url": "https://symfony.com/sponsor",
  3717. "type": "custom"
  3718. },
  3719. {
  3720. "url": "https://github.com/fabpot",
  3721. "type": "github"
  3722. },
  3723. {
  3724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3725. "type": "tidelift"
  3726. }
  3727. ],
  3728. "time": "2024-04-18T09:32:20+00:00"
  3729. },
  3730. {
  3731. "name": "symfony/doctrine-bridge",
  3732. "version": "v7.1.5",
  3733. "source": {
  3734. "type": "git",
  3735. "url": "https://github.com/symfony/doctrine-bridge.git",
  3736. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  3737. },
  3738. "dist": {
  3739. "type": "zip",
  3740. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  3741. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  3742. "shasum": ""
  3743. },
  3744. "require": {
  3745. "doctrine/event-manager": "^2",
  3746. "doctrine/persistence": "^3.1",
  3747. "php": ">=8.2",
  3748. "symfony/deprecation-contracts": "^2.5|^3",
  3749. "symfony/polyfill-ctype": "~1.8",
  3750. "symfony/polyfill-mbstring": "~1.0",
  3751. "symfony/service-contracts": "^2.5|^3"
  3752. },
  3753. "conflict": {
  3754. "doctrine/dbal": "<3.6",
  3755. "doctrine/lexer": "<1.1",
  3756. "doctrine/orm": "<2.15",
  3757. "symfony/cache": "<6.4",
  3758. "symfony/dependency-injection": "<6.4",
  3759. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3760. "symfony/http-foundation": "<6.4",
  3761. "symfony/http-kernel": "<6.4",
  3762. "symfony/lock": "<6.4",
  3763. "symfony/messenger": "<6.4",
  3764. "symfony/property-info": "<6.4",
  3765. "symfony/security-bundle": "<6.4",
  3766. "symfony/security-core": "<6.4",
  3767. "symfony/validator": "<6.4"
  3768. },
  3769. "require-dev": {
  3770. "doctrine/collections": "^1.0|^2.0",
  3771. "doctrine/data-fixtures": "^1.1",
  3772. "doctrine/dbal": "^3.6|^4",
  3773. "doctrine/orm": "^2.15|^3",
  3774. "psr/log": "^1|^2|^3",
  3775. "symfony/cache": "^6.4|^7.0",
  3776. "symfony/config": "^6.4|^7.0",
  3777. "symfony/dependency-injection": "^6.4|^7.0",
  3778. "symfony/doctrine-messenger": "^6.4|^7.0",
  3779. "symfony/expression-language": "^6.4|^7.0",
  3780. "symfony/form": "^6.4.6|^7.0.6",
  3781. "symfony/http-kernel": "^6.4|^7.0",
  3782. "symfony/lock": "^6.4|^7.0",
  3783. "symfony/messenger": "^6.4|^7.0",
  3784. "symfony/property-access": "^6.4|^7.0",
  3785. "symfony/property-info": "^6.4|^7.0",
  3786. "symfony/security-core": "^6.4|^7.0",
  3787. "symfony/stopwatch": "^6.4|^7.0",
  3788. "symfony/translation": "^6.4|^7.0",
  3789. "symfony/type-info": "^7.1",
  3790. "symfony/uid": "^6.4|^7.0",
  3791. "symfony/validator": "^6.4|^7.0",
  3792. "symfony/var-dumper": "^6.4|^7.0"
  3793. },
  3794. "type": "symfony-bridge",
  3795. "autoload": {
  3796. "psr-4": {
  3797. "Symfony\\Bridge\\Doctrine\\": ""
  3798. },
  3799. "exclude-from-classmap": [
  3800. "/Tests/"
  3801. ]
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "Fabien Potencier",
  3810. "email": "fabien@symfony.com"
  3811. },
  3812. {
  3813. "name": "Symfony Community",
  3814. "homepage": "https://symfony.com/contributors"
  3815. }
  3816. ],
  3817. "description": "Provides integration for Doctrine with various Symfony components",
  3818. "homepage": "https://symfony.com",
  3819. "support": {
  3820. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://symfony.com/sponsor",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://github.com/fabpot",
  3829. "type": "github"
  3830. },
  3831. {
  3832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3833. "type": "tidelift"
  3834. }
  3835. ],
  3836. "time": "2024-09-08T12:32:26+00:00"
  3837. },
  3838. {
  3839. "name": "symfony/doctrine-messenger",
  3840. "version": "v7.1.5",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/symfony/doctrine-messenger.git",
  3844. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  3849. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  3850. "shasum": ""
  3851. },
  3852. "require": {
  3853. "doctrine/dbal": "^3.6|^4",
  3854. "php": ">=8.2",
  3855. "symfony/messenger": "^6.4|^7.0",
  3856. "symfony/service-contracts": "^2.5|^3"
  3857. },
  3858. "conflict": {
  3859. "doctrine/persistence": "<1.3"
  3860. },
  3861. "require-dev": {
  3862. "doctrine/persistence": "^1.3|^2|^3",
  3863. "symfony/property-access": "^6.4|^7.0",
  3864. "symfony/serializer": "^6.4|^7.0"
  3865. },
  3866. "type": "symfony-messenger-bridge",
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3870. },
  3871. "exclude-from-classmap": [
  3872. "/Tests/"
  3873. ]
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Fabien Potencier",
  3882. "email": "fabien@symfony.com"
  3883. },
  3884. {
  3885. "name": "Symfony Community",
  3886. "homepage": "https://symfony.com/contributors"
  3887. }
  3888. ],
  3889. "description": "Symfony Doctrine Messenger Bridge",
  3890. "homepage": "https://symfony.com",
  3891. "support": {
  3892. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  3893. },
  3894. "funding": [
  3895. {
  3896. "url": "https://symfony.com/sponsor",
  3897. "type": "custom"
  3898. },
  3899. {
  3900. "url": "https://github.com/fabpot",
  3901. "type": "github"
  3902. },
  3903. {
  3904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3905. "type": "tidelift"
  3906. }
  3907. ],
  3908. "time": "2024-09-20T08:28:38+00:00"
  3909. },
  3910. {
  3911. "name": "symfony/dotenv",
  3912. "version": "v7.1.5",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/symfony/dotenv.git",
  3916. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  3921. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  3922. "shasum": ""
  3923. },
  3924. "require": {
  3925. "php": ">=8.2"
  3926. },
  3927. "conflict": {
  3928. "symfony/console": "<6.4",
  3929. "symfony/process": "<6.4"
  3930. },
  3931. "require-dev": {
  3932. "symfony/console": "^6.4|^7.0",
  3933. "symfony/process": "^6.4|^7.0"
  3934. },
  3935. "type": "library",
  3936. "autoload": {
  3937. "psr-4": {
  3938. "Symfony\\Component\\Dotenv\\": ""
  3939. },
  3940. "exclude-from-classmap": [
  3941. "/Tests/"
  3942. ]
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Fabien Potencier",
  3951. "email": "fabien@symfony.com"
  3952. },
  3953. {
  3954. "name": "Symfony Community",
  3955. "homepage": "https://symfony.com/contributors"
  3956. }
  3957. ],
  3958. "description": "Registers environment variables from a .env file",
  3959. "homepage": "https://symfony.com",
  3960. "keywords": [
  3961. "dotenv",
  3962. "env",
  3963. "environment"
  3964. ],
  3965. "support": {
  3966. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  3967. },
  3968. "funding": [
  3969. {
  3970. "url": "https://symfony.com/sponsor",
  3971. "type": "custom"
  3972. },
  3973. {
  3974. "url": "https://github.com/fabpot",
  3975. "type": "github"
  3976. },
  3977. {
  3978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3979. "type": "tidelift"
  3980. }
  3981. ],
  3982. "time": "2024-09-17T09:16:35+00:00"
  3983. },
  3984. {
  3985. "name": "symfony/error-handler",
  3986. "version": "v7.1.3",
  3987. "source": {
  3988. "type": "git",
  3989. "url": "https://github.com/symfony/error-handler.git",
  3990. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3991. },
  3992. "dist": {
  3993. "type": "zip",
  3994. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3995. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3996. "shasum": ""
  3997. },
  3998. "require": {
  3999. "php": ">=8.2",
  4000. "psr/log": "^1|^2|^3",
  4001. "symfony/var-dumper": "^6.4|^7.0"
  4002. },
  4003. "conflict": {
  4004. "symfony/deprecation-contracts": "<2.5",
  4005. "symfony/http-kernel": "<6.4"
  4006. },
  4007. "require-dev": {
  4008. "symfony/deprecation-contracts": "^2.5|^3",
  4009. "symfony/http-kernel": "^6.4|^7.0",
  4010. "symfony/serializer": "^6.4|^7.0"
  4011. },
  4012. "bin": [
  4013. "Resources/bin/patch-type-declarations"
  4014. ],
  4015. "type": "library",
  4016. "autoload": {
  4017. "psr-4": {
  4018. "Symfony\\Component\\ErrorHandler\\": ""
  4019. },
  4020. "exclude-from-classmap": [
  4021. "/Tests/"
  4022. ]
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Fabien Potencier",
  4031. "email": "fabien@symfony.com"
  4032. },
  4033. {
  4034. "name": "Symfony Community",
  4035. "homepage": "https://symfony.com/contributors"
  4036. }
  4037. ],
  4038. "description": "Provides tools to manage errors and ease debugging PHP code",
  4039. "homepage": "https://symfony.com",
  4040. "support": {
  4041. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  4042. },
  4043. "funding": [
  4044. {
  4045. "url": "https://symfony.com/sponsor",
  4046. "type": "custom"
  4047. },
  4048. {
  4049. "url": "https://github.com/fabpot",
  4050. "type": "github"
  4051. },
  4052. {
  4053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4054. "type": "tidelift"
  4055. }
  4056. ],
  4057. "time": "2024-07-26T13:02:51+00:00"
  4058. },
  4059. {
  4060. "name": "symfony/event-dispatcher",
  4061. "version": "v7.1.1",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/symfony/event-dispatcher.git",
  4065. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4070. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4071. "shasum": ""
  4072. },
  4073. "require": {
  4074. "php": ">=8.2",
  4075. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4076. },
  4077. "conflict": {
  4078. "symfony/dependency-injection": "<6.4",
  4079. "symfony/service-contracts": "<2.5"
  4080. },
  4081. "provide": {
  4082. "psr/event-dispatcher-implementation": "1.0",
  4083. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4084. },
  4085. "require-dev": {
  4086. "psr/log": "^1|^2|^3",
  4087. "symfony/config": "^6.4|^7.0",
  4088. "symfony/dependency-injection": "^6.4|^7.0",
  4089. "symfony/error-handler": "^6.4|^7.0",
  4090. "symfony/expression-language": "^6.4|^7.0",
  4091. "symfony/http-foundation": "^6.4|^7.0",
  4092. "symfony/service-contracts": "^2.5|^3",
  4093. "symfony/stopwatch": "^6.4|^7.0"
  4094. },
  4095. "type": "library",
  4096. "autoload": {
  4097. "psr-4": {
  4098. "Symfony\\Component\\EventDispatcher\\": ""
  4099. },
  4100. "exclude-from-classmap": [
  4101. "/Tests/"
  4102. ]
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "MIT"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "Fabien Potencier",
  4111. "email": "fabien@symfony.com"
  4112. },
  4113. {
  4114. "name": "Symfony Community",
  4115. "homepage": "https://symfony.com/contributors"
  4116. }
  4117. ],
  4118. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4119. "homepage": "https://symfony.com",
  4120. "support": {
  4121. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4122. },
  4123. "funding": [
  4124. {
  4125. "url": "https://symfony.com/sponsor",
  4126. "type": "custom"
  4127. },
  4128. {
  4129. "url": "https://github.com/fabpot",
  4130. "type": "github"
  4131. },
  4132. {
  4133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4134. "type": "tidelift"
  4135. }
  4136. ],
  4137. "time": "2024-05-31T14:57:53+00:00"
  4138. },
  4139. {
  4140. "name": "symfony/event-dispatcher-contracts",
  4141. "version": "v3.5.0",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4145. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4150. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4151. "shasum": ""
  4152. },
  4153. "require": {
  4154. "php": ">=8.1",
  4155. "psr/event-dispatcher": "^1"
  4156. },
  4157. "type": "library",
  4158. "extra": {
  4159. "branch-alias": {
  4160. "dev-main": "3.5-dev"
  4161. },
  4162. "thanks": {
  4163. "name": "symfony/contracts",
  4164. "url": "https://github.com/symfony/contracts"
  4165. }
  4166. },
  4167. "autoload": {
  4168. "psr-4": {
  4169. "Symfony\\Contracts\\EventDispatcher\\": ""
  4170. }
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "MIT"
  4175. ],
  4176. "authors": [
  4177. {
  4178. "name": "Nicolas Grekas",
  4179. "email": "p@tchwork.com"
  4180. },
  4181. {
  4182. "name": "Symfony Community",
  4183. "homepage": "https://symfony.com/contributors"
  4184. }
  4185. ],
  4186. "description": "Generic abstractions related to dispatching event",
  4187. "homepage": "https://symfony.com",
  4188. "keywords": [
  4189. "abstractions",
  4190. "contracts",
  4191. "decoupling",
  4192. "interfaces",
  4193. "interoperability",
  4194. "standards"
  4195. ],
  4196. "support": {
  4197. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4198. },
  4199. "funding": [
  4200. {
  4201. "url": "https://symfony.com/sponsor",
  4202. "type": "custom"
  4203. },
  4204. {
  4205. "url": "https://github.com/fabpot",
  4206. "type": "github"
  4207. },
  4208. {
  4209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4210. "type": "tidelift"
  4211. }
  4212. ],
  4213. "time": "2024-04-18T09:32:20+00:00"
  4214. },
  4215. {
  4216. "name": "symfony/expression-language",
  4217. "version": "v7.1.4",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/symfony/expression-language.git",
  4221. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  4226. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  4227. "shasum": ""
  4228. },
  4229. "require": {
  4230. "php": ">=8.2",
  4231. "symfony/cache": "^6.4|^7.0",
  4232. "symfony/deprecation-contracts": "^2.5|^3",
  4233. "symfony/service-contracts": "^2.5|^3"
  4234. },
  4235. "type": "library",
  4236. "autoload": {
  4237. "psr-4": {
  4238. "Symfony\\Component\\ExpressionLanguage\\": ""
  4239. },
  4240. "exclude-from-classmap": [
  4241. "/Tests/"
  4242. ]
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "Fabien Potencier",
  4251. "email": "fabien@symfony.com"
  4252. },
  4253. {
  4254. "name": "Symfony Community",
  4255. "homepage": "https://symfony.com/contributors"
  4256. }
  4257. ],
  4258. "description": "Provides an engine that can compile and evaluate expressions",
  4259. "homepage": "https://symfony.com",
  4260. "support": {
  4261. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  4262. },
  4263. "funding": [
  4264. {
  4265. "url": "https://symfony.com/sponsor",
  4266. "type": "custom"
  4267. },
  4268. {
  4269. "url": "https://github.com/fabpot",
  4270. "type": "github"
  4271. },
  4272. {
  4273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4274. "type": "tidelift"
  4275. }
  4276. ],
  4277. "time": "2024-08-12T09:59:40+00:00"
  4278. },
  4279. {
  4280. "name": "symfony/filesystem",
  4281. "version": "v7.1.5",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://github.com/symfony/filesystem.git",
  4285. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  4290. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  4291. "shasum": ""
  4292. },
  4293. "require": {
  4294. "php": ">=8.2",
  4295. "symfony/polyfill-ctype": "~1.8",
  4296. "symfony/polyfill-mbstring": "~1.8"
  4297. },
  4298. "require-dev": {
  4299. "symfony/process": "^6.4|^7.0"
  4300. },
  4301. "type": "library",
  4302. "autoload": {
  4303. "psr-4": {
  4304. "Symfony\\Component\\Filesystem\\": ""
  4305. },
  4306. "exclude-from-classmap": [
  4307. "/Tests/"
  4308. ]
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Fabien Potencier",
  4317. "email": "fabien@symfony.com"
  4318. },
  4319. {
  4320. "name": "Symfony Community",
  4321. "homepage": "https://symfony.com/contributors"
  4322. }
  4323. ],
  4324. "description": "Provides basic utilities for the filesystem",
  4325. "homepage": "https://symfony.com",
  4326. "support": {
  4327. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  4328. },
  4329. "funding": [
  4330. {
  4331. "url": "https://symfony.com/sponsor",
  4332. "type": "custom"
  4333. },
  4334. {
  4335. "url": "https://github.com/fabpot",
  4336. "type": "github"
  4337. },
  4338. {
  4339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4340. "type": "tidelift"
  4341. }
  4342. ],
  4343. "time": "2024-09-17T09:16:35+00:00"
  4344. },
  4345. {
  4346. "name": "symfony/finder",
  4347. "version": "v7.1.4",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://github.com/symfony/finder.git",
  4351. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  4356. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  4357. "shasum": ""
  4358. },
  4359. "require": {
  4360. "php": ">=8.2"
  4361. },
  4362. "require-dev": {
  4363. "symfony/filesystem": "^6.4|^7.0"
  4364. },
  4365. "type": "library",
  4366. "autoload": {
  4367. "psr-4": {
  4368. "Symfony\\Component\\Finder\\": ""
  4369. },
  4370. "exclude-from-classmap": [
  4371. "/Tests/"
  4372. ]
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "Fabien Potencier",
  4381. "email": "fabien@symfony.com"
  4382. },
  4383. {
  4384. "name": "Symfony Community",
  4385. "homepage": "https://symfony.com/contributors"
  4386. }
  4387. ],
  4388. "description": "Finds files and directories via an intuitive fluent interface",
  4389. "homepage": "https://symfony.com",
  4390. "support": {
  4391. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  4392. },
  4393. "funding": [
  4394. {
  4395. "url": "https://symfony.com/sponsor",
  4396. "type": "custom"
  4397. },
  4398. {
  4399. "url": "https://github.com/fabpot",
  4400. "type": "github"
  4401. },
  4402. {
  4403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4404. "type": "tidelift"
  4405. }
  4406. ],
  4407. "time": "2024-08-13T14:28:19+00:00"
  4408. },
  4409. {
  4410. "name": "symfony/flex",
  4411. "version": "v2.4.7",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/symfony/flex.git",
  4415. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4420. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "composer-plugin-api": "^2.1",
  4425. "php": ">=8.0"
  4426. },
  4427. "conflict": {
  4428. "composer/semver": "<1.7.2"
  4429. },
  4430. "require-dev": {
  4431. "composer/composer": "^2.1",
  4432. "symfony/dotenv": "^5.4|^6.0",
  4433. "symfony/filesystem": "^5.4|^6.0",
  4434. "symfony/phpunit-bridge": "^5.4|^6.0",
  4435. "symfony/process": "^5.4|^6.0"
  4436. },
  4437. "type": "composer-plugin",
  4438. "extra": {
  4439. "class": "Symfony\\Flex\\Flex"
  4440. },
  4441. "autoload": {
  4442. "psr-4": {
  4443. "Symfony\\Flex\\": "src"
  4444. }
  4445. },
  4446. "notification-url": "https://packagist.org/downloads/",
  4447. "license": [
  4448. "MIT"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Fabien Potencier",
  4453. "email": "fabien.potencier@gmail.com"
  4454. }
  4455. ],
  4456. "description": "Composer plugin for Symfony",
  4457. "support": {
  4458. "issues": "https://github.com/symfony/flex/issues",
  4459. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  4460. },
  4461. "funding": [
  4462. {
  4463. "url": "https://symfony.com/sponsor",
  4464. "type": "custom"
  4465. },
  4466. {
  4467. "url": "https://github.com/fabpot",
  4468. "type": "github"
  4469. },
  4470. {
  4471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4472. "type": "tidelift"
  4473. }
  4474. ],
  4475. "time": "2024-10-07T08:51:54+00:00"
  4476. },
  4477. {
  4478. "name": "symfony/form",
  4479. "version": "v7.1.5",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/symfony/form.git",
  4483. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  4488. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  4489. "shasum": ""
  4490. },
  4491. "require": {
  4492. "php": ">=8.2",
  4493. "symfony/deprecation-contracts": "^2.5|^3",
  4494. "symfony/event-dispatcher": "^6.4|^7.0",
  4495. "symfony/options-resolver": "^6.4|^7.0",
  4496. "symfony/polyfill-ctype": "~1.8",
  4497. "symfony/polyfill-intl-icu": "^1.21",
  4498. "symfony/polyfill-mbstring": "~1.0",
  4499. "symfony/property-access": "^6.4|^7.0",
  4500. "symfony/service-contracts": "^2.5|^3"
  4501. },
  4502. "conflict": {
  4503. "symfony/console": "<6.4",
  4504. "symfony/dependency-injection": "<6.4",
  4505. "symfony/doctrine-bridge": "<6.4",
  4506. "symfony/error-handler": "<6.4",
  4507. "symfony/framework-bundle": "<6.4",
  4508. "symfony/http-kernel": "<6.4",
  4509. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4510. "symfony/translation-contracts": "<2.5",
  4511. "symfony/twig-bridge": "<6.4"
  4512. },
  4513. "require-dev": {
  4514. "doctrine/collections": "^1.0|^2.0",
  4515. "symfony/config": "^6.4|^7.0",
  4516. "symfony/console": "^6.4|^7.0",
  4517. "symfony/dependency-injection": "^6.4|^7.0",
  4518. "symfony/expression-language": "^6.4|^7.0",
  4519. "symfony/html-sanitizer": "^6.4|^7.0",
  4520. "symfony/http-foundation": "^6.4|^7.0",
  4521. "symfony/http-kernel": "^6.4|^7.0",
  4522. "symfony/intl": "^6.4|^7.0",
  4523. "symfony/security-core": "^6.4|^7.0",
  4524. "symfony/security-csrf": "^6.4|^7.0",
  4525. "symfony/translation": "^6.4.3|^7.0.3",
  4526. "symfony/uid": "^6.4|^7.0",
  4527. "symfony/validator": "^6.4|^7.0",
  4528. "symfony/var-dumper": "^6.4|^7.0"
  4529. },
  4530. "type": "library",
  4531. "autoload": {
  4532. "psr-4": {
  4533. "Symfony\\Component\\Form\\": ""
  4534. },
  4535. "exclude-from-classmap": [
  4536. "/Tests/"
  4537. ]
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "MIT"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Fabien Potencier",
  4546. "email": "fabien@symfony.com"
  4547. },
  4548. {
  4549. "name": "Symfony Community",
  4550. "homepage": "https://symfony.com/contributors"
  4551. }
  4552. ],
  4553. "description": "Allows to easily create, process and reuse HTML forms",
  4554. "homepage": "https://symfony.com",
  4555. "support": {
  4556. "source": "https://github.com/symfony/form/tree/v7.1.5"
  4557. },
  4558. "funding": [
  4559. {
  4560. "url": "https://symfony.com/sponsor",
  4561. "type": "custom"
  4562. },
  4563. {
  4564. "url": "https://github.com/fabpot",
  4565. "type": "github"
  4566. },
  4567. {
  4568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4569. "type": "tidelift"
  4570. }
  4571. ],
  4572. "time": "2024-09-20T08:28:38+00:00"
  4573. },
  4574. {
  4575. "name": "symfony/framework-bundle",
  4576. "version": "v7.1.5",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/symfony/framework-bundle.git",
  4580. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  4585. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "composer-runtime-api": ">=2.1",
  4590. "ext-xml": "*",
  4591. "php": ">=8.2",
  4592. "symfony/cache": "^6.4|^7.0",
  4593. "symfony/config": "^6.4|^7.0",
  4594. "symfony/dependency-injection": "^7.1.5",
  4595. "symfony/deprecation-contracts": "^2.5|^3",
  4596. "symfony/error-handler": "^6.4|^7.0",
  4597. "symfony/event-dispatcher": "^6.4|^7.0",
  4598. "symfony/filesystem": "^7.1",
  4599. "symfony/finder": "^6.4|^7.0",
  4600. "symfony/http-foundation": "^6.4|^7.0",
  4601. "symfony/http-kernel": "^6.4|^7.0",
  4602. "symfony/polyfill-mbstring": "~1.0",
  4603. "symfony/routing": "^6.4|^7.0"
  4604. },
  4605. "conflict": {
  4606. "doctrine/persistence": "<1.3",
  4607. "phpdocumentor/reflection-docblock": "<3.2.2",
  4608. "phpdocumentor/type-resolver": "<1.4.0",
  4609. "symfony/asset": "<6.4",
  4610. "symfony/asset-mapper": "<6.4",
  4611. "symfony/clock": "<6.4",
  4612. "symfony/console": "<6.4",
  4613. "symfony/dom-crawler": "<6.4",
  4614. "symfony/dotenv": "<6.4",
  4615. "symfony/form": "<6.4",
  4616. "symfony/http-client": "<6.4",
  4617. "symfony/lock": "<6.4",
  4618. "symfony/mailer": "<6.4",
  4619. "symfony/messenger": "<6.4",
  4620. "symfony/mime": "<6.4",
  4621. "symfony/property-access": "<6.4",
  4622. "symfony/property-info": "<6.4",
  4623. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4624. "symfony/security-core": "<6.4",
  4625. "symfony/security-csrf": "<6.4",
  4626. "symfony/serializer": "<6.4",
  4627. "symfony/stopwatch": "<6.4",
  4628. "symfony/translation": "<6.4",
  4629. "symfony/twig-bridge": "<6.4",
  4630. "symfony/twig-bundle": "<6.4",
  4631. "symfony/validator": "<6.4",
  4632. "symfony/web-profiler-bundle": "<6.4",
  4633. "symfony/workflow": "<6.4"
  4634. },
  4635. "require-dev": {
  4636. "doctrine/persistence": "^1.3|^2|^3",
  4637. "dragonmantank/cron-expression": "^3.1",
  4638. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4639. "seld/jsonlint": "^1.10",
  4640. "symfony/asset": "^6.4|^7.0",
  4641. "symfony/asset-mapper": "^6.4|^7.0",
  4642. "symfony/browser-kit": "^6.4|^7.0",
  4643. "symfony/clock": "^6.4|^7.0",
  4644. "symfony/console": "^6.4|^7.0",
  4645. "symfony/css-selector": "^6.4|^7.0",
  4646. "symfony/dom-crawler": "^6.4|^7.0",
  4647. "symfony/dotenv": "^6.4|^7.0",
  4648. "symfony/expression-language": "^6.4|^7.0",
  4649. "symfony/form": "^6.4|^7.0",
  4650. "symfony/html-sanitizer": "^6.4|^7.0",
  4651. "symfony/http-client": "^6.4|^7.0",
  4652. "symfony/lock": "^6.4|^7.0",
  4653. "symfony/mailer": "^6.4|^7.0",
  4654. "symfony/messenger": "^6.4|^7.0",
  4655. "symfony/mime": "^6.4|^7.0",
  4656. "symfony/notifier": "^6.4|^7.0",
  4657. "symfony/polyfill-intl-icu": "~1.0",
  4658. "symfony/process": "^6.4|^7.0",
  4659. "symfony/property-info": "^6.4|^7.0",
  4660. "symfony/rate-limiter": "^6.4|^7.0",
  4661. "symfony/scheduler": "^6.4.4|^7.0.4",
  4662. "symfony/security-bundle": "^6.4|^7.0",
  4663. "symfony/semaphore": "^6.4|^7.0",
  4664. "symfony/serializer": "^6.4|^7.0",
  4665. "symfony/stopwatch": "^6.4|^7.0",
  4666. "symfony/string": "^6.4|^7.0",
  4667. "symfony/translation": "^6.4|^7.0",
  4668. "symfony/twig-bundle": "^6.4|^7.0",
  4669. "symfony/type-info": "^7.1",
  4670. "symfony/uid": "^6.4|^7.0",
  4671. "symfony/validator": "^6.4|^7.0",
  4672. "symfony/web-link": "^6.4|^7.0",
  4673. "symfony/workflow": "^6.4|^7.0",
  4674. "symfony/yaml": "^6.4|^7.0",
  4675. "twig/twig": "^3.0.4"
  4676. },
  4677. "type": "symfony-bundle",
  4678. "autoload": {
  4679. "psr-4": {
  4680. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4681. },
  4682. "exclude-from-classmap": [
  4683. "/Tests/"
  4684. ]
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Fabien Potencier",
  4693. "email": "fabien@symfony.com"
  4694. },
  4695. {
  4696. "name": "Symfony Community",
  4697. "homepage": "https://symfony.com/contributors"
  4698. }
  4699. ],
  4700. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4701. "homepage": "https://symfony.com",
  4702. "support": {
  4703. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://symfony.com/sponsor",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://github.com/fabpot",
  4712. "type": "github"
  4713. },
  4714. {
  4715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4716. "type": "tidelift"
  4717. }
  4718. ],
  4719. "time": "2024-09-20T13:35:23+00:00"
  4720. },
  4721. {
  4722. "name": "symfony/http-client",
  4723. "version": "v7.1.5",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/symfony/http-client.git",
  4727. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  4732. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "php": ">=8.2",
  4737. "psr/log": "^1|^2|^3",
  4738. "symfony/deprecation-contracts": "^2.5|^3",
  4739. "symfony/http-client-contracts": "^3.4.1",
  4740. "symfony/service-contracts": "^2.5|^3"
  4741. },
  4742. "conflict": {
  4743. "php-http/discovery": "<1.15",
  4744. "symfony/http-foundation": "<6.4"
  4745. },
  4746. "provide": {
  4747. "php-http/async-client-implementation": "*",
  4748. "php-http/client-implementation": "*",
  4749. "psr/http-client-implementation": "1.0",
  4750. "symfony/http-client-implementation": "3.0"
  4751. },
  4752. "require-dev": {
  4753. "amphp/amp": "^2.5",
  4754. "amphp/http-client": "^4.2.1",
  4755. "amphp/http-tunnel": "^1.0",
  4756. "amphp/socket": "^1.1",
  4757. "guzzlehttp/promises": "^1.4|^2.0",
  4758. "nyholm/psr7": "^1.0",
  4759. "php-http/httplug": "^1.0|^2.0",
  4760. "psr/http-client": "^1.0",
  4761. "symfony/dependency-injection": "^6.4|^7.0",
  4762. "symfony/http-kernel": "^6.4|^7.0",
  4763. "symfony/messenger": "^6.4|^7.0",
  4764. "symfony/process": "^6.4|^7.0",
  4765. "symfony/rate-limiter": "^6.4|^7.0",
  4766. "symfony/stopwatch": "^6.4|^7.0"
  4767. },
  4768. "type": "library",
  4769. "autoload": {
  4770. "psr-4": {
  4771. "Symfony\\Component\\HttpClient\\": ""
  4772. },
  4773. "exclude-from-classmap": [
  4774. "/Tests/"
  4775. ]
  4776. },
  4777. "notification-url": "https://packagist.org/downloads/",
  4778. "license": [
  4779. "MIT"
  4780. ],
  4781. "authors": [
  4782. {
  4783. "name": "Nicolas Grekas",
  4784. "email": "p@tchwork.com"
  4785. },
  4786. {
  4787. "name": "Symfony Community",
  4788. "homepage": "https://symfony.com/contributors"
  4789. }
  4790. ],
  4791. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4792. "homepage": "https://symfony.com",
  4793. "keywords": [
  4794. "http"
  4795. ],
  4796. "support": {
  4797. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://symfony.com/sponsor",
  4802. "type": "custom"
  4803. },
  4804. {
  4805. "url": "https://github.com/fabpot",
  4806. "type": "github"
  4807. },
  4808. {
  4809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4810. "type": "tidelift"
  4811. }
  4812. ],
  4813. "time": "2024-09-20T13:35:23+00:00"
  4814. },
  4815. {
  4816. "name": "symfony/http-client-contracts",
  4817. "version": "v3.5.0",
  4818. "source": {
  4819. "type": "git",
  4820. "url": "https://github.com/symfony/http-client-contracts.git",
  4821. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4822. },
  4823. "dist": {
  4824. "type": "zip",
  4825. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4826. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4827. "shasum": ""
  4828. },
  4829. "require": {
  4830. "php": ">=8.1"
  4831. },
  4832. "type": "library",
  4833. "extra": {
  4834. "branch-alias": {
  4835. "dev-main": "3.5-dev"
  4836. },
  4837. "thanks": {
  4838. "name": "symfony/contracts",
  4839. "url": "https://github.com/symfony/contracts"
  4840. }
  4841. },
  4842. "autoload": {
  4843. "psr-4": {
  4844. "Symfony\\Contracts\\HttpClient\\": ""
  4845. },
  4846. "exclude-from-classmap": [
  4847. "/Test/"
  4848. ]
  4849. },
  4850. "notification-url": "https://packagist.org/downloads/",
  4851. "license": [
  4852. "MIT"
  4853. ],
  4854. "authors": [
  4855. {
  4856. "name": "Nicolas Grekas",
  4857. "email": "p@tchwork.com"
  4858. },
  4859. {
  4860. "name": "Symfony Community",
  4861. "homepage": "https://symfony.com/contributors"
  4862. }
  4863. ],
  4864. "description": "Generic abstractions related to HTTP clients",
  4865. "homepage": "https://symfony.com",
  4866. "keywords": [
  4867. "abstractions",
  4868. "contracts",
  4869. "decoupling",
  4870. "interfaces",
  4871. "interoperability",
  4872. "standards"
  4873. ],
  4874. "support": {
  4875. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4876. },
  4877. "funding": [
  4878. {
  4879. "url": "https://symfony.com/sponsor",
  4880. "type": "custom"
  4881. },
  4882. {
  4883. "url": "https://github.com/fabpot",
  4884. "type": "github"
  4885. },
  4886. {
  4887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4888. "type": "tidelift"
  4889. }
  4890. ],
  4891. "time": "2024-04-18T09:32:20+00:00"
  4892. },
  4893. {
  4894. "name": "symfony/http-foundation",
  4895. "version": "v7.1.5",
  4896. "source": {
  4897. "type": "git",
  4898. "url": "https://github.com/symfony/http-foundation.git",
  4899. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  4900. },
  4901. "dist": {
  4902. "type": "zip",
  4903. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4904. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4905. "shasum": ""
  4906. },
  4907. "require": {
  4908. "php": ">=8.2",
  4909. "symfony/polyfill-mbstring": "~1.1",
  4910. "symfony/polyfill-php83": "^1.27"
  4911. },
  4912. "conflict": {
  4913. "doctrine/dbal": "<3.6",
  4914. "symfony/cache": "<6.4"
  4915. },
  4916. "require-dev": {
  4917. "doctrine/dbal": "^3.6|^4",
  4918. "predis/predis": "^1.1|^2.0",
  4919. "symfony/cache": "^6.4|^7.0",
  4920. "symfony/dependency-injection": "^6.4|^7.0",
  4921. "symfony/expression-language": "^6.4|^7.0",
  4922. "symfony/http-kernel": "^6.4|^7.0",
  4923. "symfony/mime": "^6.4|^7.0",
  4924. "symfony/rate-limiter": "^6.4|^7.0"
  4925. },
  4926. "type": "library",
  4927. "autoload": {
  4928. "psr-4": {
  4929. "Symfony\\Component\\HttpFoundation\\": ""
  4930. },
  4931. "exclude-from-classmap": [
  4932. "/Tests/"
  4933. ]
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Fabien Potencier",
  4942. "email": "fabien@symfony.com"
  4943. },
  4944. {
  4945. "name": "Symfony Community",
  4946. "homepage": "https://symfony.com/contributors"
  4947. }
  4948. ],
  4949. "description": "Defines an object-oriented layer for the HTTP specification",
  4950. "homepage": "https://symfony.com",
  4951. "support": {
  4952. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  4953. },
  4954. "funding": [
  4955. {
  4956. "url": "https://symfony.com/sponsor",
  4957. "type": "custom"
  4958. },
  4959. {
  4960. "url": "https://github.com/fabpot",
  4961. "type": "github"
  4962. },
  4963. {
  4964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4965. "type": "tidelift"
  4966. }
  4967. ],
  4968. "time": "2024-09-20T08:28:38+00:00"
  4969. },
  4970. {
  4971. "name": "symfony/http-kernel",
  4972. "version": "v7.1.5",
  4973. "source": {
  4974. "type": "git",
  4975. "url": "https://github.com/symfony/http-kernel.git",
  4976. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  4977. },
  4978. "dist": {
  4979. "type": "zip",
  4980. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  4981. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  4982. "shasum": ""
  4983. },
  4984. "require": {
  4985. "php": ">=8.2",
  4986. "psr/log": "^1|^2|^3",
  4987. "symfony/deprecation-contracts": "^2.5|^3",
  4988. "symfony/error-handler": "^6.4|^7.0",
  4989. "symfony/event-dispatcher": "^6.4|^7.0",
  4990. "symfony/http-foundation": "^6.4|^7.0",
  4991. "symfony/polyfill-ctype": "^1.8"
  4992. },
  4993. "conflict": {
  4994. "symfony/browser-kit": "<6.4",
  4995. "symfony/cache": "<6.4",
  4996. "symfony/config": "<6.4",
  4997. "symfony/console": "<6.4",
  4998. "symfony/dependency-injection": "<6.4",
  4999. "symfony/doctrine-bridge": "<6.4",
  5000. "symfony/form": "<6.4",
  5001. "symfony/http-client": "<6.4",
  5002. "symfony/http-client-contracts": "<2.5",
  5003. "symfony/mailer": "<6.4",
  5004. "symfony/messenger": "<6.4",
  5005. "symfony/translation": "<6.4",
  5006. "symfony/translation-contracts": "<2.5",
  5007. "symfony/twig-bridge": "<6.4",
  5008. "symfony/validator": "<6.4",
  5009. "symfony/var-dumper": "<6.4",
  5010. "twig/twig": "<3.0.4"
  5011. },
  5012. "provide": {
  5013. "psr/log-implementation": "1.0|2.0|3.0"
  5014. },
  5015. "require-dev": {
  5016. "psr/cache": "^1.0|^2.0|^3.0",
  5017. "symfony/browser-kit": "^6.4|^7.0",
  5018. "symfony/clock": "^6.4|^7.0",
  5019. "symfony/config": "^6.4|^7.0",
  5020. "symfony/console": "^6.4|^7.0",
  5021. "symfony/css-selector": "^6.4|^7.0",
  5022. "symfony/dependency-injection": "^6.4|^7.0",
  5023. "symfony/dom-crawler": "^6.4|^7.0",
  5024. "symfony/expression-language": "^6.4|^7.0",
  5025. "symfony/finder": "^6.4|^7.0",
  5026. "symfony/http-client-contracts": "^2.5|^3",
  5027. "symfony/process": "^6.4|^7.0",
  5028. "symfony/property-access": "^7.1",
  5029. "symfony/routing": "^6.4|^7.0",
  5030. "symfony/serializer": "^7.1",
  5031. "symfony/stopwatch": "^6.4|^7.0",
  5032. "symfony/translation": "^6.4|^7.0",
  5033. "symfony/translation-contracts": "^2.5|^3",
  5034. "symfony/uid": "^6.4|^7.0",
  5035. "symfony/validator": "^6.4|^7.0",
  5036. "symfony/var-dumper": "^6.4|^7.0",
  5037. "symfony/var-exporter": "^6.4|^7.0",
  5038. "twig/twig": "^3.0.4"
  5039. },
  5040. "type": "library",
  5041. "autoload": {
  5042. "psr-4": {
  5043. "Symfony\\Component\\HttpKernel\\": ""
  5044. },
  5045. "exclude-from-classmap": [
  5046. "/Tests/"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Fabien Potencier",
  5056. "email": "fabien@symfony.com"
  5057. },
  5058. {
  5059. "name": "Symfony Community",
  5060. "homepage": "https://symfony.com/contributors"
  5061. }
  5062. ],
  5063. "description": "Provides a structured process for converting a Request into a Response",
  5064. "homepage": "https://symfony.com",
  5065. "support": {
  5066. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  5067. },
  5068. "funding": [
  5069. {
  5070. "url": "https://symfony.com/sponsor",
  5071. "type": "custom"
  5072. },
  5073. {
  5074. "url": "https://github.com/fabpot",
  5075. "type": "github"
  5076. },
  5077. {
  5078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5079. "type": "tidelift"
  5080. }
  5081. ],
  5082. "time": "2024-09-21T06:09:21+00:00"
  5083. },
  5084. {
  5085. "name": "symfony/intl",
  5086. "version": "v7.1.5",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/symfony/intl.git",
  5090. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  5095. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "php": ">=8.2",
  5100. "symfony/deprecation-contracts": "^2.5|^3"
  5101. },
  5102. "conflict": {
  5103. "symfony/string": "<7.1"
  5104. },
  5105. "require-dev": {
  5106. "symfony/filesystem": "^6.4|^7.0",
  5107. "symfony/var-exporter": "^6.4|^7.0"
  5108. },
  5109. "type": "library",
  5110. "autoload": {
  5111. "psr-4": {
  5112. "Symfony\\Component\\Intl\\": ""
  5113. },
  5114. "exclude-from-classmap": [
  5115. "/Tests/",
  5116. "/Resources/data/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Bernhard Schussek",
  5126. "email": "bschussek@gmail.com"
  5127. },
  5128. {
  5129. "name": "Eriksen Costa",
  5130. "email": "eriksen.costa@infranology.com.br"
  5131. },
  5132. {
  5133. "name": "Igor Wiedler",
  5134. "email": "igor@wiedler.ch"
  5135. },
  5136. {
  5137. "name": "Symfony Community",
  5138. "homepage": "https://symfony.com/contributors"
  5139. }
  5140. ],
  5141. "description": "Provides access to the localization data of the ICU library",
  5142. "homepage": "https://symfony.com",
  5143. "keywords": [
  5144. "i18n",
  5145. "icu",
  5146. "internationalization",
  5147. "intl",
  5148. "l10n",
  5149. "localization"
  5150. ],
  5151. "support": {
  5152. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  5153. },
  5154. "funding": [
  5155. {
  5156. "url": "https://symfony.com/sponsor",
  5157. "type": "custom"
  5158. },
  5159. {
  5160. "url": "https://github.com/fabpot",
  5161. "type": "github"
  5162. },
  5163. {
  5164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5165. "type": "tidelift"
  5166. }
  5167. ],
  5168. "time": "2024-09-20T08:28:38+00:00"
  5169. },
  5170. {
  5171. "name": "symfony/mailer",
  5172. "version": "v7.1.5",
  5173. "source": {
  5174. "type": "git",
  5175. "url": "https://github.com/symfony/mailer.git",
  5176. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  5177. },
  5178. "dist": {
  5179. "type": "zip",
  5180. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5181. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5182. "shasum": ""
  5183. },
  5184. "require": {
  5185. "egulias/email-validator": "^2.1.10|^3|^4",
  5186. "php": ">=8.2",
  5187. "psr/event-dispatcher": "^1",
  5188. "psr/log": "^1|^2|^3",
  5189. "symfony/event-dispatcher": "^6.4|^7.0",
  5190. "symfony/mime": "^6.4|^7.0",
  5191. "symfony/service-contracts": "^2.5|^3"
  5192. },
  5193. "conflict": {
  5194. "symfony/http-client-contracts": "<2.5",
  5195. "symfony/http-kernel": "<6.4",
  5196. "symfony/messenger": "<6.4",
  5197. "symfony/mime": "<6.4",
  5198. "symfony/twig-bridge": "<6.4"
  5199. },
  5200. "require-dev": {
  5201. "symfony/console": "^6.4|^7.0",
  5202. "symfony/http-client": "^6.4|^7.0",
  5203. "symfony/messenger": "^6.4|^7.0",
  5204. "symfony/twig-bridge": "^6.4|^7.0"
  5205. },
  5206. "type": "library",
  5207. "autoload": {
  5208. "psr-4": {
  5209. "Symfony\\Component\\Mailer\\": ""
  5210. },
  5211. "exclude-from-classmap": [
  5212. "/Tests/"
  5213. ]
  5214. },
  5215. "notification-url": "https://packagist.org/downloads/",
  5216. "license": [
  5217. "MIT"
  5218. ],
  5219. "authors": [
  5220. {
  5221. "name": "Fabien Potencier",
  5222. "email": "fabien@symfony.com"
  5223. },
  5224. {
  5225. "name": "Symfony Community",
  5226. "homepage": "https://symfony.com/contributors"
  5227. }
  5228. ],
  5229. "description": "Helps sending emails",
  5230. "homepage": "https://symfony.com",
  5231. "support": {
  5232. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  5233. },
  5234. "funding": [
  5235. {
  5236. "url": "https://symfony.com/sponsor",
  5237. "type": "custom"
  5238. },
  5239. {
  5240. "url": "https://github.com/fabpot",
  5241. "type": "github"
  5242. },
  5243. {
  5244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5245. "type": "tidelift"
  5246. }
  5247. ],
  5248. "time": "2024-09-08T12:32:26+00:00"
  5249. },
  5250. {
  5251. "name": "symfony/messenger",
  5252. "version": "v7.1.5",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/symfony/messenger.git",
  5256. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  5261. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": ">=8.2",
  5266. "psr/log": "^1|^2|^3",
  5267. "symfony/clock": "^6.4|^7.0"
  5268. },
  5269. "conflict": {
  5270. "symfony/console": "<6.4",
  5271. "symfony/event-dispatcher": "<6.4",
  5272. "symfony/event-dispatcher-contracts": "<2.5",
  5273. "symfony/framework-bundle": "<6.4",
  5274. "symfony/http-kernel": "<6.4",
  5275. "symfony/serializer": "<6.4"
  5276. },
  5277. "require-dev": {
  5278. "psr/cache": "^1.0|^2.0|^3.0",
  5279. "symfony/console": "^6.4|^7.0",
  5280. "symfony/dependency-injection": "^6.4|^7.0",
  5281. "symfony/event-dispatcher": "^6.4|^7.0",
  5282. "symfony/http-kernel": "^6.4|^7.0",
  5283. "symfony/process": "^6.4|^7.0",
  5284. "symfony/property-access": "^6.4|^7.0",
  5285. "symfony/rate-limiter": "^6.4|^7.0",
  5286. "symfony/routing": "^6.4|^7.0",
  5287. "symfony/serializer": "^6.4|^7.0",
  5288. "symfony/service-contracts": "^2.5|^3",
  5289. "symfony/stopwatch": "^6.4|^7.0",
  5290. "symfony/validator": "^6.4|^7.0"
  5291. },
  5292. "type": "library",
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Symfony\\Component\\Messenger\\": ""
  5296. },
  5297. "exclude-from-classmap": [
  5298. "/Tests/"
  5299. ]
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Samuel Roze",
  5308. "email": "samuel.roze@gmail.com"
  5309. },
  5310. {
  5311. "name": "Symfony Community",
  5312. "homepage": "https://symfony.com/contributors"
  5313. }
  5314. ],
  5315. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5316. "homepage": "https://symfony.com",
  5317. "support": {
  5318. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  5319. },
  5320. "funding": [
  5321. {
  5322. "url": "https://symfony.com/sponsor",
  5323. "type": "custom"
  5324. },
  5325. {
  5326. "url": "https://github.com/fabpot",
  5327. "type": "github"
  5328. },
  5329. {
  5330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5331. "type": "tidelift"
  5332. }
  5333. ],
  5334. "time": "2024-09-08T12:32:26+00:00"
  5335. },
  5336. {
  5337. "name": "symfony/mime",
  5338. "version": "v7.1.5",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/symfony/mime.git",
  5342. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5347. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5348. "shasum": ""
  5349. },
  5350. "require": {
  5351. "php": ">=8.2",
  5352. "symfony/polyfill-intl-idn": "^1.10",
  5353. "symfony/polyfill-mbstring": "^1.0"
  5354. },
  5355. "conflict": {
  5356. "egulias/email-validator": "~3.0.0",
  5357. "phpdocumentor/reflection-docblock": "<3.2.2",
  5358. "phpdocumentor/type-resolver": "<1.4.0",
  5359. "symfony/mailer": "<6.4",
  5360. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5361. },
  5362. "require-dev": {
  5363. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5364. "league/html-to-markdown": "^5.0",
  5365. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5366. "symfony/dependency-injection": "^6.4|^7.0",
  5367. "symfony/process": "^6.4|^7.0",
  5368. "symfony/property-access": "^6.4|^7.0",
  5369. "symfony/property-info": "^6.4|^7.0",
  5370. "symfony/serializer": "^6.4.3|^7.0.3"
  5371. },
  5372. "type": "library",
  5373. "autoload": {
  5374. "psr-4": {
  5375. "Symfony\\Component\\Mime\\": ""
  5376. },
  5377. "exclude-from-classmap": [
  5378. "/Tests/"
  5379. ]
  5380. },
  5381. "notification-url": "https://packagist.org/downloads/",
  5382. "license": [
  5383. "MIT"
  5384. ],
  5385. "authors": [
  5386. {
  5387. "name": "Fabien Potencier",
  5388. "email": "fabien@symfony.com"
  5389. },
  5390. {
  5391. "name": "Symfony Community",
  5392. "homepage": "https://symfony.com/contributors"
  5393. }
  5394. ],
  5395. "description": "Allows manipulating MIME messages",
  5396. "homepage": "https://symfony.com",
  5397. "keywords": [
  5398. "mime",
  5399. "mime-type"
  5400. ],
  5401. "support": {
  5402. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  5403. },
  5404. "funding": [
  5405. {
  5406. "url": "https://symfony.com/sponsor",
  5407. "type": "custom"
  5408. },
  5409. {
  5410. "url": "https://github.com/fabpot",
  5411. "type": "github"
  5412. },
  5413. {
  5414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5415. "type": "tidelift"
  5416. }
  5417. ],
  5418. "time": "2024-09-20T08:28:38+00:00"
  5419. },
  5420. {
  5421. "name": "symfony/monolog-bridge",
  5422. "version": "v7.1.1",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://github.com/symfony/monolog-bridge.git",
  5426. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5431. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5432. "shasum": ""
  5433. },
  5434. "require": {
  5435. "monolog/monolog": "^3",
  5436. "php": ">=8.2",
  5437. "symfony/http-kernel": "^6.4|^7.0",
  5438. "symfony/service-contracts": "^2.5|^3"
  5439. },
  5440. "conflict": {
  5441. "symfony/console": "<6.4",
  5442. "symfony/http-foundation": "<6.4",
  5443. "symfony/security-core": "<6.4"
  5444. },
  5445. "require-dev": {
  5446. "symfony/console": "^6.4|^7.0",
  5447. "symfony/http-client": "^6.4|^7.0",
  5448. "symfony/mailer": "^6.4|^7.0",
  5449. "symfony/messenger": "^6.4|^7.0",
  5450. "symfony/mime": "^6.4|^7.0",
  5451. "symfony/security-core": "^6.4|^7.0",
  5452. "symfony/var-dumper": "^6.4|^7.0"
  5453. },
  5454. "type": "symfony-bridge",
  5455. "autoload": {
  5456. "psr-4": {
  5457. "Symfony\\Bridge\\Monolog\\": ""
  5458. },
  5459. "exclude-from-classmap": [
  5460. "/Tests/"
  5461. ]
  5462. },
  5463. "notification-url": "https://packagist.org/downloads/",
  5464. "license": [
  5465. "MIT"
  5466. ],
  5467. "authors": [
  5468. {
  5469. "name": "Fabien Potencier",
  5470. "email": "fabien@symfony.com"
  5471. },
  5472. {
  5473. "name": "Symfony Community",
  5474. "homepage": "https://symfony.com/contributors"
  5475. }
  5476. ],
  5477. "description": "Provides integration for Monolog with various Symfony components",
  5478. "homepage": "https://symfony.com",
  5479. "support": {
  5480. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  5481. },
  5482. "funding": [
  5483. {
  5484. "url": "https://symfony.com/sponsor",
  5485. "type": "custom"
  5486. },
  5487. {
  5488. "url": "https://github.com/fabpot",
  5489. "type": "github"
  5490. },
  5491. {
  5492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5493. "type": "tidelift"
  5494. }
  5495. ],
  5496. "time": "2024-05-31T14:57:53+00:00"
  5497. },
  5498. {
  5499. "name": "symfony/monolog-bundle",
  5500. "version": "v3.10.0",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://github.com/symfony/monolog-bundle.git",
  5504. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5509. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5510. "shasum": ""
  5511. },
  5512. "require": {
  5513. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5514. "php": ">=7.2.5",
  5515. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5516. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5517. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5518. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5519. },
  5520. "require-dev": {
  5521. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5522. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5523. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5524. },
  5525. "type": "symfony-bundle",
  5526. "extra": {
  5527. "branch-alias": {
  5528. "dev-master": "3.x-dev"
  5529. }
  5530. },
  5531. "autoload": {
  5532. "psr-4": {
  5533. "Symfony\\Bundle\\MonologBundle\\": ""
  5534. },
  5535. "exclude-from-classmap": [
  5536. "/Tests/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Fabien Potencier",
  5546. "email": "fabien@symfony.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "Symfony MonologBundle",
  5554. "homepage": "https://symfony.com",
  5555. "keywords": [
  5556. "log",
  5557. "logging"
  5558. ],
  5559. "support": {
  5560. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5561. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://symfony.com/sponsor",
  5566. "type": "custom"
  5567. },
  5568. {
  5569. "url": "https://github.com/fabpot",
  5570. "type": "github"
  5571. },
  5572. {
  5573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5574. "type": "tidelift"
  5575. }
  5576. ],
  5577. "time": "2023-11-06T17:08:13+00:00"
  5578. },
  5579. {
  5580. "name": "symfony/notifier",
  5581. "version": "v7.1.5",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/symfony/notifier.git",
  5585. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  5590. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "php": ">=8.2",
  5595. "psr/log": "^1|^2|^3"
  5596. },
  5597. "conflict": {
  5598. "symfony/event-dispatcher": "<6.4",
  5599. "symfony/event-dispatcher-contracts": "<2.5",
  5600. "symfony/http-client-contracts": "<2.5",
  5601. "symfony/http-kernel": "<6.4"
  5602. },
  5603. "require-dev": {
  5604. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5605. "symfony/http-client-contracts": "^2.5|^3",
  5606. "symfony/http-foundation": "^6.4|^7.0",
  5607. "symfony/messenger": "^6.4|^7.0"
  5608. },
  5609. "type": "library",
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Symfony\\Component\\Notifier\\": ""
  5613. },
  5614. "exclude-from-classmap": [
  5615. "/Tests/"
  5616. ]
  5617. },
  5618. "notification-url": "https://packagist.org/downloads/",
  5619. "license": [
  5620. "MIT"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "Fabien Potencier",
  5625. "email": "fabien@symfony.com"
  5626. },
  5627. {
  5628. "name": "Symfony Community",
  5629. "homepage": "https://symfony.com/contributors"
  5630. }
  5631. ],
  5632. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5633. "homepage": "https://symfony.com",
  5634. "keywords": [
  5635. "notification",
  5636. "notifier"
  5637. ],
  5638. "support": {
  5639. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  5640. },
  5641. "funding": [
  5642. {
  5643. "url": "https://symfony.com/sponsor",
  5644. "type": "custom"
  5645. },
  5646. {
  5647. "url": "https://github.com/fabpot",
  5648. "type": "github"
  5649. },
  5650. {
  5651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5652. "type": "tidelift"
  5653. }
  5654. ],
  5655. "time": "2024-09-08T12:32:26+00:00"
  5656. },
  5657. {
  5658. "name": "symfony/options-resolver",
  5659. "version": "v7.1.1",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/symfony/options-resolver.git",
  5663. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5668. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "php": ">=8.2",
  5673. "symfony/deprecation-contracts": "^2.5|^3"
  5674. },
  5675. "type": "library",
  5676. "autoload": {
  5677. "psr-4": {
  5678. "Symfony\\Component\\OptionsResolver\\": ""
  5679. },
  5680. "exclude-from-classmap": [
  5681. "/Tests/"
  5682. ]
  5683. },
  5684. "notification-url": "https://packagist.org/downloads/",
  5685. "license": [
  5686. "MIT"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Fabien Potencier",
  5691. "email": "fabien@symfony.com"
  5692. },
  5693. {
  5694. "name": "Symfony Community",
  5695. "homepage": "https://symfony.com/contributors"
  5696. }
  5697. ],
  5698. "description": "Provides an improved replacement for the array_replace PHP function",
  5699. "homepage": "https://symfony.com",
  5700. "keywords": [
  5701. "config",
  5702. "configuration",
  5703. "options"
  5704. ],
  5705. "support": {
  5706. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5707. },
  5708. "funding": [
  5709. {
  5710. "url": "https://symfony.com/sponsor",
  5711. "type": "custom"
  5712. },
  5713. {
  5714. "url": "https://github.com/fabpot",
  5715. "type": "github"
  5716. },
  5717. {
  5718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5719. "type": "tidelift"
  5720. }
  5721. ],
  5722. "time": "2024-05-31T14:57:53+00:00"
  5723. },
  5724. {
  5725. "name": "symfony/password-hasher",
  5726. "version": "v7.1.1",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/symfony/password-hasher.git",
  5730. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5735. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "php": ">=8.2"
  5740. },
  5741. "conflict": {
  5742. "symfony/security-core": "<6.4"
  5743. },
  5744. "require-dev": {
  5745. "symfony/console": "^6.4|^7.0",
  5746. "symfony/security-core": "^6.4|^7.0"
  5747. },
  5748. "type": "library",
  5749. "autoload": {
  5750. "psr-4": {
  5751. "Symfony\\Component\\PasswordHasher\\": ""
  5752. },
  5753. "exclude-from-classmap": [
  5754. "/Tests/"
  5755. ]
  5756. },
  5757. "notification-url": "https://packagist.org/downloads/",
  5758. "license": [
  5759. "MIT"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "Robin Chalas",
  5764. "email": "robin.chalas@gmail.com"
  5765. },
  5766. {
  5767. "name": "Symfony Community",
  5768. "homepage": "https://symfony.com/contributors"
  5769. }
  5770. ],
  5771. "description": "Provides password hashing utilities",
  5772. "homepage": "https://symfony.com",
  5773. "keywords": [
  5774. "hashing",
  5775. "password"
  5776. ],
  5777. "support": {
  5778. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5779. },
  5780. "funding": [
  5781. {
  5782. "url": "https://symfony.com/sponsor",
  5783. "type": "custom"
  5784. },
  5785. {
  5786. "url": "https://github.com/fabpot",
  5787. "type": "github"
  5788. },
  5789. {
  5790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5791. "type": "tidelift"
  5792. }
  5793. ],
  5794. "time": "2024-05-31T14:57:53+00:00"
  5795. },
  5796. {
  5797. "name": "symfony/polyfill-intl-grapheme",
  5798. "version": "v1.31.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5802. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5807. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5808. "shasum": ""
  5809. },
  5810. "require": {
  5811. "php": ">=7.2"
  5812. },
  5813. "suggest": {
  5814. "ext-intl": "For best performance"
  5815. },
  5816. "type": "library",
  5817. "extra": {
  5818. "thanks": {
  5819. "name": "symfony/polyfill",
  5820. "url": "https://github.com/symfony/polyfill"
  5821. }
  5822. },
  5823. "autoload": {
  5824. "files": [
  5825. "bootstrap.php"
  5826. ],
  5827. "psr-4": {
  5828. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "MIT"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "Nicolas Grekas",
  5838. "email": "p@tchwork.com"
  5839. },
  5840. {
  5841. "name": "Symfony Community",
  5842. "homepage": "https://symfony.com/contributors"
  5843. }
  5844. ],
  5845. "description": "Symfony polyfill for intl's grapheme_* functions",
  5846. "homepage": "https://symfony.com",
  5847. "keywords": [
  5848. "compatibility",
  5849. "grapheme",
  5850. "intl",
  5851. "polyfill",
  5852. "portable",
  5853. "shim"
  5854. ],
  5855. "support": {
  5856. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5857. },
  5858. "funding": [
  5859. {
  5860. "url": "https://symfony.com/sponsor",
  5861. "type": "custom"
  5862. },
  5863. {
  5864. "url": "https://github.com/fabpot",
  5865. "type": "github"
  5866. },
  5867. {
  5868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5869. "type": "tidelift"
  5870. }
  5871. ],
  5872. "time": "2024-09-09T11:45:10+00:00"
  5873. },
  5874. {
  5875. "name": "symfony/polyfill-intl-icu",
  5876. "version": "v1.31.0",
  5877. "source": {
  5878. "type": "git",
  5879. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5880. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  5881. },
  5882. "dist": {
  5883. "type": "zip",
  5884. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5885. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5886. "shasum": ""
  5887. },
  5888. "require": {
  5889. "php": ">=7.2"
  5890. },
  5891. "suggest": {
  5892. "ext-intl": "For best performance and support of other locales than \"en\""
  5893. },
  5894. "type": "library",
  5895. "extra": {
  5896. "thanks": {
  5897. "name": "symfony/polyfill",
  5898. "url": "https://github.com/symfony/polyfill"
  5899. }
  5900. },
  5901. "autoload": {
  5902. "files": [
  5903. "bootstrap.php"
  5904. ],
  5905. "psr-4": {
  5906. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5907. },
  5908. "classmap": [
  5909. "Resources/stubs"
  5910. ],
  5911. "exclude-from-classmap": [
  5912. "/Tests/"
  5913. ]
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "compatibility",
  5933. "icu",
  5934. "intl",
  5935. "polyfill",
  5936. "portable",
  5937. "shim"
  5938. ],
  5939. "support": {
  5940. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5941. },
  5942. "funding": [
  5943. {
  5944. "url": "https://symfony.com/sponsor",
  5945. "type": "custom"
  5946. },
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2024-09-09T11:45:10+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/polyfill-intl-idn",
  5960. "version": "v1.31.0",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5964. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5969. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=7.2",
  5974. "symfony/polyfill-intl-normalizer": "^1.10"
  5975. },
  5976. "suggest": {
  5977. "ext-intl": "For best performance"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "thanks": {
  5982. "name": "symfony/polyfill",
  5983. "url": "https://github.com/symfony/polyfill"
  5984. }
  5985. },
  5986. "autoload": {
  5987. "files": [
  5988. "bootstrap.php"
  5989. ],
  5990. "psr-4": {
  5991. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5992. }
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Laurent Bassin",
  6001. "email": "laurent@bassin.info"
  6002. },
  6003. {
  6004. "name": "Trevor Rowbotham",
  6005. "email": "trevor.rowbotham@pm.me"
  6006. },
  6007. {
  6008. "name": "Symfony Community",
  6009. "homepage": "https://symfony.com/contributors"
  6010. }
  6011. ],
  6012. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6013. "homepage": "https://symfony.com",
  6014. "keywords": [
  6015. "compatibility",
  6016. "idn",
  6017. "intl",
  6018. "polyfill",
  6019. "portable",
  6020. "shim"
  6021. ],
  6022. "support": {
  6023. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6024. },
  6025. "funding": [
  6026. {
  6027. "url": "https://symfony.com/sponsor",
  6028. "type": "custom"
  6029. },
  6030. {
  6031. "url": "https://github.com/fabpot",
  6032. "type": "github"
  6033. },
  6034. {
  6035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6036. "type": "tidelift"
  6037. }
  6038. ],
  6039. "time": "2024-09-09T11:45:10+00:00"
  6040. },
  6041. {
  6042. "name": "symfony/polyfill-intl-normalizer",
  6043. "version": "v1.31.0",
  6044. "source": {
  6045. "type": "git",
  6046. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6047. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6048. },
  6049. "dist": {
  6050. "type": "zip",
  6051. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6052. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6053. "shasum": ""
  6054. },
  6055. "require": {
  6056. "php": ">=7.2"
  6057. },
  6058. "suggest": {
  6059. "ext-intl": "For best performance"
  6060. },
  6061. "type": "library",
  6062. "extra": {
  6063. "thanks": {
  6064. "name": "symfony/polyfill",
  6065. "url": "https://github.com/symfony/polyfill"
  6066. }
  6067. },
  6068. "autoload": {
  6069. "files": [
  6070. "bootstrap.php"
  6071. ],
  6072. "psr-4": {
  6073. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6074. },
  6075. "classmap": [
  6076. "Resources/stubs"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Nicolas Grekas",
  6086. "email": "p@tchwork.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6094. "homepage": "https://symfony.com",
  6095. "keywords": [
  6096. "compatibility",
  6097. "intl",
  6098. "normalizer",
  6099. "polyfill",
  6100. "portable",
  6101. "shim"
  6102. ],
  6103. "support": {
  6104. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6105. },
  6106. "funding": [
  6107. {
  6108. "url": "https://symfony.com/sponsor",
  6109. "type": "custom"
  6110. },
  6111. {
  6112. "url": "https://github.com/fabpot",
  6113. "type": "github"
  6114. },
  6115. {
  6116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6117. "type": "tidelift"
  6118. }
  6119. ],
  6120. "time": "2024-09-09T11:45:10+00:00"
  6121. },
  6122. {
  6123. "name": "symfony/polyfill-mbstring",
  6124. "version": "v1.31.0",
  6125. "source": {
  6126. "type": "git",
  6127. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6128. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6129. },
  6130. "dist": {
  6131. "type": "zip",
  6132. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6133. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6134. "shasum": ""
  6135. },
  6136. "require": {
  6137. "php": ">=7.2"
  6138. },
  6139. "provide": {
  6140. "ext-mbstring": "*"
  6141. },
  6142. "suggest": {
  6143. "ext-mbstring": "For best performance"
  6144. },
  6145. "type": "library",
  6146. "extra": {
  6147. "thanks": {
  6148. "name": "symfony/polyfill",
  6149. "url": "https://github.com/symfony/polyfill"
  6150. }
  6151. },
  6152. "autoload": {
  6153. "files": [
  6154. "bootstrap.php"
  6155. ],
  6156. "psr-4": {
  6157. "Symfony\\Polyfill\\Mbstring\\": ""
  6158. }
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Nicolas Grekas",
  6167. "email": "p@tchwork.com"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Symfony polyfill for the Mbstring extension",
  6175. "homepage": "https://symfony.com",
  6176. "keywords": [
  6177. "compatibility",
  6178. "mbstring",
  6179. "polyfill",
  6180. "portable",
  6181. "shim"
  6182. ],
  6183. "support": {
  6184. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6185. },
  6186. "funding": [
  6187. {
  6188. "url": "https://symfony.com/sponsor",
  6189. "type": "custom"
  6190. },
  6191. {
  6192. "url": "https://github.com/fabpot",
  6193. "type": "github"
  6194. },
  6195. {
  6196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6197. "type": "tidelift"
  6198. }
  6199. ],
  6200. "time": "2024-09-09T11:45:10+00:00"
  6201. },
  6202. {
  6203. "name": "symfony/polyfill-php83",
  6204. "version": "v1.31.0",
  6205. "source": {
  6206. "type": "git",
  6207. "url": "https://github.com/symfony/polyfill-php83.git",
  6208. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6209. },
  6210. "dist": {
  6211. "type": "zip",
  6212. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6213. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6214. "shasum": ""
  6215. },
  6216. "require": {
  6217. "php": ">=7.2"
  6218. },
  6219. "type": "library",
  6220. "extra": {
  6221. "thanks": {
  6222. "name": "symfony/polyfill",
  6223. "url": "https://github.com/symfony/polyfill"
  6224. }
  6225. },
  6226. "autoload": {
  6227. "files": [
  6228. "bootstrap.php"
  6229. ],
  6230. "psr-4": {
  6231. "Symfony\\Polyfill\\Php83\\": ""
  6232. },
  6233. "classmap": [
  6234. "Resources/stubs"
  6235. ]
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "MIT"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Nicolas Grekas",
  6244. "email": "p@tchwork.com"
  6245. },
  6246. {
  6247. "name": "Symfony Community",
  6248. "homepage": "https://symfony.com/contributors"
  6249. }
  6250. ],
  6251. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6252. "homepage": "https://symfony.com",
  6253. "keywords": [
  6254. "compatibility",
  6255. "polyfill",
  6256. "portable",
  6257. "shim"
  6258. ],
  6259. "support": {
  6260. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6261. },
  6262. "funding": [
  6263. {
  6264. "url": "https://symfony.com/sponsor",
  6265. "type": "custom"
  6266. },
  6267. {
  6268. "url": "https://github.com/fabpot",
  6269. "type": "github"
  6270. },
  6271. {
  6272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6273. "type": "tidelift"
  6274. }
  6275. ],
  6276. "time": "2024-09-09T11:45:10+00:00"
  6277. },
  6278. {
  6279. "name": "symfony/process",
  6280. "version": "v7.1.5",
  6281. "source": {
  6282. "type": "git",
  6283. "url": "https://github.com/symfony/process.git",
  6284. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  6285. },
  6286. "dist": {
  6287. "type": "zip",
  6288. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  6289. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  6290. "shasum": ""
  6291. },
  6292. "require": {
  6293. "php": ">=8.2"
  6294. },
  6295. "type": "library",
  6296. "autoload": {
  6297. "psr-4": {
  6298. "Symfony\\Component\\Process\\": ""
  6299. },
  6300. "exclude-from-classmap": [
  6301. "/Tests/"
  6302. ]
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Fabien Potencier",
  6311. "email": "fabien@symfony.com"
  6312. },
  6313. {
  6314. "name": "Symfony Community",
  6315. "homepage": "https://symfony.com/contributors"
  6316. }
  6317. ],
  6318. "description": "Executes commands in sub-processes",
  6319. "homepage": "https://symfony.com",
  6320. "support": {
  6321. "source": "https://github.com/symfony/process/tree/v7.1.5"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://symfony.com/sponsor",
  6326. "type": "custom"
  6327. },
  6328. {
  6329. "url": "https://github.com/fabpot",
  6330. "type": "github"
  6331. },
  6332. {
  6333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6334. "type": "tidelift"
  6335. }
  6336. ],
  6337. "time": "2024-09-19T21:48:23+00:00"
  6338. },
  6339. {
  6340. "name": "symfony/property-access",
  6341. "version": "v7.1.4",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/symfony/property-access.git",
  6345. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  6350. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": ">=8.2",
  6355. "symfony/property-info": "^6.4|^7.0"
  6356. },
  6357. "require-dev": {
  6358. "symfony/cache": "^6.4|^7.0"
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\PropertyAccess\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Fabien Potencier",
  6376. "email": "fabien@symfony.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6384. "homepage": "https://symfony.com",
  6385. "keywords": [
  6386. "access",
  6387. "array",
  6388. "extraction",
  6389. "index",
  6390. "injection",
  6391. "object",
  6392. "property",
  6393. "property-path",
  6394. "reflection"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://symfony.com/sponsor",
  6402. "type": "custom"
  6403. },
  6404. {
  6405. "url": "https://github.com/fabpot",
  6406. "type": "github"
  6407. },
  6408. {
  6409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6410. "type": "tidelift"
  6411. }
  6412. ],
  6413. "time": "2024-08-30T16:12:47+00:00"
  6414. },
  6415. {
  6416. "name": "symfony/property-info",
  6417. "version": "v7.1.3",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/symfony/property-info.git",
  6421. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6426. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6427. "shasum": ""
  6428. },
  6429. "require": {
  6430. "php": ">=8.2",
  6431. "symfony/string": "^6.4|^7.0",
  6432. "symfony/type-info": "^7.1"
  6433. },
  6434. "conflict": {
  6435. "phpdocumentor/reflection-docblock": "<5.2",
  6436. "phpdocumentor/type-resolver": "<1.5.1",
  6437. "symfony/dependency-injection": "<6.4",
  6438. "symfony/serializer": "<6.4"
  6439. },
  6440. "require-dev": {
  6441. "phpdocumentor/reflection-docblock": "^5.2",
  6442. "phpstan/phpdoc-parser": "^1.0",
  6443. "symfony/cache": "^6.4|^7.0",
  6444. "symfony/dependency-injection": "^6.4|^7.0",
  6445. "symfony/serializer": "^6.4|^7.0"
  6446. },
  6447. "type": "library",
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Symfony\\Component\\PropertyInfo\\": ""
  6451. },
  6452. "exclude-from-classmap": [
  6453. "/Tests/"
  6454. ]
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Kévin Dunglas",
  6463. "email": "dunglas@gmail.com"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6471. "homepage": "https://symfony.com",
  6472. "keywords": [
  6473. "doctrine",
  6474. "phpdoc",
  6475. "property",
  6476. "symfony",
  6477. "type",
  6478. "validator"
  6479. ],
  6480. "support": {
  6481. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://symfony.com/sponsor",
  6486. "type": "custom"
  6487. },
  6488. {
  6489. "url": "https://github.com/fabpot",
  6490. "type": "github"
  6491. },
  6492. {
  6493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6494. "type": "tidelift"
  6495. }
  6496. ],
  6497. "time": "2024-07-26T07:36:36+00:00"
  6498. },
  6499. {
  6500. "name": "symfony/routing",
  6501. "version": "v7.1.4",
  6502. "source": {
  6503. "type": "git",
  6504. "url": "https://github.com/symfony/routing.git",
  6505. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  6506. },
  6507. "dist": {
  6508. "type": "zip",
  6509. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6510. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6511. "shasum": ""
  6512. },
  6513. "require": {
  6514. "php": ">=8.2",
  6515. "symfony/deprecation-contracts": "^2.5|^3"
  6516. },
  6517. "conflict": {
  6518. "symfony/config": "<6.4",
  6519. "symfony/dependency-injection": "<6.4",
  6520. "symfony/yaml": "<6.4"
  6521. },
  6522. "require-dev": {
  6523. "psr/log": "^1|^2|^3",
  6524. "symfony/config": "^6.4|^7.0",
  6525. "symfony/dependency-injection": "^6.4|^7.0",
  6526. "symfony/expression-language": "^6.4|^7.0",
  6527. "symfony/http-foundation": "^6.4|^7.0",
  6528. "symfony/yaml": "^6.4|^7.0"
  6529. },
  6530. "type": "library",
  6531. "autoload": {
  6532. "psr-4": {
  6533. "Symfony\\Component\\Routing\\": ""
  6534. },
  6535. "exclude-from-classmap": [
  6536. "/Tests/"
  6537. ]
  6538. },
  6539. "notification-url": "https://packagist.org/downloads/",
  6540. "license": [
  6541. "MIT"
  6542. ],
  6543. "authors": [
  6544. {
  6545. "name": "Fabien Potencier",
  6546. "email": "fabien@symfony.com"
  6547. },
  6548. {
  6549. "name": "Symfony Community",
  6550. "homepage": "https://symfony.com/contributors"
  6551. }
  6552. ],
  6553. "description": "Maps an HTTP request to a set of configuration variables",
  6554. "homepage": "https://symfony.com",
  6555. "keywords": [
  6556. "router",
  6557. "routing",
  6558. "uri",
  6559. "url"
  6560. ],
  6561. "support": {
  6562. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://symfony.com/sponsor",
  6567. "type": "custom"
  6568. },
  6569. {
  6570. "url": "https://github.com/fabpot",
  6571. "type": "github"
  6572. },
  6573. {
  6574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6575. "type": "tidelift"
  6576. }
  6577. ],
  6578. "time": "2024-08-29T08:16:25+00:00"
  6579. },
  6580. {
  6581. "name": "symfony/runtime",
  6582. "version": "v7.1.1",
  6583. "source": {
  6584. "type": "git",
  6585. "url": "https://github.com/symfony/runtime.git",
  6586. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6587. },
  6588. "dist": {
  6589. "type": "zip",
  6590. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6591. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6592. "shasum": ""
  6593. },
  6594. "require": {
  6595. "composer-plugin-api": "^1.0|^2.0",
  6596. "php": ">=8.2"
  6597. },
  6598. "conflict": {
  6599. "symfony/dotenv": "<6.4"
  6600. },
  6601. "require-dev": {
  6602. "composer/composer": "^2.6",
  6603. "symfony/console": "^6.4|^7.0",
  6604. "symfony/dotenv": "^6.4|^7.0",
  6605. "symfony/http-foundation": "^6.4|^7.0",
  6606. "symfony/http-kernel": "^6.4|^7.0"
  6607. },
  6608. "type": "composer-plugin",
  6609. "extra": {
  6610. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6611. },
  6612. "autoload": {
  6613. "psr-4": {
  6614. "Symfony\\Component\\Runtime\\": "",
  6615. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6616. },
  6617. "exclude-from-classmap": [
  6618. "/Tests/"
  6619. ]
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "MIT"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Nicolas Grekas",
  6628. "email": "p@tchwork.com"
  6629. },
  6630. {
  6631. "name": "Symfony Community",
  6632. "homepage": "https://symfony.com/contributors"
  6633. }
  6634. ],
  6635. "description": "Enables decoupling PHP applications from global state",
  6636. "homepage": "https://symfony.com",
  6637. "keywords": [
  6638. "runtime"
  6639. ],
  6640. "support": {
  6641. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6642. },
  6643. "funding": [
  6644. {
  6645. "url": "https://symfony.com/sponsor",
  6646. "type": "custom"
  6647. },
  6648. {
  6649. "url": "https://github.com/fabpot",
  6650. "type": "github"
  6651. },
  6652. {
  6653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6654. "type": "tidelift"
  6655. }
  6656. ],
  6657. "time": "2024-05-31T14:55:39+00:00"
  6658. },
  6659. {
  6660. "name": "symfony/security-bundle",
  6661. "version": "v7.1.4",
  6662. "source": {
  6663. "type": "git",
  6664. "url": "https://github.com/symfony/security-bundle.git",
  6665. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  6666. },
  6667. "dist": {
  6668. "type": "zip",
  6669. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6670. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6671. "shasum": ""
  6672. },
  6673. "require": {
  6674. "composer-runtime-api": ">=2.1",
  6675. "ext-xml": "*",
  6676. "php": ">=8.2",
  6677. "symfony/clock": "^6.4|^7.0",
  6678. "symfony/config": "^6.4|^7.0",
  6679. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6680. "symfony/event-dispatcher": "^6.4|^7.0",
  6681. "symfony/http-foundation": "^6.4|^7.0",
  6682. "symfony/http-kernel": "^6.4|^7.0",
  6683. "symfony/password-hasher": "^6.4|^7.0",
  6684. "symfony/security-core": "^6.4|^7.0",
  6685. "symfony/security-csrf": "^6.4|^7.0",
  6686. "symfony/security-http": "^7.1",
  6687. "symfony/service-contracts": "^2.5|^3"
  6688. },
  6689. "conflict": {
  6690. "symfony/browser-kit": "<6.4",
  6691. "symfony/console": "<6.4",
  6692. "symfony/framework-bundle": "<6.4",
  6693. "symfony/http-client": "<6.4",
  6694. "symfony/ldap": "<6.4",
  6695. "symfony/serializer": "<6.4",
  6696. "symfony/twig-bundle": "<6.4",
  6697. "symfony/validator": "<6.4"
  6698. },
  6699. "require-dev": {
  6700. "symfony/asset": "^6.4|^7.0",
  6701. "symfony/browser-kit": "^6.4|^7.0",
  6702. "symfony/console": "^6.4|^7.0",
  6703. "symfony/css-selector": "^6.4|^7.0",
  6704. "symfony/dom-crawler": "^6.4|^7.0",
  6705. "symfony/expression-language": "^6.4|^7.0",
  6706. "symfony/form": "^6.4|^7.0",
  6707. "symfony/framework-bundle": "^6.4|^7.0",
  6708. "symfony/http-client": "^6.4|^7.0",
  6709. "symfony/ldap": "^6.4|^7.0",
  6710. "symfony/process": "^6.4|^7.0",
  6711. "symfony/rate-limiter": "^6.4|^7.0",
  6712. "symfony/serializer": "^6.4|^7.0",
  6713. "symfony/translation": "^6.4|^7.0",
  6714. "symfony/twig-bridge": "^6.4|^7.0",
  6715. "symfony/twig-bundle": "^6.4|^7.0",
  6716. "symfony/validator": "^6.4|^7.0",
  6717. "symfony/yaml": "^6.4|^7.0",
  6718. "twig/twig": "^3.0.4",
  6719. "web-token/jwt-library": "^3.3.2|^4.0"
  6720. },
  6721. "type": "symfony-bundle",
  6722. "autoload": {
  6723. "psr-4": {
  6724. "Symfony\\Bundle\\SecurityBundle\\": ""
  6725. },
  6726. "exclude-from-classmap": [
  6727. "/Tests/"
  6728. ]
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "MIT"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Fabien Potencier",
  6737. "email": "fabien@symfony.com"
  6738. },
  6739. {
  6740. "name": "Symfony Community",
  6741. "homepage": "https://symfony.com/contributors"
  6742. }
  6743. ],
  6744. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6745. "homepage": "https://symfony.com",
  6746. "support": {
  6747. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  6748. },
  6749. "funding": [
  6750. {
  6751. "url": "https://symfony.com/sponsor",
  6752. "type": "custom"
  6753. },
  6754. {
  6755. "url": "https://github.com/fabpot",
  6756. "type": "github"
  6757. },
  6758. {
  6759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6760. "type": "tidelift"
  6761. }
  6762. ],
  6763. "time": "2024-08-20T11:38:55+00:00"
  6764. },
  6765. {
  6766. "name": "symfony/security-core",
  6767. "version": "v7.1.5",
  6768. "source": {
  6769. "type": "git",
  6770. "url": "https://github.com/symfony/security-core.git",
  6771. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  6772. },
  6773. "dist": {
  6774. "type": "zip",
  6775. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  6776. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  6777. "shasum": ""
  6778. },
  6779. "require": {
  6780. "php": ">=8.2",
  6781. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6782. "symfony/password-hasher": "^6.4|^7.0",
  6783. "symfony/service-contracts": "^2.5|^3"
  6784. },
  6785. "conflict": {
  6786. "symfony/dependency-injection": "<6.4",
  6787. "symfony/event-dispatcher": "<6.4",
  6788. "symfony/http-foundation": "<6.4",
  6789. "symfony/ldap": "<6.4",
  6790. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6791. "symfony/validator": "<6.4"
  6792. },
  6793. "require-dev": {
  6794. "psr/cache": "^1.0|^2.0|^3.0",
  6795. "psr/container": "^1.1|^2.0",
  6796. "psr/log": "^1|^2|^3",
  6797. "symfony/cache": "^6.4|^7.0",
  6798. "symfony/dependency-injection": "^6.4|^7.0",
  6799. "symfony/event-dispatcher": "^6.4|^7.0",
  6800. "symfony/expression-language": "^6.4|^7.0",
  6801. "symfony/http-foundation": "^6.4|^7.0",
  6802. "symfony/ldap": "^6.4|^7.0",
  6803. "symfony/string": "^6.4|^7.0",
  6804. "symfony/translation": "^6.4.3|^7.0.3",
  6805. "symfony/validator": "^6.4|^7.0"
  6806. },
  6807. "type": "library",
  6808. "autoload": {
  6809. "psr-4": {
  6810. "Symfony\\Component\\Security\\Core\\": ""
  6811. },
  6812. "exclude-from-classmap": [
  6813. "/Tests/"
  6814. ]
  6815. },
  6816. "notification-url": "https://packagist.org/downloads/",
  6817. "license": [
  6818. "MIT"
  6819. ],
  6820. "authors": [
  6821. {
  6822. "name": "Fabien Potencier",
  6823. "email": "fabien@symfony.com"
  6824. },
  6825. {
  6826. "name": "Symfony Community",
  6827. "homepage": "https://symfony.com/contributors"
  6828. }
  6829. ],
  6830. "description": "Symfony Security Component - Core Library",
  6831. "homepage": "https://symfony.com",
  6832. "support": {
  6833. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  6834. },
  6835. "funding": [
  6836. {
  6837. "url": "https://symfony.com/sponsor",
  6838. "type": "custom"
  6839. },
  6840. {
  6841. "url": "https://github.com/fabpot",
  6842. "type": "github"
  6843. },
  6844. {
  6845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6846. "type": "tidelift"
  6847. }
  6848. ],
  6849. "time": "2024-09-20T13:35:23+00:00"
  6850. },
  6851. {
  6852. "name": "symfony/security-csrf",
  6853. "version": "v7.1.1",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/symfony/security-csrf.git",
  6857. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6862. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6863. "shasum": ""
  6864. },
  6865. "require": {
  6866. "php": ">=8.2",
  6867. "symfony/security-core": "^6.4|^7.0"
  6868. },
  6869. "conflict": {
  6870. "symfony/http-foundation": "<6.4"
  6871. },
  6872. "require-dev": {
  6873. "symfony/http-foundation": "^6.4|^7.0"
  6874. },
  6875. "type": "library",
  6876. "autoload": {
  6877. "psr-4": {
  6878. "Symfony\\Component\\Security\\Csrf\\": ""
  6879. },
  6880. "exclude-from-classmap": [
  6881. "/Tests/"
  6882. ]
  6883. },
  6884. "notification-url": "https://packagist.org/downloads/",
  6885. "license": [
  6886. "MIT"
  6887. ],
  6888. "authors": [
  6889. {
  6890. "name": "Fabien Potencier",
  6891. "email": "fabien@symfony.com"
  6892. },
  6893. {
  6894. "name": "Symfony Community",
  6895. "homepage": "https://symfony.com/contributors"
  6896. }
  6897. ],
  6898. "description": "Symfony Security Component - CSRF Library",
  6899. "homepage": "https://symfony.com",
  6900. "support": {
  6901. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6902. },
  6903. "funding": [
  6904. {
  6905. "url": "https://symfony.com/sponsor",
  6906. "type": "custom"
  6907. },
  6908. {
  6909. "url": "https://github.com/fabpot",
  6910. "type": "github"
  6911. },
  6912. {
  6913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6914. "type": "tidelift"
  6915. }
  6916. ],
  6917. "time": "2024-05-31T14:57:53+00:00"
  6918. },
  6919. {
  6920. "name": "symfony/security-http",
  6921. "version": "v7.1.5",
  6922. "source": {
  6923. "type": "git",
  6924. "url": "https://github.com/symfony/security-http.git",
  6925. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  6926. },
  6927. "dist": {
  6928. "type": "zip",
  6929. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  6930. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  6931. "shasum": ""
  6932. },
  6933. "require": {
  6934. "php": ">=8.2",
  6935. "symfony/deprecation-contracts": "^2.5|^3",
  6936. "symfony/http-foundation": "^6.4|^7.0",
  6937. "symfony/http-kernel": "^6.4|^7.0",
  6938. "symfony/polyfill-mbstring": "~1.0",
  6939. "symfony/property-access": "^6.4|^7.0",
  6940. "symfony/security-core": "^6.4|^7.0",
  6941. "symfony/service-contracts": "^2.5|^3"
  6942. },
  6943. "conflict": {
  6944. "symfony/clock": "<6.4",
  6945. "symfony/event-dispatcher": "<6.4",
  6946. "symfony/http-client-contracts": "<3.0",
  6947. "symfony/security-bundle": "<6.4",
  6948. "symfony/security-csrf": "<6.4"
  6949. },
  6950. "require-dev": {
  6951. "psr/log": "^1|^2|^3",
  6952. "symfony/cache": "^6.4|^7.0",
  6953. "symfony/clock": "^6.4|^7.0",
  6954. "symfony/expression-language": "^6.4|^7.0",
  6955. "symfony/http-client": "^6.4|^7.0",
  6956. "symfony/http-client-contracts": "^3.0",
  6957. "symfony/rate-limiter": "^6.4|^7.0",
  6958. "symfony/routing": "^6.4|^7.0",
  6959. "symfony/security-csrf": "^6.4|^7.0",
  6960. "symfony/translation": "^6.4|^7.0",
  6961. "web-token/jwt-library": "^3.3.2|^4.0"
  6962. },
  6963. "type": "library",
  6964. "autoload": {
  6965. "psr-4": {
  6966. "Symfony\\Component\\Security\\Http\\": ""
  6967. },
  6968. "exclude-from-classmap": [
  6969. "/Tests/"
  6970. ]
  6971. },
  6972. "notification-url": "https://packagist.org/downloads/",
  6973. "license": [
  6974. "MIT"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Fabien Potencier",
  6979. "email": "fabien@symfony.com"
  6980. },
  6981. {
  6982. "name": "Symfony Community",
  6983. "homepage": "https://symfony.com/contributors"
  6984. }
  6985. ],
  6986. "description": "Symfony Security Component - HTTP Integration",
  6987. "homepage": "https://symfony.com",
  6988. "support": {
  6989. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  6990. },
  6991. "funding": [
  6992. {
  6993. "url": "https://symfony.com/sponsor",
  6994. "type": "custom"
  6995. },
  6996. {
  6997. "url": "https://github.com/fabpot",
  6998. "type": "github"
  6999. },
  7000. {
  7001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7002. "type": "tidelift"
  7003. }
  7004. ],
  7005. "time": "2024-09-20T08:28:38+00:00"
  7006. },
  7007. {
  7008. "name": "symfony/serializer",
  7009. "version": "v7.1.5",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/symfony/serializer.git",
  7013. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  7018. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  7019. "shasum": ""
  7020. },
  7021. "require": {
  7022. "php": ">=8.2",
  7023. "symfony/deprecation-contracts": "^2.5|^3",
  7024. "symfony/polyfill-ctype": "~1.8"
  7025. },
  7026. "conflict": {
  7027. "phpdocumentor/reflection-docblock": "<3.2.2",
  7028. "phpdocumentor/type-resolver": "<1.4.0",
  7029. "symfony/dependency-injection": "<6.4",
  7030. "symfony/property-access": "<6.4",
  7031. "symfony/property-info": "<6.4",
  7032. "symfony/type-info": "<7.1.5",
  7033. "symfony/uid": "<6.4",
  7034. "symfony/validator": "<6.4",
  7035. "symfony/yaml": "<6.4"
  7036. },
  7037. "require-dev": {
  7038. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7039. "phpstan/phpdoc-parser": "^1.0",
  7040. "seld/jsonlint": "^1.10",
  7041. "symfony/cache": "^6.4|^7.0",
  7042. "symfony/config": "^6.4|^7.0",
  7043. "symfony/console": "^6.4|^7.0",
  7044. "symfony/dependency-injection": "^6.4|^7.0",
  7045. "symfony/error-handler": "^6.4|^7.0",
  7046. "symfony/filesystem": "^6.4|^7.0",
  7047. "symfony/form": "^6.4|^7.0",
  7048. "symfony/http-foundation": "^6.4|^7.0",
  7049. "symfony/http-kernel": "^6.4|^7.0",
  7050. "symfony/messenger": "^6.4|^7.0",
  7051. "symfony/mime": "^6.4|^7.0",
  7052. "symfony/property-access": "^6.4|^7.0",
  7053. "symfony/property-info": "^6.4|^7.0",
  7054. "symfony/translation-contracts": "^2.5|^3",
  7055. "symfony/type-info": "^7.1.5",
  7056. "symfony/uid": "^6.4|^7.0",
  7057. "symfony/validator": "^6.4|^7.0",
  7058. "symfony/var-dumper": "^6.4|^7.0",
  7059. "symfony/var-exporter": "^6.4|^7.0",
  7060. "symfony/yaml": "^6.4|^7.0"
  7061. },
  7062. "type": "library",
  7063. "autoload": {
  7064. "psr-4": {
  7065. "Symfony\\Component\\Serializer\\": ""
  7066. },
  7067. "exclude-from-classmap": [
  7068. "/Tests/"
  7069. ]
  7070. },
  7071. "notification-url": "https://packagist.org/downloads/",
  7072. "license": [
  7073. "MIT"
  7074. ],
  7075. "authors": [
  7076. {
  7077. "name": "Fabien Potencier",
  7078. "email": "fabien@symfony.com"
  7079. },
  7080. {
  7081. "name": "Symfony Community",
  7082. "homepage": "https://symfony.com/contributors"
  7083. }
  7084. ],
  7085. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7086. "homepage": "https://symfony.com",
  7087. "support": {
  7088. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  7089. },
  7090. "funding": [
  7091. {
  7092. "url": "https://symfony.com/sponsor",
  7093. "type": "custom"
  7094. },
  7095. {
  7096. "url": "https://github.com/fabpot",
  7097. "type": "github"
  7098. },
  7099. {
  7100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7101. "type": "tidelift"
  7102. }
  7103. ],
  7104. "time": "2024-09-20T12:13:15+00:00"
  7105. },
  7106. {
  7107. "name": "symfony/service-contracts",
  7108. "version": "v3.5.0",
  7109. "source": {
  7110. "type": "git",
  7111. "url": "https://github.com/symfony/service-contracts.git",
  7112. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7113. },
  7114. "dist": {
  7115. "type": "zip",
  7116. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7117. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7118. "shasum": ""
  7119. },
  7120. "require": {
  7121. "php": ">=8.1",
  7122. "psr/container": "^1.1|^2.0",
  7123. "symfony/deprecation-contracts": "^2.5|^3"
  7124. },
  7125. "conflict": {
  7126. "ext-psr": "<1.1|>=2"
  7127. },
  7128. "type": "library",
  7129. "extra": {
  7130. "branch-alias": {
  7131. "dev-main": "3.5-dev"
  7132. },
  7133. "thanks": {
  7134. "name": "symfony/contracts",
  7135. "url": "https://github.com/symfony/contracts"
  7136. }
  7137. },
  7138. "autoload": {
  7139. "psr-4": {
  7140. "Symfony\\Contracts\\Service\\": ""
  7141. },
  7142. "exclude-from-classmap": [
  7143. "/Test/"
  7144. ]
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Nicolas Grekas",
  7153. "email": "p@tchwork.com"
  7154. },
  7155. {
  7156. "name": "Symfony Community",
  7157. "homepage": "https://symfony.com/contributors"
  7158. }
  7159. ],
  7160. "description": "Generic abstractions related to writing services",
  7161. "homepage": "https://symfony.com",
  7162. "keywords": [
  7163. "abstractions",
  7164. "contracts",
  7165. "decoupling",
  7166. "interfaces",
  7167. "interoperability",
  7168. "standards"
  7169. ],
  7170. "support": {
  7171. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7172. },
  7173. "funding": [
  7174. {
  7175. "url": "https://symfony.com/sponsor",
  7176. "type": "custom"
  7177. },
  7178. {
  7179. "url": "https://github.com/fabpot",
  7180. "type": "github"
  7181. },
  7182. {
  7183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7184. "type": "tidelift"
  7185. }
  7186. ],
  7187. "time": "2024-04-18T09:32:20+00:00"
  7188. },
  7189. {
  7190. "name": "symfony/stimulus-bundle",
  7191. "version": "v2.21.0",
  7192. "source": {
  7193. "type": "git",
  7194. "url": "https://github.com/symfony/stimulus-bundle.git",
  7195. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  7196. },
  7197. "dist": {
  7198. "type": "zip",
  7199. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  7200. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  7201. "shasum": ""
  7202. },
  7203. "require": {
  7204. "php": ">=8.1",
  7205. "symfony/config": "^5.4|^6.0|^7.0",
  7206. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7207. "symfony/deprecation-contracts": "^2.0|^3.0",
  7208. "symfony/finder": "^5.4|^6.0|^7.0",
  7209. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7210. "twig/twig": "^2.15.3|^3.8"
  7211. },
  7212. "require-dev": {
  7213. "symfony/asset-mapper": "^6.3|^7.0",
  7214. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7215. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7216. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7217. "zenstruck/browser": "^1.4"
  7218. },
  7219. "type": "symfony-bundle",
  7220. "autoload": {
  7221. "psr-4": {
  7222. "Symfony\\UX\\StimulusBundle\\": "src"
  7223. }
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Symfony Community",
  7232. "homepage": "https://symfony.com/contributors"
  7233. }
  7234. ],
  7235. "description": "Integration with your Symfony app & Stimulus!",
  7236. "keywords": [
  7237. "symfony-ux"
  7238. ],
  7239. "support": {
  7240. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  7241. },
  7242. "funding": [
  7243. {
  7244. "url": "https://symfony.com/sponsor",
  7245. "type": "custom"
  7246. },
  7247. {
  7248. "url": "https://github.com/fabpot",
  7249. "type": "github"
  7250. },
  7251. {
  7252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7253. "type": "tidelift"
  7254. }
  7255. ],
  7256. "time": "2024-10-05T22:11:16+00:00"
  7257. },
  7258. {
  7259. "name": "symfony/stopwatch",
  7260. "version": "v7.1.1",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/symfony/stopwatch.git",
  7264. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  7269. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  7270. "shasum": ""
  7271. },
  7272. "require": {
  7273. "php": ">=8.2",
  7274. "symfony/service-contracts": "^2.5|^3"
  7275. },
  7276. "type": "library",
  7277. "autoload": {
  7278. "psr-4": {
  7279. "Symfony\\Component\\Stopwatch\\": ""
  7280. },
  7281. "exclude-from-classmap": [
  7282. "/Tests/"
  7283. ]
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "MIT"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Fabien Potencier",
  7292. "email": "fabien@symfony.com"
  7293. },
  7294. {
  7295. "name": "Symfony Community",
  7296. "homepage": "https://symfony.com/contributors"
  7297. }
  7298. ],
  7299. "description": "Provides a way to profile code",
  7300. "homepage": "https://symfony.com",
  7301. "support": {
  7302. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  7303. },
  7304. "funding": [
  7305. {
  7306. "url": "https://symfony.com/sponsor",
  7307. "type": "custom"
  7308. },
  7309. {
  7310. "url": "https://github.com/fabpot",
  7311. "type": "github"
  7312. },
  7313. {
  7314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7315. "type": "tidelift"
  7316. }
  7317. ],
  7318. "time": "2024-05-31T14:57:53+00:00"
  7319. },
  7320. {
  7321. "name": "symfony/string",
  7322. "version": "v7.1.5",
  7323. "source": {
  7324. "type": "git",
  7325. "url": "https://github.com/symfony/string.git",
  7326. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  7327. },
  7328. "dist": {
  7329. "type": "zip",
  7330. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  7331. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  7332. "shasum": ""
  7333. },
  7334. "require": {
  7335. "php": ">=8.2",
  7336. "symfony/polyfill-ctype": "~1.8",
  7337. "symfony/polyfill-intl-grapheme": "~1.0",
  7338. "symfony/polyfill-intl-normalizer": "~1.0",
  7339. "symfony/polyfill-mbstring": "~1.0"
  7340. },
  7341. "conflict": {
  7342. "symfony/translation-contracts": "<2.5"
  7343. },
  7344. "require-dev": {
  7345. "symfony/emoji": "^7.1",
  7346. "symfony/error-handler": "^6.4|^7.0",
  7347. "symfony/http-client": "^6.4|^7.0",
  7348. "symfony/intl": "^6.4|^7.0",
  7349. "symfony/translation-contracts": "^2.5|^3.0",
  7350. "symfony/var-exporter": "^6.4|^7.0"
  7351. },
  7352. "type": "library",
  7353. "autoload": {
  7354. "files": [
  7355. "Resources/functions.php"
  7356. ],
  7357. "psr-4": {
  7358. "Symfony\\Component\\String\\": ""
  7359. },
  7360. "exclude-from-classmap": [
  7361. "/Tests/"
  7362. ]
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "license": [
  7366. "MIT"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "Nicolas Grekas",
  7371. "email": "p@tchwork.com"
  7372. },
  7373. {
  7374. "name": "Symfony Community",
  7375. "homepage": "https://symfony.com/contributors"
  7376. }
  7377. ],
  7378. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7379. "homepage": "https://symfony.com",
  7380. "keywords": [
  7381. "grapheme",
  7382. "i18n",
  7383. "string",
  7384. "unicode",
  7385. "utf-8",
  7386. "utf8"
  7387. ],
  7388. "support": {
  7389. "source": "https://github.com/symfony/string/tree/v7.1.5"
  7390. },
  7391. "funding": [
  7392. {
  7393. "url": "https://symfony.com/sponsor",
  7394. "type": "custom"
  7395. },
  7396. {
  7397. "url": "https://github.com/fabpot",
  7398. "type": "github"
  7399. },
  7400. {
  7401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7402. "type": "tidelift"
  7403. }
  7404. ],
  7405. "time": "2024-09-20T08:28:38+00:00"
  7406. },
  7407. {
  7408. "name": "symfony/translation",
  7409. "version": "v7.1.5",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://github.com/symfony/translation.git",
  7413. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  7418. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  7419. "shasum": ""
  7420. },
  7421. "require": {
  7422. "php": ">=8.2",
  7423. "symfony/polyfill-mbstring": "~1.0",
  7424. "symfony/translation-contracts": "^2.5|^3.0"
  7425. },
  7426. "conflict": {
  7427. "symfony/config": "<6.4",
  7428. "symfony/console": "<6.4",
  7429. "symfony/dependency-injection": "<6.4",
  7430. "symfony/http-client-contracts": "<2.5",
  7431. "symfony/http-kernel": "<6.4",
  7432. "symfony/service-contracts": "<2.5",
  7433. "symfony/twig-bundle": "<6.4",
  7434. "symfony/yaml": "<6.4"
  7435. },
  7436. "provide": {
  7437. "symfony/translation-implementation": "2.3|3.0"
  7438. },
  7439. "require-dev": {
  7440. "nikic/php-parser": "^4.18|^5.0",
  7441. "psr/log": "^1|^2|^3",
  7442. "symfony/config": "^6.4|^7.0",
  7443. "symfony/console": "^6.4|^7.0",
  7444. "symfony/dependency-injection": "^6.4|^7.0",
  7445. "symfony/finder": "^6.4|^7.0",
  7446. "symfony/http-client-contracts": "^2.5|^3.0",
  7447. "symfony/http-kernel": "^6.4|^7.0",
  7448. "symfony/intl": "^6.4|^7.0",
  7449. "symfony/polyfill-intl-icu": "^1.21",
  7450. "symfony/routing": "^6.4|^7.0",
  7451. "symfony/service-contracts": "^2.5|^3",
  7452. "symfony/yaml": "^6.4|^7.0"
  7453. },
  7454. "type": "library",
  7455. "autoload": {
  7456. "files": [
  7457. "Resources/functions.php"
  7458. ],
  7459. "psr-4": {
  7460. "Symfony\\Component\\Translation\\": ""
  7461. },
  7462. "exclude-from-classmap": [
  7463. "/Tests/"
  7464. ]
  7465. },
  7466. "notification-url": "https://packagist.org/downloads/",
  7467. "license": [
  7468. "MIT"
  7469. ],
  7470. "authors": [
  7471. {
  7472. "name": "Fabien Potencier",
  7473. "email": "fabien@symfony.com"
  7474. },
  7475. {
  7476. "name": "Symfony Community",
  7477. "homepage": "https://symfony.com/contributors"
  7478. }
  7479. ],
  7480. "description": "Provides tools to internationalize your application",
  7481. "homepage": "https://symfony.com",
  7482. "support": {
  7483. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  7484. },
  7485. "funding": [
  7486. {
  7487. "url": "https://symfony.com/sponsor",
  7488. "type": "custom"
  7489. },
  7490. {
  7491. "url": "https://github.com/fabpot",
  7492. "type": "github"
  7493. },
  7494. {
  7495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7496. "type": "tidelift"
  7497. }
  7498. ],
  7499. "time": "2024-09-16T06:30:38+00:00"
  7500. },
  7501. {
  7502. "name": "symfony/translation-contracts",
  7503. "version": "v3.5.0",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/symfony/translation-contracts.git",
  7507. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7512. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "php": ">=8.1"
  7517. },
  7518. "type": "library",
  7519. "extra": {
  7520. "branch-alias": {
  7521. "dev-main": "3.5-dev"
  7522. },
  7523. "thanks": {
  7524. "name": "symfony/contracts",
  7525. "url": "https://github.com/symfony/contracts"
  7526. }
  7527. },
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Symfony\\Contracts\\Translation\\": ""
  7531. },
  7532. "exclude-from-classmap": [
  7533. "/Test/"
  7534. ]
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "MIT"
  7539. ],
  7540. "authors": [
  7541. {
  7542. "name": "Nicolas Grekas",
  7543. "email": "p@tchwork.com"
  7544. },
  7545. {
  7546. "name": "Symfony Community",
  7547. "homepage": "https://symfony.com/contributors"
  7548. }
  7549. ],
  7550. "description": "Generic abstractions related to translation",
  7551. "homepage": "https://symfony.com",
  7552. "keywords": [
  7553. "abstractions",
  7554. "contracts",
  7555. "decoupling",
  7556. "interfaces",
  7557. "interoperability",
  7558. "standards"
  7559. ],
  7560. "support": {
  7561. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7562. },
  7563. "funding": [
  7564. {
  7565. "url": "https://symfony.com/sponsor",
  7566. "type": "custom"
  7567. },
  7568. {
  7569. "url": "https://github.com/fabpot",
  7570. "type": "github"
  7571. },
  7572. {
  7573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7574. "type": "tidelift"
  7575. }
  7576. ],
  7577. "time": "2024-04-18T09:32:20+00:00"
  7578. },
  7579. {
  7580. "name": "symfony/twig-bridge",
  7581. "version": "v7.1.5",
  7582. "source": {
  7583. "type": "git",
  7584. "url": "https://github.com/symfony/twig-bridge.git",
  7585. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  7586. },
  7587. "dist": {
  7588. "type": "zip",
  7589. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  7590. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  7591. "shasum": ""
  7592. },
  7593. "require": {
  7594. "php": ">=8.2",
  7595. "symfony/translation-contracts": "^2.5|^3",
  7596. "twig/twig": "^3.9"
  7597. },
  7598. "conflict": {
  7599. "phpdocumentor/reflection-docblock": "<3.2.2",
  7600. "phpdocumentor/type-resolver": "<1.4.0",
  7601. "symfony/console": "<6.4",
  7602. "symfony/form": "<6.4",
  7603. "symfony/http-foundation": "<6.4",
  7604. "symfony/http-kernel": "<6.4",
  7605. "symfony/mime": "<6.4",
  7606. "symfony/serializer": "<6.4",
  7607. "symfony/translation": "<6.4",
  7608. "symfony/workflow": "<6.4"
  7609. },
  7610. "require-dev": {
  7611. "egulias/email-validator": "^2.1.10|^3|^4",
  7612. "league/html-to-markdown": "^5.0",
  7613. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7614. "symfony/asset": "^6.4|^7.0",
  7615. "symfony/asset-mapper": "^6.4|^7.0",
  7616. "symfony/console": "^6.4|^7.0",
  7617. "symfony/dependency-injection": "^6.4|^7.0",
  7618. "symfony/emoji": "^7.1",
  7619. "symfony/expression-language": "^6.4|^7.0",
  7620. "symfony/finder": "^6.4|^7.0",
  7621. "symfony/form": "^6.4|^7.0",
  7622. "symfony/html-sanitizer": "^6.4|^7.0",
  7623. "symfony/http-foundation": "^6.4|^7.0",
  7624. "symfony/http-kernel": "^6.4|^7.0",
  7625. "symfony/intl": "^6.4|^7.0",
  7626. "symfony/mime": "^6.4|^7.0",
  7627. "symfony/polyfill-intl-icu": "~1.0",
  7628. "symfony/property-info": "^6.4|^7.0",
  7629. "symfony/routing": "^6.4|^7.0",
  7630. "symfony/security-acl": "^2.8|^3.0",
  7631. "symfony/security-core": "^6.4|^7.0",
  7632. "symfony/security-csrf": "^6.4|^7.0",
  7633. "symfony/security-http": "^6.4|^7.0",
  7634. "symfony/serializer": "^6.4.3|^7.0.3",
  7635. "symfony/stopwatch": "^6.4|^7.0",
  7636. "symfony/translation": "^6.4|^7.0",
  7637. "symfony/web-link": "^6.4|^7.0",
  7638. "symfony/workflow": "^6.4|^7.0",
  7639. "symfony/yaml": "^6.4|^7.0",
  7640. "twig/cssinliner-extra": "^2.12|^3",
  7641. "twig/inky-extra": "^2.12|^3",
  7642. "twig/markdown-extra": "^2.12|^3"
  7643. },
  7644. "type": "symfony-bridge",
  7645. "autoload": {
  7646. "psr-4": {
  7647. "Symfony\\Bridge\\Twig\\": ""
  7648. },
  7649. "exclude-from-classmap": [
  7650. "/Tests/"
  7651. ]
  7652. },
  7653. "notification-url": "https://packagist.org/downloads/",
  7654. "license": [
  7655. "MIT"
  7656. ],
  7657. "authors": [
  7658. {
  7659. "name": "Fabien Potencier",
  7660. "email": "fabien@symfony.com"
  7661. },
  7662. {
  7663. "name": "Symfony Community",
  7664. "homepage": "https://symfony.com/contributors"
  7665. }
  7666. ],
  7667. "description": "Provides integration for Twig with various Symfony components",
  7668. "homepage": "https://symfony.com",
  7669. "support": {
  7670. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  7671. },
  7672. "funding": [
  7673. {
  7674. "url": "https://symfony.com/sponsor",
  7675. "type": "custom"
  7676. },
  7677. {
  7678. "url": "https://github.com/fabpot",
  7679. "type": "github"
  7680. },
  7681. {
  7682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7683. "type": "tidelift"
  7684. }
  7685. ],
  7686. "time": "2024-09-15T06:48:17+00:00"
  7687. },
  7688. {
  7689. "name": "symfony/twig-bundle",
  7690. "version": "v7.1.5",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/symfony/twig-bundle.git",
  7694. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7699. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "composer-runtime-api": ">=2.1",
  7704. "php": ">=8.2",
  7705. "symfony/config": "^6.4|^7.0",
  7706. "symfony/dependency-injection": "^6.4|^7.0",
  7707. "symfony/http-foundation": "^6.4|^7.0",
  7708. "symfony/http-kernel": "^6.4|^7.0",
  7709. "symfony/twig-bridge": "^6.4|^7.0",
  7710. "twig/twig": "^3.0.4"
  7711. },
  7712. "conflict": {
  7713. "symfony/framework-bundle": "<6.4",
  7714. "symfony/translation": "<6.4"
  7715. },
  7716. "require-dev": {
  7717. "symfony/asset": "^6.4|^7.0",
  7718. "symfony/expression-language": "^6.4|^7.0",
  7719. "symfony/finder": "^6.4|^7.0",
  7720. "symfony/form": "^6.4|^7.0",
  7721. "symfony/framework-bundle": "^6.4|^7.0",
  7722. "symfony/routing": "^6.4|^7.0",
  7723. "symfony/stopwatch": "^6.4|^7.0",
  7724. "symfony/translation": "^6.4|^7.0",
  7725. "symfony/web-link": "^6.4|^7.0",
  7726. "symfony/yaml": "^6.4|^7.0"
  7727. },
  7728. "type": "symfony-bundle",
  7729. "autoload": {
  7730. "psr-4": {
  7731. "Symfony\\Bundle\\TwigBundle\\": ""
  7732. },
  7733. "exclude-from-classmap": [
  7734. "/Tests/"
  7735. ]
  7736. },
  7737. "notification-url": "https://packagist.org/downloads/",
  7738. "license": [
  7739. "MIT"
  7740. ],
  7741. "authors": [
  7742. {
  7743. "name": "Fabien Potencier",
  7744. "email": "fabien@symfony.com"
  7745. },
  7746. {
  7747. "name": "Symfony Community",
  7748. "homepage": "https://symfony.com/contributors"
  7749. }
  7750. ],
  7751. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7752. "homepage": "https://symfony.com",
  7753. "support": {
  7754. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  7755. },
  7756. "funding": [
  7757. {
  7758. "url": "https://symfony.com/sponsor",
  7759. "type": "custom"
  7760. },
  7761. {
  7762. "url": "https://github.com/fabpot",
  7763. "type": "github"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2024-09-08T12:32:26+00:00"
  7771. },
  7772. {
  7773. "name": "symfony/type-info",
  7774. "version": "v7.1.5",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/symfony/type-info.git",
  7778. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7783. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": ">=8.2",
  7788. "psr/container": "^1.1|^2.0"
  7789. },
  7790. "conflict": {
  7791. "phpstan/phpdoc-parser": "<1.0",
  7792. "symfony/dependency-injection": "<6.4",
  7793. "symfony/property-info": "<6.4"
  7794. },
  7795. "require-dev": {
  7796. "phpstan/phpdoc-parser": "^1.0",
  7797. "symfony/dependency-injection": "^6.4|^7.0",
  7798. "symfony/property-info": "^6.4|^7.0"
  7799. },
  7800. "type": "library",
  7801. "autoload": {
  7802. "psr-4": {
  7803. "Symfony\\Component\\TypeInfo\\": ""
  7804. },
  7805. "exclude-from-classmap": [
  7806. "/Tests/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Mathias Arlaud",
  7816. "email": "mathias.arlaud@gmail.com"
  7817. },
  7818. {
  7819. "name": "Baptiste LEDUC",
  7820. "email": "baptiste.leduc@gmail.com"
  7821. },
  7822. {
  7823. "name": "Symfony Community",
  7824. "homepage": "https://symfony.com/contributors"
  7825. }
  7826. ],
  7827. "description": "Extracts PHP types information.",
  7828. "homepage": "https://symfony.com",
  7829. "keywords": [
  7830. "PHPStan",
  7831. "phpdoc",
  7832. "symfony",
  7833. "type"
  7834. ],
  7835. "support": {
  7836. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  7837. },
  7838. "funding": [
  7839. {
  7840. "url": "https://symfony.com/sponsor",
  7841. "type": "custom"
  7842. },
  7843. {
  7844. "url": "https://github.com/fabpot",
  7845. "type": "github"
  7846. },
  7847. {
  7848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7849. "type": "tidelift"
  7850. }
  7851. ],
  7852. "time": "2024-09-19T21:48:23+00:00"
  7853. },
  7854. {
  7855. "name": "symfony/ux-turbo",
  7856. "version": "v2.21.0",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/symfony/ux-turbo.git",
  7860. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7865. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7866. "shasum": ""
  7867. },
  7868. "require": {
  7869. "php": ">=8.1",
  7870. "symfony/stimulus-bundle": "^2.9.1"
  7871. },
  7872. "conflict": {
  7873. "symfony/flex": "<1.13"
  7874. },
  7875. "require-dev": {
  7876. "dbrekelmans/bdi": "dev-main",
  7877. "doctrine/doctrine-bundle": "^2.4.3",
  7878. "doctrine/orm": "^2.8 | 3.0",
  7879. "phpstan/phpstan": "^1.10",
  7880. "symfony/asset-mapper": "^6.4|^7.0",
  7881. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7882. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7883. "symfony/form": "^5.4|^6.0|^7.0",
  7884. "symfony/framework-bundle": "^6.4|^7.0",
  7885. "symfony/mercure-bundle": "^0.3.7",
  7886. "symfony/messenger": "^5.4|^6.0|^7.0",
  7887. "symfony/panther": "^2.1",
  7888. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7889. "symfony/process": "^5.4|6.3.*|^7.0",
  7890. "symfony/property-access": "^5.4|^6.0|^7.0",
  7891. "symfony/security-core": "^5.4|^6.0|^7.0",
  7892. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7893. "symfony/twig-bundle": "^6.4|^7.0",
  7894. "symfony/ux-twig-component": "^2.21",
  7895. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7896. },
  7897. "type": "symfony-bundle",
  7898. "extra": {
  7899. "thanks": {
  7900. "name": "symfony/ux",
  7901. "url": "https://github.com/symfony/ux"
  7902. }
  7903. },
  7904. "autoload": {
  7905. "psr-4": {
  7906. "Symfony\\UX\\Turbo\\": "src/"
  7907. }
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "MIT"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Kévin Dunglas",
  7916. "email": "kevin@dunglas.fr"
  7917. },
  7918. {
  7919. "name": "Symfony Community",
  7920. "homepage": "https://symfony.com/contributors"
  7921. }
  7922. ],
  7923. "description": "Hotwire Turbo integration for Symfony",
  7924. "homepage": "https://symfony.com",
  7925. "keywords": [
  7926. "hotwire",
  7927. "javascript",
  7928. "mercure",
  7929. "symfony-ux",
  7930. "turbo",
  7931. "turbo-stream"
  7932. ],
  7933. "support": {
  7934. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  7935. },
  7936. "funding": [
  7937. {
  7938. "url": "https://symfony.com/sponsor",
  7939. "type": "custom"
  7940. },
  7941. {
  7942. "url": "https://github.com/fabpot",
  7943. "type": "github"
  7944. },
  7945. {
  7946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7947. "type": "tidelift"
  7948. }
  7949. ],
  7950. "time": "2024-10-21T19:07:02+00:00"
  7951. },
  7952. {
  7953. "name": "symfony/validator",
  7954. "version": "v7.1.5",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/symfony/validator.git",
  7958. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  7963. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": ">=8.2",
  7968. "symfony/deprecation-contracts": "^2.5|^3",
  7969. "symfony/polyfill-ctype": "~1.8",
  7970. "symfony/polyfill-mbstring": "~1.0",
  7971. "symfony/polyfill-php83": "^1.27",
  7972. "symfony/translation-contracts": "^2.5|^3"
  7973. },
  7974. "conflict": {
  7975. "doctrine/lexer": "<1.1",
  7976. "symfony/dependency-injection": "<6.4",
  7977. "symfony/doctrine-bridge": "<7.0",
  7978. "symfony/expression-language": "<6.4",
  7979. "symfony/http-kernel": "<6.4",
  7980. "symfony/intl": "<6.4",
  7981. "symfony/property-info": "<6.4",
  7982. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7983. "symfony/yaml": "<6.4"
  7984. },
  7985. "require-dev": {
  7986. "egulias/email-validator": "^2.1.10|^3|^4",
  7987. "symfony/cache": "^6.4|^7.0",
  7988. "symfony/config": "^6.4|^7.0",
  7989. "symfony/console": "^6.4|^7.0",
  7990. "symfony/dependency-injection": "^6.4|^7.0",
  7991. "symfony/expression-language": "^6.4|^7.0",
  7992. "symfony/finder": "^6.4|^7.0",
  7993. "symfony/http-client": "^6.4|^7.0",
  7994. "symfony/http-foundation": "^6.4|^7.0",
  7995. "symfony/http-kernel": "^6.4|^7.0",
  7996. "symfony/intl": "^6.4|^7.0",
  7997. "symfony/mime": "^6.4|^7.0",
  7998. "symfony/property-access": "^6.4|^7.0",
  7999. "symfony/property-info": "^6.4|^7.0",
  8000. "symfony/translation": "^6.4.3|^7.0.3",
  8001. "symfony/type-info": "^7.1",
  8002. "symfony/yaml": "^6.4|^7.0"
  8003. },
  8004. "type": "library",
  8005. "autoload": {
  8006. "psr-4": {
  8007. "Symfony\\Component\\Validator\\": ""
  8008. },
  8009. "exclude-from-classmap": [
  8010. "/Tests/",
  8011. "/Resources/bin/"
  8012. ]
  8013. },
  8014. "notification-url": "https://packagist.org/downloads/",
  8015. "license": [
  8016. "MIT"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Fabien Potencier",
  8021. "email": "fabien@symfony.com"
  8022. },
  8023. {
  8024. "name": "Symfony Community",
  8025. "homepage": "https://symfony.com/contributors"
  8026. }
  8027. ],
  8028. "description": "Provides tools to validate values",
  8029. "homepage": "https://symfony.com",
  8030. "support": {
  8031. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  8032. },
  8033. "funding": [
  8034. {
  8035. "url": "https://symfony.com/sponsor",
  8036. "type": "custom"
  8037. },
  8038. {
  8039. "url": "https://github.com/fabpot",
  8040. "type": "github"
  8041. },
  8042. {
  8043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8044. "type": "tidelift"
  8045. }
  8046. ],
  8047. "time": "2024-09-20T08:28:38+00:00"
  8048. },
  8049. {
  8050. "name": "symfony/var-dumper",
  8051. "version": "v7.1.5",
  8052. "source": {
  8053. "type": "git",
  8054. "url": "https://github.com/symfony/var-dumper.git",
  8055. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  8056. },
  8057. "dist": {
  8058. "type": "zip",
  8059. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  8060. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  8061. "shasum": ""
  8062. },
  8063. "require": {
  8064. "php": ">=8.2",
  8065. "symfony/polyfill-mbstring": "~1.0"
  8066. },
  8067. "conflict": {
  8068. "symfony/console": "<6.4"
  8069. },
  8070. "require-dev": {
  8071. "ext-iconv": "*",
  8072. "symfony/console": "^6.4|^7.0",
  8073. "symfony/http-kernel": "^6.4|^7.0",
  8074. "symfony/process": "^6.4|^7.0",
  8075. "symfony/uid": "^6.4|^7.0",
  8076. "twig/twig": "^3.0.4"
  8077. },
  8078. "bin": [
  8079. "Resources/bin/var-dump-server"
  8080. ],
  8081. "type": "library",
  8082. "autoload": {
  8083. "files": [
  8084. "Resources/functions/dump.php"
  8085. ],
  8086. "psr-4": {
  8087. "Symfony\\Component\\VarDumper\\": ""
  8088. },
  8089. "exclude-from-classmap": [
  8090. "/Tests/"
  8091. ]
  8092. },
  8093. "notification-url": "https://packagist.org/downloads/",
  8094. "license": [
  8095. "MIT"
  8096. ],
  8097. "authors": [
  8098. {
  8099. "name": "Nicolas Grekas",
  8100. "email": "p@tchwork.com"
  8101. },
  8102. {
  8103. "name": "Symfony Community",
  8104. "homepage": "https://symfony.com/contributors"
  8105. }
  8106. ],
  8107. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8108. "homepage": "https://symfony.com",
  8109. "keywords": [
  8110. "debug",
  8111. "dump"
  8112. ],
  8113. "support": {
  8114. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  8115. },
  8116. "funding": [
  8117. {
  8118. "url": "https://symfony.com/sponsor",
  8119. "type": "custom"
  8120. },
  8121. {
  8122. "url": "https://github.com/fabpot",
  8123. "type": "github"
  8124. },
  8125. {
  8126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8127. "type": "tidelift"
  8128. }
  8129. ],
  8130. "time": "2024-09-16T10:07:02+00:00"
  8131. },
  8132. {
  8133. "name": "symfony/var-exporter",
  8134. "version": "v7.1.2",
  8135. "source": {
  8136. "type": "git",
  8137. "url": "https://github.com/symfony/var-exporter.git",
  8138. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  8139. },
  8140. "dist": {
  8141. "type": "zip",
  8142. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  8143. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  8144. "shasum": ""
  8145. },
  8146. "require": {
  8147. "php": ">=8.2"
  8148. },
  8149. "require-dev": {
  8150. "symfony/property-access": "^6.4|^7.0",
  8151. "symfony/serializer": "^6.4|^7.0",
  8152. "symfony/var-dumper": "^6.4|^7.0"
  8153. },
  8154. "type": "library",
  8155. "autoload": {
  8156. "psr-4": {
  8157. "Symfony\\Component\\VarExporter\\": ""
  8158. },
  8159. "exclude-from-classmap": [
  8160. "/Tests/"
  8161. ]
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "MIT"
  8166. ],
  8167. "authors": [
  8168. {
  8169. "name": "Nicolas Grekas",
  8170. "email": "p@tchwork.com"
  8171. },
  8172. {
  8173. "name": "Symfony Community",
  8174. "homepage": "https://symfony.com/contributors"
  8175. }
  8176. ],
  8177. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8178. "homepage": "https://symfony.com",
  8179. "keywords": [
  8180. "clone",
  8181. "construct",
  8182. "export",
  8183. "hydrate",
  8184. "instantiate",
  8185. "lazy-loading",
  8186. "proxy",
  8187. "serialize"
  8188. ],
  8189. "support": {
  8190. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  8191. },
  8192. "funding": [
  8193. {
  8194. "url": "https://symfony.com/sponsor",
  8195. "type": "custom"
  8196. },
  8197. {
  8198. "url": "https://github.com/fabpot",
  8199. "type": "github"
  8200. },
  8201. {
  8202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8203. "type": "tidelift"
  8204. }
  8205. ],
  8206. "time": "2024-06-28T08:00:31+00:00"
  8207. },
  8208. {
  8209. "name": "symfony/web-link",
  8210. "version": "v7.1.1",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/symfony/web-link.git",
  8214. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  8219. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  8220. "shasum": ""
  8221. },
  8222. "require": {
  8223. "php": ">=8.2",
  8224. "psr/link": "^1.1|^2.0"
  8225. },
  8226. "conflict": {
  8227. "symfony/http-kernel": "<6.4"
  8228. },
  8229. "provide": {
  8230. "psr/link-implementation": "1.0|2.0"
  8231. },
  8232. "require-dev": {
  8233. "symfony/http-kernel": "^6.4|^7.0"
  8234. },
  8235. "type": "library",
  8236. "autoload": {
  8237. "psr-4": {
  8238. "Symfony\\Component\\WebLink\\": ""
  8239. },
  8240. "exclude-from-classmap": [
  8241. "/Tests/"
  8242. ]
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "MIT"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Kévin Dunglas",
  8251. "email": "dunglas@gmail.com"
  8252. },
  8253. {
  8254. "name": "Symfony Community",
  8255. "homepage": "https://symfony.com/contributors"
  8256. }
  8257. ],
  8258. "description": "Manages links between resources",
  8259. "homepage": "https://symfony.com",
  8260. "keywords": [
  8261. "dns-prefetch",
  8262. "http",
  8263. "http2",
  8264. "link",
  8265. "performance",
  8266. "prefetch",
  8267. "preload",
  8268. "prerender",
  8269. "psr13",
  8270. "push"
  8271. ],
  8272. "support": {
  8273. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  8274. },
  8275. "funding": [
  8276. {
  8277. "url": "https://symfony.com/sponsor",
  8278. "type": "custom"
  8279. },
  8280. {
  8281. "url": "https://github.com/fabpot",
  8282. "type": "github"
  8283. },
  8284. {
  8285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8286. "type": "tidelift"
  8287. }
  8288. ],
  8289. "time": "2024-05-31T14:57:53+00:00"
  8290. },
  8291. {
  8292. "name": "symfony/workflow",
  8293. "version": "v7.1.1",
  8294. "source": {
  8295. "type": "git",
  8296. "url": "https://github.com/symfony/workflow.git",
  8297. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8"
  8298. },
  8299. "dist": {
  8300. "type": "zip",
  8301. "url": "https://api.github.com/repos/symfony/workflow/zipball/bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  8302. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  8303. "shasum": ""
  8304. },
  8305. "require": {
  8306. "php": ">=8.2"
  8307. },
  8308. "conflict": {
  8309. "symfony/event-dispatcher": "<6.4"
  8310. },
  8311. "require-dev": {
  8312. "psr/log": "^1|^2|^3",
  8313. "symfony/dependency-injection": "^6.4|^7.0",
  8314. "symfony/error-handler": "^6.4|^7.0",
  8315. "symfony/event-dispatcher": "^6.4|^7.0",
  8316. "symfony/expression-language": "^6.4|^7.0",
  8317. "symfony/http-kernel": "^6.4|^7.0",
  8318. "symfony/security-core": "^6.4|^7.0",
  8319. "symfony/stopwatch": "^6.4|^7.0",
  8320. "symfony/validator": "^6.4|^7.0"
  8321. },
  8322. "type": "library",
  8323. "autoload": {
  8324. "psr-4": {
  8325. "Symfony\\Component\\Workflow\\": ""
  8326. },
  8327. "exclude-from-classmap": [
  8328. "/Tests/"
  8329. ]
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Fabien Potencier",
  8338. "email": "fabien@symfony.com"
  8339. },
  8340. {
  8341. "name": "Grégoire Pineau",
  8342. "email": "lyrixx@lyrixx.info"
  8343. },
  8344. {
  8345. "name": "Symfony Community",
  8346. "homepage": "https://symfony.com/contributors"
  8347. }
  8348. ],
  8349. "description": "Provides tools for managing a workflow or finite state machine",
  8350. "homepage": "https://symfony.com",
  8351. "keywords": [
  8352. "petrinet",
  8353. "place",
  8354. "state",
  8355. "statemachine",
  8356. "transition",
  8357. "workflow"
  8358. ],
  8359. "support": {
  8360. "source": "https://github.com/symfony/workflow/tree/v7.1.1"
  8361. },
  8362. "funding": [
  8363. {
  8364. "url": "https://symfony.com/sponsor",
  8365. "type": "custom"
  8366. },
  8367. {
  8368. "url": "https://github.com/fabpot",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2024-05-31T14:57:53+00:00"
  8377. },
  8378. {
  8379. "name": "symfony/yaml",
  8380. "version": "v7.1.5",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/symfony/yaml.git",
  8384. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  8389. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": ">=8.2",
  8394. "symfony/polyfill-ctype": "^1.8"
  8395. },
  8396. "conflict": {
  8397. "symfony/console": "<6.4"
  8398. },
  8399. "require-dev": {
  8400. "symfony/console": "^6.4|^7.0"
  8401. },
  8402. "bin": [
  8403. "Resources/bin/yaml-lint"
  8404. ],
  8405. "type": "library",
  8406. "autoload": {
  8407. "psr-4": {
  8408. "Symfony\\Component\\Yaml\\": ""
  8409. },
  8410. "exclude-from-classmap": [
  8411. "/Tests/"
  8412. ]
  8413. },
  8414. "notification-url": "https://packagist.org/downloads/",
  8415. "license": [
  8416. "MIT"
  8417. ],
  8418. "authors": [
  8419. {
  8420. "name": "Fabien Potencier",
  8421. "email": "fabien@symfony.com"
  8422. },
  8423. {
  8424. "name": "Symfony Community",
  8425. "homepage": "https://symfony.com/contributors"
  8426. }
  8427. ],
  8428. "description": "Loads and dumps YAML files",
  8429. "homepage": "https://symfony.com",
  8430. "support": {
  8431. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  8432. },
  8433. "funding": [
  8434. {
  8435. "url": "https://symfony.com/sponsor",
  8436. "type": "custom"
  8437. },
  8438. {
  8439. "url": "https://github.com/fabpot",
  8440. "type": "github"
  8441. },
  8442. {
  8443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8444. "type": "tidelift"
  8445. }
  8446. ],
  8447. "time": "2024-09-17T12:49:58+00:00"
  8448. },
  8449. {
  8450. "name": "twig/extra-bundle",
  8451. "version": "v3.13.0",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8455. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8460. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": ">=8.0.2",
  8465. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8466. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8467. "twig/twig": "^3.0|^4.0"
  8468. },
  8469. "require-dev": {
  8470. "league/commonmark": "^1.0|^2.0",
  8471. "symfony/phpunit-bridge": "^6.4|^7.0",
  8472. "twig/cache-extra": "^3.0",
  8473. "twig/cssinliner-extra": "^3.0",
  8474. "twig/html-extra": "^3.0",
  8475. "twig/inky-extra": "^3.0",
  8476. "twig/intl-extra": "^3.0",
  8477. "twig/markdown-extra": "^3.0",
  8478. "twig/string-extra": "^3.0"
  8479. },
  8480. "type": "symfony-bundle",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "Twig\\Extra\\TwigExtraBundle\\": ""
  8484. },
  8485. "exclude-from-classmap": [
  8486. "/Tests/"
  8487. ]
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Fabien Potencier",
  8496. "email": "fabien@symfony.com",
  8497. "homepage": "http://fabien.potencier.org",
  8498. "role": "Lead Developer"
  8499. }
  8500. ],
  8501. "description": "A Symfony bundle for extra Twig extensions",
  8502. "homepage": "https://twig.symfony.com",
  8503. "keywords": [
  8504. "bundle",
  8505. "extra",
  8506. "twig"
  8507. ],
  8508. "support": {
  8509. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  8510. },
  8511. "funding": [
  8512. {
  8513. "url": "https://github.com/fabpot",
  8514. "type": "github"
  8515. },
  8516. {
  8517. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8518. "type": "tidelift"
  8519. }
  8520. ],
  8521. "time": "2024-09-01T20:39:12+00:00"
  8522. },
  8523. {
  8524. "name": "twig/markdown-extra",
  8525. "version": "v3.13.0",
  8526. "source": {
  8527. "type": "git",
  8528. "url": "https://github.com/twigphp/markdown-extra.git",
  8529. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3"
  8530. },
  8531. "dist": {
  8532. "type": "zip",
  8533. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25f23c02936f8c7157a8413154c06a462c9c20d3",
  8534. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3",
  8535. "shasum": ""
  8536. },
  8537. "require": {
  8538. "php": ">=8.0.2",
  8539. "symfony/deprecation-contracts": "^2.5|^3",
  8540. "twig/twig": "^3.13|^4.0"
  8541. },
  8542. "require-dev": {
  8543. "erusev/parsedown": "^1.7",
  8544. "league/commonmark": "^1.0|^2.0",
  8545. "league/html-to-markdown": "^4.8|^5.0",
  8546. "michelf/php-markdown": "^1.8|^2.0",
  8547. "symfony/phpunit-bridge": "^6.4|^7.0"
  8548. },
  8549. "type": "library",
  8550. "autoload": {
  8551. "files": [
  8552. "Resources/functions.php"
  8553. ],
  8554. "psr-4": {
  8555. "Twig\\Extra\\Markdown\\": ""
  8556. },
  8557. "exclude-from-classmap": [
  8558. "/Tests/"
  8559. ]
  8560. },
  8561. "notification-url": "https://packagist.org/downloads/",
  8562. "license": [
  8563. "MIT"
  8564. ],
  8565. "authors": [
  8566. {
  8567. "name": "Fabien Potencier",
  8568. "email": "fabien@symfony.com",
  8569. "homepage": "http://fabien.potencier.org",
  8570. "role": "Lead Developer"
  8571. }
  8572. ],
  8573. "description": "A Twig extension for Markdown",
  8574. "homepage": "https://twig.symfony.com",
  8575. "keywords": [
  8576. "html",
  8577. "markdown",
  8578. "twig"
  8579. ],
  8580. "support": {
  8581. "source": "https://github.com/twigphp/markdown-extra/tree/v3.13.0"
  8582. },
  8583. "funding": [
  8584. {
  8585. "url": "https://github.com/fabpot",
  8586. "type": "github"
  8587. },
  8588. {
  8589. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8590. "type": "tidelift"
  8591. }
  8592. ],
  8593. "time": "2024-09-03T20:17:35+00:00"
  8594. },
  8595. {
  8596. "name": "twig/twig",
  8597. "version": "v3.14.0",
  8598. "source": {
  8599. "type": "git",
  8600. "url": "https://github.com/twigphp/Twig.git",
  8601. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  8602. },
  8603. "dist": {
  8604. "type": "zip",
  8605. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8606. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8607. "shasum": ""
  8608. },
  8609. "require": {
  8610. "php": ">=8.0.2",
  8611. "symfony/deprecation-contracts": "^2.5|^3",
  8612. "symfony/polyfill-ctype": "^1.8",
  8613. "symfony/polyfill-mbstring": "^1.3",
  8614. "symfony/polyfill-php81": "^1.29"
  8615. },
  8616. "require-dev": {
  8617. "psr/container": "^1.0|^2.0",
  8618. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8619. },
  8620. "type": "library",
  8621. "autoload": {
  8622. "files": [
  8623. "src/Resources/core.php",
  8624. "src/Resources/debug.php",
  8625. "src/Resources/escaper.php",
  8626. "src/Resources/string_loader.php"
  8627. ],
  8628. "psr-4": {
  8629. "Twig\\": "src/"
  8630. }
  8631. },
  8632. "notification-url": "https://packagist.org/downloads/",
  8633. "license": [
  8634. "BSD-3-Clause"
  8635. ],
  8636. "authors": [
  8637. {
  8638. "name": "Fabien Potencier",
  8639. "email": "fabien@symfony.com",
  8640. "homepage": "http://fabien.potencier.org",
  8641. "role": "Lead Developer"
  8642. },
  8643. {
  8644. "name": "Twig Team",
  8645. "role": "Contributors"
  8646. },
  8647. {
  8648. "name": "Armin Ronacher",
  8649. "email": "armin.ronacher@active-4.com",
  8650. "role": "Project Founder"
  8651. }
  8652. ],
  8653. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8654. "homepage": "https://twig.symfony.com",
  8655. "keywords": [
  8656. "templating"
  8657. ],
  8658. "support": {
  8659. "issues": "https://github.com/twigphp/Twig/issues",
  8660. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  8661. },
  8662. "funding": [
  8663. {
  8664. "url": "https://github.com/fabpot",
  8665. "type": "github"
  8666. },
  8667. {
  8668. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8669. "type": "tidelift"
  8670. }
  8671. ],
  8672. "time": "2024-09-09T17:55:12+00:00"
  8673. },
  8674. {
  8675. "name": "webmozart/assert",
  8676. "version": "1.11.0",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/webmozarts/assert.git",
  8680. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8685. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8686. "shasum": ""
  8687. },
  8688. "require": {
  8689. "ext-ctype": "*",
  8690. "php": "^7.2 || ^8.0"
  8691. },
  8692. "conflict": {
  8693. "phpstan/phpstan": "<0.12.20",
  8694. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8695. },
  8696. "require-dev": {
  8697. "phpunit/phpunit": "^8.5.13"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-master": "1.10-dev"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "psr-4": {
  8707. "Webmozart\\Assert\\": "src/"
  8708. }
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "MIT"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Bernhard Schussek",
  8717. "email": "bschussek@gmail.com"
  8718. }
  8719. ],
  8720. "description": "Assertions to validate method input/output with nice error messages.",
  8721. "keywords": [
  8722. "assert",
  8723. "check",
  8724. "validate"
  8725. ],
  8726. "support": {
  8727. "issues": "https://github.com/webmozarts/assert/issues",
  8728. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8729. },
  8730. "time": "2022-06-03T18:03:27+00:00"
  8731. }
  8732. ],
  8733. "packages-dev": [
  8734. {
  8735. "name": "fakerphp/faker",
  8736. "version": "v1.23.1",
  8737. "source": {
  8738. "type": "git",
  8739. "url": "https://github.com/FakerPHP/Faker.git",
  8740. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8741. },
  8742. "dist": {
  8743. "type": "zip",
  8744. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8745. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8746. "shasum": ""
  8747. },
  8748. "require": {
  8749. "php": "^7.4 || ^8.0",
  8750. "psr/container": "^1.0 || ^2.0",
  8751. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8752. },
  8753. "conflict": {
  8754. "fzaninotto/faker": "*"
  8755. },
  8756. "require-dev": {
  8757. "bamarni/composer-bin-plugin": "^1.4.1",
  8758. "doctrine/persistence": "^1.3 || ^2.0",
  8759. "ext-intl": "*",
  8760. "phpunit/phpunit": "^9.5.26",
  8761. "symfony/phpunit-bridge": "^5.4.16"
  8762. },
  8763. "suggest": {
  8764. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8765. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8766. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8767. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8768. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8769. },
  8770. "type": "library",
  8771. "autoload": {
  8772. "psr-4": {
  8773. "Faker\\": "src/Faker/"
  8774. }
  8775. },
  8776. "notification-url": "https://packagist.org/downloads/",
  8777. "license": [
  8778. "MIT"
  8779. ],
  8780. "authors": [
  8781. {
  8782. "name": "François Zaninotto"
  8783. }
  8784. ],
  8785. "description": "Faker is a PHP library that generates fake data for you.",
  8786. "keywords": [
  8787. "data",
  8788. "faker",
  8789. "fixtures"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/FakerPHP/Faker/issues",
  8793. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8794. },
  8795. "time": "2024-01-02T13:46:09+00:00"
  8796. },
  8797. {
  8798. "name": "masterminds/html5",
  8799. "version": "2.9.0",
  8800. "source": {
  8801. "type": "git",
  8802. "url": "https://github.com/Masterminds/html5-php.git",
  8803. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8804. },
  8805. "dist": {
  8806. "type": "zip",
  8807. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8808. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8809. "shasum": ""
  8810. },
  8811. "require": {
  8812. "ext-dom": "*",
  8813. "php": ">=5.3.0"
  8814. },
  8815. "require-dev": {
  8816. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8817. },
  8818. "type": "library",
  8819. "extra": {
  8820. "branch-alias": {
  8821. "dev-master": "2.7-dev"
  8822. }
  8823. },
  8824. "autoload": {
  8825. "psr-4": {
  8826. "Masterminds\\": "src"
  8827. }
  8828. },
  8829. "notification-url": "https://packagist.org/downloads/",
  8830. "license": [
  8831. "MIT"
  8832. ],
  8833. "authors": [
  8834. {
  8835. "name": "Matt Butcher",
  8836. "email": "technosophos@gmail.com"
  8837. },
  8838. {
  8839. "name": "Matt Farina",
  8840. "email": "matt@mattfarina.com"
  8841. },
  8842. {
  8843. "name": "Asmir Mustafic",
  8844. "email": "goetas@gmail.com"
  8845. }
  8846. ],
  8847. "description": "An HTML5 parser and serializer.",
  8848. "homepage": "http://masterminds.github.io/html5-php",
  8849. "keywords": [
  8850. "HTML5",
  8851. "dom",
  8852. "html",
  8853. "parser",
  8854. "querypath",
  8855. "serializer",
  8856. "xml"
  8857. ],
  8858. "support": {
  8859. "issues": "https://github.com/Masterminds/html5-php/issues",
  8860. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8861. },
  8862. "time": "2024-03-31T07:05:07+00:00"
  8863. },
  8864. {
  8865. "name": "myclabs/deep-copy",
  8866. "version": "1.12.0",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/myclabs/DeepCopy.git",
  8870. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8875. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": "^7.1 || ^8.0"
  8880. },
  8881. "conflict": {
  8882. "doctrine/collections": "<1.6.8",
  8883. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8884. },
  8885. "require-dev": {
  8886. "doctrine/collections": "^1.6.8",
  8887. "doctrine/common": "^2.13.3 || ^3.2.2",
  8888. "phpspec/prophecy": "^1.10",
  8889. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8890. },
  8891. "type": "library",
  8892. "autoload": {
  8893. "files": [
  8894. "src/DeepCopy/deep_copy.php"
  8895. ],
  8896. "psr-4": {
  8897. "DeepCopy\\": "src/DeepCopy/"
  8898. }
  8899. },
  8900. "notification-url": "https://packagist.org/downloads/",
  8901. "license": [
  8902. "MIT"
  8903. ],
  8904. "description": "Create deep copies (clones) of your objects",
  8905. "keywords": [
  8906. "clone",
  8907. "copy",
  8908. "duplicate",
  8909. "object",
  8910. "object graph"
  8911. ],
  8912. "support": {
  8913. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8914. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8915. },
  8916. "funding": [
  8917. {
  8918. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8919. "type": "tidelift"
  8920. }
  8921. ],
  8922. "time": "2024-06-12T14:39:25+00:00"
  8923. },
  8924. {
  8925. "name": "nikic/php-parser",
  8926. "version": "v5.3.1",
  8927. "source": {
  8928. "type": "git",
  8929. "url": "https://github.com/nikic/PHP-Parser.git",
  8930. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  8931. },
  8932. "dist": {
  8933. "type": "zip",
  8934. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  8935. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  8936. "shasum": ""
  8937. },
  8938. "require": {
  8939. "ext-ctype": "*",
  8940. "ext-json": "*",
  8941. "ext-tokenizer": "*",
  8942. "php": ">=7.4"
  8943. },
  8944. "require-dev": {
  8945. "ircmaxell/php-yacc": "^0.0.7",
  8946. "phpunit/phpunit": "^9.0"
  8947. },
  8948. "bin": [
  8949. "bin/php-parse"
  8950. ],
  8951. "type": "library",
  8952. "extra": {
  8953. "branch-alias": {
  8954. "dev-master": "5.0-dev"
  8955. }
  8956. },
  8957. "autoload": {
  8958. "psr-4": {
  8959. "PhpParser\\": "lib/PhpParser"
  8960. }
  8961. },
  8962. "notification-url": "https://packagist.org/downloads/",
  8963. "license": [
  8964. "BSD-3-Clause"
  8965. ],
  8966. "authors": [
  8967. {
  8968. "name": "Nikita Popov"
  8969. }
  8970. ],
  8971. "description": "A PHP parser written in PHP",
  8972. "keywords": [
  8973. "parser",
  8974. "php"
  8975. ],
  8976. "support": {
  8977. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8978. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  8979. },
  8980. "time": "2024-10-08T18:51:32+00:00"
  8981. },
  8982. {
  8983. "name": "phar-io/manifest",
  8984. "version": "2.0.4",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/phar-io/manifest.git",
  8988. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8993. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8994. "shasum": ""
  8995. },
  8996. "require": {
  8997. "ext-dom": "*",
  8998. "ext-libxml": "*",
  8999. "ext-phar": "*",
  9000. "ext-xmlwriter": "*",
  9001. "phar-io/version": "^3.0.1",
  9002. "php": "^7.2 || ^8.0"
  9003. },
  9004. "type": "library",
  9005. "extra": {
  9006. "branch-alias": {
  9007. "dev-master": "2.0.x-dev"
  9008. }
  9009. },
  9010. "autoload": {
  9011. "classmap": [
  9012. "src/"
  9013. ]
  9014. },
  9015. "notification-url": "https://packagist.org/downloads/",
  9016. "license": [
  9017. "BSD-3-Clause"
  9018. ],
  9019. "authors": [
  9020. {
  9021. "name": "Arne Blankerts",
  9022. "email": "arne@blankerts.de",
  9023. "role": "Developer"
  9024. },
  9025. {
  9026. "name": "Sebastian Heuer",
  9027. "email": "sebastian@phpeople.de",
  9028. "role": "Developer"
  9029. },
  9030. {
  9031. "name": "Sebastian Bergmann",
  9032. "email": "sebastian@phpunit.de",
  9033. "role": "Developer"
  9034. }
  9035. ],
  9036. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9037. "support": {
  9038. "issues": "https://github.com/phar-io/manifest/issues",
  9039. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9040. },
  9041. "funding": [
  9042. {
  9043. "url": "https://github.com/theseer",
  9044. "type": "github"
  9045. }
  9046. ],
  9047. "time": "2024-03-03T12:33:53+00:00"
  9048. },
  9049. {
  9050. "name": "phar-io/version",
  9051. "version": "3.2.1",
  9052. "source": {
  9053. "type": "git",
  9054. "url": "https://github.com/phar-io/version.git",
  9055. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9056. },
  9057. "dist": {
  9058. "type": "zip",
  9059. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9060. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9061. "shasum": ""
  9062. },
  9063. "require": {
  9064. "php": "^7.2 || ^8.0"
  9065. },
  9066. "type": "library",
  9067. "autoload": {
  9068. "classmap": [
  9069. "src/"
  9070. ]
  9071. },
  9072. "notification-url": "https://packagist.org/downloads/",
  9073. "license": [
  9074. "BSD-3-Clause"
  9075. ],
  9076. "authors": [
  9077. {
  9078. "name": "Arne Blankerts",
  9079. "email": "arne@blankerts.de",
  9080. "role": "Developer"
  9081. },
  9082. {
  9083. "name": "Sebastian Heuer",
  9084. "email": "sebastian@phpeople.de",
  9085. "role": "Developer"
  9086. },
  9087. {
  9088. "name": "Sebastian Bergmann",
  9089. "email": "sebastian@phpunit.de",
  9090. "role": "Developer"
  9091. }
  9092. ],
  9093. "description": "Library for handling version information and constraints",
  9094. "support": {
  9095. "issues": "https://github.com/phar-io/version/issues",
  9096. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9097. },
  9098. "time": "2022-02-21T01:04:05+00:00"
  9099. },
  9100. {
  9101. "name": "phpunit/php-code-coverage",
  9102. "version": "9.2.32",
  9103. "source": {
  9104. "type": "git",
  9105. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9106. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9107. },
  9108. "dist": {
  9109. "type": "zip",
  9110. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9111. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9112. "shasum": ""
  9113. },
  9114. "require": {
  9115. "ext-dom": "*",
  9116. "ext-libxml": "*",
  9117. "ext-xmlwriter": "*",
  9118. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9119. "php": ">=7.3",
  9120. "phpunit/php-file-iterator": "^3.0.6",
  9121. "phpunit/php-text-template": "^2.0.4",
  9122. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9123. "sebastian/complexity": "^2.0.3",
  9124. "sebastian/environment": "^5.1.5",
  9125. "sebastian/lines-of-code": "^1.0.4",
  9126. "sebastian/version": "^3.0.2",
  9127. "theseer/tokenizer": "^1.2.3"
  9128. },
  9129. "require-dev": {
  9130. "phpunit/phpunit": "^9.6"
  9131. },
  9132. "suggest": {
  9133. "ext-pcov": "PHP extension that provides line coverage",
  9134. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-main": "9.2.x-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "classmap": [
  9144. "src/"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "BSD-3-Clause"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Sebastian Bergmann",
  9154. "email": "sebastian@phpunit.de",
  9155. "role": "lead"
  9156. }
  9157. ],
  9158. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9159. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9160. "keywords": [
  9161. "coverage",
  9162. "testing",
  9163. "xunit"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9167. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9168. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9169. },
  9170. "funding": [
  9171. {
  9172. "url": "https://github.com/sebastianbergmann",
  9173. "type": "github"
  9174. }
  9175. ],
  9176. "time": "2024-08-22T04:23:01+00:00"
  9177. },
  9178. {
  9179. "name": "phpunit/php-file-iterator",
  9180. "version": "3.0.6",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9184. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9189. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9190. "shasum": ""
  9191. },
  9192. "require": {
  9193. "php": ">=7.3"
  9194. },
  9195. "require-dev": {
  9196. "phpunit/phpunit": "^9.3"
  9197. },
  9198. "type": "library",
  9199. "extra": {
  9200. "branch-alias": {
  9201. "dev-master": "3.0-dev"
  9202. }
  9203. },
  9204. "autoload": {
  9205. "classmap": [
  9206. "src/"
  9207. ]
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "BSD-3-Clause"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Sebastian Bergmann",
  9216. "email": "sebastian@phpunit.de",
  9217. "role": "lead"
  9218. }
  9219. ],
  9220. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9221. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9222. "keywords": [
  9223. "filesystem",
  9224. "iterator"
  9225. ],
  9226. "support": {
  9227. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9228. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9229. },
  9230. "funding": [
  9231. {
  9232. "url": "https://github.com/sebastianbergmann",
  9233. "type": "github"
  9234. }
  9235. ],
  9236. "time": "2021-12-02T12:48:52+00:00"
  9237. },
  9238. {
  9239. "name": "phpunit/php-invoker",
  9240. "version": "3.1.1",
  9241. "source": {
  9242. "type": "git",
  9243. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9244. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9245. },
  9246. "dist": {
  9247. "type": "zip",
  9248. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9249. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9250. "shasum": ""
  9251. },
  9252. "require": {
  9253. "php": ">=7.3"
  9254. },
  9255. "require-dev": {
  9256. "ext-pcntl": "*",
  9257. "phpunit/phpunit": "^9.3"
  9258. },
  9259. "suggest": {
  9260. "ext-pcntl": "*"
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-master": "3.1-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "classmap": [
  9270. "src/"
  9271. ]
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "BSD-3-Clause"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Sebastian Bergmann",
  9280. "email": "sebastian@phpunit.de",
  9281. "role": "lead"
  9282. }
  9283. ],
  9284. "description": "Invoke callables with a timeout",
  9285. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9286. "keywords": [
  9287. "process"
  9288. ],
  9289. "support": {
  9290. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9291. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9292. },
  9293. "funding": [
  9294. {
  9295. "url": "https://github.com/sebastianbergmann",
  9296. "type": "github"
  9297. }
  9298. ],
  9299. "time": "2020-09-28T05:58:55+00:00"
  9300. },
  9301. {
  9302. "name": "phpunit/php-text-template",
  9303. "version": "2.0.4",
  9304. "source": {
  9305. "type": "git",
  9306. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9307. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9308. },
  9309. "dist": {
  9310. "type": "zip",
  9311. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9312. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9313. "shasum": ""
  9314. },
  9315. "require": {
  9316. "php": ">=7.3"
  9317. },
  9318. "require-dev": {
  9319. "phpunit/phpunit": "^9.3"
  9320. },
  9321. "type": "library",
  9322. "extra": {
  9323. "branch-alias": {
  9324. "dev-master": "2.0-dev"
  9325. }
  9326. },
  9327. "autoload": {
  9328. "classmap": [
  9329. "src/"
  9330. ]
  9331. },
  9332. "notification-url": "https://packagist.org/downloads/",
  9333. "license": [
  9334. "BSD-3-Clause"
  9335. ],
  9336. "authors": [
  9337. {
  9338. "name": "Sebastian Bergmann",
  9339. "email": "sebastian@phpunit.de",
  9340. "role": "lead"
  9341. }
  9342. ],
  9343. "description": "Simple template engine.",
  9344. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9345. "keywords": [
  9346. "template"
  9347. ],
  9348. "support": {
  9349. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9350. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9351. },
  9352. "funding": [
  9353. {
  9354. "url": "https://github.com/sebastianbergmann",
  9355. "type": "github"
  9356. }
  9357. ],
  9358. "time": "2020-10-26T05:33:50+00:00"
  9359. },
  9360. {
  9361. "name": "phpunit/php-timer",
  9362. "version": "5.0.3",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9366. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9371. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9372. "shasum": ""
  9373. },
  9374. "require": {
  9375. "php": ">=7.3"
  9376. },
  9377. "require-dev": {
  9378. "phpunit/phpunit": "^9.3"
  9379. },
  9380. "type": "library",
  9381. "extra": {
  9382. "branch-alias": {
  9383. "dev-master": "5.0-dev"
  9384. }
  9385. },
  9386. "autoload": {
  9387. "classmap": [
  9388. "src/"
  9389. ]
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "license": [
  9393. "BSD-3-Clause"
  9394. ],
  9395. "authors": [
  9396. {
  9397. "name": "Sebastian Bergmann",
  9398. "email": "sebastian@phpunit.de",
  9399. "role": "lead"
  9400. }
  9401. ],
  9402. "description": "Utility class for timing",
  9403. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9404. "keywords": [
  9405. "timer"
  9406. ],
  9407. "support": {
  9408. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9409. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9410. },
  9411. "funding": [
  9412. {
  9413. "url": "https://github.com/sebastianbergmann",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2020-10-26T13:16:10+00:00"
  9418. },
  9419. {
  9420. "name": "phpunit/phpunit",
  9421. "version": "9.6.21",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9425. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9430. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "doctrine/instantiator": "^1.5.0 || ^2",
  9435. "ext-dom": "*",
  9436. "ext-json": "*",
  9437. "ext-libxml": "*",
  9438. "ext-mbstring": "*",
  9439. "ext-xml": "*",
  9440. "ext-xmlwriter": "*",
  9441. "myclabs/deep-copy": "^1.12.0",
  9442. "phar-io/manifest": "^2.0.4",
  9443. "phar-io/version": "^3.2.1",
  9444. "php": ">=7.3",
  9445. "phpunit/php-code-coverage": "^9.2.32",
  9446. "phpunit/php-file-iterator": "^3.0.6",
  9447. "phpunit/php-invoker": "^3.1.1",
  9448. "phpunit/php-text-template": "^2.0.4",
  9449. "phpunit/php-timer": "^5.0.3",
  9450. "sebastian/cli-parser": "^1.0.2",
  9451. "sebastian/code-unit": "^1.0.8",
  9452. "sebastian/comparator": "^4.0.8",
  9453. "sebastian/diff": "^4.0.6",
  9454. "sebastian/environment": "^5.1.5",
  9455. "sebastian/exporter": "^4.0.6",
  9456. "sebastian/global-state": "^5.0.7",
  9457. "sebastian/object-enumerator": "^4.0.4",
  9458. "sebastian/resource-operations": "^3.0.4",
  9459. "sebastian/type": "^3.2.1",
  9460. "sebastian/version": "^3.0.2"
  9461. },
  9462. "suggest": {
  9463. "ext-soap": "To be able to generate mocks based on WSDL files",
  9464. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9465. },
  9466. "bin": [
  9467. "phpunit"
  9468. ],
  9469. "type": "library",
  9470. "extra": {
  9471. "branch-alias": {
  9472. "dev-master": "9.6-dev"
  9473. }
  9474. },
  9475. "autoload": {
  9476. "files": [
  9477. "src/Framework/Assert/Functions.php"
  9478. ],
  9479. "classmap": [
  9480. "src/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "BSD-3-Clause"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Sebastian Bergmann",
  9490. "email": "sebastian@phpunit.de",
  9491. "role": "lead"
  9492. }
  9493. ],
  9494. "description": "The PHP Unit Testing framework.",
  9495. "homepage": "https://phpunit.de/",
  9496. "keywords": [
  9497. "phpunit",
  9498. "testing",
  9499. "xunit"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9503. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9504. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  9505. },
  9506. "funding": [
  9507. {
  9508. "url": "https://phpunit.de/sponsors.html",
  9509. "type": "custom"
  9510. },
  9511. {
  9512. "url": "https://github.com/sebastianbergmann",
  9513. "type": "github"
  9514. },
  9515. {
  9516. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9517. "type": "tidelift"
  9518. }
  9519. ],
  9520. "time": "2024-09-19T10:50:18+00:00"
  9521. },
  9522. {
  9523. "name": "sebastian/cli-parser",
  9524. "version": "1.0.2",
  9525. "source": {
  9526. "type": "git",
  9527. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9528. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9529. },
  9530. "dist": {
  9531. "type": "zip",
  9532. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9533. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9534. "shasum": ""
  9535. },
  9536. "require": {
  9537. "php": ">=7.3"
  9538. },
  9539. "require-dev": {
  9540. "phpunit/phpunit": "^9.3"
  9541. },
  9542. "type": "library",
  9543. "extra": {
  9544. "branch-alias": {
  9545. "dev-master": "1.0-dev"
  9546. }
  9547. },
  9548. "autoload": {
  9549. "classmap": [
  9550. "src/"
  9551. ]
  9552. },
  9553. "notification-url": "https://packagist.org/downloads/",
  9554. "license": [
  9555. "BSD-3-Clause"
  9556. ],
  9557. "authors": [
  9558. {
  9559. "name": "Sebastian Bergmann",
  9560. "email": "sebastian@phpunit.de",
  9561. "role": "lead"
  9562. }
  9563. ],
  9564. "description": "Library for parsing CLI options",
  9565. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9566. "support": {
  9567. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9568. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://github.com/sebastianbergmann",
  9573. "type": "github"
  9574. }
  9575. ],
  9576. "time": "2024-03-02T06:27:43+00:00"
  9577. },
  9578. {
  9579. "name": "sebastian/code-unit",
  9580. "version": "1.0.8",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9584. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9589. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "php": ">=7.3"
  9594. },
  9595. "require-dev": {
  9596. "phpunit/phpunit": "^9.3"
  9597. },
  9598. "type": "library",
  9599. "extra": {
  9600. "branch-alias": {
  9601. "dev-master": "1.0-dev"
  9602. }
  9603. },
  9604. "autoload": {
  9605. "classmap": [
  9606. "src/"
  9607. ]
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "BSD-3-Clause"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "Sebastian Bergmann",
  9616. "email": "sebastian@phpunit.de",
  9617. "role": "lead"
  9618. }
  9619. ],
  9620. "description": "Collection of value objects that represent the PHP code units",
  9621. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9622. "support": {
  9623. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9624. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9625. },
  9626. "funding": [
  9627. {
  9628. "url": "https://github.com/sebastianbergmann",
  9629. "type": "github"
  9630. }
  9631. ],
  9632. "time": "2020-10-26T13:08:54+00:00"
  9633. },
  9634. {
  9635. "name": "sebastian/code-unit-reverse-lookup",
  9636. "version": "2.0.3",
  9637. "source": {
  9638. "type": "git",
  9639. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9640. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9641. },
  9642. "dist": {
  9643. "type": "zip",
  9644. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9645. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9646. "shasum": ""
  9647. },
  9648. "require": {
  9649. "php": ">=7.3"
  9650. },
  9651. "require-dev": {
  9652. "phpunit/phpunit": "^9.3"
  9653. },
  9654. "type": "library",
  9655. "extra": {
  9656. "branch-alias": {
  9657. "dev-master": "2.0-dev"
  9658. }
  9659. },
  9660. "autoload": {
  9661. "classmap": [
  9662. "src/"
  9663. ]
  9664. },
  9665. "notification-url": "https://packagist.org/downloads/",
  9666. "license": [
  9667. "BSD-3-Clause"
  9668. ],
  9669. "authors": [
  9670. {
  9671. "name": "Sebastian Bergmann",
  9672. "email": "sebastian@phpunit.de"
  9673. }
  9674. ],
  9675. "description": "Looks up which function or method a line of code belongs to",
  9676. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9677. "support": {
  9678. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9679. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/sebastianbergmann",
  9684. "type": "github"
  9685. }
  9686. ],
  9687. "time": "2020-09-28T05:30:19+00:00"
  9688. },
  9689. {
  9690. "name": "sebastian/comparator",
  9691. "version": "4.0.8",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/comparator.git",
  9695. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9700. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9701. "shasum": ""
  9702. },
  9703. "require": {
  9704. "php": ">=7.3",
  9705. "sebastian/diff": "^4.0",
  9706. "sebastian/exporter": "^4.0"
  9707. },
  9708. "require-dev": {
  9709. "phpunit/phpunit": "^9.3"
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-master": "4.0-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "classmap": [
  9719. "src/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "BSD-3-Clause"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Sebastian Bergmann",
  9729. "email": "sebastian@phpunit.de"
  9730. },
  9731. {
  9732. "name": "Jeff Welch",
  9733. "email": "whatthejeff@gmail.com"
  9734. },
  9735. {
  9736. "name": "Volker Dusch",
  9737. "email": "github@wallbash.com"
  9738. },
  9739. {
  9740. "name": "Bernhard Schussek",
  9741. "email": "bschussek@2bepublished.at"
  9742. }
  9743. ],
  9744. "description": "Provides the functionality to compare PHP values for equality",
  9745. "homepage": "https://github.com/sebastianbergmann/comparator",
  9746. "keywords": [
  9747. "comparator",
  9748. "compare",
  9749. "equality"
  9750. ],
  9751. "support": {
  9752. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9753. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9754. },
  9755. "funding": [
  9756. {
  9757. "url": "https://github.com/sebastianbergmann",
  9758. "type": "github"
  9759. }
  9760. ],
  9761. "time": "2022-09-14T12:41:17+00:00"
  9762. },
  9763. {
  9764. "name": "sebastian/complexity",
  9765. "version": "2.0.3",
  9766. "source": {
  9767. "type": "git",
  9768. "url": "https://github.com/sebastianbergmann/complexity.git",
  9769. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9770. },
  9771. "dist": {
  9772. "type": "zip",
  9773. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9774. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9775. "shasum": ""
  9776. },
  9777. "require": {
  9778. "nikic/php-parser": "^4.18 || ^5.0",
  9779. "php": ">=7.3"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^9.3"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "2.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Sebastian Bergmann",
  9802. "email": "sebastian@phpunit.de",
  9803. "role": "lead"
  9804. }
  9805. ],
  9806. "description": "Library for calculating the complexity of PHP code units",
  9807. "homepage": "https://github.com/sebastianbergmann/complexity",
  9808. "support": {
  9809. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9810. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9811. },
  9812. "funding": [
  9813. {
  9814. "url": "https://github.com/sebastianbergmann",
  9815. "type": "github"
  9816. }
  9817. ],
  9818. "time": "2023-12-22T06:19:30+00:00"
  9819. },
  9820. {
  9821. "name": "sebastian/diff",
  9822. "version": "4.0.6",
  9823. "source": {
  9824. "type": "git",
  9825. "url": "https://github.com/sebastianbergmann/diff.git",
  9826. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9827. },
  9828. "dist": {
  9829. "type": "zip",
  9830. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9831. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9832. "shasum": ""
  9833. },
  9834. "require": {
  9835. "php": ">=7.3"
  9836. },
  9837. "require-dev": {
  9838. "phpunit/phpunit": "^9.3",
  9839. "symfony/process": "^4.2 || ^5"
  9840. },
  9841. "type": "library",
  9842. "extra": {
  9843. "branch-alias": {
  9844. "dev-master": "4.0-dev"
  9845. }
  9846. },
  9847. "autoload": {
  9848. "classmap": [
  9849. "src/"
  9850. ]
  9851. },
  9852. "notification-url": "https://packagist.org/downloads/",
  9853. "license": [
  9854. "BSD-3-Clause"
  9855. ],
  9856. "authors": [
  9857. {
  9858. "name": "Sebastian Bergmann",
  9859. "email": "sebastian@phpunit.de"
  9860. },
  9861. {
  9862. "name": "Kore Nordmann",
  9863. "email": "mail@kore-nordmann.de"
  9864. }
  9865. ],
  9866. "description": "Diff implementation",
  9867. "homepage": "https://github.com/sebastianbergmann/diff",
  9868. "keywords": [
  9869. "diff",
  9870. "udiff",
  9871. "unidiff",
  9872. "unified diff"
  9873. ],
  9874. "support": {
  9875. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9876. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9877. },
  9878. "funding": [
  9879. {
  9880. "url": "https://github.com/sebastianbergmann",
  9881. "type": "github"
  9882. }
  9883. ],
  9884. "time": "2024-03-02T06:30:58+00:00"
  9885. },
  9886. {
  9887. "name": "sebastian/environment",
  9888. "version": "5.1.5",
  9889. "source": {
  9890. "type": "git",
  9891. "url": "https://github.com/sebastianbergmann/environment.git",
  9892. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9893. },
  9894. "dist": {
  9895. "type": "zip",
  9896. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9897. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9898. "shasum": ""
  9899. },
  9900. "require": {
  9901. "php": ">=7.3"
  9902. },
  9903. "require-dev": {
  9904. "phpunit/phpunit": "^9.3"
  9905. },
  9906. "suggest": {
  9907. "ext-posix": "*"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "5.1-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "sebastian@phpunit.de"
  9928. }
  9929. ],
  9930. "description": "Provides functionality to handle HHVM/PHP environments",
  9931. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9932. "keywords": [
  9933. "Xdebug",
  9934. "environment",
  9935. "hhvm"
  9936. ],
  9937. "support": {
  9938. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9939. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9940. },
  9941. "funding": [
  9942. {
  9943. "url": "https://github.com/sebastianbergmann",
  9944. "type": "github"
  9945. }
  9946. ],
  9947. "time": "2023-02-03T06:03:51+00:00"
  9948. },
  9949. {
  9950. "name": "sebastian/exporter",
  9951. "version": "4.0.6",
  9952. "source": {
  9953. "type": "git",
  9954. "url": "https://github.com/sebastianbergmann/exporter.git",
  9955. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9956. },
  9957. "dist": {
  9958. "type": "zip",
  9959. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9960. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9961. "shasum": ""
  9962. },
  9963. "require": {
  9964. "php": ">=7.3",
  9965. "sebastian/recursion-context": "^4.0"
  9966. },
  9967. "require-dev": {
  9968. "ext-mbstring": "*",
  9969. "phpunit/phpunit": "^9.3"
  9970. },
  9971. "type": "library",
  9972. "extra": {
  9973. "branch-alias": {
  9974. "dev-master": "4.0-dev"
  9975. }
  9976. },
  9977. "autoload": {
  9978. "classmap": [
  9979. "src/"
  9980. ]
  9981. },
  9982. "notification-url": "https://packagist.org/downloads/",
  9983. "license": [
  9984. "BSD-3-Clause"
  9985. ],
  9986. "authors": [
  9987. {
  9988. "name": "Sebastian Bergmann",
  9989. "email": "sebastian@phpunit.de"
  9990. },
  9991. {
  9992. "name": "Jeff Welch",
  9993. "email": "whatthejeff@gmail.com"
  9994. },
  9995. {
  9996. "name": "Volker Dusch",
  9997. "email": "github@wallbash.com"
  9998. },
  9999. {
  10000. "name": "Adam Harvey",
  10001. "email": "aharvey@php.net"
  10002. },
  10003. {
  10004. "name": "Bernhard Schussek",
  10005. "email": "bschussek@gmail.com"
  10006. }
  10007. ],
  10008. "description": "Provides the functionality to export PHP variables for visualization",
  10009. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10010. "keywords": [
  10011. "export",
  10012. "exporter"
  10013. ],
  10014. "support": {
  10015. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10016. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10017. },
  10018. "funding": [
  10019. {
  10020. "url": "https://github.com/sebastianbergmann",
  10021. "type": "github"
  10022. }
  10023. ],
  10024. "time": "2024-03-02T06:33:00+00:00"
  10025. },
  10026. {
  10027. "name": "sebastian/global-state",
  10028. "version": "5.0.7",
  10029. "source": {
  10030. "type": "git",
  10031. "url": "https://github.com/sebastianbergmann/global-state.git",
  10032. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10033. },
  10034. "dist": {
  10035. "type": "zip",
  10036. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10037. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10038. "shasum": ""
  10039. },
  10040. "require": {
  10041. "php": ">=7.3",
  10042. "sebastian/object-reflector": "^2.0",
  10043. "sebastian/recursion-context": "^4.0"
  10044. },
  10045. "require-dev": {
  10046. "ext-dom": "*",
  10047. "phpunit/phpunit": "^9.3"
  10048. },
  10049. "suggest": {
  10050. "ext-uopz": "*"
  10051. },
  10052. "type": "library",
  10053. "extra": {
  10054. "branch-alias": {
  10055. "dev-master": "5.0-dev"
  10056. }
  10057. },
  10058. "autoload": {
  10059. "classmap": [
  10060. "src/"
  10061. ]
  10062. },
  10063. "notification-url": "https://packagist.org/downloads/",
  10064. "license": [
  10065. "BSD-3-Clause"
  10066. ],
  10067. "authors": [
  10068. {
  10069. "name": "Sebastian Bergmann",
  10070. "email": "sebastian@phpunit.de"
  10071. }
  10072. ],
  10073. "description": "Snapshotting of global state",
  10074. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10075. "keywords": [
  10076. "global state"
  10077. ],
  10078. "support": {
  10079. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10080. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10081. },
  10082. "funding": [
  10083. {
  10084. "url": "https://github.com/sebastianbergmann",
  10085. "type": "github"
  10086. }
  10087. ],
  10088. "time": "2024-03-02T06:35:11+00:00"
  10089. },
  10090. {
  10091. "name": "sebastian/lines-of-code",
  10092. "version": "1.0.4",
  10093. "source": {
  10094. "type": "git",
  10095. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10096. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10097. },
  10098. "dist": {
  10099. "type": "zip",
  10100. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10101. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10102. "shasum": ""
  10103. },
  10104. "require": {
  10105. "nikic/php-parser": "^4.18 || ^5.0",
  10106. "php": ">=7.3"
  10107. },
  10108. "require-dev": {
  10109. "phpunit/phpunit": "^9.3"
  10110. },
  10111. "type": "library",
  10112. "extra": {
  10113. "branch-alias": {
  10114. "dev-master": "1.0-dev"
  10115. }
  10116. },
  10117. "autoload": {
  10118. "classmap": [
  10119. "src/"
  10120. ]
  10121. },
  10122. "notification-url": "https://packagist.org/downloads/",
  10123. "license": [
  10124. "BSD-3-Clause"
  10125. ],
  10126. "authors": [
  10127. {
  10128. "name": "Sebastian Bergmann",
  10129. "email": "sebastian@phpunit.de",
  10130. "role": "lead"
  10131. }
  10132. ],
  10133. "description": "Library for counting the lines of code in PHP source code",
  10134. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10135. "support": {
  10136. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10137. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10138. },
  10139. "funding": [
  10140. {
  10141. "url": "https://github.com/sebastianbergmann",
  10142. "type": "github"
  10143. }
  10144. ],
  10145. "time": "2023-12-22T06:20:34+00:00"
  10146. },
  10147. {
  10148. "name": "sebastian/object-enumerator",
  10149. "version": "4.0.4",
  10150. "source": {
  10151. "type": "git",
  10152. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10153. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10154. },
  10155. "dist": {
  10156. "type": "zip",
  10157. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10158. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10159. "shasum": ""
  10160. },
  10161. "require": {
  10162. "php": ">=7.3",
  10163. "sebastian/object-reflector": "^2.0",
  10164. "sebastian/recursion-context": "^4.0"
  10165. },
  10166. "require-dev": {
  10167. "phpunit/phpunit": "^9.3"
  10168. },
  10169. "type": "library",
  10170. "extra": {
  10171. "branch-alias": {
  10172. "dev-master": "4.0-dev"
  10173. }
  10174. },
  10175. "autoload": {
  10176. "classmap": [
  10177. "src/"
  10178. ]
  10179. },
  10180. "notification-url": "https://packagist.org/downloads/",
  10181. "license": [
  10182. "BSD-3-Clause"
  10183. ],
  10184. "authors": [
  10185. {
  10186. "name": "Sebastian Bergmann",
  10187. "email": "sebastian@phpunit.de"
  10188. }
  10189. ],
  10190. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10191. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10192. "support": {
  10193. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10194. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10195. },
  10196. "funding": [
  10197. {
  10198. "url": "https://github.com/sebastianbergmann",
  10199. "type": "github"
  10200. }
  10201. ],
  10202. "time": "2020-10-26T13:12:34+00:00"
  10203. },
  10204. {
  10205. "name": "sebastian/object-reflector",
  10206. "version": "2.0.4",
  10207. "source": {
  10208. "type": "git",
  10209. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10210. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10211. },
  10212. "dist": {
  10213. "type": "zip",
  10214. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10215. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10216. "shasum": ""
  10217. },
  10218. "require": {
  10219. "php": ">=7.3"
  10220. },
  10221. "require-dev": {
  10222. "phpunit/phpunit": "^9.3"
  10223. },
  10224. "type": "library",
  10225. "extra": {
  10226. "branch-alias": {
  10227. "dev-master": "2.0-dev"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "classmap": [
  10232. "src/"
  10233. ]
  10234. },
  10235. "notification-url": "https://packagist.org/downloads/",
  10236. "license": [
  10237. "BSD-3-Clause"
  10238. ],
  10239. "authors": [
  10240. {
  10241. "name": "Sebastian Bergmann",
  10242. "email": "sebastian@phpunit.de"
  10243. }
  10244. ],
  10245. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10246. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10247. "support": {
  10248. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10249. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10250. },
  10251. "funding": [
  10252. {
  10253. "url": "https://github.com/sebastianbergmann",
  10254. "type": "github"
  10255. }
  10256. ],
  10257. "time": "2020-10-26T13:14:26+00:00"
  10258. },
  10259. {
  10260. "name": "sebastian/recursion-context",
  10261. "version": "4.0.5",
  10262. "source": {
  10263. "type": "git",
  10264. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10265. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10266. },
  10267. "dist": {
  10268. "type": "zip",
  10269. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10270. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10271. "shasum": ""
  10272. },
  10273. "require": {
  10274. "php": ">=7.3"
  10275. },
  10276. "require-dev": {
  10277. "phpunit/phpunit": "^9.3"
  10278. },
  10279. "type": "library",
  10280. "extra": {
  10281. "branch-alias": {
  10282. "dev-master": "4.0-dev"
  10283. }
  10284. },
  10285. "autoload": {
  10286. "classmap": [
  10287. "src/"
  10288. ]
  10289. },
  10290. "notification-url": "https://packagist.org/downloads/",
  10291. "license": [
  10292. "BSD-3-Clause"
  10293. ],
  10294. "authors": [
  10295. {
  10296. "name": "Sebastian Bergmann",
  10297. "email": "sebastian@phpunit.de"
  10298. },
  10299. {
  10300. "name": "Jeff Welch",
  10301. "email": "whatthejeff@gmail.com"
  10302. },
  10303. {
  10304. "name": "Adam Harvey",
  10305. "email": "aharvey@php.net"
  10306. }
  10307. ],
  10308. "description": "Provides functionality to recursively process PHP variables",
  10309. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10310. "support": {
  10311. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10312. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10313. },
  10314. "funding": [
  10315. {
  10316. "url": "https://github.com/sebastianbergmann",
  10317. "type": "github"
  10318. }
  10319. ],
  10320. "time": "2023-02-03T06:07:39+00:00"
  10321. },
  10322. {
  10323. "name": "sebastian/resource-operations",
  10324. "version": "3.0.4",
  10325. "source": {
  10326. "type": "git",
  10327. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10328. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10329. },
  10330. "dist": {
  10331. "type": "zip",
  10332. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10333. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10334. "shasum": ""
  10335. },
  10336. "require": {
  10337. "php": ">=7.3"
  10338. },
  10339. "require-dev": {
  10340. "phpunit/phpunit": "^9.0"
  10341. },
  10342. "type": "library",
  10343. "extra": {
  10344. "branch-alias": {
  10345. "dev-main": "3.0-dev"
  10346. }
  10347. },
  10348. "autoload": {
  10349. "classmap": [
  10350. "src/"
  10351. ]
  10352. },
  10353. "notification-url": "https://packagist.org/downloads/",
  10354. "license": [
  10355. "BSD-3-Clause"
  10356. ],
  10357. "authors": [
  10358. {
  10359. "name": "Sebastian Bergmann",
  10360. "email": "sebastian@phpunit.de"
  10361. }
  10362. ],
  10363. "description": "Provides a list of PHP built-in functions that operate on resources",
  10364. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10365. "support": {
  10366. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10367. },
  10368. "funding": [
  10369. {
  10370. "url": "https://github.com/sebastianbergmann",
  10371. "type": "github"
  10372. }
  10373. ],
  10374. "time": "2024-03-14T16:00:52+00:00"
  10375. },
  10376. {
  10377. "name": "sebastian/type",
  10378. "version": "3.2.1",
  10379. "source": {
  10380. "type": "git",
  10381. "url": "https://github.com/sebastianbergmann/type.git",
  10382. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10383. },
  10384. "dist": {
  10385. "type": "zip",
  10386. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10387. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10388. "shasum": ""
  10389. },
  10390. "require": {
  10391. "php": ">=7.3"
  10392. },
  10393. "require-dev": {
  10394. "phpunit/phpunit": "^9.5"
  10395. },
  10396. "type": "library",
  10397. "extra": {
  10398. "branch-alias": {
  10399. "dev-master": "3.2-dev"
  10400. }
  10401. },
  10402. "autoload": {
  10403. "classmap": [
  10404. "src/"
  10405. ]
  10406. },
  10407. "notification-url": "https://packagist.org/downloads/",
  10408. "license": [
  10409. "BSD-3-Clause"
  10410. ],
  10411. "authors": [
  10412. {
  10413. "name": "Sebastian Bergmann",
  10414. "email": "sebastian@phpunit.de",
  10415. "role": "lead"
  10416. }
  10417. ],
  10418. "description": "Collection of value objects that represent the types of the PHP type system",
  10419. "homepage": "https://github.com/sebastianbergmann/type",
  10420. "support": {
  10421. "issues": "https://github.com/sebastianbergmann/type/issues",
  10422. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10423. },
  10424. "funding": [
  10425. {
  10426. "url": "https://github.com/sebastianbergmann",
  10427. "type": "github"
  10428. }
  10429. ],
  10430. "time": "2023-02-03T06:13:03+00:00"
  10431. },
  10432. {
  10433. "name": "sebastian/version",
  10434. "version": "3.0.2",
  10435. "source": {
  10436. "type": "git",
  10437. "url": "https://github.com/sebastianbergmann/version.git",
  10438. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10439. },
  10440. "dist": {
  10441. "type": "zip",
  10442. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10443. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10444. "shasum": ""
  10445. },
  10446. "require": {
  10447. "php": ">=7.3"
  10448. },
  10449. "type": "library",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-master": "3.0-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "classmap": [
  10457. "src/"
  10458. ]
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "BSD-3-Clause"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Sebastian Bergmann",
  10467. "email": "sebastian@phpunit.de",
  10468. "role": "lead"
  10469. }
  10470. ],
  10471. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10472. "homepage": "https://github.com/sebastianbergmann/version",
  10473. "support": {
  10474. "issues": "https://github.com/sebastianbergmann/version/issues",
  10475. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10476. },
  10477. "funding": [
  10478. {
  10479. "url": "https://github.com/sebastianbergmann",
  10480. "type": "github"
  10481. }
  10482. ],
  10483. "time": "2020-09-28T06:39:44+00:00"
  10484. },
  10485. {
  10486. "name": "symfony/browser-kit",
  10487. "version": "v7.1.1",
  10488. "source": {
  10489. "type": "git",
  10490. "url": "https://github.com/symfony/browser-kit.git",
  10491. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  10492. },
  10493. "dist": {
  10494. "type": "zip",
  10495. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  10496. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  10497. "shasum": ""
  10498. },
  10499. "require": {
  10500. "php": ">=8.2",
  10501. "symfony/dom-crawler": "^6.4|^7.0"
  10502. },
  10503. "require-dev": {
  10504. "symfony/css-selector": "^6.4|^7.0",
  10505. "symfony/http-client": "^6.4|^7.0",
  10506. "symfony/mime": "^6.4|^7.0",
  10507. "symfony/process": "^6.4|^7.0"
  10508. },
  10509. "type": "library",
  10510. "autoload": {
  10511. "psr-4": {
  10512. "Symfony\\Component\\BrowserKit\\": ""
  10513. },
  10514. "exclude-from-classmap": [
  10515. "/Tests/"
  10516. ]
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "MIT"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Fabien Potencier",
  10525. "email": "fabien@symfony.com"
  10526. },
  10527. {
  10528. "name": "Symfony Community",
  10529. "homepage": "https://symfony.com/contributors"
  10530. }
  10531. ],
  10532. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10533. "homepage": "https://symfony.com",
  10534. "support": {
  10535. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  10536. },
  10537. "funding": [
  10538. {
  10539. "url": "https://symfony.com/sponsor",
  10540. "type": "custom"
  10541. },
  10542. {
  10543. "url": "https://github.com/fabpot",
  10544. "type": "github"
  10545. },
  10546. {
  10547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10548. "type": "tidelift"
  10549. }
  10550. ],
  10551. "time": "2024-05-31T14:57:53+00:00"
  10552. },
  10553. {
  10554. "name": "symfony/css-selector",
  10555. "version": "v7.1.1",
  10556. "source": {
  10557. "type": "git",
  10558. "url": "https://github.com/symfony/css-selector.git",
  10559. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  10560. },
  10561. "dist": {
  10562. "type": "zip",
  10563. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10564. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10565. "shasum": ""
  10566. },
  10567. "require": {
  10568. "php": ">=8.2"
  10569. },
  10570. "type": "library",
  10571. "autoload": {
  10572. "psr-4": {
  10573. "Symfony\\Component\\CssSelector\\": ""
  10574. },
  10575. "exclude-from-classmap": [
  10576. "/Tests/"
  10577. ]
  10578. },
  10579. "notification-url": "https://packagist.org/downloads/",
  10580. "license": [
  10581. "MIT"
  10582. ],
  10583. "authors": [
  10584. {
  10585. "name": "Fabien Potencier",
  10586. "email": "fabien@symfony.com"
  10587. },
  10588. {
  10589. "name": "Jean-François Simon",
  10590. "email": "jeanfrancois.simon@sensiolabs.com"
  10591. },
  10592. {
  10593. "name": "Symfony Community",
  10594. "homepage": "https://symfony.com/contributors"
  10595. }
  10596. ],
  10597. "description": "Converts CSS selectors to XPath expressions",
  10598. "homepage": "https://symfony.com",
  10599. "support": {
  10600. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10601. },
  10602. "funding": [
  10603. {
  10604. "url": "https://symfony.com/sponsor",
  10605. "type": "custom"
  10606. },
  10607. {
  10608. "url": "https://github.com/fabpot",
  10609. "type": "github"
  10610. },
  10611. {
  10612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10613. "type": "tidelift"
  10614. }
  10615. ],
  10616. "time": "2024-05-31T14:57:53+00:00"
  10617. },
  10618. {
  10619. "name": "symfony/debug-bundle",
  10620. "version": "v7.1.1",
  10621. "source": {
  10622. "type": "git",
  10623. "url": "https://github.com/symfony/debug-bundle.git",
  10624. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10625. },
  10626. "dist": {
  10627. "type": "zip",
  10628. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10629. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10630. "shasum": ""
  10631. },
  10632. "require": {
  10633. "ext-xml": "*",
  10634. "php": ">=8.2",
  10635. "symfony/dependency-injection": "^6.4|^7.0",
  10636. "symfony/http-kernel": "^6.4|^7.0",
  10637. "symfony/twig-bridge": "^6.4|^7.0",
  10638. "symfony/var-dumper": "^6.4|^7.0"
  10639. },
  10640. "conflict": {
  10641. "symfony/config": "<6.4",
  10642. "symfony/dependency-injection": "<6.4"
  10643. },
  10644. "require-dev": {
  10645. "symfony/config": "^6.4|^7.0",
  10646. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10647. },
  10648. "type": "symfony-bundle",
  10649. "autoload": {
  10650. "psr-4": {
  10651. "Symfony\\Bundle\\DebugBundle\\": ""
  10652. },
  10653. "exclude-from-classmap": [
  10654. "/Tests/"
  10655. ]
  10656. },
  10657. "notification-url": "https://packagist.org/downloads/",
  10658. "license": [
  10659. "MIT"
  10660. ],
  10661. "authors": [
  10662. {
  10663. "name": "Fabien Potencier",
  10664. "email": "fabien@symfony.com"
  10665. },
  10666. {
  10667. "name": "Symfony Community",
  10668. "homepage": "https://symfony.com/contributors"
  10669. }
  10670. ],
  10671. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10672. "homepage": "https://symfony.com",
  10673. "support": {
  10674. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10675. },
  10676. "funding": [
  10677. {
  10678. "url": "https://symfony.com/sponsor",
  10679. "type": "custom"
  10680. },
  10681. {
  10682. "url": "https://github.com/fabpot",
  10683. "type": "github"
  10684. },
  10685. {
  10686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10687. "type": "tidelift"
  10688. }
  10689. ],
  10690. "time": "2024-05-31T14:55:39+00:00"
  10691. },
  10692. {
  10693. "name": "symfony/dom-crawler",
  10694. "version": "v7.1.5",
  10695. "source": {
  10696. "type": "git",
  10697. "url": "https://github.com/symfony/dom-crawler.git",
  10698. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  10699. },
  10700. "dist": {
  10701. "type": "zip",
  10702. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  10703. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  10704. "shasum": ""
  10705. },
  10706. "require": {
  10707. "masterminds/html5": "^2.6",
  10708. "php": ">=8.2",
  10709. "symfony/polyfill-ctype": "~1.8",
  10710. "symfony/polyfill-mbstring": "~1.0"
  10711. },
  10712. "require-dev": {
  10713. "symfony/css-selector": "^6.4|^7.0"
  10714. },
  10715. "type": "library",
  10716. "autoload": {
  10717. "psr-4": {
  10718. "Symfony\\Component\\DomCrawler\\": ""
  10719. },
  10720. "exclude-from-classmap": [
  10721. "/Tests/"
  10722. ]
  10723. },
  10724. "notification-url": "https://packagist.org/downloads/",
  10725. "license": [
  10726. "MIT"
  10727. ],
  10728. "authors": [
  10729. {
  10730. "name": "Fabien Potencier",
  10731. "email": "fabien@symfony.com"
  10732. },
  10733. {
  10734. "name": "Symfony Community",
  10735. "homepage": "https://symfony.com/contributors"
  10736. }
  10737. ],
  10738. "description": "Eases DOM navigation for HTML and XML documents",
  10739. "homepage": "https://symfony.com",
  10740. "support": {
  10741. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  10742. },
  10743. "funding": [
  10744. {
  10745. "url": "https://symfony.com/sponsor",
  10746. "type": "custom"
  10747. },
  10748. {
  10749. "url": "https://github.com/fabpot",
  10750. "type": "github"
  10751. },
  10752. {
  10753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10754. "type": "tidelift"
  10755. }
  10756. ],
  10757. "time": "2024-09-15T06:48:17+00:00"
  10758. },
  10759. {
  10760. "name": "symfony/maker-bundle",
  10761. "version": "v1.61.0",
  10762. "source": {
  10763. "type": "git",
  10764. "url": "https://github.com/symfony/maker-bundle.git",
  10765. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  10766. },
  10767. "dist": {
  10768. "type": "zip",
  10769. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10770. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10771. "shasum": ""
  10772. },
  10773. "require": {
  10774. "doctrine/inflector": "^2.0",
  10775. "nikic/php-parser": "^4.18|^5.0",
  10776. "php": ">=8.1",
  10777. "symfony/config": "^6.4|^7.0",
  10778. "symfony/console": "^6.4|^7.0",
  10779. "symfony/dependency-injection": "^6.4|^7.0",
  10780. "symfony/deprecation-contracts": "^2.2|^3",
  10781. "symfony/filesystem": "^6.4|^7.0",
  10782. "symfony/finder": "^6.4|^7.0",
  10783. "symfony/framework-bundle": "^6.4|^7.0",
  10784. "symfony/http-kernel": "^6.4|^7.0",
  10785. "symfony/process": "^6.4|^7.0"
  10786. },
  10787. "conflict": {
  10788. "doctrine/doctrine-bundle": "<2.10",
  10789. "doctrine/orm": "<2.15"
  10790. },
  10791. "require-dev": {
  10792. "composer/semver": "^3.0",
  10793. "doctrine/doctrine-bundle": "^2.5.0",
  10794. "doctrine/orm": "^2.15|^3",
  10795. "symfony/http-client": "^6.4|^7.0",
  10796. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10797. "symfony/security-core": "^6.4|^7.0",
  10798. "symfony/yaml": "^6.4|^7.0",
  10799. "twig/twig": "^3.0|^4.x-dev"
  10800. },
  10801. "type": "symfony-bundle",
  10802. "extra": {
  10803. "branch-alias": {
  10804. "dev-main": "1.x-dev"
  10805. }
  10806. },
  10807. "autoload": {
  10808. "psr-4": {
  10809. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10810. }
  10811. },
  10812. "notification-url": "https://packagist.org/downloads/",
  10813. "license": [
  10814. "MIT"
  10815. ],
  10816. "authors": [
  10817. {
  10818. "name": "Symfony Community",
  10819. "homepage": "https://symfony.com/contributors"
  10820. }
  10821. ],
  10822. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10823. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10824. "keywords": [
  10825. "code generator",
  10826. "dev",
  10827. "generator",
  10828. "scaffold",
  10829. "scaffolding"
  10830. ],
  10831. "support": {
  10832. "issues": "https://github.com/symfony/maker-bundle/issues",
  10833. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  10834. },
  10835. "funding": [
  10836. {
  10837. "url": "https://symfony.com/sponsor",
  10838. "type": "custom"
  10839. },
  10840. {
  10841. "url": "https://github.com/fabpot",
  10842. "type": "github"
  10843. },
  10844. {
  10845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10846. "type": "tidelift"
  10847. }
  10848. ],
  10849. "time": "2024-08-29T22:50:23+00:00"
  10850. },
  10851. {
  10852. "name": "symfony/phpunit-bridge",
  10853. "version": "v7.1.4",
  10854. "source": {
  10855. "type": "git",
  10856. "url": "https://github.com/symfony/phpunit-bridge.git",
  10857. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  10858. },
  10859. "dist": {
  10860. "type": "zip",
  10861. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10862. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10863. "shasum": ""
  10864. },
  10865. "require": {
  10866. "php": ">=7.2.5"
  10867. },
  10868. "conflict": {
  10869. "phpunit/phpunit": "<7.5|9.1.2"
  10870. },
  10871. "require-dev": {
  10872. "symfony/deprecation-contracts": "^2.5|^3.0",
  10873. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10874. "symfony/polyfill-php81": "^1.27"
  10875. },
  10876. "bin": [
  10877. "bin/simple-phpunit"
  10878. ],
  10879. "type": "symfony-bridge",
  10880. "extra": {
  10881. "thanks": {
  10882. "name": "phpunit/phpunit",
  10883. "url": "https://github.com/sebastianbergmann/phpunit"
  10884. }
  10885. },
  10886. "autoload": {
  10887. "files": [
  10888. "bootstrap.php"
  10889. ],
  10890. "psr-4": {
  10891. "Symfony\\Bridge\\PhpUnit\\": ""
  10892. },
  10893. "exclude-from-classmap": [
  10894. "/Tests/",
  10895. "/bin/"
  10896. ]
  10897. },
  10898. "notification-url": "https://packagist.org/downloads/",
  10899. "license": [
  10900. "MIT"
  10901. ],
  10902. "authors": [
  10903. {
  10904. "name": "Nicolas Grekas",
  10905. "email": "p@tchwork.com"
  10906. },
  10907. {
  10908. "name": "Symfony Community",
  10909. "homepage": "https://symfony.com/contributors"
  10910. }
  10911. ],
  10912. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10913. "homepage": "https://symfony.com",
  10914. "support": {
  10915. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  10916. },
  10917. "funding": [
  10918. {
  10919. "url": "https://symfony.com/sponsor",
  10920. "type": "custom"
  10921. },
  10922. {
  10923. "url": "https://github.com/fabpot",
  10924. "type": "github"
  10925. },
  10926. {
  10927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10928. "type": "tidelift"
  10929. }
  10930. ],
  10931. "time": "2024-08-13T14:28:19+00:00"
  10932. },
  10933. {
  10934. "name": "symfony/web-profiler-bundle",
  10935. "version": "v7.1.4",
  10936. "source": {
  10937. "type": "git",
  10938. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10939. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  10940. },
  10941. "dist": {
  10942. "type": "zip",
  10943. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  10944. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  10945. "shasum": ""
  10946. },
  10947. "require": {
  10948. "php": ">=8.2",
  10949. "symfony/config": "^6.4|^7.0",
  10950. "symfony/framework-bundle": "^6.4|^7.0",
  10951. "symfony/http-kernel": "^6.4|^7.0",
  10952. "symfony/routing": "^6.4|^7.0",
  10953. "symfony/twig-bundle": "^6.4|^7.0",
  10954. "twig/twig": "^3.10"
  10955. },
  10956. "conflict": {
  10957. "symfony/form": "<6.4",
  10958. "symfony/mailer": "<6.4",
  10959. "symfony/messenger": "<6.4"
  10960. },
  10961. "require-dev": {
  10962. "symfony/browser-kit": "^6.4|^7.0",
  10963. "symfony/console": "^6.4|^7.0",
  10964. "symfony/css-selector": "^6.4|^7.0",
  10965. "symfony/stopwatch": "^6.4|^7.0"
  10966. },
  10967. "type": "symfony-bundle",
  10968. "autoload": {
  10969. "psr-4": {
  10970. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10971. },
  10972. "exclude-from-classmap": [
  10973. "/Tests/"
  10974. ]
  10975. },
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "MIT"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Fabien Potencier",
  10983. "email": "fabien@symfony.com"
  10984. },
  10985. {
  10986. "name": "Symfony Community",
  10987. "homepage": "https://symfony.com/contributors"
  10988. }
  10989. ],
  10990. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10991. "homepage": "https://symfony.com",
  10992. "keywords": [
  10993. "dev"
  10994. ],
  10995. "support": {
  10996. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  10997. },
  10998. "funding": [
  10999. {
  11000. "url": "https://symfony.com/sponsor",
  11001. "type": "custom"
  11002. },
  11003. {
  11004. "url": "https://github.com/fabpot",
  11005. "type": "github"
  11006. },
  11007. {
  11008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11009. "type": "tidelift"
  11010. }
  11011. ],
  11012. "time": "2024-08-12T09:59:40+00:00"
  11013. },
  11014. {
  11015. "name": "theseer/tokenizer",
  11016. "version": "1.2.3",
  11017. "source": {
  11018. "type": "git",
  11019. "url": "https://github.com/theseer/tokenizer.git",
  11020. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11021. },
  11022. "dist": {
  11023. "type": "zip",
  11024. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11025. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11026. "shasum": ""
  11027. },
  11028. "require": {
  11029. "ext-dom": "*",
  11030. "ext-tokenizer": "*",
  11031. "ext-xmlwriter": "*",
  11032. "php": "^7.2 || ^8.0"
  11033. },
  11034. "type": "library",
  11035. "autoload": {
  11036. "classmap": [
  11037. "src/"
  11038. ]
  11039. },
  11040. "notification-url": "https://packagist.org/downloads/",
  11041. "license": [
  11042. "BSD-3-Clause"
  11043. ],
  11044. "authors": [
  11045. {
  11046. "name": "Arne Blankerts",
  11047. "email": "arne@blankerts.de",
  11048. "role": "Developer"
  11049. }
  11050. ],
  11051. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11052. "support": {
  11053. "issues": "https://github.com/theseer/tokenizer/issues",
  11054. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11055. },
  11056. "funding": [
  11057. {
  11058. "url": "https://github.com/theseer",
  11059. "type": "github"
  11060. }
  11061. ],
  11062. "time": "2024-03-03T12:36:25+00:00"
  11063. }
  11064. ],
  11065. "aliases": [],
  11066. "minimum-stability": "stable",
  11067. "stability-flags": [],
  11068. "prefer-stable": true,
  11069. "prefer-lowest": false,
  11070. "platform": {
  11071. "php": ">=8.2",
  11072. "ext-ctype": "*",
  11073. "ext-iconv": "*"
  11074. },
  11075. "platform-dev": [],
  11076. "plugin-api-version": "2.6.0"
  11077. }