composer.lock 379 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507
  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": "fa79c426ff85c593911fc557e872af7f",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  20. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.11",
  28. "symfony/phpunit-bridge": "^3 || ^7"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Composer\\Semver\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Nils Adermann",
  48. "email": "naderman@naderman.de",
  49. "homepage": "http://www.naderman.de"
  50. },
  51. {
  52. "name": "Jordi Boggiano",
  53. "email": "j.boggiano@seld.be",
  54. "homepage": "http://seld.be"
  55. },
  56. {
  57. "name": "Rob Bast",
  58. "email": "rob.bast@gmail.com",
  59. "homepage": "http://robbast.nl"
  60. }
  61. ],
  62. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  63. "keywords": [
  64. "semantic",
  65. "semver",
  66. "validation",
  67. "versioning"
  68. ],
  69. "support": {
  70. "irc": "ircs://irc.libera.chat:6697/composer",
  71. "issues": "https://github.com/composer/semver/issues",
  72. "source": "https://github.com/composer/semver/tree/3.4.3"
  73. },
  74. "funding": [
  75. {
  76. "url": "https://packagist.com",
  77. "type": "custom"
  78. },
  79. {
  80. "url": "https://github.com/composer",
  81. "type": "github"
  82. },
  83. {
  84. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  85. "type": "tidelift"
  86. }
  87. ],
  88. "time": "2024-09-19T14:15:21+00:00"
  89. },
  90. {
  91. "name": "dflydev/dot-access-data",
  92. "version": "v3.0.3",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  96. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  101. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "php": "^7.1 || ^8.0"
  106. },
  107. "require-dev": {
  108. "phpstan/phpstan": "^0.12.42",
  109. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  110. "scrutinizer/ocular": "1.6.0",
  111. "squizlabs/php_codesniffer": "^3.5",
  112. "vimeo/psalm": "^4.0.0"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-main": "3.x-dev"
  118. }
  119. },
  120. "autoload": {
  121. "psr-4": {
  122. "Dflydev\\DotAccessData\\": "src/"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Dragonfly Development Inc.",
  132. "email": "info@dflydev.com",
  133. "homepage": "http://dflydev.com"
  134. },
  135. {
  136. "name": "Beau Simensen",
  137. "email": "beau@dflydev.com",
  138. "homepage": "http://beausimensen.com"
  139. },
  140. {
  141. "name": "Carlos Frutos",
  142. "email": "carlos@kiwing.it",
  143. "homepage": "https://github.com/cfrutos"
  144. },
  145. {
  146. "name": "Colin O'Dell",
  147. "email": "colinodell@gmail.com",
  148. "homepage": "https://www.colinodell.com"
  149. }
  150. ],
  151. "description": "Given a deep data structure, access data by dot notation.",
  152. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  153. "keywords": [
  154. "access",
  155. "data",
  156. "dot",
  157. "notation"
  158. ],
  159. "support": {
  160. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  161. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  162. },
  163. "time": "2024-07-08T12:26:09+00:00"
  164. },
  165. {
  166. "name": "doctrine/cache",
  167. "version": "2.2.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/doctrine/cache.git",
  171. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  176. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "php": "~7.1 || ^8.0"
  181. },
  182. "conflict": {
  183. "doctrine/common": ">2.2,<2.4"
  184. },
  185. "require-dev": {
  186. "cache/integration-tests": "dev-master",
  187. "doctrine/coding-standard": "^9",
  188. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  189. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  190. "symfony/cache": "^4.4 || ^5.4 || ^6",
  191. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "psr-4": {
  196. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Guilherme Blanco",
  206. "email": "guilhermeblanco@gmail.com"
  207. },
  208. {
  209. "name": "Roman Borschel",
  210. "email": "roman@code-factory.org"
  211. },
  212. {
  213. "name": "Benjamin Eberlei",
  214. "email": "kontakt@beberlei.de"
  215. },
  216. {
  217. "name": "Jonathan Wage",
  218. "email": "jonwage@gmail.com"
  219. },
  220. {
  221. "name": "Johannes Schmitt",
  222. "email": "schmittjoh@gmail.com"
  223. }
  224. ],
  225. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  226. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  227. "keywords": [
  228. "abstraction",
  229. "apcu",
  230. "cache",
  231. "caching",
  232. "couchdb",
  233. "memcached",
  234. "php",
  235. "redis",
  236. "xcache"
  237. ],
  238. "support": {
  239. "issues": "https://github.com/doctrine/cache/issues",
  240. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  241. },
  242. "funding": [
  243. {
  244. "url": "https://www.doctrine-project.org/sponsorship.html",
  245. "type": "custom"
  246. },
  247. {
  248. "url": "https://www.patreon.com/phpdoctrine",
  249. "type": "patreon"
  250. },
  251. {
  252. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  253. "type": "tidelift"
  254. }
  255. ],
  256. "time": "2022-05-20T20:07:39+00:00"
  257. },
  258. {
  259. "name": "doctrine/collections",
  260. "version": "2.2.2",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/collections.git",
  264. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  269. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "doctrine/deprecations": "^1",
  274. "php": "^8.1"
  275. },
  276. "require-dev": {
  277. "doctrine/coding-standard": "^12",
  278. "ext-json": "*",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.0",
  281. "phpunit/phpunit": "^10.5",
  282. "vimeo/psalm": "^5.11"
  283. },
  284. "type": "library",
  285. "autoload": {
  286. "psr-4": {
  287. "Doctrine\\Common\\Collections\\": "src"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Guilherme Blanco",
  297. "email": "guilhermeblanco@gmail.com"
  298. },
  299. {
  300. "name": "Roman Borschel",
  301. "email": "roman@code-factory.org"
  302. },
  303. {
  304. "name": "Benjamin Eberlei",
  305. "email": "kontakt@beberlei.de"
  306. },
  307. {
  308. "name": "Jonathan Wage",
  309. "email": "jonwage@gmail.com"
  310. },
  311. {
  312. "name": "Johannes Schmitt",
  313. "email": "schmittjoh@gmail.com"
  314. }
  315. ],
  316. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  317. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  318. "keywords": [
  319. "array",
  320. "collections",
  321. "iterators",
  322. "php"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/doctrine/collections/issues",
  326. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://www.doctrine-project.org/sponsorship.html",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://www.patreon.com/phpdoctrine",
  335. "type": "patreon"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2024-04-18T06:56:21+00:00"
  343. },
  344. {
  345. "name": "doctrine/dbal",
  346. "version": "3.9.3",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/doctrine/dbal.git",
  350. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  355. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "composer-runtime-api": "^2",
  360. "doctrine/cache": "^1.11|^2.0",
  361. "doctrine/deprecations": "^0.5.3|^1",
  362. "doctrine/event-manager": "^1|^2",
  363. "php": "^7.4 || ^8.0",
  364. "psr/cache": "^1|^2|^3",
  365. "psr/log": "^1|^2|^3"
  366. },
  367. "require-dev": {
  368. "doctrine/coding-standard": "12.0.0",
  369. "fig/log-test": "^1",
  370. "jetbrains/phpstorm-stubs": "2023.1",
  371. "phpstan/phpstan": "1.12.6",
  372. "phpstan/phpstan-strict-rules": "^1.6",
  373. "phpunit/phpunit": "9.6.20",
  374. "psalm/plugin-phpunit": "0.18.4",
  375. "slevomat/coding-standard": "8.13.1",
  376. "squizlabs/php_codesniffer": "3.10.2",
  377. "symfony/cache": "^5.4|^6.0|^7.0",
  378. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  379. "vimeo/psalm": "4.30.0"
  380. },
  381. "suggest": {
  382. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  383. },
  384. "bin": [
  385. "bin/doctrine-dbal"
  386. ],
  387. "type": "library",
  388. "autoload": {
  389. "psr-4": {
  390. "Doctrine\\DBAL\\": "src"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "Guilherme Blanco",
  400. "email": "guilhermeblanco@gmail.com"
  401. },
  402. {
  403. "name": "Roman Borschel",
  404. "email": "roman@code-factory.org"
  405. },
  406. {
  407. "name": "Benjamin Eberlei",
  408. "email": "kontakt@beberlei.de"
  409. },
  410. {
  411. "name": "Jonathan Wage",
  412. "email": "jonwage@gmail.com"
  413. }
  414. ],
  415. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  416. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  417. "keywords": [
  418. "abstraction",
  419. "database",
  420. "db2",
  421. "dbal",
  422. "mariadb",
  423. "mssql",
  424. "mysql",
  425. "oci8",
  426. "oracle",
  427. "pdo",
  428. "pgsql",
  429. "postgresql",
  430. "queryobject",
  431. "sasql",
  432. "sql",
  433. "sqlite",
  434. "sqlserver",
  435. "sqlsrv"
  436. ],
  437. "support": {
  438. "issues": "https://github.com/doctrine/dbal/issues",
  439. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  440. },
  441. "funding": [
  442. {
  443. "url": "https://www.doctrine-project.org/sponsorship.html",
  444. "type": "custom"
  445. },
  446. {
  447. "url": "https://www.patreon.com/phpdoctrine",
  448. "type": "patreon"
  449. },
  450. {
  451. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  452. "type": "tidelift"
  453. }
  454. ],
  455. "time": "2024-10-10T17:56:43+00:00"
  456. },
  457. {
  458. "name": "doctrine/deprecations",
  459. "version": "1.1.3",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/doctrine/deprecations.git",
  463. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  468. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "php": "^7.1 || ^8.0"
  473. },
  474. "require-dev": {
  475. "doctrine/coding-standard": "^9",
  476. "phpstan/phpstan": "1.4.10 || 1.10.15",
  477. "phpstan/phpstan-phpunit": "^1.0",
  478. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  479. "psalm/plugin-phpunit": "0.18.4",
  480. "psr/log": "^1 || ^2 || ^3",
  481. "vimeo/psalm": "4.30.0 || 5.12.0"
  482. },
  483. "suggest": {
  484. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  485. },
  486. "type": "library",
  487. "autoload": {
  488. "psr-4": {
  489. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "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.",
  497. "homepage": "https://www.doctrine-project.org/",
  498. "support": {
  499. "issues": "https://github.com/doctrine/deprecations/issues",
  500. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  501. },
  502. "time": "2024-01-30T19:34:25+00:00"
  503. },
  504. {
  505. "name": "doctrine/doctrine-bundle",
  506. "version": "2.13.0",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/doctrine/DoctrineBundle.git",
  510. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  515. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "doctrine/cache": "^1.11 || ^2.0",
  520. "doctrine/dbal": "^3.7.0 || ^4.0",
  521. "doctrine/persistence": "^2.2 || ^3",
  522. "doctrine/sql-formatter": "^1.0.1",
  523. "php": "^7.4 || ^8.0",
  524. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  525. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  526. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  527. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  528. "symfony/deprecation-contracts": "^2.1 || ^3",
  529. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  530. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  531. "symfony/polyfill-php80": "^1.15",
  532. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  533. },
  534. "conflict": {
  535. "doctrine/annotations": ">=3.0",
  536. "doctrine/orm": "<2.17 || >=4.0",
  537. "twig/twig": "<1.34 || >=2.0 <2.4"
  538. },
  539. "require-dev": {
  540. "doctrine/annotations": "^1 || ^2",
  541. "doctrine/coding-standard": "^12",
  542. "doctrine/deprecations": "^1.0",
  543. "doctrine/orm": "^2.17 || ^3.0",
  544. "friendsofphp/proxy-manager-lts": "^1.0",
  545. "phpunit/phpunit": "^9.5.26",
  546. "psalm/plugin-phpunit": "^0.18.4",
  547. "psalm/plugin-symfony": "^5",
  548. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  549. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  550. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  551. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  552. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  553. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  554. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  555. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  556. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  557. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  558. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  559. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  560. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  561. "vimeo/psalm": "^5.15"
  562. },
  563. "suggest": {
  564. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  565. "ext-pdo": "*",
  566. "symfony/web-profiler-bundle": "To use the data collector."
  567. },
  568. "type": "symfony-bundle",
  569. "autoload": {
  570. "psr-4": {
  571. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Fabien Potencier",
  581. "email": "fabien@symfony.com"
  582. },
  583. {
  584. "name": "Benjamin Eberlei",
  585. "email": "kontakt@beberlei.de"
  586. },
  587. {
  588. "name": "Symfony Community",
  589. "homepage": "https://symfony.com/contributors"
  590. },
  591. {
  592. "name": "Doctrine Project",
  593. "homepage": "https://www.doctrine-project.org/"
  594. }
  595. ],
  596. "description": "Symfony DoctrineBundle",
  597. "homepage": "https://www.doctrine-project.org",
  598. "keywords": [
  599. "database",
  600. "dbal",
  601. "orm",
  602. "persistence"
  603. ],
  604. "support": {
  605. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  606. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  607. },
  608. "funding": [
  609. {
  610. "url": "https://www.doctrine-project.org/sponsorship.html",
  611. "type": "custom"
  612. },
  613. {
  614. "url": "https://www.patreon.com/phpdoctrine",
  615. "type": "patreon"
  616. },
  617. {
  618. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  619. "type": "tidelift"
  620. }
  621. ],
  622. "time": "2024-09-01T09:46:40+00:00"
  623. },
  624. {
  625. "name": "doctrine/doctrine-migrations-bundle",
  626. "version": "3.3.1",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  630. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  635. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  636. "shasum": ""
  637. },
  638. "require": {
  639. "doctrine/doctrine-bundle": "^2.4",
  640. "doctrine/migrations": "^3.2",
  641. "php": "^7.2|^8.0",
  642. "symfony/deprecation-contracts": "^2.1 || ^3",
  643. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  644. },
  645. "require-dev": {
  646. "composer/semver": "^3.0",
  647. "doctrine/coding-standard": "^12",
  648. "doctrine/orm": "^2.6 || ^3",
  649. "doctrine/persistence": "^2.0 || ^3 ",
  650. "phpstan/phpstan": "^1.4",
  651. "phpstan/phpstan-deprecation-rules": "^1",
  652. "phpstan/phpstan-phpunit": "^1",
  653. "phpstan/phpstan-strict-rules": "^1.1",
  654. "phpstan/phpstan-symfony": "^1.3",
  655. "phpunit/phpunit": "^8.5|^9.5",
  656. "psalm/plugin-phpunit": "^0.18.4",
  657. "psalm/plugin-symfony": "^3 || ^5",
  658. "symfony/phpunit-bridge": "^6.3 || ^7",
  659. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  660. "vimeo/psalm": "^4.30 || ^5.15"
  661. },
  662. "type": "symfony-bundle",
  663. "autoload": {
  664. "psr-4": {
  665. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  666. },
  667. "exclude-from-classmap": [
  668. "/Tests/"
  669. ]
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "authors": [
  676. {
  677. "name": "Fabien Potencier",
  678. "email": "fabien@symfony.com"
  679. },
  680. {
  681. "name": "Doctrine Project",
  682. "homepage": "https://www.doctrine-project.org"
  683. },
  684. {
  685. "name": "Symfony Community",
  686. "homepage": "https://symfony.com/contributors"
  687. }
  688. ],
  689. "description": "Symfony DoctrineMigrationsBundle",
  690. "homepage": "https://www.doctrine-project.org",
  691. "keywords": [
  692. "dbal",
  693. "migrations",
  694. "schema"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  698. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  699. },
  700. "funding": [
  701. {
  702. "url": "https://www.doctrine-project.org/sponsorship.html",
  703. "type": "custom"
  704. },
  705. {
  706. "url": "https://www.patreon.com/phpdoctrine",
  707. "type": "patreon"
  708. },
  709. {
  710. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  711. "type": "tidelift"
  712. }
  713. ],
  714. "time": "2024-05-14T20:32:18+00:00"
  715. },
  716. {
  717. "name": "doctrine/event-manager",
  718. "version": "2.0.1",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/doctrine/event-manager.git",
  722. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  727. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  728. "shasum": ""
  729. },
  730. "require": {
  731. "php": "^8.1"
  732. },
  733. "conflict": {
  734. "doctrine/common": "<2.9"
  735. },
  736. "require-dev": {
  737. "doctrine/coding-standard": "^12",
  738. "phpstan/phpstan": "^1.8.8",
  739. "phpunit/phpunit": "^10.5",
  740. "vimeo/psalm": "^5.24"
  741. },
  742. "type": "library",
  743. "autoload": {
  744. "psr-4": {
  745. "Doctrine\\Common\\": "src"
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Guilherme Blanco",
  755. "email": "guilhermeblanco@gmail.com"
  756. },
  757. {
  758. "name": "Roman Borschel",
  759. "email": "roman@code-factory.org"
  760. },
  761. {
  762. "name": "Benjamin Eberlei",
  763. "email": "kontakt@beberlei.de"
  764. },
  765. {
  766. "name": "Jonathan Wage",
  767. "email": "jonwage@gmail.com"
  768. },
  769. {
  770. "name": "Johannes Schmitt",
  771. "email": "schmittjoh@gmail.com"
  772. },
  773. {
  774. "name": "Marco Pivetta",
  775. "email": "ocramius@gmail.com"
  776. }
  777. ],
  778. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  779. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  780. "keywords": [
  781. "event",
  782. "event dispatcher",
  783. "event manager",
  784. "event system",
  785. "events"
  786. ],
  787. "support": {
  788. "issues": "https://github.com/doctrine/event-manager/issues",
  789. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  790. },
  791. "funding": [
  792. {
  793. "url": "https://www.doctrine-project.org/sponsorship.html",
  794. "type": "custom"
  795. },
  796. {
  797. "url": "https://www.patreon.com/phpdoctrine",
  798. "type": "patreon"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2024-05-22T20:47:39+00:00"
  806. },
  807. {
  808. "name": "doctrine/inflector",
  809. "version": "2.0.10",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/doctrine/inflector.git",
  813. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  818. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": "^7.2 || ^8.0"
  823. },
  824. "require-dev": {
  825. "doctrine/coding-standard": "^11.0",
  826. "phpstan/phpstan": "^1.8",
  827. "phpstan/phpstan-phpunit": "^1.1",
  828. "phpstan/phpstan-strict-rules": "^1.3",
  829. "phpunit/phpunit": "^8.5 || ^9.5",
  830. "vimeo/psalm": "^4.25 || ^5.4"
  831. },
  832. "type": "library",
  833. "autoload": {
  834. "psr-4": {
  835. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  836. }
  837. },
  838. "notification-url": "https://packagist.org/downloads/",
  839. "license": [
  840. "MIT"
  841. ],
  842. "authors": [
  843. {
  844. "name": "Guilherme Blanco",
  845. "email": "guilhermeblanco@gmail.com"
  846. },
  847. {
  848. "name": "Roman Borschel",
  849. "email": "roman@code-factory.org"
  850. },
  851. {
  852. "name": "Benjamin Eberlei",
  853. "email": "kontakt@beberlei.de"
  854. },
  855. {
  856. "name": "Jonathan Wage",
  857. "email": "jonwage@gmail.com"
  858. },
  859. {
  860. "name": "Johannes Schmitt",
  861. "email": "schmittjoh@gmail.com"
  862. }
  863. ],
  864. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  865. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  866. "keywords": [
  867. "inflection",
  868. "inflector",
  869. "lowercase",
  870. "manipulation",
  871. "php",
  872. "plural",
  873. "singular",
  874. "strings",
  875. "uppercase",
  876. "words"
  877. ],
  878. "support": {
  879. "issues": "https://github.com/doctrine/inflector/issues",
  880. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  881. },
  882. "funding": [
  883. {
  884. "url": "https://www.doctrine-project.org/sponsorship.html",
  885. "type": "custom"
  886. },
  887. {
  888. "url": "https://www.patreon.com/phpdoctrine",
  889. "type": "patreon"
  890. },
  891. {
  892. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  893. "type": "tidelift"
  894. }
  895. ],
  896. "time": "2024-02-18T20:23:39+00:00"
  897. },
  898. {
  899. "name": "doctrine/instantiator",
  900. "version": "2.0.0",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/doctrine/instantiator.git",
  904. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  909. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  910. "shasum": ""
  911. },
  912. "require": {
  913. "php": "^8.1"
  914. },
  915. "require-dev": {
  916. "doctrine/coding-standard": "^11",
  917. "ext-pdo": "*",
  918. "ext-phar": "*",
  919. "phpbench/phpbench": "^1.2",
  920. "phpstan/phpstan": "^1.9.4",
  921. "phpstan/phpstan-phpunit": "^1.3",
  922. "phpunit/phpunit": "^9.5.27",
  923. "vimeo/psalm": "^5.4"
  924. },
  925. "type": "library",
  926. "autoload": {
  927. "psr-4": {
  928. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  929. }
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "MIT"
  934. ],
  935. "authors": [
  936. {
  937. "name": "Marco Pivetta",
  938. "email": "ocramius@gmail.com",
  939. "homepage": "https://ocramius.github.io/"
  940. }
  941. ],
  942. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  943. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  944. "keywords": [
  945. "constructor",
  946. "instantiate"
  947. ],
  948. "support": {
  949. "issues": "https://github.com/doctrine/instantiator/issues",
  950. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://www.doctrine-project.org/sponsorship.html",
  955. "type": "custom"
  956. },
  957. {
  958. "url": "https://www.patreon.com/phpdoctrine",
  959. "type": "patreon"
  960. },
  961. {
  962. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  963. "type": "tidelift"
  964. }
  965. ],
  966. "time": "2022-12-30T00:23:10+00:00"
  967. },
  968. {
  969. "name": "doctrine/lexer",
  970. "version": "3.0.1",
  971. "source": {
  972. "type": "git",
  973. "url": "https://github.com/doctrine/lexer.git",
  974. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  975. },
  976. "dist": {
  977. "type": "zip",
  978. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  979. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  980. "shasum": ""
  981. },
  982. "require": {
  983. "php": "^8.1"
  984. },
  985. "require-dev": {
  986. "doctrine/coding-standard": "^12",
  987. "phpstan/phpstan": "^1.10",
  988. "phpunit/phpunit": "^10.5",
  989. "psalm/plugin-phpunit": "^0.18.3",
  990. "vimeo/psalm": "^5.21"
  991. },
  992. "type": "library",
  993. "autoload": {
  994. "psr-4": {
  995. "Doctrine\\Common\\Lexer\\": "src"
  996. }
  997. },
  998. "notification-url": "https://packagist.org/downloads/",
  999. "license": [
  1000. "MIT"
  1001. ],
  1002. "authors": [
  1003. {
  1004. "name": "Guilherme Blanco",
  1005. "email": "guilhermeblanco@gmail.com"
  1006. },
  1007. {
  1008. "name": "Roman Borschel",
  1009. "email": "roman@code-factory.org"
  1010. },
  1011. {
  1012. "name": "Johannes Schmitt",
  1013. "email": "schmittjoh@gmail.com"
  1014. }
  1015. ],
  1016. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1017. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1018. "keywords": [
  1019. "annotations",
  1020. "docblock",
  1021. "lexer",
  1022. "parser",
  1023. "php"
  1024. ],
  1025. "support": {
  1026. "issues": "https://github.com/doctrine/lexer/issues",
  1027. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1028. },
  1029. "funding": [
  1030. {
  1031. "url": "https://www.doctrine-project.org/sponsorship.html",
  1032. "type": "custom"
  1033. },
  1034. {
  1035. "url": "https://www.patreon.com/phpdoctrine",
  1036. "type": "patreon"
  1037. },
  1038. {
  1039. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1040. "type": "tidelift"
  1041. }
  1042. ],
  1043. "time": "2024-02-05T11:56:58+00:00"
  1044. },
  1045. {
  1046. "name": "doctrine/migrations",
  1047. "version": "3.8.2",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/doctrine/migrations.git",
  1051. "reference": "5007eb1168691225ac305fe16856755c20860842"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  1056. "reference": "5007eb1168691225ac305fe16856755c20860842",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "composer-runtime-api": "^2",
  1061. "doctrine/dbal": "^3.6 || ^4",
  1062. "doctrine/deprecations": "^0.5.3 || ^1",
  1063. "doctrine/event-manager": "^1.2 || ^2.0",
  1064. "php": "^8.1",
  1065. "psr/log": "^1.1.3 || ^2 || ^3",
  1066. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1067. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1068. "symfony/var-exporter": "^6.2 || ^7.0"
  1069. },
  1070. "conflict": {
  1071. "doctrine/orm": "<2.12 || >=4"
  1072. },
  1073. "require-dev": {
  1074. "doctrine/coding-standard": "^12",
  1075. "doctrine/orm": "^2.13 || ^3",
  1076. "doctrine/persistence": "^2 || ^3",
  1077. "doctrine/sql-formatter": "^1.0",
  1078. "ext-pdo_sqlite": "*",
  1079. "fig/log-test": "^1",
  1080. "phpstan/phpstan": "^1.10",
  1081. "phpstan/phpstan-deprecation-rules": "^1.1",
  1082. "phpstan/phpstan-phpunit": "^1.3",
  1083. "phpstan/phpstan-strict-rules": "^1.4",
  1084. "phpstan/phpstan-symfony": "^1.3",
  1085. "phpunit/phpunit": "^10.3",
  1086. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1087. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1088. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1089. },
  1090. "suggest": {
  1091. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1092. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1093. },
  1094. "bin": [
  1095. "bin/doctrine-migrations"
  1096. ],
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Migrations\\": "src"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Benjamin Eberlei",
  1110. "email": "kontakt@beberlei.de"
  1111. },
  1112. {
  1113. "name": "Jonathan Wage",
  1114. "email": "jonwage@gmail.com"
  1115. },
  1116. {
  1117. "name": "Michael Simonson",
  1118. "email": "contact@mikesimonson.com"
  1119. }
  1120. ],
  1121. "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.",
  1122. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1123. "keywords": [
  1124. "database",
  1125. "dbal",
  1126. "migrations"
  1127. ],
  1128. "support": {
  1129. "issues": "https://github.com/doctrine/migrations/issues",
  1130. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1131. },
  1132. "funding": [
  1133. {
  1134. "url": "https://www.doctrine-project.org/sponsorship.html",
  1135. "type": "custom"
  1136. },
  1137. {
  1138. "url": "https://www.patreon.com/phpdoctrine",
  1139. "type": "patreon"
  1140. },
  1141. {
  1142. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1143. "type": "tidelift"
  1144. }
  1145. ],
  1146. "time": "2024-10-10T21:35:27+00:00"
  1147. },
  1148. {
  1149. "name": "doctrine/orm",
  1150. "version": "3.3.0",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/doctrine/orm.git",
  1154. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1159. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "composer-runtime-api": "^2",
  1164. "doctrine/collections": "^2.2",
  1165. "doctrine/dbal": "^3.8.2 || ^4",
  1166. "doctrine/deprecations": "^0.5.3 || ^1",
  1167. "doctrine/event-manager": "^1.2 || ^2",
  1168. "doctrine/inflector": "^1.4 || ^2.0",
  1169. "doctrine/instantiator": "^1.3 || ^2",
  1170. "doctrine/lexer": "^3",
  1171. "doctrine/persistence": "^3.3.1",
  1172. "ext-ctype": "*",
  1173. "php": "^8.1",
  1174. "psr/cache": "^1 || ^2 || ^3",
  1175. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1176. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1177. },
  1178. "require-dev": {
  1179. "doctrine/coding-standard": "^12.0",
  1180. "phpbench/phpbench": "^1.0",
  1181. "phpdocumentor/guides-cli": "^1.4",
  1182. "phpstan/extension-installer": "^1.4",
  1183. "phpstan/phpstan": "1.12.6",
  1184. "phpstan/phpstan-deprecation-rules": "^1.2",
  1185. "phpunit/phpunit": "^10.4.0",
  1186. "psr/log": "^1 || ^2 || ^3",
  1187. "squizlabs/php_codesniffer": "3.7.2",
  1188. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1189. "vimeo/psalm": "5.24.0"
  1190. },
  1191. "suggest": {
  1192. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1193. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1194. },
  1195. "type": "library",
  1196. "autoload": {
  1197. "psr-4": {
  1198. "Doctrine\\ORM\\": "src"
  1199. }
  1200. },
  1201. "notification-url": "https://packagist.org/downloads/",
  1202. "license": [
  1203. "MIT"
  1204. ],
  1205. "authors": [
  1206. {
  1207. "name": "Guilherme Blanco",
  1208. "email": "guilhermeblanco@gmail.com"
  1209. },
  1210. {
  1211. "name": "Roman Borschel",
  1212. "email": "roman@code-factory.org"
  1213. },
  1214. {
  1215. "name": "Benjamin Eberlei",
  1216. "email": "kontakt@beberlei.de"
  1217. },
  1218. {
  1219. "name": "Jonathan Wage",
  1220. "email": "jonwage@gmail.com"
  1221. },
  1222. {
  1223. "name": "Marco Pivetta",
  1224. "email": "ocramius@gmail.com"
  1225. }
  1226. ],
  1227. "description": "Object-Relational-Mapper for PHP",
  1228. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1229. "keywords": [
  1230. "database",
  1231. "orm"
  1232. ],
  1233. "support": {
  1234. "issues": "https://github.com/doctrine/orm/issues",
  1235. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1236. },
  1237. "time": "2024-10-12T20:07:18+00:00"
  1238. },
  1239. {
  1240. "name": "doctrine/persistence",
  1241. "version": "3.3.3",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/doctrine/persistence.git",
  1245. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1250. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1251. "shasum": ""
  1252. },
  1253. "require": {
  1254. "doctrine/event-manager": "^1 || ^2",
  1255. "php": "^7.2 || ^8.0",
  1256. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1257. },
  1258. "conflict": {
  1259. "doctrine/common": "<2.10"
  1260. },
  1261. "require-dev": {
  1262. "doctrine/coding-standard": "^12",
  1263. "doctrine/common": "^3.0",
  1264. "phpstan/phpstan": "1.11.1",
  1265. "phpstan/phpstan-phpunit": "^1",
  1266. "phpstan/phpstan-strict-rules": "^1.1",
  1267. "phpunit/phpunit": "^8.5 || ^9.5",
  1268. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1269. "vimeo/psalm": "4.30.0 || 5.24.0"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Doctrine\\Persistence\\": "src/Persistence"
  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": "Johannes Schmitt",
  1300. "email": "schmittjoh@gmail.com"
  1301. },
  1302. {
  1303. "name": "Marco Pivetta",
  1304. "email": "ocramius@gmail.com"
  1305. }
  1306. ],
  1307. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1308. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1309. "keywords": [
  1310. "mapper",
  1311. "object",
  1312. "odm",
  1313. "orm",
  1314. "persistence"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/doctrine/persistence/issues",
  1318. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://www.doctrine-project.org/sponsorship.html",
  1323. "type": "custom"
  1324. },
  1325. {
  1326. "url": "https://www.patreon.com/phpdoctrine",
  1327. "type": "patreon"
  1328. },
  1329. {
  1330. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1331. "type": "tidelift"
  1332. }
  1333. ],
  1334. "time": "2024-06-20T10:14:30+00:00"
  1335. },
  1336. {
  1337. "name": "doctrine/sql-formatter",
  1338. "version": "1.5.1",
  1339. "source": {
  1340. "type": "git",
  1341. "url": "https://github.com/doctrine/sql-formatter.git",
  1342. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1343. },
  1344. "dist": {
  1345. "type": "zip",
  1346. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1347. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1348. "shasum": ""
  1349. },
  1350. "require": {
  1351. "php": "^8.1"
  1352. },
  1353. "require-dev": {
  1354. "doctrine/coding-standard": "^12",
  1355. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1356. "phpstan/phpstan": "^1.10",
  1357. "phpunit/phpunit": "^10.5",
  1358. "vimeo/psalm": "^5.24"
  1359. },
  1360. "bin": [
  1361. "bin/sql-formatter"
  1362. ],
  1363. "type": "library",
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Doctrine\\SqlFormatter\\": "src"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Jeremy Dorn",
  1376. "email": "jeremy@jeremydorn.com",
  1377. "homepage": "https://jeremydorn.com/"
  1378. }
  1379. ],
  1380. "description": "a PHP SQL highlighting library",
  1381. "homepage": "https://github.com/doctrine/sql-formatter/",
  1382. "keywords": [
  1383. "highlight",
  1384. "sql"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1388. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1389. },
  1390. "time": "2024-10-21T18:21:57+00:00"
  1391. },
  1392. {
  1393. "name": "egulias/email-validator",
  1394. "version": "4.0.2",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/egulias/EmailValidator.git",
  1398. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1403. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "doctrine/lexer": "^2.0 || ^3.0",
  1408. "php": ">=8.1",
  1409. "symfony/polyfill-intl-idn": "^1.26"
  1410. },
  1411. "require-dev": {
  1412. "phpunit/phpunit": "^10.2",
  1413. "vimeo/psalm": "^5.12"
  1414. },
  1415. "suggest": {
  1416. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1417. },
  1418. "type": "library",
  1419. "extra": {
  1420. "branch-alias": {
  1421. "dev-master": "4.0.x-dev"
  1422. }
  1423. },
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Egulias\\EmailValidator\\": "src"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Eduardo Gulias Davis"
  1436. }
  1437. ],
  1438. "description": "A library for validating emails against several RFCs",
  1439. "homepage": "https://github.com/egulias/EmailValidator",
  1440. "keywords": [
  1441. "email",
  1442. "emailvalidation",
  1443. "emailvalidator",
  1444. "validation",
  1445. "validator"
  1446. ],
  1447. "support": {
  1448. "issues": "https://github.com/egulias/EmailValidator/issues",
  1449. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1450. },
  1451. "funding": [
  1452. {
  1453. "url": "https://github.com/egulias",
  1454. "type": "github"
  1455. }
  1456. ],
  1457. "time": "2023-10-06T06:47:41+00:00"
  1458. },
  1459. {
  1460. "name": "league/commonmark",
  1461. "version": "2.5.3",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/thephpleague/commonmark.git",
  1465. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1470. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "ext-mbstring": "*",
  1475. "league/config": "^1.1.1",
  1476. "php": "^7.4 || ^8.0",
  1477. "psr/event-dispatcher": "^1.0",
  1478. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1479. "symfony/polyfill-php80": "^1.16"
  1480. },
  1481. "require-dev": {
  1482. "cebe/markdown": "^1.0",
  1483. "commonmark/cmark": "0.31.1",
  1484. "commonmark/commonmark.js": "0.31.1",
  1485. "composer/package-versions-deprecated": "^1.8",
  1486. "embed/embed": "^4.4",
  1487. "erusev/parsedown": "^1.0",
  1488. "ext-json": "*",
  1489. "github/gfm": "0.29.0",
  1490. "michelf/php-markdown": "^1.4 || ^2.0",
  1491. "nyholm/psr7": "^1.5",
  1492. "phpstan/phpstan": "^1.8.2",
  1493. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1494. "scrutinizer/ocular": "^1.8.1",
  1495. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1496. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1497. "unleashedtech/php-coding-standard": "^3.1.1",
  1498. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1499. },
  1500. "suggest": {
  1501. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1502. },
  1503. "type": "library",
  1504. "extra": {
  1505. "branch-alias": {
  1506. "dev-main": "2.6-dev"
  1507. }
  1508. },
  1509. "autoload": {
  1510. "psr-4": {
  1511. "League\\CommonMark\\": "src"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "BSD-3-Clause"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Colin O'Dell",
  1521. "email": "colinodell@gmail.com",
  1522. "homepage": "https://www.colinodell.com",
  1523. "role": "Lead Developer"
  1524. }
  1525. ],
  1526. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1527. "homepage": "https://commonmark.thephpleague.com",
  1528. "keywords": [
  1529. "commonmark",
  1530. "flavored",
  1531. "gfm",
  1532. "github",
  1533. "github-flavored",
  1534. "markdown",
  1535. "md",
  1536. "parser"
  1537. ],
  1538. "support": {
  1539. "docs": "https://commonmark.thephpleague.com/",
  1540. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1541. "issues": "https://github.com/thephpleague/commonmark/issues",
  1542. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1543. "source": "https://github.com/thephpleague/commonmark"
  1544. },
  1545. "funding": [
  1546. {
  1547. "url": "https://www.colinodell.com/sponsor",
  1548. "type": "custom"
  1549. },
  1550. {
  1551. "url": "https://www.paypal.me/colinpodell/10.00",
  1552. "type": "custom"
  1553. },
  1554. {
  1555. "url": "https://github.com/colinodell",
  1556. "type": "github"
  1557. },
  1558. {
  1559. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1560. "type": "tidelift"
  1561. }
  1562. ],
  1563. "time": "2024-08-16T11:46:16+00:00"
  1564. },
  1565. {
  1566. "name": "league/config",
  1567. "version": "v1.2.0",
  1568. "source": {
  1569. "type": "git",
  1570. "url": "https://github.com/thephpleague/config.git",
  1571. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1572. },
  1573. "dist": {
  1574. "type": "zip",
  1575. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1576. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1577. "shasum": ""
  1578. },
  1579. "require": {
  1580. "dflydev/dot-access-data": "^3.0.1",
  1581. "nette/schema": "^1.2",
  1582. "php": "^7.4 || ^8.0"
  1583. },
  1584. "require-dev": {
  1585. "phpstan/phpstan": "^1.8.2",
  1586. "phpunit/phpunit": "^9.5.5",
  1587. "scrutinizer/ocular": "^1.8.1",
  1588. "unleashedtech/php-coding-standard": "^3.1",
  1589. "vimeo/psalm": "^4.7.3"
  1590. },
  1591. "type": "library",
  1592. "extra": {
  1593. "branch-alias": {
  1594. "dev-main": "1.2-dev"
  1595. }
  1596. },
  1597. "autoload": {
  1598. "psr-4": {
  1599. "League\\Config\\": "src"
  1600. }
  1601. },
  1602. "notification-url": "https://packagist.org/downloads/",
  1603. "license": [
  1604. "BSD-3-Clause"
  1605. ],
  1606. "authors": [
  1607. {
  1608. "name": "Colin O'Dell",
  1609. "email": "colinodell@gmail.com",
  1610. "homepage": "https://www.colinodell.com",
  1611. "role": "Lead Developer"
  1612. }
  1613. ],
  1614. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1615. "homepage": "https://config.thephpleague.com",
  1616. "keywords": [
  1617. "array",
  1618. "config",
  1619. "configuration",
  1620. "dot",
  1621. "dot-access",
  1622. "nested",
  1623. "schema"
  1624. ],
  1625. "support": {
  1626. "docs": "https://config.thephpleague.com/",
  1627. "issues": "https://github.com/thephpleague/config/issues",
  1628. "rss": "https://github.com/thephpleague/config/releases.atom",
  1629. "source": "https://github.com/thephpleague/config"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://www.colinodell.com/sponsor",
  1634. "type": "custom"
  1635. },
  1636. {
  1637. "url": "https://www.paypal.me/colinpodell/10.00",
  1638. "type": "custom"
  1639. },
  1640. {
  1641. "url": "https://github.com/colinodell",
  1642. "type": "github"
  1643. }
  1644. ],
  1645. "time": "2022-12-11T20:36:23+00:00"
  1646. },
  1647. {
  1648. "name": "monolog/monolog",
  1649. "version": "3.7.0",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/Seldaek/monolog.git",
  1653. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1658. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1659. "shasum": ""
  1660. },
  1661. "require": {
  1662. "php": ">=8.1",
  1663. "psr/log": "^2.0 || ^3.0"
  1664. },
  1665. "provide": {
  1666. "psr/log-implementation": "3.0.0"
  1667. },
  1668. "require-dev": {
  1669. "aws/aws-sdk-php": "^3.0",
  1670. "doctrine/couchdb": "~1.0@dev",
  1671. "elasticsearch/elasticsearch": "^7 || ^8",
  1672. "ext-json": "*",
  1673. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1674. "guzzlehttp/guzzle": "^7.4.5",
  1675. "guzzlehttp/psr7": "^2.2",
  1676. "mongodb/mongodb": "^1.8",
  1677. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1678. "phpstan/phpstan": "^1.9",
  1679. "phpstan/phpstan-deprecation-rules": "^1.0",
  1680. "phpstan/phpstan-strict-rules": "^1.4",
  1681. "phpunit/phpunit": "^10.5.17",
  1682. "predis/predis": "^1.1 || ^2",
  1683. "ruflin/elastica": "^7",
  1684. "symfony/mailer": "^5.4 || ^6",
  1685. "symfony/mime": "^5.4 || ^6"
  1686. },
  1687. "suggest": {
  1688. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1689. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1690. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1691. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1692. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1693. "ext-mbstring": "Allow to work properly with unicode symbols",
  1694. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1695. "ext-openssl": "Required to send log messages using SSL",
  1696. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1697. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1698. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1699. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1700. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1701. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-main": "3.x-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "Monolog\\": "src/Monolog"
  1712. }
  1713. },
  1714. "notification-url": "https://packagist.org/downloads/",
  1715. "license": [
  1716. "MIT"
  1717. ],
  1718. "authors": [
  1719. {
  1720. "name": "Jordi Boggiano",
  1721. "email": "j.boggiano@seld.be",
  1722. "homepage": "https://seld.be"
  1723. }
  1724. ],
  1725. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1726. "homepage": "https://github.com/Seldaek/monolog",
  1727. "keywords": [
  1728. "log",
  1729. "logging",
  1730. "psr-3"
  1731. ],
  1732. "support": {
  1733. "issues": "https://github.com/Seldaek/monolog/issues",
  1734. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  1735. },
  1736. "funding": [
  1737. {
  1738. "url": "https://github.com/Seldaek",
  1739. "type": "github"
  1740. },
  1741. {
  1742. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1743. "type": "tidelift"
  1744. }
  1745. ],
  1746. "time": "2024-06-28T09:40:51+00:00"
  1747. },
  1748. {
  1749. "name": "nette/schema",
  1750. "version": "v1.3.2",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/nette/schema.git",
  1754. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  1759. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "nette/utils": "^4.0",
  1764. "php": "8.1 - 8.4"
  1765. },
  1766. "require-dev": {
  1767. "nette/tester": "^2.5.2",
  1768. "phpstan/phpstan-nette": "^1.0",
  1769. "tracy/tracy": "^2.8"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-master": "1.3-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "classmap": [
  1779. "src/"
  1780. ]
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "BSD-3-Clause",
  1785. "GPL-2.0-only",
  1786. "GPL-3.0-only"
  1787. ],
  1788. "authors": [
  1789. {
  1790. "name": "David Grudl",
  1791. "homepage": "https://davidgrudl.com"
  1792. },
  1793. {
  1794. "name": "Nette Community",
  1795. "homepage": "https://nette.org/contributors"
  1796. }
  1797. ],
  1798. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1799. "homepage": "https://nette.org",
  1800. "keywords": [
  1801. "config",
  1802. "nette"
  1803. ],
  1804. "support": {
  1805. "issues": "https://github.com/nette/schema/issues",
  1806. "source": "https://github.com/nette/schema/tree/v1.3.2"
  1807. },
  1808. "time": "2024-10-06T23:10:23+00:00"
  1809. },
  1810. {
  1811. "name": "nette/utils",
  1812. "version": "v4.0.5",
  1813. "source": {
  1814. "type": "git",
  1815. "url": "https://github.com/nette/utils.git",
  1816. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  1817. },
  1818. "dist": {
  1819. "type": "zip",
  1820. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  1821. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  1822. "shasum": ""
  1823. },
  1824. "require": {
  1825. "php": "8.0 - 8.4"
  1826. },
  1827. "conflict": {
  1828. "nette/finder": "<3",
  1829. "nette/schema": "<1.2.2"
  1830. },
  1831. "require-dev": {
  1832. "jetbrains/phpstorm-attributes": "dev-master",
  1833. "nette/tester": "^2.5",
  1834. "phpstan/phpstan": "^1.0",
  1835. "tracy/tracy": "^2.9"
  1836. },
  1837. "suggest": {
  1838. "ext-gd": "to use Image",
  1839. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1840. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1841. "ext-json": "to use Nette\\Utils\\Json",
  1842. "ext-mbstring": "to use Strings::lower() etc...",
  1843. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  1844. },
  1845. "type": "library",
  1846. "extra": {
  1847. "branch-alias": {
  1848. "dev-master": "4.0-dev"
  1849. }
  1850. },
  1851. "autoload": {
  1852. "classmap": [
  1853. "src/"
  1854. ]
  1855. },
  1856. "notification-url": "https://packagist.org/downloads/",
  1857. "license": [
  1858. "BSD-3-Clause",
  1859. "GPL-2.0-only",
  1860. "GPL-3.0-only"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "David Grudl",
  1865. "homepage": "https://davidgrudl.com"
  1866. },
  1867. {
  1868. "name": "Nette Community",
  1869. "homepage": "https://nette.org/contributors"
  1870. }
  1871. ],
  1872. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1873. "homepage": "https://nette.org",
  1874. "keywords": [
  1875. "array",
  1876. "core",
  1877. "datetime",
  1878. "images",
  1879. "json",
  1880. "nette",
  1881. "paginator",
  1882. "password",
  1883. "slugify",
  1884. "string",
  1885. "unicode",
  1886. "utf-8",
  1887. "utility",
  1888. "validation"
  1889. ],
  1890. "support": {
  1891. "issues": "https://github.com/nette/utils/issues",
  1892. "source": "https://github.com/nette/utils/tree/v4.0.5"
  1893. },
  1894. "time": "2024-08-07T15:39:19+00:00"
  1895. },
  1896. {
  1897. "name": "phpdocumentor/reflection-common",
  1898. "version": "2.2.0",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1902. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1907. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "php": "^7.2 || ^8.0"
  1912. },
  1913. "type": "library",
  1914. "extra": {
  1915. "branch-alias": {
  1916. "dev-2.x": "2.x-dev"
  1917. }
  1918. },
  1919. "autoload": {
  1920. "psr-4": {
  1921. "phpDocumentor\\Reflection\\": "src/"
  1922. }
  1923. },
  1924. "notification-url": "https://packagist.org/downloads/",
  1925. "license": [
  1926. "MIT"
  1927. ],
  1928. "authors": [
  1929. {
  1930. "name": "Jaap van Otterdijk",
  1931. "email": "opensource@ijaap.nl"
  1932. }
  1933. ],
  1934. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1935. "homepage": "http://www.phpdoc.org",
  1936. "keywords": [
  1937. "FQSEN",
  1938. "phpDocumentor",
  1939. "phpdoc",
  1940. "reflection",
  1941. "static analysis"
  1942. ],
  1943. "support": {
  1944. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1945. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1946. },
  1947. "time": "2020-06-27T09:03:43+00:00"
  1948. },
  1949. {
  1950. "name": "phpdocumentor/reflection-docblock",
  1951. "version": "5.4.1",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1955. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1960. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1961. "shasum": ""
  1962. },
  1963. "require": {
  1964. "doctrine/deprecations": "^1.1",
  1965. "ext-filter": "*",
  1966. "php": "^7.4 || ^8.0",
  1967. "phpdocumentor/reflection-common": "^2.2",
  1968. "phpdocumentor/type-resolver": "^1.7",
  1969. "phpstan/phpdoc-parser": "^1.7",
  1970. "webmozart/assert": "^1.9.1"
  1971. },
  1972. "require-dev": {
  1973. "mockery/mockery": "~1.3.5",
  1974. "phpstan/extension-installer": "^1.1",
  1975. "phpstan/phpstan": "^1.8",
  1976. "phpstan/phpstan-mockery": "^1.1",
  1977. "phpstan/phpstan-webmozart-assert": "^1.2",
  1978. "phpunit/phpunit": "^9.5",
  1979. "vimeo/psalm": "^5.13"
  1980. },
  1981. "type": "library",
  1982. "extra": {
  1983. "branch-alias": {
  1984. "dev-master": "5.x-dev"
  1985. }
  1986. },
  1987. "autoload": {
  1988. "psr-4": {
  1989. "phpDocumentor\\Reflection\\": "src"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Mike van Riel",
  1999. "email": "me@mikevanriel.com"
  2000. },
  2001. {
  2002. "name": "Jaap van Otterdijk",
  2003. "email": "opensource@ijaap.nl"
  2004. }
  2005. ],
  2006. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2007. "support": {
  2008. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2009. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2010. },
  2011. "time": "2024-05-21T05:55:05+00:00"
  2012. },
  2013. {
  2014. "name": "phpdocumentor/type-resolver",
  2015. "version": "1.8.2",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2019. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2024. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "doctrine/deprecations": "^1.0",
  2029. "php": "^7.3 || ^8.0",
  2030. "phpdocumentor/reflection-common": "^2.0",
  2031. "phpstan/phpdoc-parser": "^1.13"
  2032. },
  2033. "require-dev": {
  2034. "ext-tokenizer": "*",
  2035. "phpbench/phpbench": "^1.2",
  2036. "phpstan/extension-installer": "^1.1",
  2037. "phpstan/phpstan": "^1.8",
  2038. "phpstan/phpstan-phpunit": "^1.1",
  2039. "phpunit/phpunit": "^9.5",
  2040. "rector/rector": "^0.13.9",
  2041. "vimeo/psalm": "^4.25"
  2042. },
  2043. "type": "library",
  2044. "extra": {
  2045. "branch-alias": {
  2046. "dev-1.x": "1.x-dev"
  2047. }
  2048. },
  2049. "autoload": {
  2050. "psr-4": {
  2051. "phpDocumentor\\Reflection\\": "src"
  2052. }
  2053. },
  2054. "notification-url": "https://packagist.org/downloads/",
  2055. "license": [
  2056. "MIT"
  2057. ],
  2058. "authors": [
  2059. {
  2060. "name": "Mike van Riel",
  2061. "email": "me@mikevanriel.com"
  2062. }
  2063. ],
  2064. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2065. "support": {
  2066. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2067. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2068. },
  2069. "time": "2024-02-23T11:10:43+00:00"
  2070. },
  2071. {
  2072. "name": "phpstan/phpdoc-parser",
  2073. "version": "1.33.0",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2077. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2082. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "php": "^7.2 || ^8.0"
  2087. },
  2088. "require-dev": {
  2089. "doctrine/annotations": "^2.0",
  2090. "nikic/php-parser": "^4.15",
  2091. "php-parallel-lint/php-parallel-lint": "^1.2",
  2092. "phpstan/extension-installer": "^1.0",
  2093. "phpstan/phpstan": "^1.5",
  2094. "phpstan/phpstan-phpunit": "^1.1",
  2095. "phpstan/phpstan-strict-rules": "^1.0",
  2096. "phpunit/phpunit": "^9.5",
  2097. "symfony/process": "^5.2"
  2098. },
  2099. "type": "library",
  2100. "autoload": {
  2101. "psr-4": {
  2102. "PHPStan\\PhpDocParser\\": [
  2103. "src/"
  2104. ]
  2105. }
  2106. },
  2107. "notification-url": "https://packagist.org/downloads/",
  2108. "license": [
  2109. "MIT"
  2110. ],
  2111. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2112. "support": {
  2113. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2114. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2115. },
  2116. "time": "2024-10-13T11:25:22+00:00"
  2117. },
  2118. {
  2119. "name": "psr/cache",
  2120. "version": "3.0.0",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://github.com/php-fig/cache.git",
  2124. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2129. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2130. "shasum": ""
  2131. },
  2132. "require": {
  2133. "php": ">=8.0.0"
  2134. },
  2135. "type": "library",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-master": "1.0.x-dev"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "psr-4": {
  2143. "Psr\\Cache\\": "src/"
  2144. }
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "PHP-FIG",
  2153. "homepage": "https://www.php-fig.org/"
  2154. }
  2155. ],
  2156. "description": "Common interface for caching libraries",
  2157. "keywords": [
  2158. "cache",
  2159. "psr",
  2160. "psr-6"
  2161. ],
  2162. "support": {
  2163. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2164. },
  2165. "time": "2021-02-03T23:26:27+00:00"
  2166. },
  2167. {
  2168. "name": "psr/clock",
  2169. "version": "1.0.0",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/php-fig/clock.git",
  2173. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2178. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2179. "shasum": ""
  2180. },
  2181. "require": {
  2182. "php": "^7.0 || ^8.0"
  2183. },
  2184. "type": "library",
  2185. "autoload": {
  2186. "psr-4": {
  2187. "Psr\\Clock\\": "src/"
  2188. }
  2189. },
  2190. "notification-url": "https://packagist.org/downloads/",
  2191. "license": [
  2192. "MIT"
  2193. ],
  2194. "authors": [
  2195. {
  2196. "name": "PHP-FIG",
  2197. "homepage": "https://www.php-fig.org/"
  2198. }
  2199. ],
  2200. "description": "Common interface for reading the clock.",
  2201. "homepage": "https://github.com/php-fig/clock",
  2202. "keywords": [
  2203. "clock",
  2204. "now",
  2205. "psr",
  2206. "psr-20",
  2207. "time"
  2208. ],
  2209. "support": {
  2210. "issues": "https://github.com/php-fig/clock/issues",
  2211. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2212. },
  2213. "time": "2022-11-25T14:36:26+00:00"
  2214. },
  2215. {
  2216. "name": "psr/container",
  2217. "version": "2.0.2",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/php-fig/container.git",
  2221. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2226. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "php": ">=7.4.0"
  2231. },
  2232. "type": "library",
  2233. "extra": {
  2234. "branch-alias": {
  2235. "dev-master": "2.0.x-dev"
  2236. }
  2237. },
  2238. "autoload": {
  2239. "psr-4": {
  2240. "Psr\\Container\\": "src/"
  2241. }
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "PHP-FIG",
  2250. "homepage": "https://www.php-fig.org/"
  2251. }
  2252. ],
  2253. "description": "Common Container Interface (PHP FIG PSR-11)",
  2254. "homepage": "https://github.com/php-fig/container",
  2255. "keywords": [
  2256. "PSR-11",
  2257. "container",
  2258. "container-interface",
  2259. "container-interop",
  2260. "psr"
  2261. ],
  2262. "support": {
  2263. "issues": "https://github.com/php-fig/container/issues",
  2264. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2265. },
  2266. "time": "2021-11-05T16:47:00+00:00"
  2267. },
  2268. {
  2269. "name": "psr/event-dispatcher",
  2270. "version": "1.0.0",
  2271. "source": {
  2272. "type": "git",
  2273. "url": "https://github.com/php-fig/event-dispatcher.git",
  2274. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2275. },
  2276. "dist": {
  2277. "type": "zip",
  2278. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2279. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2280. "shasum": ""
  2281. },
  2282. "require": {
  2283. "php": ">=7.2.0"
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-master": "1.0.x-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "Psr\\EventDispatcher\\": "src/"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "PHP-FIG",
  2303. "homepage": "http://www.php-fig.org/"
  2304. }
  2305. ],
  2306. "description": "Standard interfaces for event handling.",
  2307. "keywords": [
  2308. "events",
  2309. "psr",
  2310. "psr-14"
  2311. ],
  2312. "support": {
  2313. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2314. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2315. },
  2316. "time": "2019-01-08T18:20:26+00:00"
  2317. },
  2318. {
  2319. "name": "psr/link",
  2320. "version": "2.0.1",
  2321. "source": {
  2322. "type": "git",
  2323. "url": "https://github.com/php-fig/link.git",
  2324. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2325. },
  2326. "dist": {
  2327. "type": "zip",
  2328. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2329. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2330. "shasum": ""
  2331. },
  2332. "require": {
  2333. "php": ">=8.0.0"
  2334. },
  2335. "suggest": {
  2336. "fig/link-util": "Provides some useful PSR-13 utilities"
  2337. },
  2338. "type": "library",
  2339. "extra": {
  2340. "branch-alias": {
  2341. "dev-master": "2.0.x-dev"
  2342. }
  2343. },
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Psr\\Link\\": "src/"
  2347. }
  2348. },
  2349. "notification-url": "https://packagist.org/downloads/",
  2350. "license": [
  2351. "MIT"
  2352. ],
  2353. "authors": [
  2354. {
  2355. "name": "PHP-FIG",
  2356. "homepage": "http://www.php-fig.org/"
  2357. }
  2358. ],
  2359. "description": "Common interfaces for HTTP links",
  2360. "homepage": "https://github.com/php-fig/link",
  2361. "keywords": [
  2362. "http",
  2363. "http-link",
  2364. "link",
  2365. "psr",
  2366. "psr-13",
  2367. "rest"
  2368. ],
  2369. "support": {
  2370. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2371. },
  2372. "time": "2021-03-11T23:00:27+00:00"
  2373. },
  2374. {
  2375. "name": "psr/log",
  2376. "version": "3.0.2",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/php-fig/log.git",
  2380. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2385. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "php": ">=8.0.0"
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "3.x-dev"
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Psr\\Log\\": "src"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "PHP-FIG",
  2409. "homepage": "https://www.php-fig.org/"
  2410. }
  2411. ],
  2412. "description": "Common interface for logging libraries",
  2413. "homepage": "https://github.com/php-fig/log",
  2414. "keywords": [
  2415. "log",
  2416. "psr",
  2417. "psr-3"
  2418. ],
  2419. "support": {
  2420. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2421. },
  2422. "time": "2024-09-11T13:17:53+00:00"
  2423. },
  2424. {
  2425. "name": "symfony/apache-pack",
  2426. "version": "v1.0.1",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/symfony/apache-pack.git",
  2430. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2435. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2436. "shasum": ""
  2437. },
  2438. "type": "symfony-pack",
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "MIT"
  2442. ],
  2443. "description": "A pack for Apache support in Symfony",
  2444. "support": {
  2445. "issues": "https://github.com/symfony/apache-pack/issues",
  2446. "source": "https://github.com/symfony/apache-pack/tree/master"
  2447. },
  2448. "time": "2017-12-12T01:46:35+00:00"
  2449. },
  2450. {
  2451. "name": "symfony/asset",
  2452. "version": "v7.1.1",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://github.com/symfony/asset.git",
  2456. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2461. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2462. "shasum": ""
  2463. },
  2464. "require": {
  2465. "php": ">=8.2"
  2466. },
  2467. "conflict": {
  2468. "symfony/http-foundation": "<6.4"
  2469. },
  2470. "require-dev": {
  2471. "symfony/http-client": "^6.4|^7.0",
  2472. "symfony/http-foundation": "^6.4|^7.0",
  2473. "symfony/http-kernel": "^6.4|^7.0"
  2474. },
  2475. "type": "library",
  2476. "autoload": {
  2477. "psr-4": {
  2478. "Symfony\\Component\\Asset\\": ""
  2479. },
  2480. "exclude-from-classmap": [
  2481. "/Tests/"
  2482. ]
  2483. },
  2484. "notification-url": "https://packagist.org/downloads/",
  2485. "license": [
  2486. "MIT"
  2487. ],
  2488. "authors": [
  2489. {
  2490. "name": "Fabien Potencier",
  2491. "email": "fabien@symfony.com"
  2492. },
  2493. {
  2494. "name": "Symfony Community",
  2495. "homepage": "https://symfony.com/contributors"
  2496. }
  2497. ],
  2498. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2499. "homepage": "https://symfony.com",
  2500. "support": {
  2501. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2502. },
  2503. "funding": [
  2504. {
  2505. "url": "https://symfony.com/sponsor",
  2506. "type": "custom"
  2507. },
  2508. {
  2509. "url": "https://github.com/fabpot",
  2510. "type": "github"
  2511. },
  2512. {
  2513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2514. "type": "tidelift"
  2515. }
  2516. ],
  2517. "time": "2024-05-31T14:57:53+00:00"
  2518. },
  2519. {
  2520. "name": "symfony/asset-mapper",
  2521. "version": "v7.1.5",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/symfony/asset-mapper.git",
  2525. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2530. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "composer/semver": "^3.0",
  2535. "php": ">=8.2",
  2536. "symfony/deprecation-contracts": "^2.1|^3",
  2537. "symfony/filesystem": "^7.1",
  2538. "symfony/http-client": "^6.4|^7.0"
  2539. },
  2540. "conflict": {
  2541. "symfony/framework-bundle": "<6.4"
  2542. },
  2543. "require-dev": {
  2544. "symfony/asset": "^6.4|^7.0",
  2545. "symfony/browser-kit": "^6.4|^7.0",
  2546. "symfony/console": "^6.4|^7.0",
  2547. "symfony/event-dispatcher-contracts": "^3.0",
  2548. "symfony/finder": "^6.4|^7.0",
  2549. "symfony/framework-bundle": "^6.4|^7.0",
  2550. "symfony/http-foundation": "^6.4|^7.0",
  2551. "symfony/http-kernel": "^6.4|^7.0",
  2552. "symfony/web-link": "^6.4|^7.0"
  2553. },
  2554. "type": "library",
  2555. "autoload": {
  2556. "psr-4": {
  2557. "Symfony\\Component\\AssetMapper\\": ""
  2558. },
  2559. "exclude-from-classmap": [
  2560. "/Tests/"
  2561. ]
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "MIT"
  2566. ],
  2567. "authors": [
  2568. {
  2569. "name": "Fabien Potencier",
  2570. "email": "fabien@symfony.com"
  2571. },
  2572. {
  2573. "name": "Symfony Community",
  2574. "homepage": "https://symfony.com/contributors"
  2575. }
  2576. ],
  2577. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2578. "homepage": "https://symfony.com",
  2579. "support": {
  2580. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  2581. },
  2582. "funding": [
  2583. {
  2584. "url": "https://symfony.com/sponsor",
  2585. "type": "custom"
  2586. },
  2587. {
  2588. "url": "https://github.com/fabpot",
  2589. "type": "github"
  2590. },
  2591. {
  2592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2593. "type": "tidelift"
  2594. }
  2595. ],
  2596. "time": "2024-09-19T08:57:32+00:00"
  2597. },
  2598. {
  2599. "name": "symfony/cache",
  2600. "version": "v7.1.5",
  2601. "source": {
  2602. "type": "git",
  2603. "url": "https://github.com/symfony/cache.git",
  2604. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  2605. },
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2609. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "php": ">=8.2",
  2614. "psr/cache": "^2.0|^3.0",
  2615. "psr/log": "^1.1|^2|^3",
  2616. "symfony/cache-contracts": "^2.5|^3",
  2617. "symfony/deprecation-contracts": "^2.5|^3.0",
  2618. "symfony/service-contracts": "^2.5|^3",
  2619. "symfony/var-exporter": "^6.4|^7.0"
  2620. },
  2621. "conflict": {
  2622. "doctrine/dbal": "<3.6",
  2623. "symfony/dependency-injection": "<6.4",
  2624. "symfony/http-kernel": "<6.4",
  2625. "symfony/var-dumper": "<6.4"
  2626. },
  2627. "provide": {
  2628. "psr/cache-implementation": "2.0|3.0",
  2629. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2630. "symfony/cache-implementation": "1.1|2.0|3.0"
  2631. },
  2632. "require-dev": {
  2633. "cache/integration-tests": "dev-master",
  2634. "doctrine/dbal": "^3.6|^4",
  2635. "predis/predis": "^1.1|^2.0",
  2636. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2637. "symfony/config": "^6.4|^7.0",
  2638. "symfony/dependency-injection": "^6.4|^7.0",
  2639. "symfony/filesystem": "^6.4|^7.0",
  2640. "symfony/http-kernel": "^6.4|^7.0",
  2641. "symfony/messenger": "^6.4|^7.0",
  2642. "symfony/var-dumper": "^6.4|^7.0"
  2643. },
  2644. "type": "library",
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Symfony\\Component\\Cache\\": ""
  2648. },
  2649. "classmap": [
  2650. "Traits/ValueWrapper.php"
  2651. ],
  2652. "exclude-from-classmap": [
  2653. "/Tests/"
  2654. ]
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "MIT"
  2659. ],
  2660. "authors": [
  2661. {
  2662. "name": "Nicolas Grekas",
  2663. "email": "p@tchwork.com"
  2664. },
  2665. {
  2666. "name": "Symfony Community",
  2667. "homepage": "https://symfony.com/contributors"
  2668. }
  2669. ],
  2670. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2671. "homepage": "https://symfony.com",
  2672. "keywords": [
  2673. "caching",
  2674. "psr6"
  2675. ],
  2676. "support": {
  2677. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  2678. },
  2679. "funding": [
  2680. {
  2681. "url": "https://symfony.com/sponsor",
  2682. "type": "custom"
  2683. },
  2684. {
  2685. "url": "https://github.com/fabpot",
  2686. "type": "github"
  2687. },
  2688. {
  2689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2690. "type": "tidelift"
  2691. }
  2692. ],
  2693. "time": "2024-09-17T09:16:35+00:00"
  2694. },
  2695. {
  2696. "name": "symfony/cache-contracts",
  2697. "version": "v3.5.0",
  2698. "source": {
  2699. "type": "git",
  2700. "url": "https://github.com/symfony/cache-contracts.git",
  2701. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  2702. },
  2703. "dist": {
  2704. "type": "zip",
  2705. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2706. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2707. "shasum": ""
  2708. },
  2709. "require": {
  2710. "php": ">=8.1",
  2711. "psr/cache": "^3.0"
  2712. },
  2713. "type": "library",
  2714. "extra": {
  2715. "branch-alias": {
  2716. "dev-main": "3.5-dev"
  2717. },
  2718. "thanks": {
  2719. "name": "symfony/contracts",
  2720. "url": "https://github.com/symfony/contracts"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "Symfony\\Contracts\\Cache\\": ""
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Nicolas Grekas",
  2735. "email": "p@tchwork.com"
  2736. },
  2737. {
  2738. "name": "Symfony Community",
  2739. "homepage": "https://symfony.com/contributors"
  2740. }
  2741. ],
  2742. "description": "Generic abstractions related to caching",
  2743. "homepage": "https://symfony.com",
  2744. "keywords": [
  2745. "abstractions",
  2746. "contracts",
  2747. "decoupling",
  2748. "interfaces",
  2749. "interoperability",
  2750. "standards"
  2751. ],
  2752. "support": {
  2753. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://symfony.com/sponsor",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://github.com/fabpot",
  2762. "type": "github"
  2763. },
  2764. {
  2765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2766. "type": "tidelift"
  2767. }
  2768. ],
  2769. "time": "2024-04-18T09:32:20+00:00"
  2770. },
  2771. {
  2772. "name": "symfony/clock",
  2773. "version": "v7.1.1",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/symfony/clock.git",
  2777. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2782. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "php": ">=8.2",
  2787. "psr/clock": "^1.0",
  2788. "symfony/polyfill-php83": "^1.28"
  2789. },
  2790. "provide": {
  2791. "psr/clock-implementation": "1.0"
  2792. },
  2793. "type": "library",
  2794. "autoload": {
  2795. "files": [
  2796. "Resources/now.php"
  2797. ],
  2798. "psr-4": {
  2799. "Symfony\\Component\\Clock\\": ""
  2800. },
  2801. "exclude-from-classmap": [
  2802. "/Tests/"
  2803. ]
  2804. },
  2805. "notification-url": "https://packagist.org/downloads/",
  2806. "license": [
  2807. "MIT"
  2808. ],
  2809. "authors": [
  2810. {
  2811. "name": "Nicolas Grekas",
  2812. "email": "p@tchwork.com"
  2813. },
  2814. {
  2815. "name": "Symfony Community",
  2816. "homepage": "https://symfony.com/contributors"
  2817. }
  2818. ],
  2819. "description": "Decouples applications from the system clock",
  2820. "homepage": "https://symfony.com",
  2821. "keywords": [
  2822. "clock",
  2823. "psr20",
  2824. "time"
  2825. ],
  2826. "support": {
  2827. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2828. },
  2829. "funding": [
  2830. {
  2831. "url": "https://symfony.com/sponsor",
  2832. "type": "custom"
  2833. },
  2834. {
  2835. "url": "https://github.com/fabpot",
  2836. "type": "github"
  2837. },
  2838. {
  2839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2840. "type": "tidelift"
  2841. }
  2842. ],
  2843. "time": "2024-05-31T14:57:53+00:00"
  2844. },
  2845. {
  2846. "name": "symfony/config",
  2847. "version": "v7.1.1",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/symfony/config.git",
  2851. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2856. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2857. "shasum": ""
  2858. },
  2859. "require": {
  2860. "php": ">=8.2",
  2861. "symfony/deprecation-contracts": "^2.5|^3",
  2862. "symfony/filesystem": "^7.1",
  2863. "symfony/polyfill-ctype": "~1.8"
  2864. },
  2865. "conflict": {
  2866. "symfony/finder": "<6.4",
  2867. "symfony/service-contracts": "<2.5"
  2868. },
  2869. "require-dev": {
  2870. "symfony/event-dispatcher": "^6.4|^7.0",
  2871. "symfony/finder": "^6.4|^7.0",
  2872. "symfony/messenger": "^6.4|^7.0",
  2873. "symfony/service-contracts": "^2.5|^3",
  2874. "symfony/yaml": "^6.4|^7.0"
  2875. },
  2876. "type": "library",
  2877. "autoload": {
  2878. "psr-4": {
  2879. "Symfony\\Component\\Config\\": ""
  2880. },
  2881. "exclude-from-classmap": [
  2882. "/Tests/"
  2883. ]
  2884. },
  2885. "notification-url": "https://packagist.org/downloads/",
  2886. "license": [
  2887. "MIT"
  2888. ],
  2889. "authors": [
  2890. {
  2891. "name": "Fabien Potencier",
  2892. "email": "fabien@symfony.com"
  2893. },
  2894. {
  2895. "name": "Symfony Community",
  2896. "homepage": "https://symfony.com/contributors"
  2897. }
  2898. ],
  2899. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2900. "homepage": "https://symfony.com",
  2901. "support": {
  2902. "source": "https://github.com/symfony/config/tree/v7.1.1"
  2903. },
  2904. "funding": [
  2905. {
  2906. "url": "https://symfony.com/sponsor",
  2907. "type": "custom"
  2908. },
  2909. {
  2910. "url": "https://github.com/fabpot",
  2911. "type": "github"
  2912. },
  2913. {
  2914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2915. "type": "tidelift"
  2916. }
  2917. ],
  2918. "time": "2024-05-31T14:57:53+00:00"
  2919. },
  2920. {
  2921. "name": "symfony/console",
  2922. "version": "v7.1.5",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/symfony/console.git",
  2926. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  2931. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  2932. "shasum": ""
  2933. },
  2934. "require": {
  2935. "php": ">=8.2",
  2936. "symfony/polyfill-mbstring": "~1.0",
  2937. "symfony/service-contracts": "^2.5|^3",
  2938. "symfony/string": "^6.4|^7.0"
  2939. },
  2940. "conflict": {
  2941. "symfony/dependency-injection": "<6.4",
  2942. "symfony/dotenv": "<6.4",
  2943. "symfony/event-dispatcher": "<6.4",
  2944. "symfony/lock": "<6.4",
  2945. "symfony/process": "<6.4"
  2946. },
  2947. "provide": {
  2948. "psr/log-implementation": "1.0|2.0|3.0"
  2949. },
  2950. "require-dev": {
  2951. "psr/log": "^1|^2|^3",
  2952. "symfony/config": "^6.4|^7.0",
  2953. "symfony/dependency-injection": "^6.4|^7.0",
  2954. "symfony/event-dispatcher": "^6.4|^7.0",
  2955. "symfony/http-foundation": "^6.4|^7.0",
  2956. "symfony/http-kernel": "^6.4|^7.0",
  2957. "symfony/lock": "^6.4|^7.0",
  2958. "symfony/messenger": "^6.4|^7.0",
  2959. "symfony/process": "^6.4|^7.0",
  2960. "symfony/stopwatch": "^6.4|^7.0",
  2961. "symfony/var-dumper": "^6.4|^7.0"
  2962. },
  2963. "type": "library",
  2964. "autoload": {
  2965. "psr-4": {
  2966. "Symfony\\Component\\Console\\": ""
  2967. },
  2968. "exclude-from-classmap": [
  2969. "/Tests/"
  2970. ]
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Fabien Potencier",
  2979. "email": "fabien@symfony.com"
  2980. },
  2981. {
  2982. "name": "Symfony Community",
  2983. "homepage": "https://symfony.com/contributors"
  2984. }
  2985. ],
  2986. "description": "Eases the creation of beautiful and testable command line interfaces",
  2987. "homepage": "https://symfony.com",
  2988. "keywords": [
  2989. "cli",
  2990. "command-line",
  2991. "console",
  2992. "terminal"
  2993. ],
  2994. "support": {
  2995. "source": "https://github.com/symfony/console/tree/v7.1.5"
  2996. },
  2997. "funding": [
  2998. {
  2999. "url": "https://symfony.com/sponsor",
  3000. "type": "custom"
  3001. },
  3002. {
  3003. "url": "https://github.com/fabpot",
  3004. "type": "github"
  3005. },
  3006. {
  3007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3008. "type": "tidelift"
  3009. }
  3010. ],
  3011. "time": "2024-09-20T08:28:38+00:00"
  3012. },
  3013. {
  3014. "name": "symfony/dependency-injection",
  3015. "version": "v7.1.5",
  3016. "source": {
  3017. "type": "git",
  3018. "url": "https://github.com/symfony/dependency-injection.git",
  3019. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  3020. },
  3021. "dist": {
  3022. "type": "zip",
  3023. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  3024. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  3025. "shasum": ""
  3026. },
  3027. "require": {
  3028. "php": ">=8.2",
  3029. "psr/container": "^1.1|^2.0",
  3030. "symfony/deprecation-contracts": "^2.5|^3",
  3031. "symfony/service-contracts": "^3.5",
  3032. "symfony/var-exporter": "^6.4|^7.0"
  3033. },
  3034. "conflict": {
  3035. "ext-psr": "<1.1|>=2",
  3036. "symfony/config": "<6.4",
  3037. "symfony/finder": "<6.4",
  3038. "symfony/yaml": "<6.4"
  3039. },
  3040. "provide": {
  3041. "psr/container-implementation": "1.1|2.0",
  3042. "symfony/service-implementation": "1.1|2.0|3.0"
  3043. },
  3044. "require-dev": {
  3045. "symfony/config": "^6.4|^7.0",
  3046. "symfony/expression-language": "^6.4|^7.0",
  3047. "symfony/yaml": "^6.4|^7.0"
  3048. },
  3049. "type": "library",
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Symfony\\Component\\DependencyInjection\\": ""
  3053. },
  3054. "exclude-from-classmap": [
  3055. "/Tests/"
  3056. ]
  3057. },
  3058. "notification-url": "https://packagist.org/downloads/",
  3059. "license": [
  3060. "MIT"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "Fabien Potencier",
  3065. "email": "fabien@symfony.com"
  3066. },
  3067. {
  3068. "name": "Symfony Community",
  3069. "homepage": "https://symfony.com/contributors"
  3070. }
  3071. ],
  3072. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3073. "homepage": "https://symfony.com",
  3074. "support": {
  3075. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  3076. },
  3077. "funding": [
  3078. {
  3079. "url": "https://symfony.com/sponsor",
  3080. "type": "custom"
  3081. },
  3082. {
  3083. "url": "https://github.com/fabpot",
  3084. "type": "github"
  3085. },
  3086. {
  3087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3088. "type": "tidelift"
  3089. }
  3090. ],
  3091. "time": "2024-09-20T08:28:38+00:00"
  3092. },
  3093. {
  3094. "name": "symfony/deprecation-contracts",
  3095. "version": "v3.5.0",
  3096. "source": {
  3097. "type": "git",
  3098. "url": "https://github.com/symfony/deprecation-contracts.git",
  3099. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3100. },
  3101. "dist": {
  3102. "type": "zip",
  3103. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3104. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3105. "shasum": ""
  3106. },
  3107. "require": {
  3108. "php": ">=8.1"
  3109. },
  3110. "type": "library",
  3111. "extra": {
  3112. "branch-alias": {
  3113. "dev-main": "3.5-dev"
  3114. },
  3115. "thanks": {
  3116. "name": "symfony/contracts",
  3117. "url": "https://github.com/symfony/contracts"
  3118. }
  3119. },
  3120. "autoload": {
  3121. "files": [
  3122. "function.php"
  3123. ]
  3124. },
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "Nicolas Grekas",
  3132. "email": "p@tchwork.com"
  3133. },
  3134. {
  3135. "name": "Symfony Community",
  3136. "homepage": "https://symfony.com/contributors"
  3137. }
  3138. ],
  3139. "description": "A generic function and convention to trigger deprecation notices",
  3140. "homepage": "https://symfony.com",
  3141. "support": {
  3142. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3143. },
  3144. "funding": [
  3145. {
  3146. "url": "https://symfony.com/sponsor",
  3147. "type": "custom"
  3148. },
  3149. {
  3150. "url": "https://github.com/fabpot",
  3151. "type": "github"
  3152. },
  3153. {
  3154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3155. "type": "tidelift"
  3156. }
  3157. ],
  3158. "time": "2024-04-18T09:32:20+00:00"
  3159. },
  3160. {
  3161. "name": "symfony/doctrine-bridge",
  3162. "version": "v7.1.5",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/symfony/doctrine-bridge.git",
  3166. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  3171. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  3172. "shasum": ""
  3173. },
  3174. "require": {
  3175. "doctrine/event-manager": "^2",
  3176. "doctrine/persistence": "^3.1",
  3177. "php": ">=8.2",
  3178. "symfony/deprecation-contracts": "^2.5|^3",
  3179. "symfony/polyfill-ctype": "~1.8",
  3180. "symfony/polyfill-mbstring": "~1.0",
  3181. "symfony/service-contracts": "^2.5|^3"
  3182. },
  3183. "conflict": {
  3184. "doctrine/dbal": "<3.6",
  3185. "doctrine/lexer": "<1.1",
  3186. "doctrine/orm": "<2.15",
  3187. "symfony/cache": "<6.4",
  3188. "symfony/dependency-injection": "<6.4",
  3189. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3190. "symfony/http-foundation": "<6.4",
  3191. "symfony/http-kernel": "<6.4",
  3192. "symfony/lock": "<6.4",
  3193. "symfony/messenger": "<6.4",
  3194. "symfony/property-info": "<6.4",
  3195. "symfony/security-bundle": "<6.4",
  3196. "symfony/security-core": "<6.4",
  3197. "symfony/validator": "<6.4"
  3198. },
  3199. "require-dev": {
  3200. "doctrine/collections": "^1.0|^2.0",
  3201. "doctrine/data-fixtures": "^1.1",
  3202. "doctrine/dbal": "^3.6|^4",
  3203. "doctrine/orm": "^2.15|^3",
  3204. "psr/log": "^1|^2|^3",
  3205. "symfony/cache": "^6.4|^7.0",
  3206. "symfony/config": "^6.4|^7.0",
  3207. "symfony/dependency-injection": "^6.4|^7.0",
  3208. "symfony/doctrine-messenger": "^6.4|^7.0",
  3209. "symfony/expression-language": "^6.4|^7.0",
  3210. "symfony/form": "^6.4.6|^7.0.6",
  3211. "symfony/http-kernel": "^6.4|^7.0",
  3212. "symfony/lock": "^6.4|^7.0",
  3213. "symfony/messenger": "^6.4|^7.0",
  3214. "symfony/property-access": "^6.4|^7.0",
  3215. "symfony/property-info": "^6.4|^7.0",
  3216. "symfony/security-core": "^6.4|^7.0",
  3217. "symfony/stopwatch": "^6.4|^7.0",
  3218. "symfony/translation": "^6.4|^7.0",
  3219. "symfony/type-info": "^7.1",
  3220. "symfony/uid": "^6.4|^7.0",
  3221. "symfony/validator": "^6.4|^7.0",
  3222. "symfony/var-dumper": "^6.4|^7.0"
  3223. },
  3224. "type": "symfony-bridge",
  3225. "autoload": {
  3226. "psr-4": {
  3227. "Symfony\\Bridge\\Doctrine\\": ""
  3228. },
  3229. "exclude-from-classmap": [
  3230. "/Tests/"
  3231. ]
  3232. },
  3233. "notification-url": "https://packagist.org/downloads/",
  3234. "license": [
  3235. "MIT"
  3236. ],
  3237. "authors": [
  3238. {
  3239. "name": "Fabien Potencier",
  3240. "email": "fabien@symfony.com"
  3241. },
  3242. {
  3243. "name": "Symfony Community",
  3244. "homepage": "https://symfony.com/contributors"
  3245. }
  3246. ],
  3247. "description": "Provides integration for Doctrine with various Symfony components",
  3248. "homepage": "https://symfony.com",
  3249. "support": {
  3250. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  3251. },
  3252. "funding": [
  3253. {
  3254. "url": "https://symfony.com/sponsor",
  3255. "type": "custom"
  3256. },
  3257. {
  3258. "url": "https://github.com/fabpot",
  3259. "type": "github"
  3260. },
  3261. {
  3262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3263. "type": "tidelift"
  3264. }
  3265. ],
  3266. "time": "2024-09-08T12:32:26+00:00"
  3267. },
  3268. {
  3269. "name": "symfony/doctrine-messenger",
  3270. "version": "v7.1.5",
  3271. "source": {
  3272. "type": "git",
  3273. "url": "https://github.com/symfony/doctrine-messenger.git",
  3274. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  3275. },
  3276. "dist": {
  3277. "type": "zip",
  3278. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  3279. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  3280. "shasum": ""
  3281. },
  3282. "require": {
  3283. "doctrine/dbal": "^3.6|^4",
  3284. "php": ">=8.2",
  3285. "symfony/messenger": "^6.4|^7.0",
  3286. "symfony/service-contracts": "^2.5|^3"
  3287. },
  3288. "conflict": {
  3289. "doctrine/persistence": "<1.3"
  3290. },
  3291. "require-dev": {
  3292. "doctrine/persistence": "^1.3|^2|^3",
  3293. "symfony/property-access": "^6.4|^7.0",
  3294. "symfony/serializer": "^6.4|^7.0"
  3295. },
  3296. "type": "symfony-messenger-bridge",
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3300. },
  3301. "exclude-from-classmap": [
  3302. "/Tests/"
  3303. ]
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Fabien Potencier",
  3312. "email": "fabien@symfony.com"
  3313. },
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. }
  3318. ],
  3319. "description": "Symfony Doctrine Messenger Bridge",
  3320. "homepage": "https://symfony.com",
  3321. "support": {
  3322. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  3323. },
  3324. "funding": [
  3325. {
  3326. "url": "https://symfony.com/sponsor",
  3327. "type": "custom"
  3328. },
  3329. {
  3330. "url": "https://github.com/fabpot",
  3331. "type": "github"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "time": "2024-09-20T08:28:38+00:00"
  3339. },
  3340. {
  3341. "name": "symfony/dotenv",
  3342. "version": "v7.1.5",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/symfony/dotenv.git",
  3346. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  3351. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=8.2"
  3356. },
  3357. "conflict": {
  3358. "symfony/console": "<6.4",
  3359. "symfony/process": "<6.4"
  3360. },
  3361. "require-dev": {
  3362. "symfony/console": "^6.4|^7.0",
  3363. "symfony/process": "^6.4|^7.0"
  3364. },
  3365. "type": "library",
  3366. "autoload": {
  3367. "psr-4": {
  3368. "Symfony\\Component\\Dotenv\\": ""
  3369. },
  3370. "exclude-from-classmap": [
  3371. "/Tests/"
  3372. ]
  3373. },
  3374. "notification-url": "https://packagist.org/downloads/",
  3375. "license": [
  3376. "MIT"
  3377. ],
  3378. "authors": [
  3379. {
  3380. "name": "Fabien Potencier",
  3381. "email": "fabien@symfony.com"
  3382. },
  3383. {
  3384. "name": "Symfony Community",
  3385. "homepage": "https://symfony.com/contributors"
  3386. }
  3387. ],
  3388. "description": "Registers environment variables from a .env file",
  3389. "homepage": "https://symfony.com",
  3390. "keywords": [
  3391. "dotenv",
  3392. "env",
  3393. "environment"
  3394. ],
  3395. "support": {
  3396. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  3397. },
  3398. "funding": [
  3399. {
  3400. "url": "https://symfony.com/sponsor",
  3401. "type": "custom"
  3402. },
  3403. {
  3404. "url": "https://github.com/fabpot",
  3405. "type": "github"
  3406. },
  3407. {
  3408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3409. "type": "tidelift"
  3410. }
  3411. ],
  3412. "time": "2024-09-17T09:16:35+00:00"
  3413. },
  3414. {
  3415. "name": "symfony/error-handler",
  3416. "version": "v7.1.3",
  3417. "source": {
  3418. "type": "git",
  3419. "url": "https://github.com/symfony/error-handler.git",
  3420. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3421. },
  3422. "dist": {
  3423. "type": "zip",
  3424. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3425. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3426. "shasum": ""
  3427. },
  3428. "require": {
  3429. "php": ">=8.2",
  3430. "psr/log": "^1|^2|^3",
  3431. "symfony/var-dumper": "^6.4|^7.0"
  3432. },
  3433. "conflict": {
  3434. "symfony/deprecation-contracts": "<2.5",
  3435. "symfony/http-kernel": "<6.4"
  3436. },
  3437. "require-dev": {
  3438. "symfony/deprecation-contracts": "^2.5|^3",
  3439. "symfony/http-kernel": "^6.4|^7.0",
  3440. "symfony/serializer": "^6.4|^7.0"
  3441. },
  3442. "bin": [
  3443. "Resources/bin/patch-type-declarations"
  3444. ],
  3445. "type": "library",
  3446. "autoload": {
  3447. "psr-4": {
  3448. "Symfony\\Component\\ErrorHandler\\": ""
  3449. },
  3450. "exclude-from-classmap": [
  3451. "/Tests/"
  3452. ]
  3453. },
  3454. "notification-url": "https://packagist.org/downloads/",
  3455. "license": [
  3456. "MIT"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "Fabien Potencier",
  3461. "email": "fabien@symfony.com"
  3462. },
  3463. {
  3464. "name": "Symfony Community",
  3465. "homepage": "https://symfony.com/contributors"
  3466. }
  3467. ],
  3468. "description": "Provides tools to manage errors and ease debugging PHP code",
  3469. "homepage": "https://symfony.com",
  3470. "support": {
  3471. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3472. },
  3473. "funding": [
  3474. {
  3475. "url": "https://symfony.com/sponsor",
  3476. "type": "custom"
  3477. },
  3478. {
  3479. "url": "https://github.com/fabpot",
  3480. "type": "github"
  3481. },
  3482. {
  3483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3484. "type": "tidelift"
  3485. }
  3486. ],
  3487. "time": "2024-07-26T13:02:51+00:00"
  3488. },
  3489. {
  3490. "name": "symfony/event-dispatcher",
  3491. "version": "v7.1.1",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/symfony/event-dispatcher.git",
  3495. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3500. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "php": ">=8.2",
  3505. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3506. },
  3507. "conflict": {
  3508. "symfony/dependency-injection": "<6.4",
  3509. "symfony/service-contracts": "<2.5"
  3510. },
  3511. "provide": {
  3512. "psr/event-dispatcher-implementation": "1.0",
  3513. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3514. },
  3515. "require-dev": {
  3516. "psr/log": "^1|^2|^3",
  3517. "symfony/config": "^6.4|^7.0",
  3518. "symfony/dependency-injection": "^6.4|^7.0",
  3519. "symfony/error-handler": "^6.4|^7.0",
  3520. "symfony/expression-language": "^6.4|^7.0",
  3521. "symfony/http-foundation": "^6.4|^7.0",
  3522. "symfony/service-contracts": "^2.5|^3",
  3523. "symfony/stopwatch": "^6.4|^7.0"
  3524. },
  3525. "type": "library",
  3526. "autoload": {
  3527. "psr-4": {
  3528. "Symfony\\Component\\EventDispatcher\\": ""
  3529. },
  3530. "exclude-from-classmap": [
  3531. "/Tests/"
  3532. ]
  3533. },
  3534. "notification-url": "https://packagist.org/downloads/",
  3535. "license": [
  3536. "MIT"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "Fabien Potencier",
  3541. "email": "fabien@symfony.com"
  3542. },
  3543. {
  3544. "name": "Symfony Community",
  3545. "homepage": "https://symfony.com/contributors"
  3546. }
  3547. ],
  3548. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3549. "homepage": "https://symfony.com",
  3550. "support": {
  3551. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3552. },
  3553. "funding": [
  3554. {
  3555. "url": "https://symfony.com/sponsor",
  3556. "type": "custom"
  3557. },
  3558. {
  3559. "url": "https://github.com/fabpot",
  3560. "type": "github"
  3561. },
  3562. {
  3563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3564. "type": "tidelift"
  3565. }
  3566. ],
  3567. "time": "2024-05-31T14:57:53+00:00"
  3568. },
  3569. {
  3570. "name": "symfony/event-dispatcher-contracts",
  3571. "version": "v3.5.0",
  3572. "source": {
  3573. "type": "git",
  3574. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3575. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3576. },
  3577. "dist": {
  3578. "type": "zip",
  3579. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3580. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3581. "shasum": ""
  3582. },
  3583. "require": {
  3584. "php": ">=8.1",
  3585. "psr/event-dispatcher": "^1"
  3586. },
  3587. "type": "library",
  3588. "extra": {
  3589. "branch-alias": {
  3590. "dev-main": "3.5-dev"
  3591. },
  3592. "thanks": {
  3593. "name": "symfony/contracts",
  3594. "url": "https://github.com/symfony/contracts"
  3595. }
  3596. },
  3597. "autoload": {
  3598. "psr-4": {
  3599. "Symfony\\Contracts\\EventDispatcher\\": ""
  3600. }
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Nicolas Grekas",
  3609. "email": "p@tchwork.com"
  3610. },
  3611. {
  3612. "name": "Symfony Community",
  3613. "homepage": "https://symfony.com/contributors"
  3614. }
  3615. ],
  3616. "description": "Generic abstractions related to dispatching event",
  3617. "homepage": "https://symfony.com",
  3618. "keywords": [
  3619. "abstractions",
  3620. "contracts",
  3621. "decoupling",
  3622. "interfaces",
  3623. "interoperability",
  3624. "standards"
  3625. ],
  3626. "support": {
  3627. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3628. },
  3629. "funding": [
  3630. {
  3631. "url": "https://symfony.com/sponsor",
  3632. "type": "custom"
  3633. },
  3634. {
  3635. "url": "https://github.com/fabpot",
  3636. "type": "github"
  3637. },
  3638. {
  3639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3640. "type": "tidelift"
  3641. }
  3642. ],
  3643. "time": "2024-04-18T09:32:20+00:00"
  3644. },
  3645. {
  3646. "name": "symfony/expression-language",
  3647. "version": "v7.1.4",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://github.com/symfony/expression-language.git",
  3651. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  3656. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  3657. "shasum": ""
  3658. },
  3659. "require": {
  3660. "php": ">=8.2",
  3661. "symfony/cache": "^6.4|^7.0",
  3662. "symfony/deprecation-contracts": "^2.5|^3",
  3663. "symfony/service-contracts": "^2.5|^3"
  3664. },
  3665. "type": "library",
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Symfony\\Component\\ExpressionLanguage\\": ""
  3669. },
  3670. "exclude-from-classmap": [
  3671. "/Tests/"
  3672. ]
  3673. },
  3674. "notification-url": "https://packagist.org/downloads/",
  3675. "license": [
  3676. "MIT"
  3677. ],
  3678. "authors": [
  3679. {
  3680. "name": "Fabien Potencier",
  3681. "email": "fabien@symfony.com"
  3682. },
  3683. {
  3684. "name": "Symfony Community",
  3685. "homepage": "https://symfony.com/contributors"
  3686. }
  3687. ],
  3688. "description": "Provides an engine that can compile and evaluate expressions",
  3689. "homepage": "https://symfony.com",
  3690. "support": {
  3691. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  3692. },
  3693. "funding": [
  3694. {
  3695. "url": "https://symfony.com/sponsor",
  3696. "type": "custom"
  3697. },
  3698. {
  3699. "url": "https://github.com/fabpot",
  3700. "type": "github"
  3701. },
  3702. {
  3703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3704. "type": "tidelift"
  3705. }
  3706. ],
  3707. "time": "2024-08-12T09:59:40+00:00"
  3708. },
  3709. {
  3710. "name": "symfony/filesystem",
  3711. "version": "v7.1.5",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://github.com/symfony/filesystem.git",
  3715. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3720. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3721. "shasum": ""
  3722. },
  3723. "require": {
  3724. "php": ">=8.2",
  3725. "symfony/polyfill-ctype": "~1.8",
  3726. "symfony/polyfill-mbstring": "~1.8"
  3727. },
  3728. "require-dev": {
  3729. "symfony/process": "^6.4|^7.0"
  3730. },
  3731. "type": "library",
  3732. "autoload": {
  3733. "psr-4": {
  3734. "Symfony\\Component\\Filesystem\\": ""
  3735. },
  3736. "exclude-from-classmap": [
  3737. "/Tests/"
  3738. ]
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "authors": [
  3745. {
  3746. "name": "Fabien Potencier",
  3747. "email": "fabien@symfony.com"
  3748. },
  3749. {
  3750. "name": "Symfony Community",
  3751. "homepage": "https://symfony.com/contributors"
  3752. }
  3753. ],
  3754. "description": "Provides basic utilities for the filesystem",
  3755. "homepage": "https://symfony.com",
  3756. "support": {
  3757. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  3758. },
  3759. "funding": [
  3760. {
  3761. "url": "https://symfony.com/sponsor",
  3762. "type": "custom"
  3763. },
  3764. {
  3765. "url": "https://github.com/fabpot",
  3766. "type": "github"
  3767. },
  3768. {
  3769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3770. "type": "tidelift"
  3771. }
  3772. ],
  3773. "time": "2024-09-17T09:16:35+00:00"
  3774. },
  3775. {
  3776. "name": "symfony/finder",
  3777. "version": "v7.1.4",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/symfony/finder.git",
  3781. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  3786. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  3787. "shasum": ""
  3788. },
  3789. "require": {
  3790. "php": ">=8.2"
  3791. },
  3792. "require-dev": {
  3793. "symfony/filesystem": "^6.4|^7.0"
  3794. },
  3795. "type": "library",
  3796. "autoload": {
  3797. "psr-4": {
  3798. "Symfony\\Component\\Finder\\": ""
  3799. },
  3800. "exclude-from-classmap": [
  3801. "/Tests/"
  3802. ]
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "Fabien Potencier",
  3811. "email": "fabien@symfony.com"
  3812. },
  3813. {
  3814. "name": "Symfony Community",
  3815. "homepage": "https://symfony.com/contributors"
  3816. }
  3817. ],
  3818. "description": "Finds files and directories via an intuitive fluent interface",
  3819. "homepage": "https://symfony.com",
  3820. "support": {
  3821. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  3822. },
  3823. "funding": [
  3824. {
  3825. "url": "https://symfony.com/sponsor",
  3826. "type": "custom"
  3827. },
  3828. {
  3829. "url": "https://github.com/fabpot",
  3830. "type": "github"
  3831. },
  3832. {
  3833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3834. "type": "tidelift"
  3835. }
  3836. ],
  3837. "time": "2024-08-13T14:28:19+00:00"
  3838. },
  3839. {
  3840. "name": "symfony/flex",
  3841. "version": "v2.4.7",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/symfony/flex.git",
  3845. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3850. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3851. "shasum": ""
  3852. },
  3853. "require": {
  3854. "composer-plugin-api": "^2.1",
  3855. "php": ">=8.0"
  3856. },
  3857. "conflict": {
  3858. "composer/semver": "<1.7.2"
  3859. },
  3860. "require-dev": {
  3861. "composer/composer": "^2.1",
  3862. "symfony/dotenv": "^5.4|^6.0",
  3863. "symfony/filesystem": "^5.4|^6.0",
  3864. "symfony/phpunit-bridge": "^5.4|^6.0",
  3865. "symfony/process": "^5.4|^6.0"
  3866. },
  3867. "type": "composer-plugin",
  3868. "extra": {
  3869. "class": "Symfony\\Flex\\Flex"
  3870. },
  3871. "autoload": {
  3872. "psr-4": {
  3873. "Symfony\\Flex\\": "src"
  3874. }
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "authors": [
  3881. {
  3882. "name": "Fabien Potencier",
  3883. "email": "fabien.potencier@gmail.com"
  3884. }
  3885. ],
  3886. "description": "Composer plugin for Symfony",
  3887. "support": {
  3888. "issues": "https://github.com/symfony/flex/issues",
  3889. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  3890. },
  3891. "funding": [
  3892. {
  3893. "url": "https://symfony.com/sponsor",
  3894. "type": "custom"
  3895. },
  3896. {
  3897. "url": "https://github.com/fabpot",
  3898. "type": "github"
  3899. },
  3900. {
  3901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3902. "type": "tidelift"
  3903. }
  3904. ],
  3905. "time": "2024-10-07T08:51:54+00:00"
  3906. },
  3907. {
  3908. "name": "symfony/form",
  3909. "version": "v7.1.5",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/symfony/form.git",
  3913. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  3918. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "php": ">=8.2",
  3923. "symfony/deprecation-contracts": "^2.5|^3",
  3924. "symfony/event-dispatcher": "^6.4|^7.0",
  3925. "symfony/options-resolver": "^6.4|^7.0",
  3926. "symfony/polyfill-ctype": "~1.8",
  3927. "symfony/polyfill-intl-icu": "^1.21",
  3928. "symfony/polyfill-mbstring": "~1.0",
  3929. "symfony/property-access": "^6.4|^7.0",
  3930. "symfony/service-contracts": "^2.5|^3"
  3931. },
  3932. "conflict": {
  3933. "symfony/console": "<6.4",
  3934. "symfony/dependency-injection": "<6.4",
  3935. "symfony/doctrine-bridge": "<6.4",
  3936. "symfony/error-handler": "<6.4",
  3937. "symfony/framework-bundle": "<6.4",
  3938. "symfony/http-kernel": "<6.4",
  3939. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3940. "symfony/translation-contracts": "<2.5",
  3941. "symfony/twig-bridge": "<6.4"
  3942. },
  3943. "require-dev": {
  3944. "doctrine/collections": "^1.0|^2.0",
  3945. "symfony/config": "^6.4|^7.0",
  3946. "symfony/console": "^6.4|^7.0",
  3947. "symfony/dependency-injection": "^6.4|^7.0",
  3948. "symfony/expression-language": "^6.4|^7.0",
  3949. "symfony/html-sanitizer": "^6.4|^7.0",
  3950. "symfony/http-foundation": "^6.4|^7.0",
  3951. "symfony/http-kernel": "^6.4|^7.0",
  3952. "symfony/intl": "^6.4|^7.0",
  3953. "symfony/security-core": "^6.4|^7.0",
  3954. "symfony/security-csrf": "^6.4|^7.0",
  3955. "symfony/translation": "^6.4.3|^7.0.3",
  3956. "symfony/uid": "^6.4|^7.0",
  3957. "symfony/validator": "^6.4|^7.0",
  3958. "symfony/var-dumper": "^6.4|^7.0"
  3959. },
  3960. "type": "library",
  3961. "autoload": {
  3962. "psr-4": {
  3963. "Symfony\\Component\\Form\\": ""
  3964. },
  3965. "exclude-from-classmap": [
  3966. "/Tests/"
  3967. ]
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "Fabien Potencier",
  3976. "email": "fabien@symfony.com"
  3977. },
  3978. {
  3979. "name": "Symfony Community",
  3980. "homepage": "https://symfony.com/contributors"
  3981. }
  3982. ],
  3983. "description": "Allows to easily create, process and reuse HTML forms",
  3984. "homepage": "https://symfony.com",
  3985. "support": {
  3986. "source": "https://github.com/symfony/form/tree/v7.1.5"
  3987. },
  3988. "funding": [
  3989. {
  3990. "url": "https://symfony.com/sponsor",
  3991. "type": "custom"
  3992. },
  3993. {
  3994. "url": "https://github.com/fabpot",
  3995. "type": "github"
  3996. },
  3997. {
  3998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3999. "type": "tidelift"
  4000. }
  4001. ],
  4002. "time": "2024-09-20T08:28:38+00:00"
  4003. },
  4004. {
  4005. "name": "symfony/framework-bundle",
  4006. "version": "v7.1.5",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/symfony/framework-bundle.git",
  4010. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  4015. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "composer-runtime-api": ">=2.1",
  4020. "ext-xml": "*",
  4021. "php": ">=8.2",
  4022. "symfony/cache": "^6.4|^7.0",
  4023. "symfony/config": "^6.4|^7.0",
  4024. "symfony/dependency-injection": "^7.1.5",
  4025. "symfony/deprecation-contracts": "^2.5|^3",
  4026. "symfony/error-handler": "^6.4|^7.0",
  4027. "symfony/event-dispatcher": "^6.4|^7.0",
  4028. "symfony/filesystem": "^7.1",
  4029. "symfony/finder": "^6.4|^7.0",
  4030. "symfony/http-foundation": "^6.4|^7.0",
  4031. "symfony/http-kernel": "^6.4|^7.0",
  4032. "symfony/polyfill-mbstring": "~1.0",
  4033. "symfony/routing": "^6.4|^7.0"
  4034. },
  4035. "conflict": {
  4036. "doctrine/persistence": "<1.3",
  4037. "phpdocumentor/reflection-docblock": "<3.2.2",
  4038. "phpdocumentor/type-resolver": "<1.4.0",
  4039. "symfony/asset": "<6.4",
  4040. "symfony/asset-mapper": "<6.4",
  4041. "symfony/clock": "<6.4",
  4042. "symfony/console": "<6.4",
  4043. "symfony/dom-crawler": "<6.4",
  4044. "symfony/dotenv": "<6.4",
  4045. "symfony/form": "<6.4",
  4046. "symfony/http-client": "<6.4",
  4047. "symfony/lock": "<6.4",
  4048. "symfony/mailer": "<6.4",
  4049. "symfony/messenger": "<6.4",
  4050. "symfony/mime": "<6.4",
  4051. "symfony/property-access": "<6.4",
  4052. "symfony/property-info": "<6.4",
  4053. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4054. "symfony/security-core": "<6.4",
  4055. "symfony/security-csrf": "<6.4",
  4056. "symfony/serializer": "<6.4",
  4057. "symfony/stopwatch": "<6.4",
  4058. "symfony/translation": "<6.4",
  4059. "symfony/twig-bridge": "<6.4",
  4060. "symfony/twig-bundle": "<6.4",
  4061. "symfony/validator": "<6.4",
  4062. "symfony/web-profiler-bundle": "<6.4",
  4063. "symfony/workflow": "<6.4"
  4064. },
  4065. "require-dev": {
  4066. "doctrine/persistence": "^1.3|^2|^3",
  4067. "dragonmantank/cron-expression": "^3.1",
  4068. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4069. "seld/jsonlint": "^1.10",
  4070. "symfony/asset": "^6.4|^7.0",
  4071. "symfony/asset-mapper": "^6.4|^7.0",
  4072. "symfony/browser-kit": "^6.4|^7.0",
  4073. "symfony/clock": "^6.4|^7.0",
  4074. "symfony/console": "^6.4|^7.0",
  4075. "symfony/css-selector": "^6.4|^7.0",
  4076. "symfony/dom-crawler": "^6.4|^7.0",
  4077. "symfony/dotenv": "^6.4|^7.0",
  4078. "symfony/expression-language": "^6.4|^7.0",
  4079. "symfony/form": "^6.4|^7.0",
  4080. "symfony/html-sanitizer": "^6.4|^7.0",
  4081. "symfony/http-client": "^6.4|^7.0",
  4082. "symfony/lock": "^6.4|^7.0",
  4083. "symfony/mailer": "^6.4|^7.0",
  4084. "symfony/messenger": "^6.4|^7.0",
  4085. "symfony/mime": "^6.4|^7.0",
  4086. "symfony/notifier": "^6.4|^7.0",
  4087. "symfony/polyfill-intl-icu": "~1.0",
  4088. "symfony/process": "^6.4|^7.0",
  4089. "symfony/property-info": "^6.4|^7.0",
  4090. "symfony/rate-limiter": "^6.4|^7.0",
  4091. "symfony/scheduler": "^6.4.4|^7.0.4",
  4092. "symfony/security-bundle": "^6.4|^7.0",
  4093. "symfony/semaphore": "^6.4|^7.0",
  4094. "symfony/serializer": "^6.4|^7.0",
  4095. "symfony/stopwatch": "^6.4|^7.0",
  4096. "symfony/string": "^6.4|^7.0",
  4097. "symfony/translation": "^6.4|^7.0",
  4098. "symfony/twig-bundle": "^6.4|^7.0",
  4099. "symfony/type-info": "^7.1",
  4100. "symfony/uid": "^6.4|^7.0",
  4101. "symfony/validator": "^6.4|^7.0",
  4102. "symfony/web-link": "^6.4|^7.0",
  4103. "symfony/workflow": "^6.4|^7.0",
  4104. "symfony/yaml": "^6.4|^7.0",
  4105. "twig/twig": "^3.0.4"
  4106. },
  4107. "type": "symfony-bundle",
  4108. "autoload": {
  4109. "psr-4": {
  4110. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4111. },
  4112. "exclude-from-classmap": [
  4113. "/Tests/"
  4114. ]
  4115. },
  4116. "notification-url": "https://packagist.org/downloads/",
  4117. "license": [
  4118. "MIT"
  4119. ],
  4120. "authors": [
  4121. {
  4122. "name": "Fabien Potencier",
  4123. "email": "fabien@symfony.com"
  4124. },
  4125. {
  4126. "name": "Symfony Community",
  4127. "homepage": "https://symfony.com/contributors"
  4128. }
  4129. ],
  4130. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4131. "homepage": "https://symfony.com",
  4132. "support": {
  4133. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  4134. },
  4135. "funding": [
  4136. {
  4137. "url": "https://symfony.com/sponsor",
  4138. "type": "custom"
  4139. },
  4140. {
  4141. "url": "https://github.com/fabpot",
  4142. "type": "github"
  4143. },
  4144. {
  4145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4146. "type": "tidelift"
  4147. }
  4148. ],
  4149. "time": "2024-09-20T13:35:23+00:00"
  4150. },
  4151. {
  4152. "name": "symfony/http-client",
  4153. "version": "v7.1.5",
  4154. "source": {
  4155. "type": "git",
  4156. "url": "https://github.com/symfony/http-client.git",
  4157. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  4158. },
  4159. "dist": {
  4160. "type": "zip",
  4161. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  4162. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  4163. "shasum": ""
  4164. },
  4165. "require": {
  4166. "php": ">=8.2",
  4167. "psr/log": "^1|^2|^3",
  4168. "symfony/deprecation-contracts": "^2.5|^3",
  4169. "symfony/http-client-contracts": "^3.4.1",
  4170. "symfony/service-contracts": "^2.5|^3"
  4171. },
  4172. "conflict": {
  4173. "php-http/discovery": "<1.15",
  4174. "symfony/http-foundation": "<6.4"
  4175. },
  4176. "provide": {
  4177. "php-http/async-client-implementation": "*",
  4178. "php-http/client-implementation": "*",
  4179. "psr/http-client-implementation": "1.0",
  4180. "symfony/http-client-implementation": "3.0"
  4181. },
  4182. "require-dev": {
  4183. "amphp/amp": "^2.5",
  4184. "amphp/http-client": "^4.2.1",
  4185. "amphp/http-tunnel": "^1.0",
  4186. "amphp/socket": "^1.1",
  4187. "guzzlehttp/promises": "^1.4|^2.0",
  4188. "nyholm/psr7": "^1.0",
  4189. "php-http/httplug": "^1.0|^2.0",
  4190. "psr/http-client": "^1.0",
  4191. "symfony/dependency-injection": "^6.4|^7.0",
  4192. "symfony/http-kernel": "^6.4|^7.0",
  4193. "symfony/messenger": "^6.4|^7.0",
  4194. "symfony/process": "^6.4|^7.0",
  4195. "symfony/rate-limiter": "^6.4|^7.0",
  4196. "symfony/stopwatch": "^6.4|^7.0"
  4197. },
  4198. "type": "library",
  4199. "autoload": {
  4200. "psr-4": {
  4201. "Symfony\\Component\\HttpClient\\": ""
  4202. },
  4203. "exclude-from-classmap": [
  4204. "/Tests/"
  4205. ]
  4206. },
  4207. "notification-url": "https://packagist.org/downloads/",
  4208. "license": [
  4209. "MIT"
  4210. ],
  4211. "authors": [
  4212. {
  4213. "name": "Nicolas Grekas",
  4214. "email": "p@tchwork.com"
  4215. },
  4216. {
  4217. "name": "Symfony Community",
  4218. "homepage": "https://symfony.com/contributors"
  4219. }
  4220. ],
  4221. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4222. "homepage": "https://symfony.com",
  4223. "keywords": [
  4224. "http"
  4225. ],
  4226. "support": {
  4227. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  4228. },
  4229. "funding": [
  4230. {
  4231. "url": "https://symfony.com/sponsor",
  4232. "type": "custom"
  4233. },
  4234. {
  4235. "url": "https://github.com/fabpot",
  4236. "type": "github"
  4237. },
  4238. {
  4239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4240. "type": "tidelift"
  4241. }
  4242. ],
  4243. "time": "2024-09-20T13:35:23+00:00"
  4244. },
  4245. {
  4246. "name": "symfony/http-client-contracts",
  4247. "version": "v3.5.0",
  4248. "source": {
  4249. "type": "git",
  4250. "url": "https://github.com/symfony/http-client-contracts.git",
  4251. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4252. },
  4253. "dist": {
  4254. "type": "zip",
  4255. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4256. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4257. "shasum": ""
  4258. },
  4259. "require": {
  4260. "php": ">=8.1"
  4261. },
  4262. "type": "library",
  4263. "extra": {
  4264. "branch-alias": {
  4265. "dev-main": "3.5-dev"
  4266. },
  4267. "thanks": {
  4268. "name": "symfony/contracts",
  4269. "url": "https://github.com/symfony/contracts"
  4270. }
  4271. },
  4272. "autoload": {
  4273. "psr-4": {
  4274. "Symfony\\Contracts\\HttpClient\\": ""
  4275. },
  4276. "exclude-from-classmap": [
  4277. "/Test/"
  4278. ]
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Nicolas Grekas",
  4287. "email": "p@tchwork.com"
  4288. },
  4289. {
  4290. "name": "Symfony Community",
  4291. "homepage": "https://symfony.com/contributors"
  4292. }
  4293. ],
  4294. "description": "Generic abstractions related to HTTP clients",
  4295. "homepage": "https://symfony.com",
  4296. "keywords": [
  4297. "abstractions",
  4298. "contracts",
  4299. "decoupling",
  4300. "interfaces",
  4301. "interoperability",
  4302. "standards"
  4303. ],
  4304. "support": {
  4305. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4306. },
  4307. "funding": [
  4308. {
  4309. "url": "https://symfony.com/sponsor",
  4310. "type": "custom"
  4311. },
  4312. {
  4313. "url": "https://github.com/fabpot",
  4314. "type": "github"
  4315. },
  4316. {
  4317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4318. "type": "tidelift"
  4319. }
  4320. ],
  4321. "time": "2024-04-18T09:32:20+00:00"
  4322. },
  4323. {
  4324. "name": "symfony/http-foundation",
  4325. "version": "v7.1.5",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/symfony/http-foundation.git",
  4329. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4334. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "php": ">=8.2",
  4339. "symfony/polyfill-mbstring": "~1.1",
  4340. "symfony/polyfill-php83": "^1.27"
  4341. },
  4342. "conflict": {
  4343. "doctrine/dbal": "<3.6",
  4344. "symfony/cache": "<6.4"
  4345. },
  4346. "require-dev": {
  4347. "doctrine/dbal": "^3.6|^4",
  4348. "predis/predis": "^1.1|^2.0",
  4349. "symfony/cache": "^6.4|^7.0",
  4350. "symfony/dependency-injection": "^6.4|^7.0",
  4351. "symfony/expression-language": "^6.4|^7.0",
  4352. "symfony/http-kernel": "^6.4|^7.0",
  4353. "symfony/mime": "^6.4|^7.0",
  4354. "symfony/rate-limiter": "^6.4|^7.0"
  4355. },
  4356. "type": "library",
  4357. "autoload": {
  4358. "psr-4": {
  4359. "Symfony\\Component\\HttpFoundation\\": ""
  4360. },
  4361. "exclude-from-classmap": [
  4362. "/Tests/"
  4363. ]
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Fabien Potencier",
  4372. "email": "fabien@symfony.com"
  4373. },
  4374. {
  4375. "name": "Symfony Community",
  4376. "homepage": "https://symfony.com/contributors"
  4377. }
  4378. ],
  4379. "description": "Defines an object-oriented layer for the HTTP specification",
  4380. "homepage": "https://symfony.com",
  4381. "support": {
  4382. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  4383. },
  4384. "funding": [
  4385. {
  4386. "url": "https://symfony.com/sponsor",
  4387. "type": "custom"
  4388. },
  4389. {
  4390. "url": "https://github.com/fabpot",
  4391. "type": "github"
  4392. },
  4393. {
  4394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4395. "type": "tidelift"
  4396. }
  4397. ],
  4398. "time": "2024-09-20T08:28:38+00:00"
  4399. },
  4400. {
  4401. "name": "symfony/http-kernel",
  4402. "version": "v7.1.5",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://github.com/symfony/http-kernel.git",
  4406. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  4411. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "php": ">=8.2",
  4416. "psr/log": "^1|^2|^3",
  4417. "symfony/deprecation-contracts": "^2.5|^3",
  4418. "symfony/error-handler": "^6.4|^7.0",
  4419. "symfony/event-dispatcher": "^6.4|^7.0",
  4420. "symfony/http-foundation": "^6.4|^7.0",
  4421. "symfony/polyfill-ctype": "^1.8"
  4422. },
  4423. "conflict": {
  4424. "symfony/browser-kit": "<6.4",
  4425. "symfony/cache": "<6.4",
  4426. "symfony/config": "<6.4",
  4427. "symfony/console": "<6.4",
  4428. "symfony/dependency-injection": "<6.4",
  4429. "symfony/doctrine-bridge": "<6.4",
  4430. "symfony/form": "<6.4",
  4431. "symfony/http-client": "<6.4",
  4432. "symfony/http-client-contracts": "<2.5",
  4433. "symfony/mailer": "<6.4",
  4434. "symfony/messenger": "<6.4",
  4435. "symfony/translation": "<6.4",
  4436. "symfony/translation-contracts": "<2.5",
  4437. "symfony/twig-bridge": "<6.4",
  4438. "symfony/validator": "<6.4",
  4439. "symfony/var-dumper": "<6.4",
  4440. "twig/twig": "<3.0.4"
  4441. },
  4442. "provide": {
  4443. "psr/log-implementation": "1.0|2.0|3.0"
  4444. },
  4445. "require-dev": {
  4446. "psr/cache": "^1.0|^2.0|^3.0",
  4447. "symfony/browser-kit": "^6.4|^7.0",
  4448. "symfony/clock": "^6.4|^7.0",
  4449. "symfony/config": "^6.4|^7.0",
  4450. "symfony/console": "^6.4|^7.0",
  4451. "symfony/css-selector": "^6.4|^7.0",
  4452. "symfony/dependency-injection": "^6.4|^7.0",
  4453. "symfony/dom-crawler": "^6.4|^7.0",
  4454. "symfony/expression-language": "^6.4|^7.0",
  4455. "symfony/finder": "^6.4|^7.0",
  4456. "symfony/http-client-contracts": "^2.5|^3",
  4457. "symfony/process": "^6.4|^7.0",
  4458. "symfony/property-access": "^7.1",
  4459. "symfony/routing": "^6.4|^7.0",
  4460. "symfony/serializer": "^7.1",
  4461. "symfony/stopwatch": "^6.4|^7.0",
  4462. "symfony/translation": "^6.4|^7.0",
  4463. "symfony/translation-contracts": "^2.5|^3",
  4464. "symfony/uid": "^6.4|^7.0",
  4465. "symfony/validator": "^6.4|^7.0",
  4466. "symfony/var-dumper": "^6.4|^7.0",
  4467. "symfony/var-exporter": "^6.4|^7.0",
  4468. "twig/twig": "^3.0.4"
  4469. },
  4470. "type": "library",
  4471. "autoload": {
  4472. "psr-4": {
  4473. "Symfony\\Component\\HttpKernel\\": ""
  4474. },
  4475. "exclude-from-classmap": [
  4476. "/Tests/"
  4477. ]
  4478. },
  4479. "notification-url": "https://packagist.org/downloads/",
  4480. "license": [
  4481. "MIT"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "Fabien Potencier",
  4486. "email": "fabien@symfony.com"
  4487. },
  4488. {
  4489. "name": "Symfony Community",
  4490. "homepage": "https://symfony.com/contributors"
  4491. }
  4492. ],
  4493. "description": "Provides a structured process for converting a Request into a Response",
  4494. "homepage": "https://symfony.com",
  4495. "support": {
  4496. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  4497. },
  4498. "funding": [
  4499. {
  4500. "url": "https://symfony.com/sponsor",
  4501. "type": "custom"
  4502. },
  4503. {
  4504. "url": "https://github.com/fabpot",
  4505. "type": "github"
  4506. },
  4507. {
  4508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4509. "type": "tidelift"
  4510. }
  4511. ],
  4512. "time": "2024-09-21T06:09:21+00:00"
  4513. },
  4514. {
  4515. "name": "symfony/intl",
  4516. "version": "v7.1.5",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/symfony/intl.git",
  4520. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  4525. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  4526. "shasum": ""
  4527. },
  4528. "require": {
  4529. "php": ">=8.2",
  4530. "symfony/deprecation-contracts": "^2.5|^3"
  4531. },
  4532. "conflict": {
  4533. "symfony/string": "<7.1"
  4534. },
  4535. "require-dev": {
  4536. "symfony/filesystem": "^6.4|^7.0",
  4537. "symfony/var-exporter": "^6.4|^7.0"
  4538. },
  4539. "type": "library",
  4540. "autoload": {
  4541. "psr-4": {
  4542. "Symfony\\Component\\Intl\\": ""
  4543. },
  4544. "exclude-from-classmap": [
  4545. "/Tests/",
  4546. "/Resources/data/"
  4547. ]
  4548. },
  4549. "notification-url": "https://packagist.org/downloads/",
  4550. "license": [
  4551. "MIT"
  4552. ],
  4553. "authors": [
  4554. {
  4555. "name": "Bernhard Schussek",
  4556. "email": "bschussek@gmail.com"
  4557. },
  4558. {
  4559. "name": "Eriksen Costa",
  4560. "email": "eriksen.costa@infranology.com.br"
  4561. },
  4562. {
  4563. "name": "Igor Wiedler",
  4564. "email": "igor@wiedler.ch"
  4565. },
  4566. {
  4567. "name": "Symfony Community",
  4568. "homepage": "https://symfony.com/contributors"
  4569. }
  4570. ],
  4571. "description": "Provides access to the localization data of the ICU library",
  4572. "homepage": "https://symfony.com",
  4573. "keywords": [
  4574. "i18n",
  4575. "icu",
  4576. "internationalization",
  4577. "intl",
  4578. "l10n",
  4579. "localization"
  4580. ],
  4581. "support": {
  4582. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  4583. },
  4584. "funding": [
  4585. {
  4586. "url": "https://symfony.com/sponsor",
  4587. "type": "custom"
  4588. },
  4589. {
  4590. "url": "https://github.com/fabpot",
  4591. "type": "github"
  4592. },
  4593. {
  4594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4595. "type": "tidelift"
  4596. }
  4597. ],
  4598. "time": "2024-09-20T08:28:38+00:00"
  4599. },
  4600. {
  4601. "name": "symfony/mailer",
  4602. "version": "v7.1.5",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://github.com/symfony/mailer.git",
  4606. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  4607. },
  4608. "dist": {
  4609. "type": "zip",
  4610. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4611. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4612. "shasum": ""
  4613. },
  4614. "require": {
  4615. "egulias/email-validator": "^2.1.10|^3|^4",
  4616. "php": ">=8.2",
  4617. "psr/event-dispatcher": "^1",
  4618. "psr/log": "^1|^2|^3",
  4619. "symfony/event-dispatcher": "^6.4|^7.0",
  4620. "symfony/mime": "^6.4|^7.0",
  4621. "symfony/service-contracts": "^2.5|^3"
  4622. },
  4623. "conflict": {
  4624. "symfony/http-client-contracts": "<2.5",
  4625. "symfony/http-kernel": "<6.4",
  4626. "symfony/messenger": "<6.4",
  4627. "symfony/mime": "<6.4",
  4628. "symfony/twig-bridge": "<6.4"
  4629. },
  4630. "require-dev": {
  4631. "symfony/console": "^6.4|^7.0",
  4632. "symfony/http-client": "^6.4|^7.0",
  4633. "symfony/messenger": "^6.4|^7.0",
  4634. "symfony/twig-bridge": "^6.4|^7.0"
  4635. },
  4636. "type": "library",
  4637. "autoload": {
  4638. "psr-4": {
  4639. "Symfony\\Component\\Mailer\\": ""
  4640. },
  4641. "exclude-from-classmap": [
  4642. "/Tests/"
  4643. ]
  4644. },
  4645. "notification-url": "https://packagist.org/downloads/",
  4646. "license": [
  4647. "MIT"
  4648. ],
  4649. "authors": [
  4650. {
  4651. "name": "Fabien Potencier",
  4652. "email": "fabien@symfony.com"
  4653. },
  4654. {
  4655. "name": "Symfony Community",
  4656. "homepage": "https://symfony.com/contributors"
  4657. }
  4658. ],
  4659. "description": "Helps sending emails",
  4660. "homepage": "https://symfony.com",
  4661. "support": {
  4662. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  4663. },
  4664. "funding": [
  4665. {
  4666. "url": "https://symfony.com/sponsor",
  4667. "type": "custom"
  4668. },
  4669. {
  4670. "url": "https://github.com/fabpot",
  4671. "type": "github"
  4672. },
  4673. {
  4674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4675. "type": "tidelift"
  4676. }
  4677. ],
  4678. "time": "2024-09-08T12:32:26+00:00"
  4679. },
  4680. {
  4681. "name": "symfony/messenger",
  4682. "version": "v7.1.5",
  4683. "source": {
  4684. "type": "git",
  4685. "url": "https://github.com/symfony/messenger.git",
  4686. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  4687. },
  4688. "dist": {
  4689. "type": "zip",
  4690. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4691. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4692. "shasum": ""
  4693. },
  4694. "require": {
  4695. "php": ">=8.2",
  4696. "psr/log": "^1|^2|^3",
  4697. "symfony/clock": "^6.4|^7.0"
  4698. },
  4699. "conflict": {
  4700. "symfony/console": "<6.4",
  4701. "symfony/event-dispatcher": "<6.4",
  4702. "symfony/event-dispatcher-contracts": "<2.5",
  4703. "symfony/framework-bundle": "<6.4",
  4704. "symfony/http-kernel": "<6.4",
  4705. "symfony/serializer": "<6.4"
  4706. },
  4707. "require-dev": {
  4708. "psr/cache": "^1.0|^2.0|^3.0",
  4709. "symfony/console": "^6.4|^7.0",
  4710. "symfony/dependency-injection": "^6.4|^7.0",
  4711. "symfony/event-dispatcher": "^6.4|^7.0",
  4712. "symfony/http-kernel": "^6.4|^7.0",
  4713. "symfony/process": "^6.4|^7.0",
  4714. "symfony/property-access": "^6.4|^7.0",
  4715. "symfony/rate-limiter": "^6.4|^7.0",
  4716. "symfony/routing": "^6.4|^7.0",
  4717. "symfony/serializer": "^6.4|^7.0",
  4718. "symfony/service-contracts": "^2.5|^3",
  4719. "symfony/stopwatch": "^6.4|^7.0",
  4720. "symfony/validator": "^6.4|^7.0"
  4721. },
  4722. "type": "library",
  4723. "autoload": {
  4724. "psr-4": {
  4725. "Symfony\\Component\\Messenger\\": ""
  4726. },
  4727. "exclude-from-classmap": [
  4728. "/Tests/"
  4729. ]
  4730. },
  4731. "notification-url": "https://packagist.org/downloads/",
  4732. "license": [
  4733. "MIT"
  4734. ],
  4735. "authors": [
  4736. {
  4737. "name": "Samuel Roze",
  4738. "email": "samuel.roze@gmail.com"
  4739. },
  4740. {
  4741. "name": "Symfony Community",
  4742. "homepage": "https://symfony.com/contributors"
  4743. }
  4744. ],
  4745. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4746. "homepage": "https://symfony.com",
  4747. "support": {
  4748. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  4749. },
  4750. "funding": [
  4751. {
  4752. "url": "https://symfony.com/sponsor",
  4753. "type": "custom"
  4754. },
  4755. {
  4756. "url": "https://github.com/fabpot",
  4757. "type": "github"
  4758. },
  4759. {
  4760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4761. "type": "tidelift"
  4762. }
  4763. ],
  4764. "time": "2024-09-08T12:32:26+00:00"
  4765. },
  4766. {
  4767. "name": "symfony/mime",
  4768. "version": "v7.1.5",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/symfony/mime.git",
  4772. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4777. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4778. "shasum": ""
  4779. },
  4780. "require": {
  4781. "php": ">=8.2",
  4782. "symfony/polyfill-intl-idn": "^1.10",
  4783. "symfony/polyfill-mbstring": "^1.0"
  4784. },
  4785. "conflict": {
  4786. "egulias/email-validator": "~3.0.0",
  4787. "phpdocumentor/reflection-docblock": "<3.2.2",
  4788. "phpdocumentor/type-resolver": "<1.4.0",
  4789. "symfony/mailer": "<6.4",
  4790. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4791. },
  4792. "require-dev": {
  4793. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4794. "league/html-to-markdown": "^5.0",
  4795. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4796. "symfony/dependency-injection": "^6.4|^7.0",
  4797. "symfony/process": "^6.4|^7.0",
  4798. "symfony/property-access": "^6.4|^7.0",
  4799. "symfony/property-info": "^6.4|^7.0",
  4800. "symfony/serializer": "^6.4.3|^7.0.3"
  4801. },
  4802. "type": "library",
  4803. "autoload": {
  4804. "psr-4": {
  4805. "Symfony\\Component\\Mime\\": ""
  4806. },
  4807. "exclude-from-classmap": [
  4808. "/Tests/"
  4809. ]
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Fabien Potencier",
  4818. "email": "fabien@symfony.com"
  4819. },
  4820. {
  4821. "name": "Symfony Community",
  4822. "homepage": "https://symfony.com/contributors"
  4823. }
  4824. ],
  4825. "description": "Allows manipulating MIME messages",
  4826. "homepage": "https://symfony.com",
  4827. "keywords": [
  4828. "mime",
  4829. "mime-type"
  4830. ],
  4831. "support": {
  4832. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  4833. },
  4834. "funding": [
  4835. {
  4836. "url": "https://symfony.com/sponsor",
  4837. "type": "custom"
  4838. },
  4839. {
  4840. "url": "https://github.com/fabpot",
  4841. "type": "github"
  4842. },
  4843. {
  4844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4845. "type": "tidelift"
  4846. }
  4847. ],
  4848. "time": "2024-09-20T08:28:38+00:00"
  4849. },
  4850. {
  4851. "name": "symfony/monolog-bridge",
  4852. "version": "v7.1.1",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/symfony/monolog-bridge.git",
  4856. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4861. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "monolog/monolog": "^3",
  4866. "php": ">=8.2",
  4867. "symfony/http-kernel": "^6.4|^7.0",
  4868. "symfony/service-contracts": "^2.5|^3"
  4869. },
  4870. "conflict": {
  4871. "symfony/console": "<6.4",
  4872. "symfony/http-foundation": "<6.4",
  4873. "symfony/security-core": "<6.4"
  4874. },
  4875. "require-dev": {
  4876. "symfony/console": "^6.4|^7.0",
  4877. "symfony/http-client": "^6.4|^7.0",
  4878. "symfony/mailer": "^6.4|^7.0",
  4879. "symfony/messenger": "^6.4|^7.0",
  4880. "symfony/mime": "^6.4|^7.0",
  4881. "symfony/security-core": "^6.4|^7.0",
  4882. "symfony/var-dumper": "^6.4|^7.0"
  4883. },
  4884. "type": "symfony-bridge",
  4885. "autoload": {
  4886. "psr-4": {
  4887. "Symfony\\Bridge\\Monolog\\": ""
  4888. },
  4889. "exclude-from-classmap": [
  4890. "/Tests/"
  4891. ]
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Fabien Potencier",
  4900. "email": "fabien@symfony.com"
  4901. },
  4902. {
  4903. "name": "Symfony Community",
  4904. "homepage": "https://symfony.com/contributors"
  4905. }
  4906. ],
  4907. "description": "Provides integration for Monolog with various Symfony components",
  4908. "homepage": "https://symfony.com",
  4909. "support": {
  4910. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  4911. },
  4912. "funding": [
  4913. {
  4914. "url": "https://symfony.com/sponsor",
  4915. "type": "custom"
  4916. },
  4917. {
  4918. "url": "https://github.com/fabpot",
  4919. "type": "github"
  4920. },
  4921. {
  4922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4923. "type": "tidelift"
  4924. }
  4925. ],
  4926. "time": "2024-05-31T14:57:53+00:00"
  4927. },
  4928. {
  4929. "name": "symfony/monolog-bundle",
  4930. "version": "v3.10.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/symfony/monolog-bundle.git",
  4934. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4939. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4940. "shasum": ""
  4941. },
  4942. "require": {
  4943. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4944. "php": ">=7.2.5",
  4945. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4946. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4947. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4948. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4949. },
  4950. "require-dev": {
  4951. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4952. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4953. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4954. },
  4955. "type": "symfony-bundle",
  4956. "extra": {
  4957. "branch-alias": {
  4958. "dev-master": "3.x-dev"
  4959. }
  4960. },
  4961. "autoload": {
  4962. "psr-4": {
  4963. "Symfony\\Bundle\\MonologBundle\\": ""
  4964. },
  4965. "exclude-from-classmap": [
  4966. "/Tests/"
  4967. ]
  4968. },
  4969. "notification-url": "https://packagist.org/downloads/",
  4970. "license": [
  4971. "MIT"
  4972. ],
  4973. "authors": [
  4974. {
  4975. "name": "Fabien Potencier",
  4976. "email": "fabien@symfony.com"
  4977. },
  4978. {
  4979. "name": "Symfony Community",
  4980. "homepage": "https://symfony.com/contributors"
  4981. }
  4982. ],
  4983. "description": "Symfony MonologBundle",
  4984. "homepage": "https://symfony.com",
  4985. "keywords": [
  4986. "log",
  4987. "logging"
  4988. ],
  4989. "support": {
  4990. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4991. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4992. },
  4993. "funding": [
  4994. {
  4995. "url": "https://symfony.com/sponsor",
  4996. "type": "custom"
  4997. },
  4998. {
  4999. "url": "https://github.com/fabpot",
  5000. "type": "github"
  5001. },
  5002. {
  5003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5004. "type": "tidelift"
  5005. }
  5006. ],
  5007. "time": "2023-11-06T17:08:13+00:00"
  5008. },
  5009. {
  5010. "name": "symfony/notifier",
  5011. "version": "v7.1.5",
  5012. "source": {
  5013. "type": "git",
  5014. "url": "https://github.com/symfony/notifier.git",
  5015. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  5016. },
  5017. "dist": {
  5018. "type": "zip",
  5019. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  5020. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  5021. "shasum": ""
  5022. },
  5023. "require": {
  5024. "php": ">=8.2",
  5025. "psr/log": "^1|^2|^3"
  5026. },
  5027. "conflict": {
  5028. "symfony/event-dispatcher": "<6.4",
  5029. "symfony/event-dispatcher-contracts": "<2.5",
  5030. "symfony/http-client-contracts": "<2.5",
  5031. "symfony/http-kernel": "<6.4"
  5032. },
  5033. "require-dev": {
  5034. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5035. "symfony/http-client-contracts": "^2.5|^3",
  5036. "symfony/http-foundation": "^6.4|^7.0",
  5037. "symfony/messenger": "^6.4|^7.0"
  5038. },
  5039. "type": "library",
  5040. "autoload": {
  5041. "psr-4": {
  5042. "Symfony\\Component\\Notifier\\": ""
  5043. },
  5044. "exclude-from-classmap": [
  5045. "/Tests/"
  5046. ]
  5047. },
  5048. "notification-url": "https://packagist.org/downloads/",
  5049. "license": [
  5050. "MIT"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "Fabien Potencier",
  5055. "email": "fabien@symfony.com"
  5056. },
  5057. {
  5058. "name": "Symfony Community",
  5059. "homepage": "https://symfony.com/contributors"
  5060. }
  5061. ],
  5062. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5063. "homepage": "https://symfony.com",
  5064. "keywords": [
  5065. "notification",
  5066. "notifier"
  5067. ],
  5068. "support": {
  5069. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  5070. },
  5071. "funding": [
  5072. {
  5073. "url": "https://symfony.com/sponsor",
  5074. "type": "custom"
  5075. },
  5076. {
  5077. "url": "https://github.com/fabpot",
  5078. "type": "github"
  5079. },
  5080. {
  5081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5082. "type": "tidelift"
  5083. }
  5084. ],
  5085. "time": "2024-09-08T12:32:26+00:00"
  5086. },
  5087. {
  5088. "name": "symfony/options-resolver",
  5089. "version": "v7.1.1",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/symfony/options-resolver.git",
  5093. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5098. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5099. "shasum": ""
  5100. },
  5101. "require": {
  5102. "php": ">=8.2",
  5103. "symfony/deprecation-contracts": "^2.5|^3"
  5104. },
  5105. "type": "library",
  5106. "autoload": {
  5107. "psr-4": {
  5108. "Symfony\\Component\\OptionsResolver\\": ""
  5109. },
  5110. "exclude-from-classmap": [
  5111. "/Tests/"
  5112. ]
  5113. },
  5114. "notification-url": "https://packagist.org/downloads/",
  5115. "license": [
  5116. "MIT"
  5117. ],
  5118. "authors": [
  5119. {
  5120. "name": "Fabien Potencier",
  5121. "email": "fabien@symfony.com"
  5122. },
  5123. {
  5124. "name": "Symfony Community",
  5125. "homepage": "https://symfony.com/contributors"
  5126. }
  5127. ],
  5128. "description": "Provides an improved replacement for the array_replace PHP function",
  5129. "homepage": "https://symfony.com",
  5130. "keywords": [
  5131. "config",
  5132. "configuration",
  5133. "options"
  5134. ],
  5135. "support": {
  5136. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5137. },
  5138. "funding": [
  5139. {
  5140. "url": "https://symfony.com/sponsor",
  5141. "type": "custom"
  5142. },
  5143. {
  5144. "url": "https://github.com/fabpot",
  5145. "type": "github"
  5146. },
  5147. {
  5148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5149. "type": "tidelift"
  5150. }
  5151. ],
  5152. "time": "2024-05-31T14:57:53+00:00"
  5153. },
  5154. {
  5155. "name": "symfony/password-hasher",
  5156. "version": "v7.1.1",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/symfony/password-hasher.git",
  5160. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5165. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5166. "shasum": ""
  5167. },
  5168. "require": {
  5169. "php": ">=8.2"
  5170. },
  5171. "conflict": {
  5172. "symfony/security-core": "<6.4"
  5173. },
  5174. "require-dev": {
  5175. "symfony/console": "^6.4|^7.0",
  5176. "symfony/security-core": "^6.4|^7.0"
  5177. },
  5178. "type": "library",
  5179. "autoload": {
  5180. "psr-4": {
  5181. "Symfony\\Component\\PasswordHasher\\": ""
  5182. },
  5183. "exclude-from-classmap": [
  5184. "/Tests/"
  5185. ]
  5186. },
  5187. "notification-url": "https://packagist.org/downloads/",
  5188. "license": [
  5189. "MIT"
  5190. ],
  5191. "authors": [
  5192. {
  5193. "name": "Robin Chalas",
  5194. "email": "robin.chalas@gmail.com"
  5195. },
  5196. {
  5197. "name": "Symfony Community",
  5198. "homepage": "https://symfony.com/contributors"
  5199. }
  5200. ],
  5201. "description": "Provides password hashing utilities",
  5202. "homepage": "https://symfony.com",
  5203. "keywords": [
  5204. "hashing",
  5205. "password"
  5206. ],
  5207. "support": {
  5208. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://symfony.com/sponsor",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://github.com/fabpot",
  5217. "type": "github"
  5218. },
  5219. {
  5220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5221. "type": "tidelift"
  5222. }
  5223. ],
  5224. "time": "2024-05-31T14:57:53+00:00"
  5225. },
  5226. {
  5227. "name": "symfony/polyfill-intl-grapheme",
  5228. "version": "v1.31.0",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5232. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5237. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">=7.2"
  5242. },
  5243. "suggest": {
  5244. "ext-intl": "For best performance"
  5245. },
  5246. "type": "library",
  5247. "extra": {
  5248. "thanks": {
  5249. "name": "symfony/polyfill",
  5250. "url": "https://github.com/symfony/polyfill"
  5251. }
  5252. },
  5253. "autoload": {
  5254. "files": [
  5255. "bootstrap.php"
  5256. ],
  5257. "psr-4": {
  5258. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "MIT"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Nicolas Grekas",
  5268. "email": "p@tchwork.com"
  5269. },
  5270. {
  5271. "name": "Symfony Community",
  5272. "homepage": "https://symfony.com/contributors"
  5273. }
  5274. ],
  5275. "description": "Symfony polyfill for intl's grapheme_* functions",
  5276. "homepage": "https://symfony.com",
  5277. "keywords": [
  5278. "compatibility",
  5279. "grapheme",
  5280. "intl",
  5281. "polyfill",
  5282. "portable",
  5283. "shim"
  5284. ],
  5285. "support": {
  5286. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5287. },
  5288. "funding": [
  5289. {
  5290. "url": "https://symfony.com/sponsor",
  5291. "type": "custom"
  5292. },
  5293. {
  5294. "url": "https://github.com/fabpot",
  5295. "type": "github"
  5296. },
  5297. {
  5298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5299. "type": "tidelift"
  5300. }
  5301. ],
  5302. "time": "2024-09-09T11:45:10+00:00"
  5303. },
  5304. {
  5305. "name": "symfony/polyfill-intl-icu",
  5306. "version": "v1.31.0",
  5307. "source": {
  5308. "type": "git",
  5309. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5310. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  5311. },
  5312. "dist": {
  5313. "type": "zip",
  5314. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5315. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5316. "shasum": ""
  5317. },
  5318. "require": {
  5319. "php": ">=7.2"
  5320. },
  5321. "suggest": {
  5322. "ext-intl": "For best performance and support of other locales than \"en\""
  5323. },
  5324. "type": "library",
  5325. "extra": {
  5326. "thanks": {
  5327. "name": "symfony/polyfill",
  5328. "url": "https://github.com/symfony/polyfill"
  5329. }
  5330. },
  5331. "autoload": {
  5332. "files": [
  5333. "bootstrap.php"
  5334. ],
  5335. "psr-4": {
  5336. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5337. },
  5338. "classmap": [
  5339. "Resources/stubs"
  5340. ],
  5341. "exclude-from-classmap": [
  5342. "/Tests/"
  5343. ]
  5344. },
  5345. "notification-url": "https://packagist.org/downloads/",
  5346. "license": [
  5347. "MIT"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "Nicolas Grekas",
  5352. "email": "p@tchwork.com"
  5353. },
  5354. {
  5355. "name": "Symfony Community",
  5356. "homepage": "https://symfony.com/contributors"
  5357. }
  5358. ],
  5359. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5360. "homepage": "https://symfony.com",
  5361. "keywords": [
  5362. "compatibility",
  5363. "icu",
  5364. "intl",
  5365. "polyfill",
  5366. "portable",
  5367. "shim"
  5368. ],
  5369. "support": {
  5370. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5371. },
  5372. "funding": [
  5373. {
  5374. "url": "https://symfony.com/sponsor",
  5375. "type": "custom"
  5376. },
  5377. {
  5378. "url": "https://github.com/fabpot",
  5379. "type": "github"
  5380. },
  5381. {
  5382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5383. "type": "tidelift"
  5384. }
  5385. ],
  5386. "time": "2024-09-09T11:45:10+00:00"
  5387. },
  5388. {
  5389. "name": "symfony/polyfill-intl-idn",
  5390. "version": "v1.31.0",
  5391. "source": {
  5392. "type": "git",
  5393. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5394. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5395. },
  5396. "dist": {
  5397. "type": "zip",
  5398. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5399. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5400. "shasum": ""
  5401. },
  5402. "require": {
  5403. "php": ">=7.2",
  5404. "symfony/polyfill-intl-normalizer": "^1.10"
  5405. },
  5406. "suggest": {
  5407. "ext-intl": "For best performance"
  5408. },
  5409. "type": "library",
  5410. "extra": {
  5411. "thanks": {
  5412. "name": "symfony/polyfill",
  5413. "url": "https://github.com/symfony/polyfill"
  5414. }
  5415. },
  5416. "autoload": {
  5417. "files": [
  5418. "bootstrap.php"
  5419. ],
  5420. "psr-4": {
  5421. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5422. }
  5423. },
  5424. "notification-url": "https://packagist.org/downloads/",
  5425. "license": [
  5426. "MIT"
  5427. ],
  5428. "authors": [
  5429. {
  5430. "name": "Laurent Bassin",
  5431. "email": "laurent@bassin.info"
  5432. },
  5433. {
  5434. "name": "Trevor Rowbotham",
  5435. "email": "trevor.rowbotham@pm.me"
  5436. },
  5437. {
  5438. "name": "Symfony Community",
  5439. "homepage": "https://symfony.com/contributors"
  5440. }
  5441. ],
  5442. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5443. "homepage": "https://symfony.com",
  5444. "keywords": [
  5445. "compatibility",
  5446. "idn",
  5447. "intl",
  5448. "polyfill",
  5449. "portable",
  5450. "shim"
  5451. ],
  5452. "support": {
  5453. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5454. },
  5455. "funding": [
  5456. {
  5457. "url": "https://symfony.com/sponsor",
  5458. "type": "custom"
  5459. },
  5460. {
  5461. "url": "https://github.com/fabpot",
  5462. "type": "github"
  5463. },
  5464. {
  5465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5466. "type": "tidelift"
  5467. }
  5468. ],
  5469. "time": "2024-09-09T11:45:10+00:00"
  5470. },
  5471. {
  5472. "name": "symfony/polyfill-intl-normalizer",
  5473. "version": "v1.31.0",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5477. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5482. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "php": ">=7.2"
  5487. },
  5488. "suggest": {
  5489. "ext-intl": "For best performance"
  5490. },
  5491. "type": "library",
  5492. "extra": {
  5493. "thanks": {
  5494. "name": "symfony/polyfill",
  5495. "url": "https://github.com/symfony/polyfill"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "files": [
  5500. "bootstrap.php"
  5501. ],
  5502. "psr-4": {
  5503. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5504. },
  5505. "classmap": [
  5506. "Resources/stubs"
  5507. ]
  5508. },
  5509. "notification-url": "https://packagist.org/downloads/",
  5510. "license": [
  5511. "MIT"
  5512. ],
  5513. "authors": [
  5514. {
  5515. "name": "Nicolas Grekas",
  5516. "email": "p@tchwork.com"
  5517. },
  5518. {
  5519. "name": "Symfony Community",
  5520. "homepage": "https://symfony.com/contributors"
  5521. }
  5522. ],
  5523. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5524. "homepage": "https://symfony.com",
  5525. "keywords": [
  5526. "compatibility",
  5527. "intl",
  5528. "normalizer",
  5529. "polyfill",
  5530. "portable",
  5531. "shim"
  5532. ],
  5533. "support": {
  5534. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5535. },
  5536. "funding": [
  5537. {
  5538. "url": "https://symfony.com/sponsor",
  5539. "type": "custom"
  5540. },
  5541. {
  5542. "url": "https://github.com/fabpot",
  5543. "type": "github"
  5544. },
  5545. {
  5546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5547. "type": "tidelift"
  5548. }
  5549. ],
  5550. "time": "2024-09-09T11:45:10+00:00"
  5551. },
  5552. {
  5553. "name": "symfony/polyfill-mbstring",
  5554. "version": "v1.31.0",
  5555. "source": {
  5556. "type": "git",
  5557. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5558. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5559. },
  5560. "dist": {
  5561. "type": "zip",
  5562. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5563. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5564. "shasum": ""
  5565. },
  5566. "require": {
  5567. "php": ">=7.2"
  5568. },
  5569. "provide": {
  5570. "ext-mbstring": "*"
  5571. },
  5572. "suggest": {
  5573. "ext-mbstring": "For best performance"
  5574. },
  5575. "type": "library",
  5576. "extra": {
  5577. "thanks": {
  5578. "name": "symfony/polyfill",
  5579. "url": "https://github.com/symfony/polyfill"
  5580. }
  5581. },
  5582. "autoload": {
  5583. "files": [
  5584. "bootstrap.php"
  5585. ],
  5586. "psr-4": {
  5587. "Symfony\\Polyfill\\Mbstring\\": ""
  5588. }
  5589. },
  5590. "notification-url": "https://packagist.org/downloads/",
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Nicolas Grekas",
  5597. "email": "p@tchwork.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Symfony polyfill for the Mbstring extension",
  5605. "homepage": "https://symfony.com",
  5606. "keywords": [
  5607. "compatibility",
  5608. "mbstring",
  5609. "polyfill",
  5610. "portable",
  5611. "shim"
  5612. ],
  5613. "support": {
  5614. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5615. },
  5616. "funding": [
  5617. {
  5618. "url": "https://symfony.com/sponsor",
  5619. "type": "custom"
  5620. },
  5621. {
  5622. "url": "https://github.com/fabpot",
  5623. "type": "github"
  5624. },
  5625. {
  5626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5627. "type": "tidelift"
  5628. }
  5629. ],
  5630. "time": "2024-09-09T11:45:10+00:00"
  5631. },
  5632. {
  5633. "name": "symfony/polyfill-php83",
  5634. "version": "v1.31.0",
  5635. "source": {
  5636. "type": "git",
  5637. "url": "https://github.com/symfony/polyfill-php83.git",
  5638. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5639. },
  5640. "dist": {
  5641. "type": "zip",
  5642. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5643. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5644. "shasum": ""
  5645. },
  5646. "require": {
  5647. "php": ">=7.2"
  5648. },
  5649. "type": "library",
  5650. "extra": {
  5651. "thanks": {
  5652. "name": "symfony/polyfill",
  5653. "url": "https://github.com/symfony/polyfill"
  5654. }
  5655. },
  5656. "autoload": {
  5657. "files": [
  5658. "bootstrap.php"
  5659. ],
  5660. "psr-4": {
  5661. "Symfony\\Polyfill\\Php83\\": ""
  5662. },
  5663. "classmap": [
  5664. "Resources/stubs"
  5665. ]
  5666. },
  5667. "notification-url": "https://packagist.org/downloads/",
  5668. "license": [
  5669. "MIT"
  5670. ],
  5671. "authors": [
  5672. {
  5673. "name": "Nicolas Grekas",
  5674. "email": "p@tchwork.com"
  5675. },
  5676. {
  5677. "name": "Symfony Community",
  5678. "homepage": "https://symfony.com/contributors"
  5679. }
  5680. ],
  5681. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5682. "homepage": "https://symfony.com",
  5683. "keywords": [
  5684. "compatibility",
  5685. "polyfill",
  5686. "portable",
  5687. "shim"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2024-09-09T11:45:10+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/process",
  5710. "version": "v7.1.5",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/process.git",
  5714. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  5719. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  5720. "shasum": ""
  5721. },
  5722. "require": {
  5723. "php": ">=8.2"
  5724. },
  5725. "type": "library",
  5726. "autoload": {
  5727. "psr-4": {
  5728. "Symfony\\Component\\Process\\": ""
  5729. },
  5730. "exclude-from-classmap": [
  5731. "/Tests/"
  5732. ]
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Fabien Potencier",
  5741. "email": "fabien@symfony.com"
  5742. },
  5743. {
  5744. "name": "Symfony Community",
  5745. "homepage": "https://symfony.com/contributors"
  5746. }
  5747. ],
  5748. "description": "Executes commands in sub-processes",
  5749. "homepage": "https://symfony.com",
  5750. "support": {
  5751. "source": "https://github.com/symfony/process/tree/v7.1.5"
  5752. },
  5753. "funding": [
  5754. {
  5755. "url": "https://symfony.com/sponsor",
  5756. "type": "custom"
  5757. },
  5758. {
  5759. "url": "https://github.com/fabpot",
  5760. "type": "github"
  5761. },
  5762. {
  5763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5764. "type": "tidelift"
  5765. }
  5766. ],
  5767. "time": "2024-09-19T21:48:23+00:00"
  5768. },
  5769. {
  5770. "name": "symfony/property-access",
  5771. "version": "v7.1.4",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/symfony/property-access.git",
  5775. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  5780. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  5781. "shasum": ""
  5782. },
  5783. "require": {
  5784. "php": ">=8.2",
  5785. "symfony/property-info": "^6.4|^7.0"
  5786. },
  5787. "require-dev": {
  5788. "symfony/cache": "^6.4|^7.0"
  5789. },
  5790. "type": "library",
  5791. "autoload": {
  5792. "psr-4": {
  5793. "Symfony\\Component\\PropertyAccess\\": ""
  5794. },
  5795. "exclude-from-classmap": [
  5796. "/Tests/"
  5797. ]
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Fabien Potencier",
  5806. "email": "fabien@symfony.com"
  5807. },
  5808. {
  5809. "name": "Symfony Community",
  5810. "homepage": "https://symfony.com/contributors"
  5811. }
  5812. ],
  5813. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5814. "homepage": "https://symfony.com",
  5815. "keywords": [
  5816. "access",
  5817. "array",
  5818. "extraction",
  5819. "index",
  5820. "injection",
  5821. "object",
  5822. "property",
  5823. "property-path",
  5824. "reflection"
  5825. ],
  5826. "support": {
  5827. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  5828. },
  5829. "funding": [
  5830. {
  5831. "url": "https://symfony.com/sponsor",
  5832. "type": "custom"
  5833. },
  5834. {
  5835. "url": "https://github.com/fabpot",
  5836. "type": "github"
  5837. },
  5838. {
  5839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5840. "type": "tidelift"
  5841. }
  5842. ],
  5843. "time": "2024-08-30T16:12:47+00:00"
  5844. },
  5845. {
  5846. "name": "symfony/property-info",
  5847. "version": "v7.1.3",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://github.com/symfony/property-info.git",
  5851. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5856. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5857. "shasum": ""
  5858. },
  5859. "require": {
  5860. "php": ">=8.2",
  5861. "symfony/string": "^6.4|^7.0",
  5862. "symfony/type-info": "^7.1"
  5863. },
  5864. "conflict": {
  5865. "phpdocumentor/reflection-docblock": "<5.2",
  5866. "phpdocumentor/type-resolver": "<1.5.1",
  5867. "symfony/dependency-injection": "<6.4",
  5868. "symfony/serializer": "<6.4"
  5869. },
  5870. "require-dev": {
  5871. "phpdocumentor/reflection-docblock": "^5.2",
  5872. "phpstan/phpdoc-parser": "^1.0",
  5873. "symfony/cache": "^6.4|^7.0",
  5874. "symfony/dependency-injection": "^6.4|^7.0",
  5875. "symfony/serializer": "^6.4|^7.0"
  5876. },
  5877. "type": "library",
  5878. "autoload": {
  5879. "psr-4": {
  5880. "Symfony\\Component\\PropertyInfo\\": ""
  5881. },
  5882. "exclude-from-classmap": [
  5883. "/Tests/"
  5884. ]
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Kévin Dunglas",
  5893. "email": "dunglas@gmail.com"
  5894. },
  5895. {
  5896. "name": "Symfony Community",
  5897. "homepage": "https://symfony.com/contributors"
  5898. }
  5899. ],
  5900. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5901. "homepage": "https://symfony.com",
  5902. "keywords": [
  5903. "doctrine",
  5904. "phpdoc",
  5905. "property",
  5906. "symfony",
  5907. "type",
  5908. "validator"
  5909. ],
  5910. "support": {
  5911. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  5912. },
  5913. "funding": [
  5914. {
  5915. "url": "https://symfony.com/sponsor",
  5916. "type": "custom"
  5917. },
  5918. {
  5919. "url": "https://github.com/fabpot",
  5920. "type": "github"
  5921. },
  5922. {
  5923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5924. "type": "tidelift"
  5925. }
  5926. ],
  5927. "time": "2024-07-26T07:36:36+00:00"
  5928. },
  5929. {
  5930. "name": "symfony/routing",
  5931. "version": "v7.1.4",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/symfony/routing.git",
  5935. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5940. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5941. "shasum": ""
  5942. },
  5943. "require": {
  5944. "php": ">=8.2",
  5945. "symfony/deprecation-contracts": "^2.5|^3"
  5946. },
  5947. "conflict": {
  5948. "symfony/config": "<6.4",
  5949. "symfony/dependency-injection": "<6.4",
  5950. "symfony/yaml": "<6.4"
  5951. },
  5952. "require-dev": {
  5953. "psr/log": "^1|^2|^3",
  5954. "symfony/config": "^6.4|^7.0",
  5955. "symfony/dependency-injection": "^6.4|^7.0",
  5956. "symfony/expression-language": "^6.4|^7.0",
  5957. "symfony/http-foundation": "^6.4|^7.0",
  5958. "symfony/yaml": "^6.4|^7.0"
  5959. },
  5960. "type": "library",
  5961. "autoload": {
  5962. "psr-4": {
  5963. "Symfony\\Component\\Routing\\": ""
  5964. },
  5965. "exclude-from-classmap": [
  5966. "/Tests/"
  5967. ]
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Fabien Potencier",
  5976. "email": "fabien@symfony.com"
  5977. },
  5978. {
  5979. "name": "Symfony Community",
  5980. "homepage": "https://symfony.com/contributors"
  5981. }
  5982. ],
  5983. "description": "Maps an HTTP request to a set of configuration variables",
  5984. "homepage": "https://symfony.com",
  5985. "keywords": [
  5986. "router",
  5987. "routing",
  5988. "uri",
  5989. "url"
  5990. ],
  5991. "support": {
  5992. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  5993. },
  5994. "funding": [
  5995. {
  5996. "url": "https://symfony.com/sponsor",
  5997. "type": "custom"
  5998. },
  5999. {
  6000. "url": "https://github.com/fabpot",
  6001. "type": "github"
  6002. },
  6003. {
  6004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6005. "type": "tidelift"
  6006. }
  6007. ],
  6008. "time": "2024-08-29T08:16:25+00:00"
  6009. },
  6010. {
  6011. "name": "symfony/runtime",
  6012. "version": "v7.1.1",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://github.com/symfony/runtime.git",
  6016. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6021. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6022. "shasum": ""
  6023. },
  6024. "require": {
  6025. "composer-plugin-api": "^1.0|^2.0",
  6026. "php": ">=8.2"
  6027. },
  6028. "conflict": {
  6029. "symfony/dotenv": "<6.4"
  6030. },
  6031. "require-dev": {
  6032. "composer/composer": "^2.6",
  6033. "symfony/console": "^6.4|^7.0",
  6034. "symfony/dotenv": "^6.4|^7.0",
  6035. "symfony/http-foundation": "^6.4|^7.0",
  6036. "symfony/http-kernel": "^6.4|^7.0"
  6037. },
  6038. "type": "composer-plugin",
  6039. "extra": {
  6040. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6041. },
  6042. "autoload": {
  6043. "psr-4": {
  6044. "Symfony\\Component\\Runtime\\": "",
  6045. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6046. },
  6047. "exclude-from-classmap": [
  6048. "/Tests/"
  6049. ]
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "MIT"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Nicolas Grekas",
  6058. "email": "p@tchwork.com"
  6059. },
  6060. {
  6061. "name": "Symfony Community",
  6062. "homepage": "https://symfony.com/contributors"
  6063. }
  6064. ],
  6065. "description": "Enables decoupling PHP applications from global state",
  6066. "homepage": "https://symfony.com",
  6067. "keywords": [
  6068. "runtime"
  6069. ],
  6070. "support": {
  6071. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6072. },
  6073. "funding": [
  6074. {
  6075. "url": "https://symfony.com/sponsor",
  6076. "type": "custom"
  6077. },
  6078. {
  6079. "url": "https://github.com/fabpot",
  6080. "type": "github"
  6081. },
  6082. {
  6083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6084. "type": "tidelift"
  6085. }
  6086. ],
  6087. "time": "2024-05-31T14:55:39+00:00"
  6088. },
  6089. {
  6090. "name": "symfony/security-bundle",
  6091. "version": "v7.1.4",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://github.com/symfony/security-bundle.git",
  6095. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6100. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6101. "shasum": ""
  6102. },
  6103. "require": {
  6104. "composer-runtime-api": ">=2.1",
  6105. "ext-xml": "*",
  6106. "php": ">=8.2",
  6107. "symfony/clock": "^6.4|^7.0",
  6108. "symfony/config": "^6.4|^7.0",
  6109. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6110. "symfony/event-dispatcher": "^6.4|^7.0",
  6111. "symfony/http-foundation": "^6.4|^7.0",
  6112. "symfony/http-kernel": "^6.4|^7.0",
  6113. "symfony/password-hasher": "^6.4|^7.0",
  6114. "symfony/security-core": "^6.4|^7.0",
  6115. "symfony/security-csrf": "^6.4|^7.0",
  6116. "symfony/security-http": "^7.1",
  6117. "symfony/service-contracts": "^2.5|^3"
  6118. },
  6119. "conflict": {
  6120. "symfony/browser-kit": "<6.4",
  6121. "symfony/console": "<6.4",
  6122. "symfony/framework-bundle": "<6.4",
  6123. "symfony/http-client": "<6.4",
  6124. "symfony/ldap": "<6.4",
  6125. "symfony/serializer": "<6.4",
  6126. "symfony/twig-bundle": "<6.4",
  6127. "symfony/validator": "<6.4"
  6128. },
  6129. "require-dev": {
  6130. "symfony/asset": "^6.4|^7.0",
  6131. "symfony/browser-kit": "^6.4|^7.0",
  6132. "symfony/console": "^6.4|^7.0",
  6133. "symfony/css-selector": "^6.4|^7.0",
  6134. "symfony/dom-crawler": "^6.4|^7.0",
  6135. "symfony/expression-language": "^6.4|^7.0",
  6136. "symfony/form": "^6.4|^7.0",
  6137. "symfony/framework-bundle": "^6.4|^7.0",
  6138. "symfony/http-client": "^6.4|^7.0",
  6139. "symfony/ldap": "^6.4|^7.0",
  6140. "symfony/process": "^6.4|^7.0",
  6141. "symfony/rate-limiter": "^6.4|^7.0",
  6142. "symfony/serializer": "^6.4|^7.0",
  6143. "symfony/translation": "^6.4|^7.0",
  6144. "symfony/twig-bridge": "^6.4|^7.0",
  6145. "symfony/twig-bundle": "^6.4|^7.0",
  6146. "symfony/validator": "^6.4|^7.0",
  6147. "symfony/yaml": "^6.4|^7.0",
  6148. "twig/twig": "^3.0.4",
  6149. "web-token/jwt-library": "^3.3.2|^4.0"
  6150. },
  6151. "type": "symfony-bundle",
  6152. "autoload": {
  6153. "psr-4": {
  6154. "Symfony\\Bundle\\SecurityBundle\\": ""
  6155. },
  6156. "exclude-from-classmap": [
  6157. "/Tests/"
  6158. ]
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Fabien Potencier",
  6167. "email": "fabien@symfony.com"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6175. "homepage": "https://symfony.com",
  6176. "support": {
  6177. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  6178. },
  6179. "funding": [
  6180. {
  6181. "url": "https://symfony.com/sponsor",
  6182. "type": "custom"
  6183. },
  6184. {
  6185. "url": "https://github.com/fabpot",
  6186. "type": "github"
  6187. },
  6188. {
  6189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6190. "type": "tidelift"
  6191. }
  6192. ],
  6193. "time": "2024-08-20T11:38:55+00:00"
  6194. },
  6195. {
  6196. "name": "symfony/security-core",
  6197. "version": "v7.1.5",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/symfony/security-core.git",
  6201. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  6206. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "php": ">=8.2",
  6211. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6212. "symfony/password-hasher": "^6.4|^7.0",
  6213. "symfony/service-contracts": "^2.5|^3"
  6214. },
  6215. "conflict": {
  6216. "symfony/dependency-injection": "<6.4",
  6217. "symfony/event-dispatcher": "<6.4",
  6218. "symfony/http-foundation": "<6.4",
  6219. "symfony/ldap": "<6.4",
  6220. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6221. "symfony/validator": "<6.4"
  6222. },
  6223. "require-dev": {
  6224. "psr/cache": "^1.0|^2.0|^3.0",
  6225. "psr/container": "^1.1|^2.0",
  6226. "psr/log": "^1|^2|^3",
  6227. "symfony/cache": "^6.4|^7.0",
  6228. "symfony/dependency-injection": "^6.4|^7.0",
  6229. "symfony/event-dispatcher": "^6.4|^7.0",
  6230. "symfony/expression-language": "^6.4|^7.0",
  6231. "symfony/http-foundation": "^6.4|^7.0",
  6232. "symfony/ldap": "^6.4|^7.0",
  6233. "symfony/string": "^6.4|^7.0",
  6234. "symfony/translation": "^6.4.3|^7.0.3",
  6235. "symfony/validator": "^6.4|^7.0"
  6236. },
  6237. "type": "library",
  6238. "autoload": {
  6239. "psr-4": {
  6240. "Symfony\\Component\\Security\\Core\\": ""
  6241. },
  6242. "exclude-from-classmap": [
  6243. "/Tests/"
  6244. ]
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Fabien Potencier",
  6253. "email": "fabien@symfony.com"
  6254. },
  6255. {
  6256. "name": "Symfony Community",
  6257. "homepage": "https://symfony.com/contributors"
  6258. }
  6259. ],
  6260. "description": "Symfony Security Component - Core Library",
  6261. "homepage": "https://symfony.com",
  6262. "support": {
  6263. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  6264. },
  6265. "funding": [
  6266. {
  6267. "url": "https://symfony.com/sponsor",
  6268. "type": "custom"
  6269. },
  6270. {
  6271. "url": "https://github.com/fabpot",
  6272. "type": "github"
  6273. },
  6274. {
  6275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6276. "type": "tidelift"
  6277. }
  6278. ],
  6279. "time": "2024-09-20T13:35:23+00:00"
  6280. },
  6281. {
  6282. "name": "symfony/security-csrf",
  6283. "version": "v7.1.1",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/symfony/security-csrf.git",
  6287. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6292. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6293. "shasum": ""
  6294. },
  6295. "require": {
  6296. "php": ">=8.2",
  6297. "symfony/security-core": "^6.4|^7.0"
  6298. },
  6299. "conflict": {
  6300. "symfony/http-foundation": "<6.4"
  6301. },
  6302. "require-dev": {
  6303. "symfony/http-foundation": "^6.4|^7.0"
  6304. },
  6305. "type": "library",
  6306. "autoload": {
  6307. "psr-4": {
  6308. "Symfony\\Component\\Security\\Csrf\\": ""
  6309. },
  6310. "exclude-from-classmap": [
  6311. "/Tests/"
  6312. ]
  6313. },
  6314. "notification-url": "https://packagist.org/downloads/",
  6315. "license": [
  6316. "MIT"
  6317. ],
  6318. "authors": [
  6319. {
  6320. "name": "Fabien Potencier",
  6321. "email": "fabien@symfony.com"
  6322. },
  6323. {
  6324. "name": "Symfony Community",
  6325. "homepage": "https://symfony.com/contributors"
  6326. }
  6327. ],
  6328. "description": "Symfony Security Component - CSRF Library",
  6329. "homepage": "https://symfony.com",
  6330. "support": {
  6331. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6332. },
  6333. "funding": [
  6334. {
  6335. "url": "https://symfony.com/sponsor",
  6336. "type": "custom"
  6337. },
  6338. {
  6339. "url": "https://github.com/fabpot",
  6340. "type": "github"
  6341. },
  6342. {
  6343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6344. "type": "tidelift"
  6345. }
  6346. ],
  6347. "time": "2024-05-31T14:57:53+00:00"
  6348. },
  6349. {
  6350. "name": "symfony/security-http",
  6351. "version": "v7.1.5",
  6352. "source": {
  6353. "type": "git",
  6354. "url": "https://github.com/symfony/security-http.git",
  6355. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  6356. },
  6357. "dist": {
  6358. "type": "zip",
  6359. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  6360. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  6361. "shasum": ""
  6362. },
  6363. "require": {
  6364. "php": ">=8.2",
  6365. "symfony/deprecation-contracts": "^2.5|^3",
  6366. "symfony/http-foundation": "^6.4|^7.0",
  6367. "symfony/http-kernel": "^6.4|^7.0",
  6368. "symfony/polyfill-mbstring": "~1.0",
  6369. "symfony/property-access": "^6.4|^7.0",
  6370. "symfony/security-core": "^6.4|^7.0",
  6371. "symfony/service-contracts": "^2.5|^3"
  6372. },
  6373. "conflict": {
  6374. "symfony/clock": "<6.4",
  6375. "symfony/event-dispatcher": "<6.4",
  6376. "symfony/http-client-contracts": "<3.0",
  6377. "symfony/security-bundle": "<6.4",
  6378. "symfony/security-csrf": "<6.4"
  6379. },
  6380. "require-dev": {
  6381. "psr/log": "^1|^2|^3",
  6382. "symfony/cache": "^6.4|^7.0",
  6383. "symfony/clock": "^6.4|^7.0",
  6384. "symfony/expression-language": "^6.4|^7.0",
  6385. "symfony/http-client": "^6.4|^7.0",
  6386. "symfony/http-client-contracts": "^3.0",
  6387. "symfony/rate-limiter": "^6.4|^7.0",
  6388. "symfony/routing": "^6.4|^7.0",
  6389. "symfony/security-csrf": "^6.4|^7.0",
  6390. "symfony/translation": "^6.4|^7.0",
  6391. "web-token/jwt-library": "^3.3.2|^4.0"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "psr-4": {
  6396. "Symfony\\Component\\Security\\Http\\": ""
  6397. },
  6398. "exclude-from-classmap": [
  6399. "/Tests/"
  6400. ]
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "Fabien Potencier",
  6409. "email": "fabien@symfony.com"
  6410. },
  6411. {
  6412. "name": "Symfony Community",
  6413. "homepage": "https://symfony.com/contributors"
  6414. }
  6415. ],
  6416. "description": "Symfony Security Component - HTTP Integration",
  6417. "homepage": "https://symfony.com",
  6418. "support": {
  6419. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://symfony.com/sponsor",
  6424. "type": "custom"
  6425. },
  6426. {
  6427. "url": "https://github.com/fabpot",
  6428. "type": "github"
  6429. },
  6430. {
  6431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6432. "type": "tidelift"
  6433. }
  6434. ],
  6435. "time": "2024-09-20T08:28:38+00:00"
  6436. },
  6437. {
  6438. "name": "symfony/serializer",
  6439. "version": "v7.1.5",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/symfony/serializer.git",
  6443. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6448. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6449. "shasum": ""
  6450. },
  6451. "require": {
  6452. "php": ">=8.2",
  6453. "symfony/deprecation-contracts": "^2.5|^3",
  6454. "symfony/polyfill-ctype": "~1.8"
  6455. },
  6456. "conflict": {
  6457. "phpdocumentor/reflection-docblock": "<3.2.2",
  6458. "phpdocumentor/type-resolver": "<1.4.0",
  6459. "symfony/dependency-injection": "<6.4",
  6460. "symfony/property-access": "<6.4",
  6461. "symfony/property-info": "<6.4",
  6462. "symfony/type-info": "<7.1.5",
  6463. "symfony/uid": "<6.4",
  6464. "symfony/validator": "<6.4",
  6465. "symfony/yaml": "<6.4"
  6466. },
  6467. "require-dev": {
  6468. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6469. "phpstan/phpdoc-parser": "^1.0",
  6470. "seld/jsonlint": "^1.10",
  6471. "symfony/cache": "^6.4|^7.0",
  6472. "symfony/config": "^6.4|^7.0",
  6473. "symfony/console": "^6.4|^7.0",
  6474. "symfony/dependency-injection": "^6.4|^7.0",
  6475. "symfony/error-handler": "^6.4|^7.0",
  6476. "symfony/filesystem": "^6.4|^7.0",
  6477. "symfony/form": "^6.4|^7.0",
  6478. "symfony/http-foundation": "^6.4|^7.0",
  6479. "symfony/http-kernel": "^6.4|^7.0",
  6480. "symfony/messenger": "^6.4|^7.0",
  6481. "symfony/mime": "^6.4|^7.0",
  6482. "symfony/property-access": "^6.4|^7.0",
  6483. "symfony/property-info": "^6.4|^7.0",
  6484. "symfony/translation-contracts": "^2.5|^3",
  6485. "symfony/type-info": "^7.1.5",
  6486. "symfony/uid": "^6.4|^7.0",
  6487. "symfony/validator": "^6.4|^7.0",
  6488. "symfony/var-dumper": "^6.4|^7.0",
  6489. "symfony/var-exporter": "^6.4|^7.0",
  6490. "symfony/yaml": "^6.4|^7.0"
  6491. },
  6492. "type": "library",
  6493. "autoload": {
  6494. "psr-4": {
  6495. "Symfony\\Component\\Serializer\\": ""
  6496. },
  6497. "exclude-from-classmap": [
  6498. "/Tests/"
  6499. ]
  6500. },
  6501. "notification-url": "https://packagist.org/downloads/",
  6502. "license": [
  6503. "MIT"
  6504. ],
  6505. "authors": [
  6506. {
  6507. "name": "Fabien Potencier",
  6508. "email": "fabien@symfony.com"
  6509. },
  6510. {
  6511. "name": "Symfony Community",
  6512. "homepage": "https://symfony.com/contributors"
  6513. }
  6514. ],
  6515. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6516. "homepage": "https://symfony.com",
  6517. "support": {
  6518. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  6519. },
  6520. "funding": [
  6521. {
  6522. "url": "https://symfony.com/sponsor",
  6523. "type": "custom"
  6524. },
  6525. {
  6526. "url": "https://github.com/fabpot",
  6527. "type": "github"
  6528. },
  6529. {
  6530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6531. "type": "tidelift"
  6532. }
  6533. ],
  6534. "time": "2024-09-20T12:13:15+00:00"
  6535. },
  6536. {
  6537. "name": "symfony/service-contracts",
  6538. "version": "v3.5.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/symfony/service-contracts.git",
  6542. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6547. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": ">=8.1",
  6552. "psr/container": "^1.1|^2.0",
  6553. "symfony/deprecation-contracts": "^2.5|^3"
  6554. },
  6555. "conflict": {
  6556. "ext-psr": "<1.1|>=2"
  6557. },
  6558. "type": "library",
  6559. "extra": {
  6560. "branch-alias": {
  6561. "dev-main": "3.5-dev"
  6562. },
  6563. "thanks": {
  6564. "name": "symfony/contracts",
  6565. "url": "https://github.com/symfony/contracts"
  6566. }
  6567. },
  6568. "autoload": {
  6569. "psr-4": {
  6570. "Symfony\\Contracts\\Service\\": ""
  6571. },
  6572. "exclude-from-classmap": [
  6573. "/Test/"
  6574. ]
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "MIT"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "Nicolas Grekas",
  6583. "email": "p@tchwork.com"
  6584. },
  6585. {
  6586. "name": "Symfony Community",
  6587. "homepage": "https://symfony.com/contributors"
  6588. }
  6589. ],
  6590. "description": "Generic abstractions related to writing services",
  6591. "homepage": "https://symfony.com",
  6592. "keywords": [
  6593. "abstractions",
  6594. "contracts",
  6595. "decoupling",
  6596. "interfaces",
  6597. "interoperability",
  6598. "standards"
  6599. ],
  6600. "support": {
  6601. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6602. },
  6603. "funding": [
  6604. {
  6605. "url": "https://symfony.com/sponsor",
  6606. "type": "custom"
  6607. },
  6608. {
  6609. "url": "https://github.com/fabpot",
  6610. "type": "github"
  6611. },
  6612. {
  6613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6614. "type": "tidelift"
  6615. }
  6616. ],
  6617. "time": "2024-04-18T09:32:20+00:00"
  6618. },
  6619. {
  6620. "name": "symfony/stimulus-bundle",
  6621. "version": "v2.21.0",
  6622. "source": {
  6623. "type": "git",
  6624. "url": "https://github.com/symfony/stimulus-bundle.git",
  6625. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  6626. },
  6627. "dist": {
  6628. "type": "zip",
  6629. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  6630. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  6631. "shasum": ""
  6632. },
  6633. "require": {
  6634. "php": ">=8.1",
  6635. "symfony/config": "^5.4|^6.0|^7.0",
  6636. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6637. "symfony/deprecation-contracts": "^2.0|^3.0",
  6638. "symfony/finder": "^5.4|^6.0|^7.0",
  6639. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6640. "twig/twig": "^2.15.3|^3.8"
  6641. },
  6642. "require-dev": {
  6643. "symfony/asset-mapper": "^6.3|^7.0",
  6644. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6645. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6646. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6647. "zenstruck/browser": "^1.4"
  6648. },
  6649. "type": "symfony-bundle",
  6650. "autoload": {
  6651. "psr-4": {
  6652. "Symfony\\UX\\StimulusBundle\\": "src"
  6653. }
  6654. },
  6655. "notification-url": "https://packagist.org/downloads/",
  6656. "license": [
  6657. "MIT"
  6658. ],
  6659. "authors": [
  6660. {
  6661. "name": "Symfony Community",
  6662. "homepage": "https://symfony.com/contributors"
  6663. }
  6664. ],
  6665. "description": "Integration with your Symfony app & Stimulus!",
  6666. "keywords": [
  6667. "symfony-ux"
  6668. ],
  6669. "support": {
  6670. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  6671. },
  6672. "funding": [
  6673. {
  6674. "url": "https://symfony.com/sponsor",
  6675. "type": "custom"
  6676. },
  6677. {
  6678. "url": "https://github.com/fabpot",
  6679. "type": "github"
  6680. },
  6681. {
  6682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6683. "type": "tidelift"
  6684. }
  6685. ],
  6686. "time": "2024-10-05T22:11:16+00:00"
  6687. },
  6688. {
  6689. "name": "symfony/stopwatch",
  6690. "version": "v7.1.1",
  6691. "source": {
  6692. "type": "git",
  6693. "url": "https://github.com/symfony/stopwatch.git",
  6694. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6695. },
  6696. "dist": {
  6697. "type": "zip",
  6698. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6699. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6700. "shasum": ""
  6701. },
  6702. "require": {
  6703. "php": ">=8.2",
  6704. "symfony/service-contracts": "^2.5|^3"
  6705. },
  6706. "type": "library",
  6707. "autoload": {
  6708. "psr-4": {
  6709. "Symfony\\Component\\Stopwatch\\": ""
  6710. },
  6711. "exclude-from-classmap": [
  6712. "/Tests/"
  6713. ]
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Fabien Potencier",
  6722. "email": "fabien@symfony.com"
  6723. },
  6724. {
  6725. "name": "Symfony Community",
  6726. "homepage": "https://symfony.com/contributors"
  6727. }
  6728. ],
  6729. "description": "Provides a way to profile code",
  6730. "homepage": "https://symfony.com",
  6731. "support": {
  6732. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  6733. },
  6734. "funding": [
  6735. {
  6736. "url": "https://symfony.com/sponsor",
  6737. "type": "custom"
  6738. },
  6739. {
  6740. "url": "https://github.com/fabpot",
  6741. "type": "github"
  6742. },
  6743. {
  6744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6745. "type": "tidelift"
  6746. }
  6747. ],
  6748. "time": "2024-05-31T14:57:53+00:00"
  6749. },
  6750. {
  6751. "name": "symfony/string",
  6752. "version": "v7.1.5",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://github.com/symfony/string.git",
  6756. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  6761. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  6762. "shasum": ""
  6763. },
  6764. "require": {
  6765. "php": ">=8.2",
  6766. "symfony/polyfill-ctype": "~1.8",
  6767. "symfony/polyfill-intl-grapheme": "~1.0",
  6768. "symfony/polyfill-intl-normalizer": "~1.0",
  6769. "symfony/polyfill-mbstring": "~1.0"
  6770. },
  6771. "conflict": {
  6772. "symfony/translation-contracts": "<2.5"
  6773. },
  6774. "require-dev": {
  6775. "symfony/emoji": "^7.1",
  6776. "symfony/error-handler": "^6.4|^7.0",
  6777. "symfony/http-client": "^6.4|^7.0",
  6778. "symfony/intl": "^6.4|^7.0",
  6779. "symfony/translation-contracts": "^2.5|^3.0",
  6780. "symfony/var-exporter": "^6.4|^7.0"
  6781. },
  6782. "type": "library",
  6783. "autoload": {
  6784. "files": [
  6785. "Resources/functions.php"
  6786. ],
  6787. "psr-4": {
  6788. "Symfony\\Component\\String\\": ""
  6789. },
  6790. "exclude-from-classmap": [
  6791. "/Tests/"
  6792. ]
  6793. },
  6794. "notification-url": "https://packagist.org/downloads/",
  6795. "license": [
  6796. "MIT"
  6797. ],
  6798. "authors": [
  6799. {
  6800. "name": "Nicolas Grekas",
  6801. "email": "p@tchwork.com"
  6802. },
  6803. {
  6804. "name": "Symfony Community",
  6805. "homepage": "https://symfony.com/contributors"
  6806. }
  6807. ],
  6808. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6809. "homepage": "https://symfony.com",
  6810. "keywords": [
  6811. "grapheme",
  6812. "i18n",
  6813. "string",
  6814. "unicode",
  6815. "utf-8",
  6816. "utf8"
  6817. ],
  6818. "support": {
  6819. "source": "https://github.com/symfony/string/tree/v7.1.5"
  6820. },
  6821. "funding": [
  6822. {
  6823. "url": "https://symfony.com/sponsor",
  6824. "type": "custom"
  6825. },
  6826. {
  6827. "url": "https://github.com/fabpot",
  6828. "type": "github"
  6829. },
  6830. {
  6831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6832. "type": "tidelift"
  6833. }
  6834. ],
  6835. "time": "2024-09-20T08:28:38+00:00"
  6836. },
  6837. {
  6838. "name": "symfony/translation",
  6839. "version": "v7.1.5",
  6840. "source": {
  6841. "type": "git",
  6842. "url": "https://github.com/symfony/translation.git",
  6843. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  6844. },
  6845. "dist": {
  6846. "type": "zip",
  6847. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6848. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6849. "shasum": ""
  6850. },
  6851. "require": {
  6852. "php": ">=8.2",
  6853. "symfony/polyfill-mbstring": "~1.0",
  6854. "symfony/translation-contracts": "^2.5|^3.0"
  6855. },
  6856. "conflict": {
  6857. "symfony/config": "<6.4",
  6858. "symfony/console": "<6.4",
  6859. "symfony/dependency-injection": "<6.4",
  6860. "symfony/http-client-contracts": "<2.5",
  6861. "symfony/http-kernel": "<6.4",
  6862. "symfony/service-contracts": "<2.5",
  6863. "symfony/twig-bundle": "<6.4",
  6864. "symfony/yaml": "<6.4"
  6865. },
  6866. "provide": {
  6867. "symfony/translation-implementation": "2.3|3.0"
  6868. },
  6869. "require-dev": {
  6870. "nikic/php-parser": "^4.18|^5.0",
  6871. "psr/log": "^1|^2|^3",
  6872. "symfony/config": "^6.4|^7.0",
  6873. "symfony/console": "^6.4|^7.0",
  6874. "symfony/dependency-injection": "^6.4|^7.0",
  6875. "symfony/finder": "^6.4|^7.0",
  6876. "symfony/http-client-contracts": "^2.5|^3.0",
  6877. "symfony/http-kernel": "^6.4|^7.0",
  6878. "symfony/intl": "^6.4|^7.0",
  6879. "symfony/polyfill-intl-icu": "^1.21",
  6880. "symfony/routing": "^6.4|^7.0",
  6881. "symfony/service-contracts": "^2.5|^3",
  6882. "symfony/yaml": "^6.4|^7.0"
  6883. },
  6884. "type": "library",
  6885. "autoload": {
  6886. "files": [
  6887. "Resources/functions.php"
  6888. ],
  6889. "psr-4": {
  6890. "Symfony\\Component\\Translation\\": ""
  6891. },
  6892. "exclude-from-classmap": [
  6893. "/Tests/"
  6894. ]
  6895. },
  6896. "notification-url": "https://packagist.org/downloads/",
  6897. "license": [
  6898. "MIT"
  6899. ],
  6900. "authors": [
  6901. {
  6902. "name": "Fabien Potencier",
  6903. "email": "fabien@symfony.com"
  6904. },
  6905. {
  6906. "name": "Symfony Community",
  6907. "homepage": "https://symfony.com/contributors"
  6908. }
  6909. ],
  6910. "description": "Provides tools to internationalize your application",
  6911. "homepage": "https://symfony.com",
  6912. "support": {
  6913. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  6914. },
  6915. "funding": [
  6916. {
  6917. "url": "https://symfony.com/sponsor",
  6918. "type": "custom"
  6919. },
  6920. {
  6921. "url": "https://github.com/fabpot",
  6922. "type": "github"
  6923. },
  6924. {
  6925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6926. "type": "tidelift"
  6927. }
  6928. ],
  6929. "time": "2024-09-16T06:30:38+00:00"
  6930. },
  6931. {
  6932. "name": "symfony/translation-contracts",
  6933. "version": "v3.5.0",
  6934. "source": {
  6935. "type": "git",
  6936. "url": "https://github.com/symfony/translation-contracts.git",
  6937. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6938. },
  6939. "dist": {
  6940. "type": "zip",
  6941. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6942. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6943. "shasum": ""
  6944. },
  6945. "require": {
  6946. "php": ">=8.1"
  6947. },
  6948. "type": "library",
  6949. "extra": {
  6950. "branch-alias": {
  6951. "dev-main": "3.5-dev"
  6952. },
  6953. "thanks": {
  6954. "name": "symfony/contracts",
  6955. "url": "https://github.com/symfony/contracts"
  6956. }
  6957. },
  6958. "autoload": {
  6959. "psr-4": {
  6960. "Symfony\\Contracts\\Translation\\": ""
  6961. },
  6962. "exclude-from-classmap": [
  6963. "/Test/"
  6964. ]
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "Nicolas Grekas",
  6973. "email": "p@tchwork.com"
  6974. },
  6975. {
  6976. "name": "Symfony Community",
  6977. "homepage": "https://symfony.com/contributors"
  6978. }
  6979. ],
  6980. "description": "Generic abstractions related to translation",
  6981. "homepage": "https://symfony.com",
  6982. "keywords": [
  6983. "abstractions",
  6984. "contracts",
  6985. "decoupling",
  6986. "interfaces",
  6987. "interoperability",
  6988. "standards"
  6989. ],
  6990. "support": {
  6991. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6992. },
  6993. "funding": [
  6994. {
  6995. "url": "https://symfony.com/sponsor",
  6996. "type": "custom"
  6997. },
  6998. {
  6999. "url": "https://github.com/fabpot",
  7000. "type": "github"
  7001. },
  7002. {
  7003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7004. "type": "tidelift"
  7005. }
  7006. ],
  7007. "time": "2024-04-18T09:32:20+00:00"
  7008. },
  7009. {
  7010. "name": "symfony/twig-bridge",
  7011. "version": "v7.1.5",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/symfony/twig-bridge.git",
  7015. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  7020. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  7021. "shasum": ""
  7022. },
  7023. "require": {
  7024. "php": ">=8.2",
  7025. "symfony/translation-contracts": "^2.5|^3",
  7026. "twig/twig": "^3.9"
  7027. },
  7028. "conflict": {
  7029. "phpdocumentor/reflection-docblock": "<3.2.2",
  7030. "phpdocumentor/type-resolver": "<1.4.0",
  7031. "symfony/console": "<6.4",
  7032. "symfony/form": "<6.4",
  7033. "symfony/http-foundation": "<6.4",
  7034. "symfony/http-kernel": "<6.4",
  7035. "symfony/mime": "<6.4",
  7036. "symfony/serializer": "<6.4",
  7037. "symfony/translation": "<6.4",
  7038. "symfony/workflow": "<6.4"
  7039. },
  7040. "require-dev": {
  7041. "egulias/email-validator": "^2.1.10|^3|^4",
  7042. "league/html-to-markdown": "^5.0",
  7043. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7044. "symfony/asset": "^6.4|^7.0",
  7045. "symfony/asset-mapper": "^6.4|^7.0",
  7046. "symfony/console": "^6.4|^7.0",
  7047. "symfony/dependency-injection": "^6.4|^7.0",
  7048. "symfony/emoji": "^7.1",
  7049. "symfony/expression-language": "^6.4|^7.0",
  7050. "symfony/finder": "^6.4|^7.0",
  7051. "symfony/form": "^6.4|^7.0",
  7052. "symfony/html-sanitizer": "^6.4|^7.0",
  7053. "symfony/http-foundation": "^6.4|^7.0",
  7054. "symfony/http-kernel": "^6.4|^7.0",
  7055. "symfony/intl": "^6.4|^7.0",
  7056. "symfony/mime": "^6.4|^7.0",
  7057. "symfony/polyfill-intl-icu": "~1.0",
  7058. "symfony/property-info": "^6.4|^7.0",
  7059. "symfony/routing": "^6.4|^7.0",
  7060. "symfony/security-acl": "^2.8|^3.0",
  7061. "symfony/security-core": "^6.4|^7.0",
  7062. "symfony/security-csrf": "^6.4|^7.0",
  7063. "symfony/security-http": "^6.4|^7.0",
  7064. "symfony/serializer": "^6.4.3|^7.0.3",
  7065. "symfony/stopwatch": "^6.4|^7.0",
  7066. "symfony/translation": "^6.4|^7.0",
  7067. "symfony/web-link": "^6.4|^7.0",
  7068. "symfony/workflow": "^6.4|^7.0",
  7069. "symfony/yaml": "^6.4|^7.0",
  7070. "twig/cssinliner-extra": "^2.12|^3",
  7071. "twig/inky-extra": "^2.12|^3",
  7072. "twig/markdown-extra": "^2.12|^3"
  7073. },
  7074. "type": "symfony-bridge",
  7075. "autoload": {
  7076. "psr-4": {
  7077. "Symfony\\Bridge\\Twig\\": ""
  7078. },
  7079. "exclude-from-classmap": [
  7080. "/Tests/"
  7081. ]
  7082. },
  7083. "notification-url": "https://packagist.org/downloads/",
  7084. "license": [
  7085. "MIT"
  7086. ],
  7087. "authors": [
  7088. {
  7089. "name": "Fabien Potencier",
  7090. "email": "fabien@symfony.com"
  7091. },
  7092. {
  7093. "name": "Symfony Community",
  7094. "homepage": "https://symfony.com/contributors"
  7095. }
  7096. ],
  7097. "description": "Provides integration for Twig with various Symfony components",
  7098. "homepage": "https://symfony.com",
  7099. "support": {
  7100. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  7101. },
  7102. "funding": [
  7103. {
  7104. "url": "https://symfony.com/sponsor",
  7105. "type": "custom"
  7106. },
  7107. {
  7108. "url": "https://github.com/fabpot",
  7109. "type": "github"
  7110. },
  7111. {
  7112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7113. "type": "tidelift"
  7114. }
  7115. ],
  7116. "time": "2024-09-15T06:48:17+00:00"
  7117. },
  7118. {
  7119. "name": "symfony/twig-bundle",
  7120. "version": "v7.1.5",
  7121. "source": {
  7122. "type": "git",
  7123. "url": "https://github.com/symfony/twig-bundle.git",
  7124. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  7125. },
  7126. "dist": {
  7127. "type": "zip",
  7128. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7129. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7130. "shasum": ""
  7131. },
  7132. "require": {
  7133. "composer-runtime-api": ">=2.1",
  7134. "php": ">=8.2",
  7135. "symfony/config": "^6.4|^7.0",
  7136. "symfony/dependency-injection": "^6.4|^7.0",
  7137. "symfony/http-foundation": "^6.4|^7.0",
  7138. "symfony/http-kernel": "^6.4|^7.0",
  7139. "symfony/twig-bridge": "^6.4|^7.0",
  7140. "twig/twig": "^3.0.4"
  7141. },
  7142. "conflict": {
  7143. "symfony/framework-bundle": "<6.4",
  7144. "symfony/translation": "<6.4"
  7145. },
  7146. "require-dev": {
  7147. "symfony/asset": "^6.4|^7.0",
  7148. "symfony/expression-language": "^6.4|^7.0",
  7149. "symfony/finder": "^6.4|^7.0",
  7150. "symfony/form": "^6.4|^7.0",
  7151. "symfony/framework-bundle": "^6.4|^7.0",
  7152. "symfony/routing": "^6.4|^7.0",
  7153. "symfony/stopwatch": "^6.4|^7.0",
  7154. "symfony/translation": "^6.4|^7.0",
  7155. "symfony/web-link": "^6.4|^7.0",
  7156. "symfony/yaml": "^6.4|^7.0"
  7157. },
  7158. "type": "symfony-bundle",
  7159. "autoload": {
  7160. "psr-4": {
  7161. "Symfony\\Bundle\\TwigBundle\\": ""
  7162. },
  7163. "exclude-from-classmap": [
  7164. "/Tests/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Fabien Potencier",
  7174. "email": "fabien@symfony.com"
  7175. },
  7176. {
  7177. "name": "Symfony Community",
  7178. "homepage": "https://symfony.com/contributors"
  7179. }
  7180. ],
  7181. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7182. "homepage": "https://symfony.com",
  7183. "support": {
  7184. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  7185. },
  7186. "funding": [
  7187. {
  7188. "url": "https://symfony.com/sponsor",
  7189. "type": "custom"
  7190. },
  7191. {
  7192. "url": "https://github.com/fabpot",
  7193. "type": "github"
  7194. },
  7195. {
  7196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7197. "type": "tidelift"
  7198. }
  7199. ],
  7200. "time": "2024-09-08T12:32:26+00:00"
  7201. },
  7202. {
  7203. "name": "symfony/type-info",
  7204. "version": "v7.1.5",
  7205. "source": {
  7206. "type": "git",
  7207. "url": "https://github.com/symfony/type-info.git",
  7208. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  7209. },
  7210. "dist": {
  7211. "type": "zip",
  7212. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7213. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7214. "shasum": ""
  7215. },
  7216. "require": {
  7217. "php": ">=8.2",
  7218. "psr/container": "^1.1|^2.0"
  7219. },
  7220. "conflict": {
  7221. "phpstan/phpdoc-parser": "<1.0",
  7222. "symfony/dependency-injection": "<6.4",
  7223. "symfony/property-info": "<6.4"
  7224. },
  7225. "require-dev": {
  7226. "phpstan/phpdoc-parser": "^1.0",
  7227. "symfony/dependency-injection": "^6.4|^7.0",
  7228. "symfony/property-info": "^6.4|^7.0"
  7229. },
  7230. "type": "library",
  7231. "autoload": {
  7232. "psr-4": {
  7233. "Symfony\\Component\\TypeInfo\\": ""
  7234. },
  7235. "exclude-from-classmap": [
  7236. "/Tests/"
  7237. ]
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "Mathias Arlaud",
  7246. "email": "mathias.arlaud@gmail.com"
  7247. },
  7248. {
  7249. "name": "Baptiste LEDUC",
  7250. "email": "baptiste.leduc@gmail.com"
  7251. },
  7252. {
  7253. "name": "Symfony Community",
  7254. "homepage": "https://symfony.com/contributors"
  7255. }
  7256. ],
  7257. "description": "Extracts PHP types information.",
  7258. "homepage": "https://symfony.com",
  7259. "keywords": [
  7260. "PHPStan",
  7261. "phpdoc",
  7262. "symfony",
  7263. "type"
  7264. ],
  7265. "support": {
  7266. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  7267. },
  7268. "funding": [
  7269. {
  7270. "url": "https://symfony.com/sponsor",
  7271. "type": "custom"
  7272. },
  7273. {
  7274. "url": "https://github.com/fabpot",
  7275. "type": "github"
  7276. },
  7277. {
  7278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7279. "type": "tidelift"
  7280. }
  7281. ],
  7282. "time": "2024-09-19T21:48:23+00:00"
  7283. },
  7284. {
  7285. "name": "symfony/ux-turbo",
  7286. "version": "v2.21.0",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://github.com/symfony/ux-turbo.git",
  7290. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7295. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7296. "shasum": ""
  7297. },
  7298. "require": {
  7299. "php": ">=8.1",
  7300. "symfony/stimulus-bundle": "^2.9.1"
  7301. },
  7302. "conflict": {
  7303. "symfony/flex": "<1.13"
  7304. },
  7305. "require-dev": {
  7306. "dbrekelmans/bdi": "dev-main",
  7307. "doctrine/doctrine-bundle": "^2.4.3",
  7308. "doctrine/orm": "^2.8 | 3.0",
  7309. "phpstan/phpstan": "^1.10",
  7310. "symfony/asset-mapper": "^6.4|^7.0",
  7311. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7312. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7313. "symfony/form": "^5.4|^6.0|^7.0",
  7314. "symfony/framework-bundle": "^6.4|^7.0",
  7315. "symfony/mercure-bundle": "^0.3.7",
  7316. "symfony/messenger": "^5.4|^6.0|^7.0",
  7317. "symfony/panther": "^2.1",
  7318. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7319. "symfony/process": "^5.4|6.3.*|^7.0",
  7320. "symfony/property-access": "^5.4|^6.0|^7.0",
  7321. "symfony/security-core": "^5.4|^6.0|^7.0",
  7322. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7323. "symfony/twig-bundle": "^6.4|^7.0",
  7324. "symfony/ux-twig-component": "^2.21",
  7325. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7326. },
  7327. "type": "symfony-bundle",
  7328. "extra": {
  7329. "thanks": {
  7330. "name": "symfony/ux",
  7331. "url": "https://github.com/symfony/ux"
  7332. }
  7333. },
  7334. "autoload": {
  7335. "psr-4": {
  7336. "Symfony\\UX\\Turbo\\": "src/"
  7337. }
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "MIT"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Kévin Dunglas",
  7346. "email": "kevin@dunglas.fr"
  7347. },
  7348. {
  7349. "name": "Symfony Community",
  7350. "homepage": "https://symfony.com/contributors"
  7351. }
  7352. ],
  7353. "description": "Hotwire Turbo integration for Symfony",
  7354. "homepage": "https://symfony.com",
  7355. "keywords": [
  7356. "hotwire",
  7357. "javascript",
  7358. "mercure",
  7359. "symfony-ux",
  7360. "turbo",
  7361. "turbo-stream"
  7362. ],
  7363. "support": {
  7364. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  7365. },
  7366. "funding": [
  7367. {
  7368. "url": "https://symfony.com/sponsor",
  7369. "type": "custom"
  7370. },
  7371. {
  7372. "url": "https://github.com/fabpot",
  7373. "type": "github"
  7374. },
  7375. {
  7376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7377. "type": "tidelift"
  7378. }
  7379. ],
  7380. "time": "2024-10-21T19:07:02+00:00"
  7381. },
  7382. {
  7383. "name": "symfony/validator",
  7384. "version": "v7.1.5",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/symfony/validator.git",
  7388. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  7393. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  7394. "shasum": ""
  7395. },
  7396. "require": {
  7397. "php": ">=8.2",
  7398. "symfony/deprecation-contracts": "^2.5|^3",
  7399. "symfony/polyfill-ctype": "~1.8",
  7400. "symfony/polyfill-mbstring": "~1.0",
  7401. "symfony/polyfill-php83": "^1.27",
  7402. "symfony/translation-contracts": "^2.5|^3"
  7403. },
  7404. "conflict": {
  7405. "doctrine/lexer": "<1.1",
  7406. "symfony/dependency-injection": "<6.4",
  7407. "symfony/doctrine-bridge": "<7.0",
  7408. "symfony/expression-language": "<6.4",
  7409. "symfony/http-kernel": "<6.4",
  7410. "symfony/intl": "<6.4",
  7411. "symfony/property-info": "<6.4",
  7412. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7413. "symfony/yaml": "<6.4"
  7414. },
  7415. "require-dev": {
  7416. "egulias/email-validator": "^2.1.10|^3|^4",
  7417. "symfony/cache": "^6.4|^7.0",
  7418. "symfony/config": "^6.4|^7.0",
  7419. "symfony/console": "^6.4|^7.0",
  7420. "symfony/dependency-injection": "^6.4|^7.0",
  7421. "symfony/expression-language": "^6.4|^7.0",
  7422. "symfony/finder": "^6.4|^7.0",
  7423. "symfony/http-client": "^6.4|^7.0",
  7424. "symfony/http-foundation": "^6.4|^7.0",
  7425. "symfony/http-kernel": "^6.4|^7.0",
  7426. "symfony/intl": "^6.4|^7.0",
  7427. "symfony/mime": "^6.4|^7.0",
  7428. "symfony/property-access": "^6.4|^7.0",
  7429. "symfony/property-info": "^6.4|^7.0",
  7430. "symfony/translation": "^6.4.3|^7.0.3",
  7431. "symfony/type-info": "^7.1",
  7432. "symfony/yaml": "^6.4|^7.0"
  7433. },
  7434. "type": "library",
  7435. "autoload": {
  7436. "psr-4": {
  7437. "Symfony\\Component\\Validator\\": ""
  7438. },
  7439. "exclude-from-classmap": [
  7440. "/Tests/",
  7441. "/Resources/bin/"
  7442. ]
  7443. },
  7444. "notification-url": "https://packagist.org/downloads/",
  7445. "license": [
  7446. "MIT"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "Fabien Potencier",
  7451. "email": "fabien@symfony.com"
  7452. },
  7453. {
  7454. "name": "Symfony Community",
  7455. "homepage": "https://symfony.com/contributors"
  7456. }
  7457. ],
  7458. "description": "Provides tools to validate values",
  7459. "homepage": "https://symfony.com",
  7460. "support": {
  7461. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  7462. },
  7463. "funding": [
  7464. {
  7465. "url": "https://symfony.com/sponsor",
  7466. "type": "custom"
  7467. },
  7468. {
  7469. "url": "https://github.com/fabpot",
  7470. "type": "github"
  7471. },
  7472. {
  7473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7474. "type": "tidelift"
  7475. }
  7476. ],
  7477. "time": "2024-09-20T08:28:38+00:00"
  7478. },
  7479. {
  7480. "name": "symfony/var-dumper",
  7481. "version": "v7.1.5",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://github.com/symfony/var-dumper.git",
  7485. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  7490. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  7491. "shasum": ""
  7492. },
  7493. "require": {
  7494. "php": ">=8.2",
  7495. "symfony/polyfill-mbstring": "~1.0"
  7496. },
  7497. "conflict": {
  7498. "symfony/console": "<6.4"
  7499. },
  7500. "require-dev": {
  7501. "ext-iconv": "*",
  7502. "symfony/console": "^6.4|^7.0",
  7503. "symfony/http-kernel": "^6.4|^7.0",
  7504. "symfony/process": "^6.4|^7.0",
  7505. "symfony/uid": "^6.4|^7.0",
  7506. "twig/twig": "^3.0.4"
  7507. },
  7508. "bin": [
  7509. "Resources/bin/var-dump-server"
  7510. ],
  7511. "type": "library",
  7512. "autoload": {
  7513. "files": [
  7514. "Resources/functions/dump.php"
  7515. ],
  7516. "psr-4": {
  7517. "Symfony\\Component\\VarDumper\\": ""
  7518. },
  7519. "exclude-from-classmap": [
  7520. "/Tests/"
  7521. ]
  7522. },
  7523. "notification-url": "https://packagist.org/downloads/",
  7524. "license": [
  7525. "MIT"
  7526. ],
  7527. "authors": [
  7528. {
  7529. "name": "Nicolas Grekas",
  7530. "email": "p@tchwork.com"
  7531. },
  7532. {
  7533. "name": "Symfony Community",
  7534. "homepage": "https://symfony.com/contributors"
  7535. }
  7536. ],
  7537. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7538. "homepage": "https://symfony.com",
  7539. "keywords": [
  7540. "debug",
  7541. "dump"
  7542. ],
  7543. "support": {
  7544. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  7545. },
  7546. "funding": [
  7547. {
  7548. "url": "https://symfony.com/sponsor",
  7549. "type": "custom"
  7550. },
  7551. {
  7552. "url": "https://github.com/fabpot",
  7553. "type": "github"
  7554. },
  7555. {
  7556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7557. "type": "tidelift"
  7558. }
  7559. ],
  7560. "time": "2024-09-16T10:07:02+00:00"
  7561. },
  7562. {
  7563. "name": "symfony/var-exporter",
  7564. "version": "v7.1.2",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/symfony/var-exporter.git",
  7568. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7573. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7574. "shasum": ""
  7575. },
  7576. "require": {
  7577. "php": ">=8.2"
  7578. },
  7579. "require-dev": {
  7580. "symfony/property-access": "^6.4|^7.0",
  7581. "symfony/serializer": "^6.4|^7.0",
  7582. "symfony/var-dumper": "^6.4|^7.0"
  7583. },
  7584. "type": "library",
  7585. "autoload": {
  7586. "psr-4": {
  7587. "Symfony\\Component\\VarExporter\\": ""
  7588. },
  7589. "exclude-from-classmap": [
  7590. "/Tests/"
  7591. ]
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Nicolas Grekas",
  7600. "email": "p@tchwork.com"
  7601. },
  7602. {
  7603. "name": "Symfony Community",
  7604. "homepage": "https://symfony.com/contributors"
  7605. }
  7606. ],
  7607. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7608. "homepage": "https://symfony.com",
  7609. "keywords": [
  7610. "clone",
  7611. "construct",
  7612. "export",
  7613. "hydrate",
  7614. "instantiate",
  7615. "lazy-loading",
  7616. "proxy",
  7617. "serialize"
  7618. ],
  7619. "support": {
  7620. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7621. },
  7622. "funding": [
  7623. {
  7624. "url": "https://symfony.com/sponsor",
  7625. "type": "custom"
  7626. },
  7627. {
  7628. "url": "https://github.com/fabpot",
  7629. "type": "github"
  7630. },
  7631. {
  7632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7633. "type": "tidelift"
  7634. }
  7635. ],
  7636. "time": "2024-06-28T08:00:31+00:00"
  7637. },
  7638. {
  7639. "name": "symfony/web-link",
  7640. "version": "v7.1.1",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/symfony/web-link.git",
  7644. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7649. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7650. "shasum": ""
  7651. },
  7652. "require": {
  7653. "php": ">=8.2",
  7654. "psr/link": "^1.1|^2.0"
  7655. },
  7656. "conflict": {
  7657. "symfony/http-kernel": "<6.4"
  7658. },
  7659. "provide": {
  7660. "psr/link-implementation": "1.0|2.0"
  7661. },
  7662. "require-dev": {
  7663. "symfony/http-kernel": "^6.4|^7.0"
  7664. },
  7665. "type": "library",
  7666. "autoload": {
  7667. "psr-4": {
  7668. "Symfony\\Component\\WebLink\\": ""
  7669. },
  7670. "exclude-from-classmap": [
  7671. "/Tests/"
  7672. ]
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "Kévin Dunglas",
  7681. "email": "dunglas@gmail.com"
  7682. },
  7683. {
  7684. "name": "Symfony Community",
  7685. "homepage": "https://symfony.com/contributors"
  7686. }
  7687. ],
  7688. "description": "Manages links between resources",
  7689. "homepage": "https://symfony.com",
  7690. "keywords": [
  7691. "dns-prefetch",
  7692. "http",
  7693. "http2",
  7694. "link",
  7695. "performance",
  7696. "prefetch",
  7697. "preload",
  7698. "prerender",
  7699. "psr13",
  7700. "push"
  7701. ],
  7702. "support": {
  7703. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7704. },
  7705. "funding": [
  7706. {
  7707. "url": "https://symfony.com/sponsor",
  7708. "type": "custom"
  7709. },
  7710. {
  7711. "url": "https://github.com/fabpot",
  7712. "type": "github"
  7713. },
  7714. {
  7715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7716. "type": "tidelift"
  7717. }
  7718. ],
  7719. "time": "2024-05-31T14:57:53+00:00"
  7720. },
  7721. {
  7722. "name": "symfony/workflow",
  7723. "version": "v7.1.1",
  7724. "source": {
  7725. "type": "git",
  7726. "url": "https://github.com/symfony/workflow.git",
  7727. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8"
  7728. },
  7729. "dist": {
  7730. "type": "zip",
  7731. "url": "https://api.github.com/repos/symfony/workflow/zipball/bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  7732. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  7733. "shasum": ""
  7734. },
  7735. "require": {
  7736. "php": ">=8.2"
  7737. },
  7738. "conflict": {
  7739. "symfony/event-dispatcher": "<6.4"
  7740. },
  7741. "require-dev": {
  7742. "psr/log": "^1|^2|^3",
  7743. "symfony/dependency-injection": "^6.4|^7.0",
  7744. "symfony/error-handler": "^6.4|^7.0",
  7745. "symfony/event-dispatcher": "^6.4|^7.0",
  7746. "symfony/expression-language": "^6.4|^7.0",
  7747. "symfony/http-kernel": "^6.4|^7.0",
  7748. "symfony/security-core": "^6.4|^7.0",
  7749. "symfony/stopwatch": "^6.4|^7.0",
  7750. "symfony/validator": "^6.4|^7.0"
  7751. },
  7752. "type": "library",
  7753. "autoload": {
  7754. "psr-4": {
  7755. "Symfony\\Component\\Workflow\\": ""
  7756. },
  7757. "exclude-from-classmap": [
  7758. "/Tests/"
  7759. ]
  7760. },
  7761. "notification-url": "https://packagist.org/downloads/",
  7762. "license": [
  7763. "MIT"
  7764. ],
  7765. "authors": [
  7766. {
  7767. "name": "Fabien Potencier",
  7768. "email": "fabien@symfony.com"
  7769. },
  7770. {
  7771. "name": "Grégoire Pineau",
  7772. "email": "lyrixx@lyrixx.info"
  7773. },
  7774. {
  7775. "name": "Symfony Community",
  7776. "homepage": "https://symfony.com/contributors"
  7777. }
  7778. ],
  7779. "description": "Provides tools for managing a workflow or finite state machine",
  7780. "homepage": "https://symfony.com",
  7781. "keywords": [
  7782. "petrinet",
  7783. "place",
  7784. "state",
  7785. "statemachine",
  7786. "transition",
  7787. "workflow"
  7788. ],
  7789. "support": {
  7790. "source": "https://github.com/symfony/workflow/tree/v7.1.1"
  7791. },
  7792. "funding": [
  7793. {
  7794. "url": "https://symfony.com/sponsor",
  7795. "type": "custom"
  7796. },
  7797. {
  7798. "url": "https://github.com/fabpot",
  7799. "type": "github"
  7800. },
  7801. {
  7802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7803. "type": "tidelift"
  7804. }
  7805. ],
  7806. "time": "2024-05-31T14:57:53+00:00"
  7807. },
  7808. {
  7809. "name": "symfony/yaml",
  7810. "version": "v7.1.5",
  7811. "source": {
  7812. "type": "git",
  7813. "url": "https://github.com/symfony/yaml.git",
  7814. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  7815. },
  7816. "dist": {
  7817. "type": "zip",
  7818. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  7819. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  7820. "shasum": ""
  7821. },
  7822. "require": {
  7823. "php": ">=8.2",
  7824. "symfony/polyfill-ctype": "^1.8"
  7825. },
  7826. "conflict": {
  7827. "symfony/console": "<6.4"
  7828. },
  7829. "require-dev": {
  7830. "symfony/console": "^6.4|^7.0"
  7831. },
  7832. "bin": [
  7833. "Resources/bin/yaml-lint"
  7834. ],
  7835. "type": "library",
  7836. "autoload": {
  7837. "psr-4": {
  7838. "Symfony\\Component\\Yaml\\": ""
  7839. },
  7840. "exclude-from-classmap": [
  7841. "/Tests/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "MIT"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Fabien Potencier",
  7851. "email": "fabien@symfony.com"
  7852. },
  7853. {
  7854. "name": "Symfony Community",
  7855. "homepage": "https://symfony.com/contributors"
  7856. }
  7857. ],
  7858. "description": "Loads and dumps YAML files",
  7859. "homepage": "https://symfony.com",
  7860. "support": {
  7861. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  7862. },
  7863. "funding": [
  7864. {
  7865. "url": "https://symfony.com/sponsor",
  7866. "type": "custom"
  7867. },
  7868. {
  7869. "url": "https://github.com/fabpot",
  7870. "type": "github"
  7871. },
  7872. {
  7873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7874. "type": "tidelift"
  7875. }
  7876. ],
  7877. "time": "2024-09-17T12:49:58+00:00"
  7878. },
  7879. {
  7880. "name": "twig/extra-bundle",
  7881. "version": "v3.13.0",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7885. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7890. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7891. "shasum": ""
  7892. },
  7893. "require": {
  7894. "php": ">=8.0.2",
  7895. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7896. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7897. "twig/twig": "^3.0|^4.0"
  7898. },
  7899. "require-dev": {
  7900. "league/commonmark": "^1.0|^2.0",
  7901. "symfony/phpunit-bridge": "^6.4|^7.0",
  7902. "twig/cache-extra": "^3.0",
  7903. "twig/cssinliner-extra": "^3.0",
  7904. "twig/html-extra": "^3.0",
  7905. "twig/inky-extra": "^3.0",
  7906. "twig/intl-extra": "^3.0",
  7907. "twig/markdown-extra": "^3.0",
  7908. "twig/string-extra": "^3.0"
  7909. },
  7910. "type": "symfony-bundle",
  7911. "autoload": {
  7912. "psr-4": {
  7913. "Twig\\Extra\\TwigExtraBundle\\": ""
  7914. },
  7915. "exclude-from-classmap": [
  7916. "/Tests/"
  7917. ]
  7918. },
  7919. "notification-url": "https://packagist.org/downloads/",
  7920. "license": [
  7921. "MIT"
  7922. ],
  7923. "authors": [
  7924. {
  7925. "name": "Fabien Potencier",
  7926. "email": "fabien@symfony.com",
  7927. "homepage": "http://fabien.potencier.org",
  7928. "role": "Lead Developer"
  7929. }
  7930. ],
  7931. "description": "A Symfony bundle for extra Twig extensions",
  7932. "homepage": "https://twig.symfony.com",
  7933. "keywords": [
  7934. "bundle",
  7935. "extra",
  7936. "twig"
  7937. ],
  7938. "support": {
  7939. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  7940. },
  7941. "funding": [
  7942. {
  7943. "url": "https://github.com/fabpot",
  7944. "type": "github"
  7945. },
  7946. {
  7947. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7948. "type": "tidelift"
  7949. }
  7950. ],
  7951. "time": "2024-09-01T20:39:12+00:00"
  7952. },
  7953. {
  7954. "name": "twig/markdown-extra",
  7955. "version": "v3.13.0",
  7956. "source": {
  7957. "type": "git",
  7958. "url": "https://github.com/twigphp/markdown-extra.git",
  7959. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3"
  7960. },
  7961. "dist": {
  7962. "type": "zip",
  7963. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25f23c02936f8c7157a8413154c06a462c9c20d3",
  7964. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3",
  7965. "shasum": ""
  7966. },
  7967. "require": {
  7968. "php": ">=8.0.2",
  7969. "symfony/deprecation-contracts": "^2.5|^3",
  7970. "twig/twig": "^3.13|^4.0"
  7971. },
  7972. "require-dev": {
  7973. "erusev/parsedown": "^1.7",
  7974. "league/commonmark": "^1.0|^2.0",
  7975. "league/html-to-markdown": "^4.8|^5.0",
  7976. "michelf/php-markdown": "^1.8|^2.0",
  7977. "symfony/phpunit-bridge": "^6.4|^7.0"
  7978. },
  7979. "type": "library",
  7980. "autoload": {
  7981. "files": [
  7982. "Resources/functions.php"
  7983. ],
  7984. "psr-4": {
  7985. "Twig\\Extra\\Markdown\\": ""
  7986. },
  7987. "exclude-from-classmap": [
  7988. "/Tests/"
  7989. ]
  7990. },
  7991. "notification-url": "https://packagist.org/downloads/",
  7992. "license": [
  7993. "MIT"
  7994. ],
  7995. "authors": [
  7996. {
  7997. "name": "Fabien Potencier",
  7998. "email": "fabien@symfony.com",
  7999. "homepage": "http://fabien.potencier.org",
  8000. "role": "Lead Developer"
  8001. }
  8002. ],
  8003. "description": "A Twig extension for Markdown",
  8004. "homepage": "https://twig.symfony.com",
  8005. "keywords": [
  8006. "html",
  8007. "markdown",
  8008. "twig"
  8009. ],
  8010. "support": {
  8011. "source": "https://github.com/twigphp/markdown-extra/tree/v3.13.0"
  8012. },
  8013. "funding": [
  8014. {
  8015. "url": "https://github.com/fabpot",
  8016. "type": "github"
  8017. },
  8018. {
  8019. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8020. "type": "tidelift"
  8021. }
  8022. ],
  8023. "time": "2024-09-03T20:17:35+00:00"
  8024. },
  8025. {
  8026. "name": "twig/twig",
  8027. "version": "v3.14.0",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://github.com/twigphp/Twig.git",
  8031. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8036. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8037. "shasum": ""
  8038. },
  8039. "require": {
  8040. "php": ">=8.0.2",
  8041. "symfony/deprecation-contracts": "^2.5|^3",
  8042. "symfony/polyfill-ctype": "^1.8",
  8043. "symfony/polyfill-mbstring": "^1.3",
  8044. "symfony/polyfill-php81": "^1.29"
  8045. },
  8046. "require-dev": {
  8047. "psr/container": "^1.0|^2.0",
  8048. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8049. },
  8050. "type": "library",
  8051. "autoload": {
  8052. "files": [
  8053. "src/Resources/core.php",
  8054. "src/Resources/debug.php",
  8055. "src/Resources/escaper.php",
  8056. "src/Resources/string_loader.php"
  8057. ],
  8058. "psr-4": {
  8059. "Twig\\": "src/"
  8060. }
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "BSD-3-Clause"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Fabien Potencier",
  8069. "email": "fabien@symfony.com",
  8070. "homepage": "http://fabien.potencier.org",
  8071. "role": "Lead Developer"
  8072. },
  8073. {
  8074. "name": "Twig Team",
  8075. "role": "Contributors"
  8076. },
  8077. {
  8078. "name": "Armin Ronacher",
  8079. "email": "armin.ronacher@active-4.com",
  8080. "role": "Project Founder"
  8081. }
  8082. ],
  8083. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8084. "homepage": "https://twig.symfony.com",
  8085. "keywords": [
  8086. "templating"
  8087. ],
  8088. "support": {
  8089. "issues": "https://github.com/twigphp/Twig/issues",
  8090. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  8091. },
  8092. "funding": [
  8093. {
  8094. "url": "https://github.com/fabpot",
  8095. "type": "github"
  8096. },
  8097. {
  8098. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8099. "type": "tidelift"
  8100. }
  8101. ],
  8102. "time": "2024-09-09T17:55:12+00:00"
  8103. },
  8104. {
  8105. "name": "webmozart/assert",
  8106. "version": "1.11.0",
  8107. "source": {
  8108. "type": "git",
  8109. "url": "https://github.com/webmozarts/assert.git",
  8110. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8111. },
  8112. "dist": {
  8113. "type": "zip",
  8114. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8115. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8116. "shasum": ""
  8117. },
  8118. "require": {
  8119. "ext-ctype": "*",
  8120. "php": "^7.2 || ^8.0"
  8121. },
  8122. "conflict": {
  8123. "phpstan/phpstan": "<0.12.20",
  8124. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8125. },
  8126. "require-dev": {
  8127. "phpunit/phpunit": "^8.5.13"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-master": "1.10-dev"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "psr-4": {
  8137. "Webmozart\\Assert\\": "src/"
  8138. }
  8139. },
  8140. "notification-url": "https://packagist.org/downloads/",
  8141. "license": [
  8142. "MIT"
  8143. ],
  8144. "authors": [
  8145. {
  8146. "name": "Bernhard Schussek",
  8147. "email": "bschussek@gmail.com"
  8148. }
  8149. ],
  8150. "description": "Assertions to validate method input/output with nice error messages.",
  8151. "keywords": [
  8152. "assert",
  8153. "check",
  8154. "validate"
  8155. ],
  8156. "support": {
  8157. "issues": "https://github.com/webmozarts/assert/issues",
  8158. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8159. },
  8160. "time": "2022-06-03T18:03:27+00:00"
  8161. }
  8162. ],
  8163. "packages-dev": [
  8164. {
  8165. "name": "fakerphp/faker",
  8166. "version": "v1.23.1",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/FakerPHP/Faker.git",
  8170. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8175. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": "^7.4 || ^8.0",
  8180. "psr/container": "^1.0 || ^2.0",
  8181. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8182. },
  8183. "conflict": {
  8184. "fzaninotto/faker": "*"
  8185. },
  8186. "require-dev": {
  8187. "bamarni/composer-bin-plugin": "^1.4.1",
  8188. "doctrine/persistence": "^1.3 || ^2.0",
  8189. "ext-intl": "*",
  8190. "phpunit/phpunit": "^9.5.26",
  8191. "symfony/phpunit-bridge": "^5.4.16"
  8192. },
  8193. "suggest": {
  8194. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8195. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8196. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8197. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8198. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8199. },
  8200. "type": "library",
  8201. "autoload": {
  8202. "psr-4": {
  8203. "Faker\\": "src/Faker/"
  8204. }
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "MIT"
  8209. ],
  8210. "authors": [
  8211. {
  8212. "name": "François Zaninotto"
  8213. }
  8214. ],
  8215. "description": "Faker is a PHP library that generates fake data for you.",
  8216. "keywords": [
  8217. "data",
  8218. "faker",
  8219. "fixtures"
  8220. ],
  8221. "support": {
  8222. "issues": "https://github.com/FakerPHP/Faker/issues",
  8223. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8224. },
  8225. "time": "2024-01-02T13:46:09+00:00"
  8226. },
  8227. {
  8228. "name": "masterminds/html5",
  8229. "version": "2.9.0",
  8230. "source": {
  8231. "type": "git",
  8232. "url": "https://github.com/Masterminds/html5-php.git",
  8233. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8234. },
  8235. "dist": {
  8236. "type": "zip",
  8237. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8238. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8239. "shasum": ""
  8240. },
  8241. "require": {
  8242. "ext-dom": "*",
  8243. "php": ">=5.3.0"
  8244. },
  8245. "require-dev": {
  8246. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8247. },
  8248. "type": "library",
  8249. "extra": {
  8250. "branch-alias": {
  8251. "dev-master": "2.7-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Masterminds\\": "src"
  8257. }
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "authors": [
  8264. {
  8265. "name": "Matt Butcher",
  8266. "email": "technosophos@gmail.com"
  8267. },
  8268. {
  8269. "name": "Matt Farina",
  8270. "email": "matt@mattfarina.com"
  8271. },
  8272. {
  8273. "name": "Asmir Mustafic",
  8274. "email": "goetas@gmail.com"
  8275. }
  8276. ],
  8277. "description": "An HTML5 parser and serializer.",
  8278. "homepage": "http://masterminds.github.io/html5-php",
  8279. "keywords": [
  8280. "HTML5",
  8281. "dom",
  8282. "html",
  8283. "parser",
  8284. "querypath",
  8285. "serializer",
  8286. "xml"
  8287. ],
  8288. "support": {
  8289. "issues": "https://github.com/Masterminds/html5-php/issues",
  8290. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8291. },
  8292. "time": "2024-03-31T07:05:07+00:00"
  8293. },
  8294. {
  8295. "name": "myclabs/deep-copy",
  8296. "version": "1.12.0",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/myclabs/DeepCopy.git",
  8300. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8305. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8306. "shasum": ""
  8307. },
  8308. "require": {
  8309. "php": "^7.1 || ^8.0"
  8310. },
  8311. "conflict": {
  8312. "doctrine/collections": "<1.6.8",
  8313. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8314. },
  8315. "require-dev": {
  8316. "doctrine/collections": "^1.6.8",
  8317. "doctrine/common": "^2.13.3 || ^3.2.2",
  8318. "phpspec/prophecy": "^1.10",
  8319. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8320. },
  8321. "type": "library",
  8322. "autoload": {
  8323. "files": [
  8324. "src/DeepCopy/deep_copy.php"
  8325. ],
  8326. "psr-4": {
  8327. "DeepCopy\\": "src/DeepCopy/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "description": "Create deep copies (clones) of your objects",
  8335. "keywords": [
  8336. "clone",
  8337. "copy",
  8338. "duplicate",
  8339. "object",
  8340. "object graph"
  8341. ],
  8342. "support": {
  8343. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8344. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8345. },
  8346. "funding": [
  8347. {
  8348. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8349. "type": "tidelift"
  8350. }
  8351. ],
  8352. "time": "2024-06-12T14:39:25+00:00"
  8353. },
  8354. {
  8355. "name": "nikic/php-parser",
  8356. "version": "v5.3.1",
  8357. "source": {
  8358. "type": "git",
  8359. "url": "https://github.com/nikic/PHP-Parser.git",
  8360. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  8361. },
  8362. "dist": {
  8363. "type": "zip",
  8364. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  8365. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  8366. "shasum": ""
  8367. },
  8368. "require": {
  8369. "ext-ctype": "*",
  8370. "ext-json": "*",
  8371. "ext-tokenizer": "*",
  8372. "php": ">=7.4"
  8373. },
  8374. "require-dev": {
  8375. "ircmaxell/php-yacc": "^0.0.7",
  8376. "phpunit/phpunit": "^9.0"
  8377. },
  8378. "bin": [
  8379. "bin/php-parse"
  8380. ],
  8381. "type": "library",
  8382. "extra": {
  8383. "branch-alias": {
  8384. "dev-master": "5.0-dev"
  8385. }
  8386. },
  8387. "autoload": {
  8388. "psr-4": {
  8389. "PhpParser\\": "lib/PhpParser"
  8390. }
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "BSD-3-Clause"
  8395. ],
  8396. "authors": [
  8397. {
  8398. "name": "Nikita Popov"
  8399. }
  8400. ],
  8401. "description": "A PHP parser written in PHP",
  8402. "keywords": [
  8403. "parser",
  8404. "php"
  8405. ],
  8406. "support": {
  8407. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8408. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  8409. },
  8410. "time": "2024-10-08T18:51:32+00:00"
  8411. },
  8412. {
  8413. "name": "phar-io/manifest",
  8414. "version": "2.0.4",
  8415. "source": {
  8416. "type": "git",
  8417. "url": "https://github.com/phar-io/manifest.git",
  8418. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8419. },
  8420. "dist": {
  8421. "type": "zip",
  8422. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8423. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8424. "shasum": ""
  8425. },
  8426. "require": {
  8427. "ext-dom": "*",
  8428. "ext-libxml": "*",
  8429. "ext-phar": "*",
  8430. "ext-xmlwriter": "*",
  8431. "phar-io/version": "^3.0.1",
  8432. "php": "^7.2 || ^8.0"
  8433. },
  8434. "type": "library",
  8435. "extra": {
  8436. "branch-alias": {
  8437. "dev-master": "2.0.x-dev"
  8438. }
  8439. },
  8440. "autoload": {
  8441. "classmap": [
  8442. "src/"
  8443. ]
  8444. },
  8445. "notification-url": "https://packagist.org/downloads/",
  8446. "license": [
  8447. "BSD-3-Clause"
  8448. ],
  8449. "authors": [
  8450. {
  8451. "name": "Arne Blankerts",
  8452. "email": "arne@blankerts.de",
  8453. "role": "Developer"
  8454. },
  8455. {
  8456. "name": "Sebastian Heuer",
  8457. "email": "sebastian@phpeople.de",
  8458. "role": "Developer"
  8459. },
  8460. {
  8461. "name": "Sebastian Bergmann",
  8462. "email": "sebastian@phpunit.de",
  8463. "role": "Developer"
  8464. }
  8465. ],
  8466. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8467. "support": {
  8468. "issues": "https://github.com/phar-io/manifest/issues",
  8469. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8470. },
  8471. "funding": [
  8472. {
  8473. "url": "https://github.com/theseer",
  8474. "type": "github"
  8475. }
  8476. ],
  8477. "time": "2024-03-03T12:33:53+00:00"
  8478. },
  8479. {
  8480. "name": "phar-io/version",
  8481. "version": "3.2.1",
  8482. "source": {
  8483. "type": "git",
  8484. "url": "https://github.com/phar-io/version.git",
  8485. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8486. },
  8487. "dist": {
  8488. "type": "zip",
  8489. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8490. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8491. "shasum": ""
  8492. },
  8493. "require": {
  8494. "php": "^7.2 || ^8.0"
  8495. },
  8496. "type": "library",
  8497. "autoload": {
  8498. "classmap": [
  8499. "src/"
  8500. ]
  8501. },
  8502. "notification-url": "https://packagist.org/downloads/",
  8503. "license": [
  8504. "BSD-3-Clause"
  8505. ],
  8506. "authors": [
  8507. {
  8508. "name": "Arne Blankerts",
  8509. "email": "arne@blankerts.de",
  8510. "role": "Developer"
  8511. },
  8512. {
  8513. "name": "Sebastian Heuer",
  8514. "email": "sebastian@phpeople.de",
  8515. "role": "Developer"
  8516. },
  8517. {
  8518. "name": "Sebastian Bergmann",
  8519. "email": "sebastian@phpunit.de",
  8520. "role": "Developer"
  8521. }
  8522. ],
  8523. "description": "Library for handling version information and constraints",
  8524. "support": {
  8525. "issues": "https://github.com/phar-io/version/issues",
  8526. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8527. },
  8528. "time": "2022-02-21T01:04:05+00:00"
  8529. },
  8530. {
  8531. "name": "phpunit/php-code-coverage",
  8532. "version": "9.2.32",
  8533. "source": {
  8534. "type": "git",
  8535. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8536. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8537. },
  8538. "dist": {
  8539. "type": "zip",
  8540. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8541. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8542. "shasum": ""
  8543. },
  8544. "require": {
  8545. "ext-dom": "*",
  8546. "ext-libxml": "*",
  8547. "ext-xmlwriter": "*",
  8548. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8549. "php": ">=7.3",
  8550. "phpunit/php-file-iterator": "^3.0.6",
  8551. "phpunit/php-text-template": "^2.0.4",
  8552. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8553. "sebastian/complexity": "^2.0.3",
  8554. "sebastian/environment": "^5.1.5",
  8555. "sebastian/lines-of-code": "^1.0.4",
  8556. "sebastian/version": "^3.0.2",
  8557. "theseer/tokenizer": "^1.2.3"
  8558. },
  8559. "require-dev": {
  8560. "phpunit/phpunit": "^9.6"
  8561. },
  8562. "suggest": {
  8563. "ext-pcov": "PHP extension that provides line coverage",
  8564. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8565. },
  8566. "type": "library",
  8567. "extra": {
  8568. "branch-alias": {
  8569. "dev-main": "9.2.x-dev"
  8570. }
  8571. },
  8572. "autoload": {
  8573. "classmap": [
  8574. "src/"
  8575. ]
  8576. },
  8577. "notification-url": "https://packagist.org/downloads/",
  8578. "license": [
  8579. "BSD-3-Clause"
  8580. ],
  8581. "authors": [
  8582. {
  8583. "name": "Sebastian Bergmann",
  8584. "email": "sebastian@phpunit.de",
  8585. "role": "lead"
  8586. }
  8587. ],
  8588. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8589. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8590. "keywords": [
  8591. "coverage",
  8592. "testing",
  8593. "xunit"
  8594. ],
  8595. "support": {
  8596. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8597. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8598. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8599. },
  8600. "funding": [
  8601. {
  8602. "url": "https://github.com/sebastianbergmann",
  8603. "type": "github"
  8604. }
  8605. ],
  8606. "time": "2024-08-22T04:23:01+00:00"
  8607. },
  8608. {
  8609. "name": "phpunit/php-file-iterator",
  8610. "version": "3.0.6",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8614. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8619. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "php": ">=7.3"
  8624. },
  8625. "require-dev": {
  8626. "phpunit/phpunit": "^9.3"
  8627. },
  8628. "type": "library",
  8629. "extra": {
  8630. "branch-alias": {
  8631. "dev-master": "3.0-dev"
  8632. }
  8633. },
  8634. "autoload": {
  8635. "classmap": [
  8636. "src/"
  8637. ]
  8638. },
  8639. "notification-url": "https://packagist.org/downloads/",
  8640. "license": [
  8641. "BSD-3-Clause"
  8642. ],
  8643. "authors": [
  8644. {
  8645. "name": "Sebastian Bergmann",
  8646. "email": "sebastian@phpunit.de",
  8647. "role": "lead"
  8648. }
  8649. ],
  8650. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8651. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8652. "keywords": [
  8653. "filesystem",
  8654. "iterator"
  8655. ],
  8656. "support": {
  8657. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8658. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8659. },
  8660. "funding": [
  8661. {
  8662. "url": "https://github.com/sebastianbergmann",
  8663. "type": "github"
  8664. }
  8665. ],
  8666. "time": "2021-12-02T12:48:52+00:00"
  8667. },
  8668. {
  8669. "name": "phpunit/php-invoker",
  8670. "version": "3.1.1",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8674. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8679. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "php": ">=7.3"
  8684. },
  8685. "require-dev": {
  8686. "ext-pcntl": "*",
  8687. "phpunit/phpunit": "^9.3"
  8688. },
  8689. "suggest": {
  8690. "ext-pcntl": "*"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "branch-alias": {
  8695. "dev-master": "3.1-dev"
  8696. }
  8697. },
  8698. "autoload": {
  8699. "classmap": [
  8700. "src/"
  8701. ]
  8702. },
  8703. "notification-url": "https://packagist.org/downloads/",
  8704. "license": [
  8705. "BSD-3-Clause"
  8706. ],
  8707. "authors": [
  8708. {
  8709. "name": "Sebastian Bergmann",
  8710. "email": "sebastian@phpunit.de",
  8711. "role": "lead"
  8712. }
  8713. ],
  8714. "description": "Invoke callables with a timeout",
  8715. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8716. "keywords": [
  8717. "process"
  8718. ],
  8719. "support": {
  8720. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8721. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8722. },
  8723. "funding": [
  8724. {
  8725. "url": "https://github.com/sebastianbergmann",
  8726. "type": "github"
  8727. }
  8728. ],
  8729. "time": "2020-09-28T05:58:55+00:00"
  8730. },
  8731. {
  8732. "name": "phpunit/php-text-template",
  8733. "version": "2.0.4",
  8734. "source": {
  8735. "type": "git",
  8736. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8737. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8738. },
  8739. "dist": {
  8740. "type": "zip",
  8741. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8742. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8743. "shasum": ""
  8744. },
  8745. "require": {
  8746. "php": ">=7.3"
  8747. },
  8748. "require-dev": {
  8749. "phpunit/phpunit": "^9.3"
  8750. },
  8751. "type": "library",
  8752. "extra": {
  8753. "branch-alias": {
  8754. "dev-master": "2.0-dev"
  8755. }
  8756. },
  8757. "autoload": {
  8758. "classmap": [
  8759. "src/"
  8760. ]
  8761. },
  8762. "notification-url": "https://packagist.org/downloads/",
  8763. "license": [
  8764. "BSD-3-Clause"
  8765. ],
  8766. "authors": [
  8767. {
  8768. "name": "Sebastian Bergmann",
  8769. "email": "sebastian@phpunit.de",
  8770. "role": "lead"
  8771. }
  8772. ],
  8773. "description": "Simple template engine.",
  8774. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8775. "keywords": [
  8776. "template"
  8777. ],
  8778. "support": {
  8779. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8780. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://github.com/sebastianbergmann",
  8785. "type": "github"
  8786. }
  8787. ],
  8788. "time": "2020-10-26T05:33:50+00:00"
  8789. },
  8790. {
  8791. "name": "phpunit/php-timer",
  8792. "version": "5.0.3",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8796. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8801. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8802. "shasum": ""
  8803. },
  8804. "require": {
  8805. "php": ">=7.3"
  8806. },
  8807. "require-dev": {
  8808. "phpunit/phpunit": "^9.3"
  8809. },
  8810. "type": "library",
  8811. "extra": {
  8812. "branch-alias": {
  8813. "dev-master": "5.0-dev"
  8814. }
  8815. },
  8816. "autoload": {
  8817. "classmap": [
  8818. "src/"
  8819. ]
  8820. },
  8821. "notification-url": "https://packagist.org/downloads/",
  8822. "license": [
  8823. "BSD-3-Clause"
  8824. ],
  8825. "authors": [
  8826. {
  8827. "name": "Sebastian Bergmann",
  8828. "email": "sebastian@phpunit.de",
  8829. "role": "lead"
  8830. }
  8831. ],
  8832. "description": "Utility class for timing",
  8833. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8834. "keywords": [
  8835. "timer"
  8836. ],
  8837. "support": {
  8838. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8839. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8840. },
  8841. "funding": [
  8842. {
  8843. "url": "https://github.com/sebastianbergmann",
  8844. "type": "github"
  8845. }
  8846. ],
  8847. "time": "2020-10-26T13:16:10+00:00"
  8848. },
  8849. {
  8850. "name": "phpunit/phpunit",
  8851. "version": "9.6.21",
  8852. "source": {
  8853. "type": "git",
  8854. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8855. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  8856. },
  8857. "dist": {
  8858. "type": "zip",
  8859. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8860. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8861. "shasum": ""
  8862. },
  8863. "require": {
  8864. "doctrine/instantiator": "^1.5.0 || ^2",
  8865. "ext-dom": "*",
  8866. "ext-json": "*",
  8867. "ext-libxml": "*",
  8868. "ext-mbstring": "*",
  8869. "ext-xml": "*",
  8870. "ext-xmlwriter": "*",
  8871. "myclabs/deep-copy": "^1.12.0",
  8872. "phar-io/manifest": "^2.0.4",
  8873. "phar-io/version": "^3.2.1",
  8874. "php": ">=7.3",
  8875. "phpunit/php-code-coverage": "^9.2.32",
  8876. "phpunit/php-file-iterator": "^3.0.6",
  8877. "phpunit/php-invoker": "^3.1.1",
  8878. "phpunit/php-text-template": "^2.0.4",
  8879. "phpunit/php-timer": "^5.0.3",
  8880. "sebastian/cli-parser": "^1.0.2",
  8881. "sebastian/code-unit": "^1.0.8",
  8882. "sebastian/comparator": "^4.0.8",
  8883. "sebastian/diff": "^4.0.6",
  8884. "sebastian/environment": "^5.1.5",
  8885. "sebastian/exporter": "^4.0.6",
  8886. "sebastian/global-state": "^5.0.7",
  8887. "sebastian/object-enumerator": "^4.0.4",
  8888. "sebastian/resource-operations": "^3.0.4",
  8889. "sebastian/type": "^3.2.1",
  8890. "sebastian/version": "^3.0.2"
  8891. },
  8892. "suggest": {
  8893. "ext-soap": "To be able to generate mocks based on WSDL files",
  8894. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8895. },
  8896. "bin": [
  8897. "phpunit"
  8898. ],
  8899. "type": "library",
  8900. "extra": {
  8901. "branch-alias": {
  8902. "dev-master": "9.6-dev"
  8903. }
  8904. },
  8905. "autoload": {
  8906. "files": [
  8907. "src/Framework/Assert/Functions.php"
  8908. ],
  8909. "classmap": [
  8910. "src/"
  8911. ]
  8912. },
  8913. "notification-url": "https://packagist.org/downloads/",
  8914. "license": [
  8915. "BSD-3-Clause"
  8916. ],
  8917. "authors": [
  8918. {
  8919. "name": "Sebastian Bergmann",
  8920. "email": "sebastian@phpunit.de",
  8921. "role": "lead"
  8922. }
  8923. ],
  8924. "description": "The PHP Unit Testing framework.",
  8925. "homepage": "https://phpunit.de/",
  8926. "keywords": [
  8927. "phpunit",
  8928. "testing",
  8929. "xunit"
  8930. ],
  8931. "support": {
  8932. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8933. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8934. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  8935. },
  8936. "funding": [
  8937. {
  8938. "url": "https://phpunit.de/sponsors.html",
  8939. "type": "custom"
  8940. },
  8941. {
  8942. "url": "https://github.com/sebastianbergmann",
  8943. "type": "github"
  8944. },
  8945. {
  8946. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8947. "type": "tidelift"
  8948. }
  8949. ],
  8950. "time": "2024-09-19T10:50:18+00:00"
  8951. },
  8952. {
  8953. "name": "sebastian/cli-parser",
  8954. "version": "1.0.2",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8958. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8963. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "php": ">=7.3"
  8968. },
  8969. "require-dev": {
  8970. "phpunit/phpunit": "^9.3"
  8971. },
  8972. "type": "library",
  8973. "extra": {
  8974. "branch-alias": {
  8975. "dev-master": "1.0-dev"
  8976. }
  8977. },
  8978. "autoload": {
  8979. "classmap": [
  8980. "src/"
  8981. ]
  8982. },
  8983. "notification-url": "https://packagist.org/downloads/",
  8984. "license": [
  8985. "BSD-3-Clause"
  8986. ],
  8987. "authors": [
  8988. {
  8989. "name": "Sebastian Bergmann",
  8990. "email": "sebastian@phpunit.de",
  8991. "role": "lead"
  8992. }
  8993. ],
  8994. "description": "Library for parsing CLI options",
  8995. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8996. "support": {
  8997. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8998. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8999. },
  9000. "funding": [
  9001. {
  9002. "url": "https://github.com/sebastianbergmann",
  9003. "type": "github"
  9004. }
  9005. ],
  9006. "time": "2024-03-02T06:27:43+00:00"
  9007. },
  9008. {
  9009. "name": "sebastian/code-unit",
  9010. "version": "1.0.8",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9014. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9019. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "php": ">=7.3"
  9024. },
  9025. "require-dev": {
  9026. "phpunit/phpunit": "^9.3"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "branch-alias": {
  9031. "dev-master": "1.0-dev"
  9032. }
  9033. },
  9034. "autoload": {
  9035. "classmap": [
  9036. "src/"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "BSD-3-Clause"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Sebastian Bergmann",
  9046. "email": "sebastian@phpunit.de",
  9047. "role": "lead"
  9048. }
  9049. ],
  9050. "description": "Collection of value objects that represent the PHP code units",
  9051. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9052. "support": {
  9053. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9054. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9055. },
  9056. "funding": [
  9057. {
  9058. "url": "https://github.com/sebastianbergmann",
  9059. "type": "github"
  9060. }
  9061. ],
  9062. "time": "2020-10-26T13:08:54+00:00"
  9063. },
  9064. {
  9065. "name": "sebastian/code-unit-reverse-lookup",
  9066. "version": "2.0.3",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9070. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9075. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "php": ">=7.3"
  9080. },
  9081. "require-dev": {
  9082. "phpunit/phpunit": "^9.3"
  9083. },
  9084. "type": "library",
  9085. "extra": {
  9086. "branch-alias": {
  9087. "dev-master": "2.0-dev"
  9088. }
  9089. },
  9090. "autoload": {
  9091. "classmap": [
  9092. "src/"
  9093. ]
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "BSD-3-Clause"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Sebastian Bergmann",
  9102. "email": "sebastian@phpunit.de"
  9103. }
  9104. ],
  9105. "description": "Looks up which function or method a line of code belongs to",
  9106. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9107. "support": {
  9108. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9109. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9110. },
  9111. "funding": [
  9112. {
  9113. "url": "https://github.com/sebastianbergmann",
  9114. "type": "github"
  9115. }
  9116. ],
  9117. "time": "2020-09-28T05:30:19+00:00"
  9118. },
  9119. {
  9120. "name": "sebastian/comparator",
  9121. "version": "4.0.8",
  9122. "source": {
  9123. "type": "git",
  9124. "url": "https://github.com/sebastianbergmann/comparator.git",
  9125. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9126. },
  9127. "dist": {
  9128. "type": "zip",
  9129. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9130. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9131. "shasum": ""
  9132. },
  9133. "require": {
  9134. "php": ">=7.3",
  9135. "sebastian/diff": "^4.0",
  9136. "sebastian/exporter": "^4.0"
  9137. },
  9138. "require-dev": {
  9139. "phpunit/phpunit": "^9.3"
  9140. },
  9141. "type": "library",
  9142. "extra": {
  9143. "branch-alias": {
  9144. "dev-master": "4.0-dev"
  9145. }
  9146. },
  9147. "autoload": {
  9148. "classmap": [
  9149. "src/"
  9150. ]
  9151. },
  9152. "notification-url": "https://packagist.org/downloads/",
  9153. "license": [
  9154. "BSD-3-Clause"
  9155. ],
  9156. "authors": [
  9157. {
  9158. "name": "Sebastian Bergmann",
  9159. "email": "sebastian@phpunit.de"
  9160. },
  9161. {
  9162. "name": "Jeff Welch",
  9163. "email": "whatthejeff@gmail.com"
  9164. },
  9165. {
  9166. "name": "Volker Dusch",
  9167. "email": "github@wallbash.com"
  9168. },
  9169. {
  9170. "name": "Bernhard Schussek",
  9171. "email": "bschussek@2bepublished.at"
  9172. }
  9173. ],
  9174. "description": "Provides the functionality to compare PHP values for equality",
  9175. "homepage": "https://github.com/sebastianbergmann/comparator",
  9176. "keywords": [
  9177. "comparator",
  9178. "compare",
  9179. "equality"
  9180. ],
  9181. "support": {
  9182. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9183. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9184. },
  9185. "funding": [
  9186. {
  9187. "url": "https://github.com/sebastianbergmann",
  9188. "type": "github"
  9189. }
  9190. ],
  9191. "time": "2022-09-14T12:41:17+00:00"
  9192. },
  9193. {
  9194. "name": "sebastian/complexity",
  9195. "version": "2.0.3",
  9196. "source": {
  9197. "type": "git",
  9198. "url": "https://github.com/sebastianbergmann/complexity.git",
  9199. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9200. },
  9201. "dist": {
  9202. "type": "zip",
  9203. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9204. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9205. "shasum": ""
  9206. },
  9207. "require": {
  9208. "nikic/php-parser": "^4.18 || ^5.0",
  9209. "php": ">=7.3"
  9210. },
  9211. "require-dev": {
  9212. "phpunit/phpunit": "^9.3"
  9213. },
  9214. "type": "library",
  9215. "extra": {
  9216. "branch-alias": {
  9217. "dev-master": "2.0-dev"
  9218. }
  9219. },
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de",
  9233. "role": "lead"
  9234. }
  9235. ],
  9236. "description": "Library for calculating the complexity of PHP code units",
  9237. "homepage": "https://github.com/sebastianbergmann/complexity",
  9238. "support": {
  9239. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9240. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://github.com/sebastianbergmann",
  9245. "type": "github"
  9246. }
  9247. ],
  9248. "time": "2023-12-22T06:19:30+00:00"
  9249. },
  9250. {
  9251. "name": "sebastian/diff",
  9252. "version": "4.0.6",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/sebastianbergmann/diff.git",
  9256. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9261. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "php": ">=7.3"
  9266. },
  9267. "require-dev": {
  9268. "phpunit/phpunit": "^9.3",
  9269. "symfony/process": "^4.2 || ^5"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "4.0-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Sebastian Bergmann",
  9289. "email": "sebastian@phpunit.de"
  9290. },
  9291. {
  9292. "name": "Kore Nordmann",
  9293. "email": "mail@kore-nordmann.de"
  9294. }
  9295. ],
  9296. "description": "Diff implementation",
  9297. "homepage": "https://github.com/sebastianbergmann/diff",
  9298. "keywords": [
  9299. "diff",
  9300. "udiff",
  9301. "unidiff",
  9302. "unified diff"
  9303. ],
  9304. "support": {
  9305. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9306. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9307. },
  9308. "funding": [
  9309. {
  9310. "url": "https://github.com/sebastianbergmann",
  9311. "type": "github"
  9312. }
  9313. ],
  9314. "time": "2024-03-02T06:30:58+00:00"
  9315. },
  9316. {
  9317. "name": "sebastian/environment",
  9318. "version": "5.1.5",
  9319. "source": {
  9320. "type": "git",
  9321. "url": "https://github.com/sebastianbergmann/environment.git",
  9322. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9323. },
  9324. "dist": {
  9325. "type": "zip",
  9326. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9327. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9328. "shasum": ""
  9329. },
  9330. "require": {
  9331. "php": ">=7.3"
  9332. },
  9333. "require-dev": {
  9334. "phpunit/phpunit": "^9.3"
  9335. },
  9336. "suggest": {
  9337. "ext-posix": "*"
  9338. },
  9339. "type": "library",
  9340. "extra": {
  9341. "branch-alias": {
  9342. "dev-master": "5.1-dev"
  9343. }
  9344. },
  9345. "autoload": {
  9346. "classmap": [
  9347. "src/"
  9348. ]
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "BSD-3-Clause"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Sebastian Bergmann",
  9357. "email": "sebastian@phpunit.de"
  9358. }
  9359. ],
  9360. "description": "Provides functionality to handle HHVM/PHP environments",
  9361. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9362. "keywords": [
  9363. "Xdebug",
  9364. "environment",
  9365. "hhvm"
  9366. ],
  9367. "support": {
  9368. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9369. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9370. },
  9371. "funding": [
  9372. {
  9373. "url": "https://github.com/sebastianbergmann",
  9374. "type": "github"
  9375. }
  9376. ],
  9377. "time": "2023-02-03T06:03:51+00:00"
  9378. },
  9379. {
  9380. "name": "sebastian/exporter",
  9381. "version": "4.0.6",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/sebastianbergmann/exporter.git",
  9385. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9390. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9391. "shasum": ""
  9392. },
  9393. "require": {
  9394. "php": ">=7.3",
  9395. "sebastian/recursion-context": "^4.0"
  9396. },
  9397. "require-dev": {
  9398. "ext-mbstring": "*",
  9399. "phpunit/phpunit": "^9.3"
  9400. },
  9401. "type": "library",
  9402. "extra": {
  9403. "branch-alias": {
  9404. "dev-master": "4.0-dev"
  9405. }
  9406. },
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Sebastian Bergmann",
  9419. "email": "sebastian@phpunit.de"
  9420. },
  9421. {
  9422. "name": "Jeff Welch",
  9423. "email": "whatthejeff@gmail.com"
  9424. },
  9425. {
  9426. "name": "Volker Dusch",
  9427. "email": "github@wallbash.com"
  9428. },
  9429. {
  9430. "name": "Adam Harvey",
  9431. "email": "aharvey@php.net"
  9432. },
  9433. {
  9434. "name": "Bernhard Schussek",
  9435. "email": "bschussek@gmail.com"
  9436. }
  9437. ],
  9438. "description": "Provides the functionality to export PHP variables for visualization",
  9439. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9440. "keywords": [
  9441. "export",
  9442. "exporter"
  9443. ],
  9444. "support": {
  9445. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9446. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9447. },
  9448. "funding": [
  9449. {
  9450. "url": "https://github.com/sebastianbergmann",
  9451. "type": "github"
  9452. }
  9453. ],
  9454. "time": "2024-03-02T06:33:00+00:00"
  9455. },
  9456. {
  9457. "name": "sebastian/global-state",
  9458. "version": "5.0.7",
  9459. "source": {
  9460. "type": "git",
  9461. "url": "https://github.com/sebastianbergmann/global-state.git",
  9462. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9463. },
  9464. "dist": {
  9465. "type": "zip",
  9466. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9467. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9468. "shasum": ""
  9469. },
  9470. "require": {
  9471. "php": ">=7.3",
  9472. "sebastian/object-reflector": "^2.0",
  9473. "sebastian/recursion-context": "^4.0"
  9474. },
  9475. "require-dev": {
  9476. "ext-dom": "*",
  9477. "phpunit/phpunit": "^9.3"
  9478. },
  9479. "suggest": {
  9480. "ext-uopz": "*"
  9481. },
  9482. "type": "library",
  9483. "extra": {
  9484. "branch-alias": {
  9485. "dev-master": "5.0-dev"
  9486. }
  9487. },
  9488. "autoload": {
  9489. "classmap": [
  9490. "src/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "BSD-3-Clause"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Sebastian Bergmann",
  9500. "email": "sebastian@phpunit.de"
  9501. }
  9502. ],
  9503. "description": "Snapshotting of global state",
  9504. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9505. "keywords": [
  9506. "global state"
  9507. ],
  9508. "support": {
  9509. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9510. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9511. },
  9512. "funding": [
  9513. {
  9514. "url": "https://github.com/sebastianbergmann",
  9515. "type": "github"
  9516. }
  9517. ],
  9518. "time": "2024-03-02T06:35:11+00:00"
  9519. },
  9520. {
  9521. "name": "sebastian/lines-of-code",
  9522. "version": "1.0.4",
  9523. "source": {
  9524. "type": "git",
  9525. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9526. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9527. },
  9528. "dist": {
  9529. "type": "zip",
  9530. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9531. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9532. "shasum": ""
  9533. },
  9534. "require": {
  9535. "nikic/php-parser": "^4.18 || ^5.0",
  9536. "php": ">=7.3"
  9537. },
  9538. "require-dev": {
  9539. "phpunit/phpunit": "^9.3"
  9540. },
  9541. "type": "library",
  9542. "extra": {
  9543. "branch-alias": {
  9544. "dev-master": "1.0-dev"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "classmap": [
  9549. "src/"
  9550. ]
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "BSD-3-Clause"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Sebastian Bergmann",
  9559. "email": "sebastian@phpunit.de",
  9560. "role": "lead"
  9561. }
  9562. ],
  9563. "description": "Library for counting the lines of code in PHP source code",
  9564. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9565. "support": {
  9566. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9567. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9568. },
  9569. "funding": [
  9570. {
  9571. "url": "https://github.com/sebastianbergmann",
  9572. "type": "github"
  9573. }
  9574. ],
  9575. "time": "2023-12-22T06:20:34+00:00"
  9576. },
  9577. {
  9578. "name": "sebastian/object-enumerator",
  9579. "version": "4.0.4",
  9580. "source": {
  9581. "type": "git",
  9582. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9583. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9584. },
  9585. "dist": {
  9586. "type": "zip",
  9587. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9588. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9589. "shasum": ""
  9590. },
  9591. "require": {
  9592. "php": ">=7.3",
  9593. "sebastian/object-reflector": "^2.0",
  9594. "sebastian/recursion-context": "^4.0"
  9595. },
  9596. "require-dev": {
  9597. "phpunit/phpunit": "^9.3"
  9598. },
  9599. "type": "library",
  9600. "extra": {
  9601. "branch-alias": {
  9602. "dev-master": "4.0-dev"
  9603. }
  9604. },
  9605. "autoload": {
  9606. "classmap": [
  9607. "src/"
  9608. ]
  9609. },
  9610. "notification-url": "https://packagist.org/downloads/",
  9611. "license": [
  9612. "BSD-3-Clause"
  9613. ],
  9614. "authors": [
  9615. {
  9616. "name": "Sebastian Bergmann",
  9617. "email": "sebastian@phpunit.de"
  9618. }
  9619. ],
  9620. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9621. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9622. "support": {
  9623. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9624. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9625. },
  9626. "funding": [
  9627. {
  9628. "url": "https://github.com/sebastianbergmann",
  9629. "type": "github"
  9630. }
  9631. ],
  9632. "time": "2020-10-26T13:12:34+00:00"
  9633. },
  9634. {
  9635. "name": "sebastian/object-reflector",
  9636. "version": "2.0.4",
  9637. "source": {
  9638. "type": "git",
  9639. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9640. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9641. },
  9642. "dist": {
  9643. "type": "zip",
  9644. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9645. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  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": "Allows reflection of object attributes, including inherited and non-public ones",
  9676. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9677. "support": {
  9678. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9679. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/sebastianbergmann",
  9684. "type": "github"
  9685. }
  9686. ],
  9687. "time": "2020-10-26T13:14:26+00:00"
  9688. },
  9689. {
  9690. "name": "sebastian/recursion-context",
  9691. "version": "4.0.5",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9695. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9700. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9701. "shasum": ""
  9702. },
  9703. "require": {
  9704. "php": ">=7.3"
  9705. },
  9706. "require-dev": {
  9707. "phpunit/phpunit": "^9.3"
  9708. },
  9709. "type": "library",
  9710. "extra": {
  9711. "branch-alias": {
  9712. "dev-master": "4.0-dev"
  9713. }
  9714. },
  9715. "autoload": {
  9716. "classmap": [
  9717. "src/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "BSD-3-Clause"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Sebastian Bergmann",
  9727. "email": "sebastian@phpunit.de"
  9728. },
  9729. {
  9730. "name": "Jeff Welch",
  9731. "email": "whatthejeff@gmail.com"
  9732. },
  9733. {
  9734. "name": "Adam Harvey",
  9735. "email": "aharvey@php.net"
  9736. }
  9737. ],
  9738. "description": "Provides functionality to recursively process PHP variables",
  9739. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9740. "support": {
  9741. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9742. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9743. },
  9744. "funding": [
  9745. {
  9746. "url": "https://github.com/sebastianbergmann",
  9747. "type": "github"
  9748. }
  9749. ],
  9750. "time": "2023-02-03T06:07:39+00:00"
  9751. },
  9752. {
  9753. "name": "sebastian/resource-operations",
  9754. "version": "3.0.4",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9758. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9763. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "php": ">=7.3"
  9768. },
  9769. "require-dev": {
  9770. "phpunit/phpunit": "^9.0"
  9771. },
  9772. "type": "library",
  9773. "extra": {
  9774. "branch-alias": {
  9775. "dev-main": "3.0-dev"
  9776. }
  9777. },
  9778. "autoload": {
  9779. "classmap": [
  9780. "src/"
  9781. ]
  9782. },
  9783. "notification-url": "https://packagist.org/downloads/",
  9784. "license": [
  9785. "BSD-3-Clause"
  9786. ],
  9787. "authors": [
  9788. {
  9789. "name": "Sebastian Bergmann",
  9790. "email": "sebastian@phpunit.de"
  9791. }
  9792. ],
  9793. "description": "Provides a list of PHP built-in functions that operate on resources",
  9794. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9795. "support": {
  9796. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9797. },
  9798. "funding": [
  9799. {
  9800. "url": "https://github.com/sebastianbergmann",
  9801. "type": "github"
  9802. }
  9803. ],
  9804. "time": "2024-03-14T16:00:52+00:00"
  9805. },
  9806. {
  9807. "name": "sebastian/type",
  9808. "version": "3.2.1",
  9809. "source": {
  9810. "type": "git",
  9811. "url": "https://github.com/sebastianbergmann/type.git",
  9812. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9813. },
  9814. "dist": {
  9815. "type": "zip",
  9816. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9817. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9818. "shasum": ""
  9819. },
  9820. "require": {
  9821. "php": ">=7.3"
  9822. },
  9823. "require-dev": {
  9824. "phpunit/phpunit": "^9.5"
  9825. },
  9826. "type": "library",
  9827. "extra": {
  9828. "branch-alias": {
  9829. "dev-master": "3.2-dev"
  9830. }
  9831. },
  9832. "autoload": {
  9833. "classmap": [
  9834. "src/"
  9835. ]
  9836. },
  9837. "notification-url": "https://packagist.org/downloads/",
  9838. "license": [
  9839. "BSD-3-Clause"
  9840. ],
  9841. "authors": [
  9842. {
  9843. "name": "Sebastian Bergmann",
  9844. "email": "sebastian@phpunit.de",
  9845. "role": "lead"
  9846. }
  9847. ],
  9848. "description": "Collection of value objects that represent the types of the PHP type system",
  9849. "homepage": "https://github.com/sebastianbergmann/type",
  9850. "support": {
  9851. "issues": "https://github.com/sebastianbergmann/type/issues",
  9852. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9853. },
  9854. "funding": [
  9855. {
  9856. "url": "https://github.com/sebastianbergmann",
  9857. "type": "github"
  9858. }
  9859. ],
  9860. "time": "2023-02-03T06:13:03+00:00"
  9861. },
  9862. {
  9863. "name": "sebastian/version",
  9864. "version": "3.0.2",
  9865. "source": {
  9866. "type": "git",
  9867. "url": "https://github.com/sebastianbergmann/version.git",
  9868. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9869. },
  9870. "dist": {
  9871. "type": "zip",
  9872. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9873. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9874. "shasum": ""
  9875. },
  9876. "require": {
  9877. "php": ">=7.3"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "3.0-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "classmap": [
  9887. "src/"
  9888. ]
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "BSD-3-Clause"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Sebastian Bergmann",
  9897. "email": "sebastian@phpunit.de",
  9898. "role": "lead"
  9899. }
  9900. ],
  9901. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9902. "homepage": "https://github.com/sebastianbergmann/version",
  9903. "support": {
  9904. "issues": "https://github.com/sebastianbergmann/version/issues",
  9905. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9906. },
  9907. "funding": [
  9908. {
  9909. "url": "https://github.com/sebastianbergmann",
  9910. "type": "github"
  9911. }
  9912. ],
  9913. "time": "2020-09-28T06:39:44+00:00"
  9914. },
  9915. {
  9916. "name": "symfony/browser-kit",
  9917. "version": "v7.1.1",
  9918. "source": {
  9919. "type": "git",
  9920. "url": "https://github.com/symfony/browser-kit.git",
  9921. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  9922. },
  9923. "dist": {
  9924. "type": "zip",
  9925. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  9926. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  9927. "shasum": ""
  9928. },
  9929. "require": {
  9930. "php": ">=8.2",
  9931. "symfony/dom-crawler": "^6.4|^7.0"
  9932. },
  9933. "require-dev": {
  9934. "symfony/css-selector": "^6.4|^7.0",
  9935. "symfony/http-client": "^6.4|^7.0",
  9936. "symfony/mime": "^6.4|^7.0",
  9937. "symfony/process": "^6.4|^7.0"
  9938. },
  9939. "type": "library",
  9940. "autoload": {
  9941. "psr-4": {
  9942. "Symfony\\Component\\BrowserKit\\": ""
  9943. },
  9944. "exclude-from-classmap": [
  9945. "/Tests/"
  9946. ]
  9947. },
  9948. "notification-url": "https://packagist.org/downloads/",
  9949. "license": [
  9950. "MIT"
  9951. ],
  9952. "authors": [
  9953. {
  9954. "name": "Fabien Potencier",
  9955. "email": "fabien@symfony.com"
  9956. },
  9957. {
  9958. "name": "Symfony Community",
  9959. "homepage": "https://symfony.com/contributors"
  9960. }
  9961. ],
  9962. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9963. "homepage": "https://symfony.com",
  9964. "support": {
  9965. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://symfony.com/sponsor",
  9970. "type": "custom"
  9971. },
  9972. {
  9973. "url": "https://github.com/fabpot",
  9974. "type": "github"
  9975. },
  9976. {
  9977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9978. "type": "tidelift"
  9979. }
  9980. ],
  9981. "time": "2024-05-31T14:57:53+00:00"
  9982. },
  9983. {
  9984. "name": "symfony/css-selector",
  9985. "version": "v7.1.1",
  9986. "source": {
  9987. "type": "git",
  9988. "url": "https://github.com/symfony/css-selector.git",
  9989. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  9990. },
  9991. "dist": {
  9992. "type": "zip",
  9993. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9994. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9995. "shasum": ""
  9996. },
  9997. "require": {
  9998. "php": ">=8.2"
  9999. },
  10000. "type": "library",
  10001. "autoload": {
  10002. "psr-4": {
  10003. "Symfony\\Component\\CssSelector\\": ""
  10004. },
  10005. "exclude-from-classmap": [
  10006. "/Tests/"
  10007. ]
  10008. },
  10009. "notification-url": "https://packagist.org/downloads/",
  10010. "license": [
  10011. "MIT"
  10012. ],
  10013. "authors": [
  10014. {
  10015. "name": "Fabien Potencier",
  10016. "email": "fabien@symfony.com"
  10017. },
  10018. {
  10019. "name": "Jean-François Simon",
  10020. "email": "jeanfrancois.simon@sensiolabs.com"
  10021. },
  10022. {
  10023. "name": "Symfony Community",
  10024. "homepage": "https://symfony.com/contributors"
  10025. }
  10026. ],
  10027. "description": "Converts CSS selectors to XPath expressions",
  10028. "homepage": "https://symfony.com",
  10029. "support": {
  10030. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10031. },
  10032. "funding": [
  10033. {
  10034. "url": "https://symfony.com/sponsor",
  10035. "type": "custom"
  10036. },
  10037. {
  10038. "url": "https://github.com/fabpot",
  10039. "type": "github"
  10040. },
  10041. {
  10042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10043. "type": "tidelift"
  10044. }
  10045. ],
  10046. "time": "2024-05-31T14:57:53+00:00"
  10047. },
  10048. {
  10049. "name": "symfony/debug-bundle",
  10050. "version": "v7.1.1",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/symfony/debug-bundle.git",
  10054. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10059. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "ext-xml": "*",
  10064. "php": ">=8.2",
  10065. "symfony/dependency-injection": "^6.4|^7.0",
  10066. "symfony/http-kernel": "^6.4|^7.0",
  10067. "symfony/twig-bridge": "^6.4|^7.0",
  10068. "symfony/var-dumper": "^6.4|^7.0"
  10069. },
  10070. "conflict": {
  10071. "symfony/config": "<6.4",
  10072. "symfony/dependency-injection": "<6.4"
  10073. },
  10074. "require-dev": {
  10075. "symfony/config": "^6.4|^7.0",
  10076. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10077. },
  10078. "type": "symfony-bundle",
  10079. "autoload": {
  10080. "psr-4": {
  10081. "Symfony\\Bundle\\DebugBundle\\": ""
  10082. },
  10083. "exclude-from-classmap": [
  10084. "/Tests/"
  10085. ]
  10086. },
  10087. "notification-url": "https://packagist.org/downloads/",
  10088. "license": [
  10089. "MIT"
  10090. ],
  10091. "authors": [
  10092. {
  10093. "name": "Fabien Potencier",
  10094. "email": "fabien@symfony.com"
  10095. },
  10096. {
  10097. "name": "Symfony Community",
  10098. "homepage": "https://symfony.com/contributors"
  10099. }
  10100. ],
  10101. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10102. "homepage": "https://symfony.com",
  10103. "support": {
  10104. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10105. },
  10106. "funding": [
  10107. {
  10108. "url": "https://symfony.com/sponsor",
  10109. "type": "custom"
  10110. },
  10111. {
  10112. "url": "https://github.com/fabpot",
  10113. "type": "github"
  10114. },
  10115. {
  10116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10117. "type": "tidelift"
  10118. }
  10119. ],
  10120. "time": "2024-05-31T14:55:39+00:00"
  10121. },
  10122. {
  10123. "name": "symfony/dom-crawler",
  10124. "version": "v7.1.5",
  10125. "source": {
  10126. "type": "git",
  10127. "url": "https://github.com/symfony/dom-crawler.git",
  10128. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  10129. },
  10130. "dist": {
  10131. "type": "zip",
  10132. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  10133. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  10134. "shasum": ""
  10135. },
  10136. "require": {
  10137. "masterminds/html5": "^2.6",
  10138. "php": ">=8.2",
  10139. "symfony/polyfill-ctype": "~1.8",
  10140. "symfony/polyfill-mbstring": "~1.0"
  10141. },
  10142. "require-dev": {
  10143. "symfony/css-selector": "^6.4|^7.0"
  10144. },
  10145. "type": "library",
  10146. "autoload": {
  10147. "psr-4": {
  10148. "Symfony\\Component\\DomCrawler\\": ""
  10149. },
  10150. "exclude-from-classmap": [
  10151. "/Tests/"
  10152. ]
  10153. },
  10154. "notification-url": "https://packagist.org/downloads/",
  10155. "license": [
  10156. "MIT"
  10157. ],
  10158. "authors": [
  10159. {
  10160. "name": "Fabien Potencier",
  10161. "email": "fabien@symfony.com"
  10162. },
  10163. {
  10164. "name": "Symfony Community",
  10165. "homepage": "https://symfony.com/contributors"
  10166. }
  10167. ],
  10168. "description": "Eases DOM navigation for HTML and XML documents",
  10169. "homepage": "https://symfony.com",
  10170. "support": {
  10171. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  10172. },
  10173. "funding": [
  10174. {
  10175. "url": "https://symfony.com/sponsor",
  10176. "type": "custom"
  10177. },
  10178. {
  10179. "url": "https://github.com/fabpot",
  10180. "type": "github"
  10181. },
  10182. {
  10183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10184. "type": "tidelift"
  10185. }
  10186. ],
  10187. "time": "2024-09-15T06:48:17+00:00"
  10188. },
  10189. {
  10190. "name": "symfony/maker-bundle",
  10191. "version": "v1.61.0",
  10192. "source": {
  10193. "type": "git",
  10194. "url": "https://github.com/symfony/maker-bundle.git",
  10195. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  10196. },
  10197. "dist": {
  10198. "type": "zip",
  10199. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10200. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10201. "shasum": ""
  10202. },
  10203. "require": {
  10204. "doctrine/inflector": "^2.0",
  10205. "nikic/php-parser": "^4.18|^5.0",
  10206. "php": ">=8.1",
  10207. "symfony/config": "^6.4|^7.0",
  10208. "symfony/console": "^6.4|^7.0",
  10209. "symfony/dependency-injection": "^6.4|^7.0",
  10210. "symfony/deprecation-contracts": "^2.2|^3",
  10211. "symfony/filesystem": "^6.4|^7.0",
  10212. "symfony/finder": "^6.4|^7.0",
  10213. "symfony/framework-bundle": "^6.4|^7.0",
  10214. "symfony/http-kernel": "^6.4|^7.0",
  10215. "symfony/process": "^6.4|^7.0"
  10216. },
  10217. "conflict": {
  10218. "doctrine/doctrine-bundle": "<2.10",
  10219. "doctrine/orm": "<2.15"
  10220. },
  10221. "require-dev": {
  10222. "composer/semver": "^3.0",
  10223. "doctrine/doctrine-bundle": "^2.5.0",
  10224. "doctrine/orm": "^2.15|^3",
  10225. "symfony/http-client": "^6.4|^7.0",
  10226. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10227. "symfony/security-core": "^6.4|^7.0",
  10228. "symfony/yaml": "^6.4|^7.0",
  10229. "twig/twig": "^3.0|^4.x-dev"
  10230. },
  10231. "type": "symfony-bundle",
  10232. "extra": {
  10233. "branch-alias": {
  10234. "dev-main": "1.x-dev"
  10235. }
  10236. },
  10237. "autoload": {
  10238. "psr-4": {
  10239. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10240. }
  10241. },
  10242. "notification-url": "https://packagist.org/downloads/",
  10243. "license": [
  10244. "MIT"
  10245. ],
  10246. "authors": [
  10247. {
  10248. "name": "Symfony Community",
  10249. "homepage": "https://symfony.com/contributors"
  10250. }
  10251. ],
  10252. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10253. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10254. "keywords": [
  10255. "code generator",
  10256. "dev",
  10257. "generator",
  10258. "scaffold",
  10259. "scaffolding"
  10260. ],
  10261. "support": {
  10262. "issues": "https://github.com/symfony/maker-bundle/issues",
  10263. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  10264. },
  10265. "funding": [
  10266. {
  10267. "url": "https://symfony.com/sponsor",
  10268. "type": "custom"
  10269. },
  10270. {
  10271. "url": "https://github.com/fabpot",
  10272. "type": "github"
  10273. },
  10274. {
  10275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10276. "type": "tidelift"
  10277. }
  10278. ],
  10279. "time": "2024-08-29T22:50:23+00:00"
  10280. },
  10281. {
  10282. "name": "symfony/phpunit-bridge",
  10283. "version": "v7.1.4",
  10284. "source": {
  10285. "type": "git",
  10286. "url": "https://github.com/symfony/phpunit-bridge.git",
  10287. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  10288. },
  10289. "dist": {
  10290. "type": "zip",
  10291. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10292. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10293. "shasum": ""
  10294. },
  10295. "require": {
  10296. "php": ">=7.2.5"
  10297. },
  10298. "conflict": {
  10299. "phpunit/phpunit": "<7.5|9.1.2"
  10300. },
  10301. "require-dev": {
  10302. "symfony/deprecation-contracts": "^2.5|^3.0",
  10303. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10304. "symfony/polyfill-php81": "^1.27"
  10305. },
  10306. "bin": [
  10307. "bin/simple-phpunit"
  10308. ],
  10309. "type": "symfony-bridge",
  10310. "extra": {
  10311. "thanks": {
  10312. "name": "phpunit/phpunit",
  10313. "url": "https://github.com/sebastianbergmann/phpunit"
  10314. }
  10315. },
  10316. "autoload": {
  10317. "files": [
  10318. "bootstrap.php"
  10319. ],
  10320. "psr-4": {
  10321. "Symfony\\Bridge\\PhpUnit\\": ""
  10322. },
  10323. "exclude-from-classmap": [
  10324. "/Tests/",
  10325. "/bin/"
  10326. ]
  10327. },
  10328. "notification-url": "https://packagist.org/downloads/",
  10329. "license": [
  10330. "MIT"
  10331. ],
  10332. "authors": [
  10333. {
  10334. "name": "Nicolas Grekas",
  10335. "email": "p@tchwork.com"
  10336. },
  10337. {
  10338. "name": "Symfony Community",
  10339. "homepage": "https://symfony.com/contributors"
  10340. }
  10341. ],
  10342. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10343. "homepage": "https://symfony.com",
  10344. "support": {
  10345. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  10346. },
  10347. "funding": [
  10348. {
  10349. "url": "https://symfony.com/sponsor",
  10350. "type": "custom"
  10351. },
  10352. {
  10353. "url": "https://github.com/fabpot",
  10354. "type": "github"
  10355. },
  10356. {
  10357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10358. "type": "tidelift"
  10359. }
  10360. ],
  10361. "time": "2024-08-13T14:28:19+00:00"
  10362. },
  10363. {
  10364. "name": "symfony/web-profiler-bundle",
  10365. "version": "v7.1.4",
  10366. "source": {
  10367. "type": "git",
  10368. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10369. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  10370. },
  10371. "dist": {
  10372. "type": "zip",
  10373. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  10374. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  10375. "shasum": ""
  10376. },
  10377. "require": {
  10378. "php": ">=8.2",
  10379. "symfony/config": "^6.4|^7.0",
  10380. "symfony/framework-bundle": "^6.4|^7.0",
  10381. "symfony/http-kernel": "^6.4|^7.0",
  10382. "symfony/routing": "^6.4|^7.0",
  10383. "symfony/twig-bundle": "^6.4|^7.0",
  10384. "twig/twig": "^3.10"
  10385. },
  10386. "conflict": {
  10387. "symfony/form": "<6.4",
  10388. "symfony/mailer": "<6.4",
  10389. "symfony/messenger": "<6.4"
  10390. },
  10391. "require-dev": {
  10392. "symfony/browser-kit": "^6.4|^7.0",
  10393. "symfony/console": "^6.4|^7.0",
  10394. "symfony/css-selector": "^6.4|^7.0",
  10395. "symfony/stopwatch": "^6.4|^7.0"
  10396. },
  10397. "type": "symfony-bundle",
  10398. "autoload": {
  10399. "psr-4": {
  10400. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10401. },
  10402. "exclude-from-classmap": [
  10403. "/Tests/"
  10404. ]
  10405. },
  10406. "notification-url": "https://packagist.org/downloads/",
  10407. "license": [
  10408. "MIT"
  10409. ],
  10410. "authors": [
  10411. {
  10412. "name": "Fabien Potencier",
  10413. "email": "fabien@symfony.com"
  10414. },
  10415. {
  10416. "name": "Symfony Community",
  10417. "homepage": "https://symfony.com/contributors"
  10418. }
  10419. ],
  10420. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10421. "homepage": "https://symfony.com",
  10422. "keywords": [
  10423. "dev"
  10424. ],
  10425. "support": {
  10426. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  10427. },
  10428. "funding": [
  10429. {
  10430. "url": "https://symfony.com/sponsor",
  10431. "type": "custom"
  10432. },
  10433. {
  10434. "url": "https://github.com/fabpot",
  10435. "type": "github"
  10436. },
  10437. {
  10438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10439. "type": "tidelift"
  10440. }
  10441. ],
  10442. "time": "2024-08-12T09:59:40+00:00"
  10443. },
  10444. {
  10445. "name": "theseer/tokenizer",
  10446. "version": "1.2.3",
  10447. "source": {
  10448. "type": "git",
  10449. "url": "https://github.com/theseer/tokenizer.git",
  10450. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10451. },
  10452. "dist": {
  10453. "type": "zip",
  10454. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10455. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10456. "shasum": ""
  10457. },
  10458. "require": {
  10459. "ext-dom": "*",
  10460. "ext-tokenizer": "*",
  10461. "ext-xmlwriter": "*",
  10462. "php": "^7.2 || ^8.0"
  10463. },
  10464. "type": "library",
  10465. "autoload": {
  10466. "classmap": [
  10467. "src/"
  10468. ]
  10469. },
  10470. "notification-url": "https://packagist.org/downloads/",
  10471. "license": [
  10472. "BSD-3-Clause"
  10473. ],
  10474. "authors": [
  10475. {
  10476. "name": "Arne Blankerts",
  10477. "email": "arne@blankerts.de",
  10478. "role": "Developer"
  10479. }
  10480. ],
  10481. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10482. "support": {
  10483. "issues": "https://github.com/theseer/tokenizer/issues",
  10484. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10485. },
  10486. "funding": [
  10487. {
  10488. "url": "https://github.com/theseer",
  10489. "type": "github"
  10490. }
  10491. ],
  10492. "time": "2024-03-03T12:36:25+00:00"
  10493. }
  10494. ],
  10495. "aliases": [],
  10496. "minimum-stability": "stable",
  10497. "stability-flags": {},
  10498. "prefer-stable": true,
  10499. "prefer-lowest": false,
  10500. "platform": {
  10501. "php": ">=8.2",
  10502. "ext-ctype": "*",
  10503. "ext-iconv": "*"
  10504. },
  10505. "platform-dev": {},
  10506. "plugin-api-version": "2.6.0"
  10507. }