composer.lock 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570
  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": "572c52715190154517a04e502532f55c",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2022-01-17T14:14:24+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.3",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  93. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  154. },
  155. "time": "2024-07-08T12:26:09+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.2.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  337. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^12",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^10.5",
  350. "vimeo/psalm": "^5.11"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2024-04-18T06:56:21+00:00"
  411. },
  412. {
  413. "name": "doctrine/dbal",
  414. "version": "4.0.4",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/dbal.git",
  418. "reference": "50fda19f80724b55ff770bb4ff352407008e63c5"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/dbal/zipball/50fda19f80724b55ff770bb4ff352407008e63c5",
  423. "reference": "50fda19f80724b55ff770bb4ff352407008e63c5",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/deprecations": "^0.5.3|^1",
  428. "php": "^8.1",
  429. "psr/cache": "^1|^2|^3",
  430. "psr/log": "^1|^2|^3"
  431. },
  432. "require-dev": {
  433. "doctrine/coding-standard": "12.0.0",
  434. "fig/log-test": "^1",
  435. "jetbrains/phpstorm-stubs": "2023.2",
  436. "phpstan/phpstan": "1.11.5",
  437. "phpstan/phpstan-phpunit": "1.4.0",
  438. "phpstan/phpstan-strict-rules": "^1.6",
  439. "phpunit/phpunit": "10.5.22",
  440. "psalm/plugin-phpunit": "0.19.0",
  441. "slevomat/coding-standard": "8.13.1",
  442. "squizlabs/php_codesniffer": "3.10.1",
  443. "symfony/cache": "^6.3.8|^7.0",
  444. "symfony/console": "^5.4|^6.3|^7.0",
  445. "vimeo/psalm": "5.24.0"
  446. },
  447. "suggest": {
  448. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  449. },
  450. "type": "library",
  451. "autoload": {
  452. "psr-4": {
  453. "Doctrine\\DBAL\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Guilherme Blanco",
  463. "email": "guilhermeblanco@gmail.com"
  464. },
  465. {
  466. "name": "Roman Borschel",
  467. "email": "roman@code-factory.org"
  468. },
  469. {
  470. "name": "Benjamin Eberlei",
  471. "email": "kontakt@beberlei.de"
  472. },
  473. {
  474. "name": "Jonathan Wage",
  475. "email": "jonwage@gmail.com"
  476. }
  477. ],
  478. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  479. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  480. "keywords": [
  481. "abstraction",
  482. "database",
  483. "db2",
  484. "dbal",
  485. "mariadb",
  486. "mssql",
  487. "mysql",
  488. "oci8",
  489. "oracle",
  490. "pdo",
  491. "pgsql",
  492. "postgresql",
  493. "queryobject",
  494. "sasql",
  495. "sql",
  496. "sqlite",
  497. "sqlserver",
  498. "sqlsrv"
  499. ],
  500. "support": {
  501. "issues": "https://github.com/doctrine/dbal/issues",
  502. "source": "https://github.com/doctrine/dbal/tree/4.0.4"
  503. },
  504. "funding": [
  505. {
  506. "url": "https://www.doctrine-project.org/sponsorship.html",
  507. "type": "custom"
  508. },
  509. {
  510. "url": "https://www.patreon.com/phpdoctrine",
  511. "type": "patreon"
  512. },
  513. {
  514. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  515. "type": "tidelift"
  516. }
  517. ],
  518. "time": "2024-06-19T11:57:23+00:00"
  519. },
  520. {
  521. "name": "doctrine/deprecations",
  522. "version": "1.1.3",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/doctrine/deprecations.git",
  526. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  531. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": "^7.1 || ^8.0"
  536. },
  537. "require-dev": {
  538. "doctrine/coding-standard": "^9",
  539. "phpstan/phpstan": "1.4.10 || 1.10.15",
  540. "phpstan/phpstan-phpunit": "^1.0",
  541. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  542. "psalm/plugin-phpunit": "0.18.4",
  543. "psr/log": "^1 || ^2 || ^3",
  544. "vimeo/psalm": "4.30.0 || 5.12.0"
  545. },
  546. "suggest": {
  547. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  548. },
  549. "type": "library",
  550. "autoload": {
  551. "psr-4": {
  552. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "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.",
  560. "homepage": "https://www.doctrine-project.org/",
  561. "support": {
  562. "issues": "https://github.com/doctrine/deprecations/issues",
  563. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  564. },
  565. "time": "2024-01-30T19:34:25+00:00"
  566. },
  567. {
  568. "name": "doctrine/doctrine-bundle",
  569. "version": "2.12.0",
  570. "source": {
  571. "type": "git",
  572. "url": "https://github.com/doctrine/DoctrineBundle.git",
  573. "reference": "5418e811a14724068e95e0ba43353b903ada530f"
  574. },
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/5418e811a14724068e95e0ba43353b903ada530f",
  578. "reference": "5418e811a14724068e95e0ba43353b903ada530f",
  579. "shasum": ""
  580. },
  581. "require": {
  582. "doctrine/cache": "^1.11 || ^2.0",
  583. "doctrine/dbal": "^3.7.0 || ^4.0",
  584. "doctrine/persistence": "^2.2 || ^3",
  585. "doctrine/sql-formatter": "^1.0.1",
  586. "php": "^7.4 || ^8.0",
  587. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  588. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  589. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  590. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  591. "symfony/deprecation-contracts": "^2.1 || ^3",
  592. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  593. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  594. "symfony/polyfill-php80": "^1.15",
  595. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  596. },
  597. "conflict": {
  598. "doctrine/annotations": ">=3.0",
  599. "doctrine/orm": "<2.17 || >=4.0",
  600. "twig/twig": "<1.34 || >=2.0 <2.4"
  601. },
  602. "require-dev": {
  603. "doctrine/annotations": "^1 || ^2",
  604. "doctrine/coding-standard": "^12",
  605. "doctrine/deprecations": "^1.0",
  606. "doctrine/orm": "^2.17 || ^3.0",
  607. "friendsofphp/proxy-manager-lts": "^1.0",
  608. "phpunit/phpunit": "^9.5.26",
  609. "psalm/plugin-phpunit": "^0.18.4",
  610. "psalm/plugin-symfony": "^5",
  611. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  612. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  613. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  614. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  615. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  616. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  617. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  618. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  619. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  620. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  621. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  622. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  623. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  624. "vimeo/psalm": "^5.15"
  625. },
  626. "suggest": {
  627. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  628. "ext-pdo": "*",
  629. "symfony/web-profiler-bundle": "To use the data collector."
  630. },
  631. "type": "symfony-bundle",
  632. "autoload": {
  633. "psr-4": {
  634. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  635. }
  636. },
  637. "notification-url": "https://packagist.org/downloads/",
  638. "license": [
  639. "MIT"
  640. ],
  641. "authors": [
  642. {
  643. "name": "Fabien Potencier",
  644. "email": "fabien@symfony.com"
  645. },
  646. {
  647. "name": "Benjamin Eberlei",
  648. "email": "kontakt@beberlei.de"
  649. },
  650. {
  651. "name": "Symfony Community",
  652. "homepage": "https://symfony.com/contributors"
  653. },
  654. {
  655. "name": "Doctrine Project",
  656. "homepage": "https://www.doctrine-project.org/"
  657. }
  658. ],
  659. "description": "Symfony DoctrineBundle",
  660. "homepage": "https://www.doctrine-project.org",
  661. "keywords": [
  662. "database",
  663. "dbal",
  664. "orm",
  665. "persistence"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  669. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.12.0"
  670. },
  671. "funding": [
  672. {
  673. "url": "https://www.doctrine-project.org/sponsorship.html",
  674. "type": "custom"
  675. },
  676. {
  677. "url": "https://www.patreon.com/phpdoctrine",
  678. "type": "patreon"
  679. },
  680. {
  681. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  682. "type": "tidelift"
  683. }
  684. ],
  685. "time": "2024-03-19T07:20:37+00:00"
  686. },
  687. {
  688. "name": "doctrine/doctrine-migrations-bundle",
  689. "version": "3.3.1",
  690. "source": {
  691. "type": "git",
  692. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  693. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  694. },
  695. "dist": {
  696. "type": "zip",
  697. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  698. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  699. "shasum": ""
  700. },
  701. "require": {
  702. "doctrine/doctrine-bundle": "^2.4",
  703. "doctrine/migrations": "^3.2",
  704. "php": "^7.2|^8.0",
  705. "symfony/deprecation-contracts": "^2.1 || ^3",
  706. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  707. },
  708. "require-dev": {
  709. "composer/semver": "^3.0",
  710. "doctrine/coding-standard": "^12",
  711. "doctrine/orm": "^2.6 || ^3",
  712. "doctrine/persistence": "^2.0 || ^3 ",
  713. "phpstan/phpstan": "^1.4",
  714. "phpstan/phpstan-deprecation-rules": "^1",
  715. "phpstan/phpstan-phpunit": "^1",
  716. "phpstan/phpstan-strict-rules": "^1.1",
  717. "phpstan/phpstan-symfony": "^1.3",
  718. "phpunit/phpunit": "^8.5|^9.5",
  719. "psalm/plugin-phpunit": "^0.18.4",
  720. "psalm/plugin-symfony": "^3 || ^5",
  721. "symfony/phpunit-bridge": "^6.3 || ^7",
  722. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  723. "vimeo/psalm": "^4.30 || ^5.15"
  724. },
  725. "type": "symfony-bundle",
  726. "autoload": {
  727. "psr-4": {
  728. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  729. },
  730. "exclude-from-classmap": [
  731. "/Tests/"
  732. ]
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Fabien Potencier",
  741. "email": "fabien@symfony.com"
  742. },
  743. {
  744. "name": "Doctrine Project",
  745. "homepage": "https://www.doctrine-project.org"
  746. },
  747. {
  748. "name": "Symfony Community",
  749. "homepage": "https://symfony.com/contributors"
  750. }
  751. ],
  752. "description": "Symfony DoctrineMigrationsBundle",
  753. "homepage": "https://www.doctrine-project.org",
  754. "keywords": [
  755. "dbal",
  756. "migrations",
  757. "schema"
  758. ],
  759. "support": {
  760. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  761. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  762. },
  763. "funding": [
  764. {
  765. "url": "https://www.doctrine-project.org/sponsorship.html",
  766. "type": "custom"
  767. },
  768. {
  769. "url": "https://www.patreon.com/phpdoctrine",
  770. "type": "patreon"
  771. },
  772. {
  773. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  774. "type": "tidelift"
  775. }
  776. ],
  777. "time": "2024-05-14T20:32:18+00:00"
  778. },
  779. {
  780. "name": "doctrine/event-manager",
  781. "version": "2.0.1",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/doctrine/event-manager.git",
  785. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  790. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": "^8.1"
  795. },
  796. "conflict": {
  797. "doctrine/common": "<2.9"
  798. },
  799. "require-dev": {
  800. "doctrine/coding-standard": "^12",
  801. "phpstan/phpstan": "^1.8.8",
  802. "phpunit/phpunit": "^10.5",
  803. "vimeo/psalm": "^5.24"
  804. },
  805. "type": "library",
  806. "autoload": {
  807. "psr-4": {
  808. "Doctrine\\Common\\": "src"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "MIT"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Guilherme Blanco",
  818. "email": "guilhermeblanco@gmail.com"
  819. },
  820. {
  821. "name": "Roman Borschel",
  822. "email": "roman@code-factory.org"
  823. },
  824. {
  825. "name": "Benjamin Eberlei",
  826. "email": "kontakt@beberlei.de"
  827. },
  828. {
  829. "name": "Jonathan Wage",
  830. "email": "jonwage@gmail.com"
  831. },
  832. {
  833. "name": "Johannes Schmitt",
  834. "email": "schmittjoh@gmail.com"
  835. },
  836. {
  837. "name": "Marco Pivetta",
  838. "email": "ocramius@gmail.com"
  839. }
  840. ],
  841. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  842. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  843. "keywords": [
  844. "event",
  845. "event dispatcher",
  846. "event manager",
  847. "event system",
  848. "events"
  849. ],
  850. "support": {
  851. "issues": "https://github.com/doctrine/event-manager/issues",
  852. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  853. },
  854. "funding": [
  855. {
  856. "url": "https://www.doctrine-project.org/sponsorship.html",
  857. "type": "custom"
  858. },
  859. {
  860. "url": "https://www.patreon.com/phpdoctrine",
  861. "type": "patreon"
  862. },
  863. {
  864. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  865. "type": "tidelift"
  866. }
  867. ],
  868. "time": "2024-05-22T20:47:39+00:00"
  869. },
  870. {
  871. "name": "doctrine/inflector",
  872. "version": "2.0.10",
  873. "source": {
  874. "type": "git",
  875. "url": "https://github.com/doctrine/inflector.git",
  876. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  877. },
  878. "dist": {
  879. "type": "zip",
  880. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  881. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  882. "shasum": ""
  883. },
  884. "require": {
  885. "php": "^7.2 || ^8.0"
  886. },
  887. "require-dev": {
  888. "doctrine/coding-standard": "^11.0",
  889. "phpstan/phpstan": "^1.8",
  890. "phpstan/phpstan-phpunit": "^1.1",
  891. "phpstan/phpstan-strict-rules": "^1.3",
  892. "phpunit/phpunit": "^8.5 || ^9.5",
  893. "vimeo/psalm": "^4.25 || ^5.4"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Guilherme Blanco",
  908. "email": "guilhermeblanco@gmail.com"
  909. },
  910. {
  911. "name": "Roman Borschel",
  912. "email": "roman@code-factory.org"
  913. },
  914. {
  915. "name": "Benjamin Eberlei",
  916. "email": "kontakt@beberlei.de"
  917. },
  918. {
  919. "name": "Jonathan Wage",
  920. "email": "jonwage@gmail.com"
  921. },
  922. {
  923. "name": "Johannes Schmitt",
  924. "email": "schmittjoh@gmail.com"
  925. }
  926. ],
  927. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  928. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  929. "keywords": [
  930. "inflection",
  931. "inflector",
  932. "lowercase",
  933. "manipulation",
  934. "php",
  935. "plural",
  936. "singular",
  937. "strings",
  938. "uppercase",
  939. "words"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/doctrine/inflector/issues",
  943. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://www.doctrine-project.org/sponsorship.html",
  948. "type": "custom"
  949. },
  950. {
  951. "url": "https://www.patreon.com/phpdoctrine",
  952. "type": "patreon"
  953. },
  954. {
  955. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  956. "type": "tidelift"
  957. }
  958. ],
  959. "time": "2024-02-18T20:23:39+00:00"
  960. },
  961. {
  962. "name": "doctrine/instantiator",
  963. "version": "2.0.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/doctrine/instantiator.git",
  967. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  972. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": "^8.1"
  977. },
  978. "require-dev": {
  979. "doctrine/coding-standard": "^11",
  980. "ext-pdo": "*",
  981. "ext-phar": "*",
  982. "phpbench/phpbench": "^1.2",
  983. "phpstan/phpstan": "^1.9.4",
  984. "phpstan/phpstan-phpunit": "^1.3",
  985. "phpunit/phpunit": "^9.5.27",
  986. "vimeo/psalm": "^5.4"
  987. },
  988. "type": "library",
  989. "autoload": {
  990. "psr-4": {
  991. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Marco Pivetta",
  1001. "email": "ocramius@gmail.com",
  1002. "homepage": "https://ocramius.github.io/"
  1003. }
  1004. ],
  1005. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1006. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1007. "keywords": [
  1008. "constructor",
  1009. "instantiate"
  1010. ],
  1011. "support": {
  1012. "issues": "https://github.com/doctrine/instantiator/issues",
  1013. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1014. },
  1015. "funding": [
  1016. {
  1017. "url": "https://www.doctrine-project.org/sponsorship.html",
  1018. "type": "custom"
  1019. },
  1020. {
  1021. "url": "https://www.patreon.com/phpdoctrine",
  1022. "type": "patreon"
  1023. },
  1024. {
  1025. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1026. "type": "tidelift"
  1027. }
  1028. ],
  1029. "time": "2022-12-30T00:23:10+00:00"
  1030. },
  1031. {
  1032. "name": "doctrine/lexer",
  1033. "version": "3.0.1",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/doctrine/lexer.git",
  1037. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1042. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "php": "^8.1"
  1047. },
  1048. "require-dev": {
  1049. "doctrine/coding-standard": "^12",
  1050. "phpstan/phpstan": "^1.10",
  1051. "phpunit/phpunit": "^10.5",
  1052. "psalm/plugin-phpunit": "^0.18.3",
  1053. "vimeo/psalm": "^5.21"
  1054. },
  1055. "type": "library",
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Doctrine\\Common\\Lexer\\": "src"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "Guilherme Blanco",
  1068. "email": "guilhermeblanco@gmail.com"
  1069. },
  1070. {
  1071. "name": "Roman Borschel",
  1072. "email": "roman@code-factory.org"
  1073. },
  1074. {
  1075. "name": "Johannes Schmitt",
  1076. "email": "schmittjoh@gmail.com"
  1077. }
  1078. ],
  1079. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1080. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1081. "keywords": [
  1082. "annotations",
  1083. "docblock",
  1084. "lexer",
  1085. "parser",
  1086. "php"
  1087. ],
  1088. "support": {
  1089. "issues": "https://github.com/doctrine/lexer/issues",
  1090. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1091. },
  1092. "funding": [
  1093. {
  1094. "url": "https://www.doctrine-project.org/sponsorship.html",
  1095. "type": "custom"
  1096. },
  1097. {
  1098. "url": "https://www.patreon.com/phpdoctrine",
  1099. "type": "patreon"
  1100. },
  1101. {
  1102. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1103. "type": "tidelift"
  1104. }
  1105. ],
  1106. "time": "2024-02-05T11:56:58+00:00"
  1107. },
  1108. {
  1109. "name": "doctrine/migrations",
  1110. "version": "3.8.0",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/doctrine/migrations.git",
  1114. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/doctrine/migrations/zipball/535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1119. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "composer-runtime-api": "^2",
  1124. "doctrine/dbal": "^3.6 || ^4",
  1125. "doctrine/deprecations": "^0.5.3 || ^1",
  1126. "doctrine/event-manager": "^1.2 || ^2.0",
  1127. "php": "^8.1",
  1128. "psr/log": "^1.1.3 || ^2 || ^3",
  1129. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1130. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1131. "symfony/var-exporter": "^6.2 || ^7.0"
  1132. },
  1133. "conflict": {
  1134. "doctrine/orm": "<2.12 || >=4"
  1135. },
  1136. "require-dev": {
  1137. "doctrine/coding-standard": "^12",
  1138. "doctrine/orm": "^2.13 || ^3",
  1139. "doctrine/persistence": "^2 || ^3",
  1140. "doctrine/sql-formatter": "^1.0",
  1141. "ext-pdo_sqlite": "*",
  1142. "phpstan/phpstan": "^1.10",
  1143. "phpstan/phpstan-deprecation-rules": "^1.1",
  1144. "phpstan/phpstan-phpunit": "^1.3",
  1145. "phpstan/phpstan-strict-rules": "^1.4",
  1146. "phpstan/phpstan-symfony": "^1.3",
  1147. "phpunit/phpunit": "^10.3",
  1148. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1149. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1150. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1151. },
  1152. "suggest": {
  1153. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1154. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1155. },
  1156. "bin": [
  1157. "bin/doctrine-migrations"
  1158. ],
  1159. "type": "library",
  1160. "autoload": {
  1161. "psr-4": {
  1162. "Doctrine\\Migrations\\": "src"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Benjamin Eberlei",
  1172. "email": "kontakt@beberlei.de"
  1173. },
  1174. {
  1175. "name": "Jonathan Wage",
  1176. "email": "jonwage@gmail.com"
  1177. },
  1178. {
  1179. "name": "Michael Simonson",
  1180. "email": "contact@mikesimonson.com"
  1181. }
  1182. ],
  1183. "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.",
  1184. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1185. "keywords": [
  1186. "database",
  1187. "dbal",
  1188. "migrations"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/doctrine/migrations/issues",
  1192. "source": "https://github.com/doctrine/migrations/tree/3.8.0"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://www.doctrine-project.org/sponsorship.html",
  1197. "type": "custom"
  1198. },
  1199. {
  1200. "url": "https://www.patreon.com/phpdoctrine",
  1201. "type": "patreon"
  1202. },
  1203. {
  1204. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1205. "type": "tidelift"
  1206. }
  1207. ],
  1208. "time": "2024-06-26T14:12:46+00:00"
  1209. },
  1210. {
  1211. "name": "doctrine/orm",
  1212. "version": "3.2.1",
  1213. "source": {
  1214. "type": "git",
  1215. "url": "https://github.com/doctrine/orm.git",
  1216. "reference": "722cea6536775206e81744542b36fa7c9a4ea3e5"
  1217. },
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://api.github.com/repos/doctrine/orm/zipball/722cea6536775206e81744542b36fa7c9a4ea3e5",
  1221. "reference": "722cea6536775206e81744542b36fa7c9a4ea3e5",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "composer-runtime-api": "^2",
  1226. "doctrine/collections": "^2.2",
  1227. "doctrine/dbal": "^3.8.2 || ^4",
  1228. "doctrine/deprecations": "^0.5.3 || ^1",
  1229. "doctrine/event-manager": "^1.2 || ^2",
  1230. "doctrine/inflector": "^1.4 || ^2.0",
  1231. "doctrine/instantiator": "^1.3 || ^2",
  1232. "doctrine/lexer": "^3",
  1233. "doctrine/persistence": "^3.3.1",
  1234. "ext-ctype": "*",
  1235. "php": "^8.1",
  1236. "psr/cache": "^1 || ^2 || ^3",
  1237. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1238. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1239. },
  1240. "require-dev": {
  1241. "doctrine/coding-standard": "^12.0",
  1242. "phpbench/phpbench": "^1.0",
  1243. "phpstan/phpstan": "1.11.1",
  1244. "phpunit/phpunit": "^10.4.0",
  1245. "psr/log": "^1 || ^2 || ^3",
  1246. "squizlabs/php_codesniffer": "3.7.2",
  1247. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1248. "vimeo/psalm": "5.24.0"
  1249. },
  1250. "suggest": {
  1251. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1252. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1253. },
  1254. "type": "library",
  1255. "autoload": {
  1256. "psr-4": {
  1257. "Doctrine\\ORM\\": "src"
  1258. }
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Guilherme Blanco",
  1267. "email": "guilhermeblanco@gmail.com"
  1268. },
  1269. {
  1270. "name": "Roman Borschel",
  1271. "email": "roman@code-factory.org"
  1272. },
  1273. {
  1274. "name": "Benjamin Eberlei",
  1275. "email": "kontakt@beberlei.de"
  1276. },
  1277. {
  1278. "name": "Jonathan Wage",
  1279. "email": "jonwage@gmail.com"
  1280. },
  1281. {
  1282. "name": "Marco Pivetta",
  1283. "email": "ocramius@gmail.com"
  1284. }
  1285. ],
  1286. "description": "Object-Relational-Mapper for PHP",
  1287. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1288. "keywords": [
  1289. "database",
  1290. "orm"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/orm/issues",
  1294. "source": "https://github.com/doctrine/orm/tree/3.2.1"
  1295. },
  1296. "time": "2024-06-26T21:48:58+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/persistence",
  1300. "version": "3.3.3",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/persistence.git",
  1304. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1309. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "doctrine/event-manager": "^1 || ^2",
  1314. "php": "^7.2 || ^8.0",
  1315. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1316. },
  1317. "conflict": {
  1318. "doctrine/common": "<2.10"
  1319. },
  1320. "require-dev": {
  1321. "doctrine/coding-standard": "^12",
  1322. "doctrine/common": "^3.0",
  1323. "phpstan/phpstan": "1.11.1",
  1324. "phpstan/phpstan-phpunit": "^1",
  1325. "phpstan/phpstan-strict-rules": "^1.1",
  1326. "phpunit/phpunit": "^8.5 || ^9.5",
  1327. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1328. "vimeo/psalm": "4.30.0 || 5.24.0"
  1329. },
  1330. "type": "library",
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Doctrine\\Persistence\\": "src/Persistence"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "Guilherme Blanco",
  1343. "email": "guilhermeblanco@gmail.com"
  1344. },
  1345. {
  1346. "name": "Roman Borschel",
  1347. "email": "roman@code-factory.org"
  1348. },
  1349. {
  1350. "name": "Benjamin Eberlei",
  1351. "email": "kontakt@beberlei.de"
  1352. },
  1353. {
  1354. "name": "Jonathan Wage",
  1355. "email": "jonwage@gmail.com"
  1356. },
  1357. {
  1358. "name": "Johannes Schmitt",
  1359. "email": "schmittjoh@gmail.com"
  1360. },
  1361. {
  1362. "name": "Marco Pivetta",
  1363. "email": "ocramius@gmail.com"
  1364. }
  1365. ],
  1366. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1367. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1368. "keywords": [
  1369. "mapper",
  1370. "object",
  1371. "odm",
  1372. "orm",
  1373. "persistence"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/doctrine/persistence/issues",
  1377. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1378. },
  1379. "funding": [
  1380. {
  1381. "url": "https://www.doctrine-project.org/sponsorship.html",
  1382. "type": "custom"
  1383. },
  1384. {
  1385. "url": "https://www.patreon.com/phpdoctrine",
  1386. "type": "patreon"
  1387. },
  1388. {
  1389. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1390. "type": "tidelift"
  1391. }
  1392. ],
  1393. "time": "2024-06-20T10:14:30+00:00"
  1394. },
  1395. {
  1396. "name": "doctrine/sql-formatter",
  1397. "version": "1.4.0",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/doctrine/sql-formatter.git",
  1401. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1406. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "php": "^8.1"
  1411. },
  1412. "require-dev": {
  1413. "doctrine/coding-standard": "^12",
  1414. "phpstan/phpstan": "^1.10",
  1415. "phpunit/phpunit": "^10.5",
  1416. "vimeo/psalm": "^5.24"
  1417. },
  1418. "bin": [
  1419. "bin/sql-formatter"
  1420. ],
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Doctrine\\SqlFormatter\\": "src"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Jeremy Dorn",
  1434. "email": "jeremy@jeremydorn.com",
  1435. "homepage": "https://jeremydorn.com/"
  1436. }
  1437. ],
  1438. "description": "a PHP SQL highlighting library",
  1439. "homepage": "https://github.com/doctrine/sql-formatter/",
  1440. "keywords": [
  1441. "highlight",
  1442. "sql"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1446. "source": "https://github.com/doctrine/sql-formatter/tree/1.4.0"
  1447. },
  1448. "time": "2024-05-08T08:12:09+00:00"
  1449. },
  1450. {
  1451. "name": "egulias/email-validator",
  1452. "version": "4.0.2",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/egulias/EmailValidator.git",
  1456. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1461. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1462. "shasum": ""
  1463. },
  1464. "require": {
  1465. "doctrine/lexer": "^2.0 || ^3.0",
  1466. "php": ">=8.1",
  1467. "symfony/polyfill-intl-idn": "^1.26"
  1468. },
  1469. "require-dev": {
  1470. "phpunit/phpunit": "^10.2",
  1471. "vimeo/psalm": "^5.12"
  1472. },
  1473. "suggest": {
  1474. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "branch-alias": {
  1479. "dev-master": "4.0.x-dev"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "Egulias\\EmailValidator\\": "src"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Eduardo Gulias Davis"
  1494. }
  1495. ],
  1496. "description": "A library for validating emails against several RFCs",
  1497. "homepage": "https://github.com/egulias/EmailValidator",
  1498. "keywords": [
  1499. "email",
  1500. "emailvalidation",
  1501. "emailvalidator",
  1502. "validation",
  1503. "validator"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/egulias/EmailValidator/issues",
  1507. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://github.com/egulias",
  1512. "type": "github"
  1513. }
  1514. ],
  1515. "time": "2023-10-06T06:47:41+00:00"
  1516. },
  1517. {
  1518. "name": "league/commonmark",
  1519. "version": "2.5.1",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/thephpleague/commonmark.git",
  1523. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1528. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "ext-mbstring": "*",
  1533. "league/config": "^1.1.1",
  1534. "php": "^7.4 || ^8.0",
  1535. "psr/event-dispatcher": "^1.0",
  1536. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1537. "symfony/polyfill-php80": "^1.16"
  1538. },
  1539. "require-dev": {
  1540. "cebe/markdown": "^1.0",
  1541. "commonmark/cmark": "0.31.0",
  1542. "commonmark/commonmark.js": "0.31.0",
  1543. "composer/package-versions-deprecated": "^1.8",
  1544. "embed/embed": "^4.4",
  1545. "erusev/parsedown": "^1.0",
  1546. "ext-json": "*",
  1547. "github/gfm": "0.29.0",
  1548. "michelf/php-markdown": "^1.4 || ^2.0",
  1549. "nyholm/psr7": "^1.5",
  1550. "phpstan/phpstan": "^1.8.2",
  1551. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1552. "scrutinizer/ocular": "^1.8.1",
  1553. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1554. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1555. "unleashedtech/php-coding-standard": "^3.1.1",
  1556. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1557. },
  1558. "suggest": {
  1559. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1560. },
  1561. "type": "library",
  1562. "extra": {
  1563. "branch-alias": {
  1564. "dev-main": "2.6-dev"
  1565. }
  1566. },
  1567. "autoload": {
  1568. "psr-4": {
  1569. "League\\CommonMark\\": "src"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "BSD-3-Clause"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Colin O'Dell",
  1579. "email": "colinodell@gmail.com",
  1580. "homepage": "https://www.colinodell.com",
  1581. "role": "Lead Developer"
  1582. }
  1583. ],
  1584. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1585. "homepage": "https://commonmark.thephpleague.com",
  1586. "keywords": [
  1587. "commonmark",
  1588. "flavored",
  1589. "gfm",
  1590. "github",
  1591. "github-flavored",
  1592. "markdown",
  1593. "md",
  1594. "parser"
  1595. ],
  1596. "support": {
  1597. "docs": "https://commonmark.thephpleague.com/",
  1598. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1599. "issues": "https://github.com/thephpleague/commonmark/issues",
  1600. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1601. "source": "https://github.com/thephpleague/commonmark"
  1602. },
  1603. "funding": [
  1604. {
  1605. "url": "https://www.colinodell.com/sponsor",
  1606. "type": "custom"
  1607. },
  1608. {
  1609. "url": "https://www.paypal.me/colinpodell/10.00",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://github.com/colinodell",
  1614. "type": "github"
  1615. },
  1616. {
  1617. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1618. "type": "tidelift"
  1619. }
  1620. ],
  1621. "time": "2024-07-24T12:52:09+00:00"
  1622. },
  1623. {
  1624. "name": "league/config",
  1625. "version": "v1.2.0",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/thephpleague/config.git",
  1629. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1634. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "dflydev/dot-access-data": "^3.0.1",
  1639. "nette/schema": "^1.2",
  1640. "php": "^7.4 || ^8.0"
  1641. },
  1642. "require-dev": {
  1643. "phpstan/phpstan": "^1.8.2",
  1644. "phpunit/phpunit": "^9.5.5",
  1645. "scrutinizer/ocular": "^1.8.1",
  1646. "unleashedtech/php-coding-standard": "^3.1",
  1647. "vimeo/psalm": "^4.7.3"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-main": "1.2-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "psr-4": {
  1657. "League\\Config\\": "src"
  1658. }
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "BSD-3-Clause"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Colin O'Dell",
  1667. "email": "colinodell@gmail.com",
  1668. "homepage": "https://www.colinodell.com",
  1669. "role": "Lead Developer"
  1670. }
  1671. ],
  1672. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1673. "homepage": "https://config.thephpleague.com",
  1674. "keywords": [
  1675. "array",
  1676. "config",
  1677. "configuration",
  1678. "dot",
  1679. "dot-access",
  1680. "nested",
  1681. "schema"
  1682. ],
  1683. "support": {
  1684. "docs": "https://config.thephpleague.com/",
  1685. "issues": "https://github.com/thephpleague/config/issues",
  1686. "rss": "https://github.com/thephpleague/config/releases.atom",
  1687. "source": "https://github.com/thephpleague/config"
  1688. },
  1689. "funding": [
  1690. {
  1691. "url": "https://www.colinodell.com/sponsor",
  1692. "type": "custom"
  1693. },
  1694. {
  1695. "url": "https://www.paypal.me/colinpodell/10.00",
  1696. "type": "custom"
  1697. },
  1698. {
  1699. "url": "https://github.com/colinodell",
  1700. "type": "github"
  1701. }
  1702. ],
  1703. "time": "2022-12-11T20:36:23+00:00"
  1704. },
  1705. {
  1706. "name": "league/uri",
  1707. "version": "7.4.1",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/thephpleague/uri.git",
  1711. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1716. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "league/uri-interfaces": "^7.3",
  1721. "php": "^8.1"
  1722. },
  1723. "conflict": {
  1724. "league/uri-schemes": "^1.0"
  1725. },
  1726. "suggest": {
  1727. "ext-bcmath": "to improve IPV4 host parsing",
  1728. "ext-fileinfo": "to create Data URI from file contennts",
  1729. "ext-gmp": "to improve IPV4 host parsing",
  1730. "ext-intl": "to handle IDN host with the best performance",
  1731. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1732. "league/uri-components": "Needed to easily manipulate URI objects components",
  1733. "php-64bit": "to improve IPV4 host parsing",
  1734. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1735. },
  1736. "type": "library",
  1737. "extra": {
  1738. "branch-alias": {
  1739. "dev-master": "7.x-dev"
  1740. }
  1741. },
  1742. "autoload": {
  1743. "psr-4": {
  1744. "League\\Uri\\": ""
  1745. }
  1746. },
  1747. "notification-url": "https://packagist.org/downloads/",
  1748. "license": [
  1749. "MIT"
  1750. ],
  1751. "authors": [
  1752. {
  1753. "name": "Ignace Nyamagana Butera",
  1754. "email": "nyamsprod@gmail.com",
  1755. "homepage": "https://nyamsprod.com"
  1756. }
  1757. ],
  1758. "description": "URI manipulation library",
  1759. "homepage": "https://uri.thephpleague.com",
  1760. "keywords": [
  1761. "data-uri",
  1762. "file-uri",
  1763. "ftp",
  1764. "hostname",
  1765. "http",
  1766. "https",
  1767. "middleware",
  1768. "parse_str",
  1769. "parse_url",
  1770. "psr-7",
  1771. "query-string",
  1772. "querystring",
  1773. "rfc3986",
  1774. "rfc3987",
  1775. "rfc6570",
  1776. "uri",
  1777. "uri-template",
  1778. "url",
  1779. "ws"
  1780. ],
  1781. "support": {
  1782. "docs": "https://uri.thephpleague.com",
  1783. "forum": "https://thephpleague.slack.com",
  1784. "issues": "https://github.com/thephpleague/uri-src/issues",
  1785. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  1786. },
  1787. "funding": [
  1788. {
  1789. "url": "https://github.com/sponsors/nyamsprod",
  1790. "type": "github"
  1791. }
  1792. ],
  1793. "time": "2024-03-23T07:42:40+00:00"
  1794. },
  1795. {
  1796. "name": "league/uri-interfaces",
  1797. "version": "7.4.1",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1801. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  1806. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "ext-filter": "*",
  1811. "php": "^8.1",
  1812. "psr/http-factory": "^1",
  1813. "psr/http-message": "^1.1 || ^2.0"
  1814. },
  1815. "suggest": {
  1816. "ext-bcmath": "to improve IPV4 host parsing",
  1817. "ext-gmp": "to improve IPV4 host parsing",
  1818. "ext-intl": "to handle IDN host with the best performance",
  1819. "php-64bit": "to improve IPV4 host parsing",
  1820. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "branch-alias": {
  1825. "dev-master": "7.x-dev"
  1826. }
  1827. },
  1828. "autoload": {
  1829. "psr-4": {
  1830. "League\\Uri\\": ""
  1831. }
  1832. },
  1833. "notification-url": "https://packagist.org/downloads/",
  1834. "license": [
  1835. "MIT"
  1836. ],
  1837. "authors": [
  1838. {
  1839. "name": "Ignace Nyamagana Butera",
  1840. "email": "nyamsprod@gmail.com",
  1841. "homepage": "https://nyamsprod.com"
  1842. }
  1843. ],
  1844. "description": "Common interfaces and classes for URI representation and interaction",
  1845. "homepage": "https://uri.thephpleague.com",
  1846. "keywords": [
  1847. "data-uri",
  1848. "file-uri",
  1849. "ftp",
  1850. "hostname",
  1851. "http",
  1852. "https",
  1853. "parse_str",
  1854. "parse_url",
  1855. "psr-7",
  1856. "query-string",
  1857. "querystring",
  1858. "rfc3986",
  1859. "rfc3987",
  1860. "rfc6570",
  1861. "uri",
  1862. "url",
  1863. "ws"
  1864. ],
  1865. "support": {
  1866. "docs": "https://uri.thephpleague.com",
  1867. "forum": "https://thephpleague.slack.com",
  1868. "issues": "https://github.com/thephpleague/uri-src/issues",
  1869. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  1870. },
  1871. "funding": [
  1872. {
  1873. "url": "https://github.com/sponsors/nyamsprod",
  1874. "type": "github"
  1875. }
  1876. ],
  1877. "time": "2024-03-23T07:42:40+00:00"
  1878. },
  1879. {
  1880. "name": "masterminds/html5",
  1881. "version": "2.9.0",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/Masterminds/html5-php.git",
  1885. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1890. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "ext-dom": "*",
  1895. "php": ">=5.3.0"
  1896. },
  1897. "require-dev": {
  1898. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1899. },
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-master": "2.7-dev"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "Masterminds\\": "src"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Matt Butcher",
  1918. "email": "technosophos@gmail.com"
  1919. },
  1920. {
  1921. "name": "Matt Farina",
  1922. "email": "matt@mattfarina.com"
  1923. },
  1924. {
  1925. "name": "Asmir Mustafic",
  1926. "email": "goetas@gmail.com"
  1927. }
  1928. ],
  1929. "description": "An HTML5 parser and serializer.",
  1930. "homepage": "http://masterminds.github.io/html5-php",
  1931. "keywords": [
  1932. "HTML5",
  1933. "dom",
  1934. "html",
  1935. "parser",
  1936. "querypath",
  1937. "serializer",
  1938. "xml"
  1939. ],
  1940. "support": {
  1941. "issues": "https://github.com/Masterminds/html5-php/issues",
  1942. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  1943. },
  1944. "time": "2024-03-31T07:05:07+00:00"
  1945. },
  1946. {
  1947. "name": "monolog/monolog",
  1948. "version": "3.7.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/Seldaek/monolog.git",
  1952. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1957. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "php": ">=8.1",
  1962. "psr/log": "^2.0 || ^3.0"
  1963. },
  1964. "provide": {
  1965. "psr/log-implementation": "3.0.0"
  1966. },
  1967. "require-dev": {
  1968. "aws/aws-sdk-php": "^3.0",
  1969. "doctrine/couchdb": "~1.0@dev",
  1970. "elasticsearch/elasticsearch": "^7 || ^8",
  1971. "ext-json": "*",
  1972. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1973. "guzzlehttp/guzzle": "^7.4.5",
  1974. "guzzlehttp/psr7": "^2.2",
  1975. "mongodb/mongodb": "^1.8",
  1976. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1977. "phpstan/phpstan": "^1.9",
  1978. "phpstan/phpstan-deprecation-rules": "^1.0",
  1979. "phpstan/phpstan-strict-rules": "^1.4",
  1980. "phpunit/phpunit": "^10.5.17",
  1981. "predis/predis": "^1.1 || ^2",
  1982. "ruflin/elastica": "^7",
  1983. "symfony/mailer": "^5.4 || ^6",
  1984. "symfony/mime": "^5.4 || ^6"
  1985. },
  1986. "suggest": {
  1987. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1988. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1989. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1990. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1991. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1992. "ext-mbstring": "Allow to work properly with unicode symbols",
  1993. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1994. "ext-openssl": "Required to send log messages using SSL",
  1995. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1996. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1997. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1998. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1999. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2000. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2001. },
  2002. "type": "library",
  2003. "extra": {
  2004. "branch-alias": {
  2005. "dev-main": "3.x-dev"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Monolog\\": "src/Monolog"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Jordi Boggiano",
  2020. "email": "j.boggiano@seld.be",
  2021. "homepage": "https://seld.be"
  2022. }
  2023. ],
  2024. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2025. "homepage": "https://github.com/Seldaek/monolog",
  2026. "keywords": [
  2027. "log",
  2028. "logging",
  2029. "psr-3"
  2030. ],
  2031. "support": {
  2032. "issues": "https://github.com/Seldaek/monolog/issues",
  2033. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2034. },
  2035. "funding": [
  2036. {
  2037. "url": "https://github.com/Seldaek",
  2038. "type": "github"
  2039. },
  2040. {
  2041. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2042. "type": "tidelift"
  2043. }
  2044. ],
  2045. "time": "2024-06-28T09:40:51+00:00"
  2046. },
  2047. {
  2048. "name": "nette/schema",
  2049. "version": "v1.3.0",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/nette/schema.git",
  2053. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2058. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "nette/utils": "^4.0",
  2063. "php": "8.1 - 8.3"
  2064. },
  2065. "require-dev": {
  2066. "nette/tester": "^2.4",
  2067. "phpstan/phpstan-nette": "^1.0",
  2068. "tracy/tracy": "^2.8"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "1.3-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "classmap": [
  2078. "src/"
  2079. ]
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "BSD-3-Clause",
  2084. "GPL-2.0-only",
  2085. "GPL-3.0-only"
  2086. ],
  2087. "authors": [
  2088. {
  2089. "name": "David Grudl",
  2090. "homepage": "https://davidgrudl.com"
  2091. },
  2092. {
  2093. "name": "Nette Community",
  2094. "homepage": "https://nette.org/contributors"
  2095. }
  2096. ],
  2097. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2098. "homepage": "https://nette.org",
  2099. "keywords": [
  2100. "config",
  2101. "nette"
  2102. ],
  2103. "support": {
  2104. "issues": "https://github.com/nette/schema/issues",
  2105. "source": "https://github.com/nette/schema/tree/v1.3.0"
  2106. },
  2107. "time": "2023-12-11T11:54:22+00:00"
  2108. },
  2109. {
  2110. "name": "nette/utils",
  2111. "version": "v4.0.4",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/nette/utils.git",
  2115. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2120. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "php": ">=8.0 <8.4"
  2125. },
  2126. "conflict": {
  2127. "nette/finder": "<3",
  2128. "nette/schema": "<1.2.2"
  2129. },
  2130. "require-dev": {
  2131. "jetbrains/phpstorm-attributes": "dev-master",
  2132. "nette/tester": "^2.5",
  2133. "phpstan/phpstan": "^1.0",
  2134. "tracy/tracy": "^2.9"
  2135. },
  2136. "suggest": {
  2137. "ext-gd": "to use Image",
  2138. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2139. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2140. "ext-json": "to use Nette\\Utils\\Json",
  2141. "ext-mbstring": "to use Strings::lower() etc...",
  2142. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2143. },
  2144. "type": "library",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "4.0-dev"
  2148. }
  2149. },
  2150. "autoload": {
  2151. "classmap": [
  2152. "src/"
  2153. ]
  2154. },
  2155. "notification-url": "https://packagist.org/downloads/",
  2156. "license": [
  2157. "BSD-3-Clause",
  2158. "GPL-2.0-only",
  2159. "GPL-3.0-only"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "David Grudl",
  2164. "homepage": "https://davidgrudl.com"
  2165. },
  2166. {
  2167. "name": "Nette Community",
  2168. "homepage": "https://nette.org/contributors"
  2169. }
  2170. ],
  2171. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2172. "homepage": "https://nette.org",
  2173. "keywords": [
  2174. "array",
  2175. "core",
  2176. "datetime",
  2177. "images",
  2178. "json",
  2179. "nette",
  2180. "paginator",
  2181. "password",
  2182. "slugify",
  2183. "string",
  2184. "unicode",
  2185. "utf-8",
  2186. "utility",
  2187. "validation"
  2188. ],
  2189. "support": {
  2190. "issues": "https://github.com/nette/utils/issues",
  2191. "source": "https://github.com/nette/utils/tree/v4.0.4"
  2192. },
  2193. "time": "2024-01-17T16:50:36+00:00"
  2194. },
  2195. {
  2196. "name": "phpdocumentor/reflection-common",
  2197. "version": "2.2.0",
  2198. "source": {
  2199. "type": "git",
  2200. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2201. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2202. },
  2203. "dist": {
  2204. "type": "zip",
  2205. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2206. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2207. "shasum": ""
  2208. },
  2209. "require": {
  2210. "php": "^7.2 || ^8.0"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-2.x": "2.x-dev"
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "phpDocumentor\\Reflection\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Jaap van Otterdijk",
  2230. "email": "opensource@ijaap.nl"
  2231. }
  2232. ],
  2233. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2234. "homepage": "http://www.phpdoc.org",
  2235. "keywords": [
  2236. "FQSEN",
  2237. "phpDocumentor",
  2238. "phpdoc",
  2239. "reflection",
  2240. "static analysis"
  2241. ],
  2242. "support": {
  2243. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2244. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2245. },
  2246. "time": "2020-06-27T09:03:43+00:00"
  2247. },
  2248. {
  2249. "name": "phpdocumentor/reflection-docblock",
  2250. "version": "5.4.1",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2254. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2259. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "doctrine/deprecations": "^1.1",
  2264. "ext-filter": "*",
  2265. "php": "^7.4 || ^8.0",
  2266. "phpdocumentor/reflection-common": "^2.2",
  2267. "phpdocumentor/type-resolver": "^1.7",
  2268. "phpstan/phpdoc-parser": "^1.7",
  2269. "webmozart/assert": "^1.9.1"
  2270. },
  2271. "require-dev": {
  2272. "mockery/mockery": "~1.3.5",
  2273. "phpstan/extension-installer": "^1.1",
  2274. "phpstan/phpstan": "^1.8",
  2275. "phpstan/phpstan-mockery": "^1.1",
  2276. "phpstan/phpstan-webmozart-assert": "^1.2",
  2277. "phpunit/phpunit": "^9.5",
  2278. "vimeo/psalm": "^5.13"
  2279. },
  2280. "type": "library",
  2281. "extra": {
  2282. "branch-alias": {
  2283. "dev-master": "5.x-dev"
  2284. }
  2285. },
  2286. "autoload": {
  2287. "psr-4": {
  2288. "phpDocumentor\\Reflection\\": "src"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Mike van Riel",
  2298. "email": "me@mikevanriel.com"
  2299. },
  2300. {
  2301. "name": "Jaap van Otterdijk",
  2302. "email": "opensource@ijaap.nl"
  2303. }
  2304. ],
  2305. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2306. "support": {
  2307. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2308. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2309. },
  2310. "time": "2024-05-21T05:55:05+00:00"
  2311. },
  2312. {
  2313. "name": "phpdocumentor/type-resolver",
  2314. "version": "1.8.2",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2318. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2323. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "doctrine/deprecations": "^1.0",
  2328. "php": "^7.3 || ^8.0",
  2329. "phpdocumentor/reflection-common": "^2.0",
  2330. "phpstan/phpdoc-parser": "^1.13"
  2331. },
  2332. "require-dev": {
  2333. "ext-tokenizer": "*",
  2334. "phpbench/phpbench": "^1.2",
  2335. "phpstan/extension-installer": "^1.1",
  2336. "phpstan/phpstan": "^1.8",
  2337. "phpstan/phpstan-phpunit": "^1.1",
  2338. "phpunit/phpunit": "^9.5",
  2339. "rector/rector": "^0.13.9",
  2340. "vimeo/psalm": "^4.25"
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-1.x": "1.x-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "phpDocumentor\\Reflection\\": "src"
  2351. }
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "MIT"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Mike van Riel",
  2360. "email": "me@mikevanriel.com"
  2361. }
  2362. ],
  2363. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2364. "support": {
  2365. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2366. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2367. },
  2368. "time": "2024-02-23T11:10:43+00:00"
  2369. },
  2370. {
  2371. "name": "phpstan/phpdoc-parser",
  2372. "version": "1.29.1",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2376. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2381. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "php": "^7.2 || ^8.0"
  2386. },
  2387. "require-dev": {
  2388. "doctrine/annotations": "^2.0",
  2389. "nikic/php-parser": "^4.15",
  2390. "php-parallel-lint/php-parallel-lint": "^1.2",
  2391. "phpstan/extension-installer": "^1.0",
  2392. "phpstan/phpstan": "^1.5",
  2393. "phpstan/phpstan-phpunit": "^1.1",
  2394. "phpstan/phpstan-strict-rules": "^1.0",
  2395. "phpunit/phpunit": "^9.5",
  2396. "symfony/process": "^5.2"
  2397. },
  2398. "type": "library",
  2399. "autoload": {
  2400. "psr-4": {
  2401. "PHPStan\\PhpDocParser\\": [
  2402. "src/"
  2403. ]
  2404. }
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "MIT"
  2409. ],
  2410. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2411. "support": {
  2412. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2413. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
  2414. },
  2415. "time": "2024-05-31T08:52:43+00:00"
  2416. },
  2417. {
  2418. "name": "psr/cache",
  2419. "version": "3.0.0",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/php-fig/cache.git",
  2423. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2428. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": ">=8.0.0"
  2433. },
  2434. "type": "library",
  2435. "extra": {
  2436. "branch-alias": {
  2437. "dev-master": "1.0.x-dev"
  2438. }
  2439. },
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Psr\\Cache\\": "src/"
  2443. }
  2444. },
  2445. "notification-url": "https://packagist.org/downloads/",
  2446. "license": [
  2447. "MIT"
  2448. ],
  2449. "authors": [
  2450. {
  2451. "name": "PHP-FIG",
  2452. "homepage": "https://www.php-fig.org/"
  2453. }
  2454. ],
  2455. "description": "Common interface for caching libraries",
  2456. "keywords": [
  2457. "cache",
  2458. "psr",
  2459. "psr-6"
  2460. ],
  2461. "support": {
  2462. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2463. },
  2464. "time": "2021-02-03T23:26:27+00:00"
  2465. },
  2466. {
  2467. "name": "psr/clock",
  2468. "version": "1.0.0",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/php-fig/clock.git",
  2472. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2477. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "php": "^7.0 || ^8.0"
  2482. },
  2483. "type": "library",
  2484. "autoload": {
  2485. "psr-4": {
  2486. "Psr\\Clock\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "PHP-FIG",
  2496. "homepage": "https://www.php-fig.org/"
  2497. }
  2498. ],
  2499. "description": "Common interface for reading the clock.",
  2500. "homepage": "https://github.com/php-fig/clock",
  2501. "keywords": [
  2502. "clock",
  2503. "now",
  2504. "psr",
  2505. "psr-20",
  2506. "time"
  2507. ],
  2508. "support": {
  2509. "issues": "https://github.com/php-fig/clock/issues",
  2510. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2511. },
  2512. "time": "2022-11-25T14:36:26+00:00"
  2513. },
  2514. {
  2515. "name": "psr/container",
  2516. "version": "2.0.2",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/php-fig/container.git",
  2520. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2525. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "php": ">=7.4.0"
  2530. },
  2531. "type": "library",
  2532. "extra": {
  2533. "branch-alias": {
  2534. "dev-master": "2.0.x-dev"
  2535. }
  2536. },
  2537. "autoload": {
  2538. "psr-4": {
  2539. "Psr\\Container\\": "src/"
  2540. }
  2541. },
  2542. "notification-url": "https://packagist.org/downloads/",
  2543. "license": [
  2544. "MIT"
  2545. ],
  2546. "authors": [
  2547. {
  2548. "name": "PHP-FIG",
  2549. "homepage": "https://www.php-fig.org/"
  2550. }
  2551. ],
  2552. "description": "Common Container Interface (PHP FIG PSR-11)",
  2553. "homepage": "https://github.com/php-fig/container",
  2554. "keywords": [
  2555. "PSR-11",
  2556. "container",
  2557. "container-interface",
  2558. "container-interop",
  2559. "psr"
  2560. ],
  2561. "support": {
  2562. "issues": "https://github.com/php-fig/container/issues",
  2563. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2564. },
  2565. "time": "2021-11-05T16:47:00+00:00"
  2566. },
  2567. {
  2568. "name": "psr/event-dispatcher",
  2569. "version": "1.0.0",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/php-fig/event-dispatcher.git",
  2573. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2578. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2579. "shasum": ""
  2580. },
  2581. "require": {
  2582. "php": ">=7.2.0"
  2583. },
  2584. "type": "library",
  2585. "extra": {
  2586. "branch-alias": {
  2587. "dev-master": "1.0.x-dev"
  2588. }
  2589. },
  2590. "autoload": {
  2591. "psr-4": {
  2592. "Psr\\EventDispatcher\\": "src/"
  2593. }
  2594. },
  2595. "notification-url": "https://packagist.org/downloads/",
  2596. "license": [
  2597. "MIT"
  2598. ],
  2599. "authors": [
  2600. {
  2601. "name": "PHP-FIG",
  2602. "homepage": "http://www.php-fig.org/"
  2603. }
  2604. ],
  2605. "description": "Standard interfaces for event handling.",
  2606. "keywords": [
  2607. "events",
  2608. "psr",
  2609. "psr-14"
  2610. ],
  2611. "support": {
  2612. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2613. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2614. },
  2615. "time": "2019-01-08T18:20:26+00:00"
  2616. },
  2617. {
  2618. "name": "psr/http-factory",
  2619. "version": "1.1.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/php-fig/http-factory.git",
  2623. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2628. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "php": ">=7.1",
  2633. "psr/http-message": "^1.0 || ^2.0"
  2634. },
  2635. "type": "library",
  2636. "extra": {
  2637. "branch-alias": {
  2638. "dev-master": "1.0.x-dev"
  2639. }
  2640. },
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Psr\\Http\\Message\\": "src/"
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "PHP-FIG",
  2653. "homepage": "https://www.php-fig.org/"
  2654. }
  2655. ],
  2656. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2657. "keywords": [
  2658. "factory",
  2659. "http",
  2660. "message",
  2661. "psr",
  2662. "psr-17",
  2663. "psr-7",
  2664. "request",
  2665. "response"
  2666. ],
  2667. "support": {
  2668. "source": "https://github.com/php-fig/http-factory"
  2669. },
  2670. "time": "2024-04-15T12:06:14+00:00"
  2671. },
  2672. {
  2673. "name": "psr/http-message",
  2674. "version": "2.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/php-fig/http-message.git",
  2678. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2683. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2684. "shasum": ""
  2685. },
  2686. "require": {
  2687. "php": "^7.2 || ^8.0"
  2688. },
  2689. "type": "library",
  2690. "extra": {
  2691. "branch-alias": {
  2692. "dev-master": "2.0.x-dev"
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Psr\\Http\\Message\\": "src/"
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "PHP-FIG",
  2707. "homepage": "https://www.php-fig.org/"
  2708. }
  2709. ],
  2710. "description": "Common interface for HTTP messages",
  2711. "homepage": "https://github.com/php-fig/http-message",
  2712. "keywords": [
  2713. "http",
  2714. "http-message",
  2715. "psr",
  2716. "psr-7",
  2717. "request",
  2718. "response"
  2719. ],
  2720. "support": {
  2721. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2722. },
  2723. "time": "2023-04-04T09:54:51+00:00"
  2724. },
  2725. {
  2726. "name": "psr/link",
  2727. "version": "2.0.1",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/php-fig/link.git",
  2731. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2736. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": ">=8.0.0"
  2741. },
  2742. "suggest": {
  2743. "fig/link-util": "Provides some useful PSR-13 utilities"
  2744. },
  2745. "type": "library",
  2746. "extra": {
  2747. "branch-alias": {
  2748. "dev-master": "2.0.x-dev"
  2749. }
  2750. },
  2751. "autoload": {
  2752. "psr-4": {
  2753. "Psr\\Link\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "PHP-FIG",
  2763. "homepage": "http://www.php-fig.org/"
  2764. }
  2765. ],
  2766. "description": "Common interfaces for HTTP links",
  2767. "homepage": "https://github.com/php-fig/link",
  2768. "keywords": [
  2769. "http",
  2770. "http-link",
  2771. "link",
  2772. "psr",
  2773. "psr-13",
  2774. "rest"
  2775. ],
  2776. "support": {
  2777. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2778. },
  2779. "time": "2021-03-11T23:00:27+00:00"
  2780. },
  2781. {
  2782. "name": "psr/log",
  2783. "version": "3.0.0",
  2784. "source": {
  2785. "type": "git",
  2786. "url": "https://github.com/php-fig/log.git",
  2787. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2788. },
  2789. "dist": {
  2790. "type": "zip",
  2791. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2792. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2793. "shasum": ""
  2794. },
  2795. "require": {
  2796. "php": ">=8.0.0"
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "3.x-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Psr\\Log\\": "src"
  2807. }
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "PHP-FIG",
  2816. "homepage": "https://www.php-fig.org/"
  2817. }
  2818. ],
  2819. "description": "Common interface for logging libraries",
  2820. "homepage": "https://github.com/php-fig/log",
  2821. "keywords": [
  2822. "log",
  2823. "psr",
  2824. "psr-3"
  2825. ],
  2826. "support": {
  2827. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2828. },
  2829. "time": "2021-07-14T16:46:02+00:00"
  2830. },
  2831. {
  2832. "name": "symfony/apache-pack",
  2833. "version": "v1.0.1",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://github.com/symfony/apache-pack.git",
  2837. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2842. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2843. "shasum": ""
  2844. },
  2845. "type": "symfony-pack",
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "description": "A pack for Apache support in Symfony",
  2851. "support": {
  2852. "issues": "https://github.com/symfony/apache-pack/issues",
  2853. "source": "https://github.com/symfony/apache-pack/tree/master"
  2854. },
  2855. "time": "2017-12-12T01:46:35+00:00"
  2856. },
  2857. {
  2858. "name": "symfony/asset",
  2859. "version": "v7.1.1",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/symfony/asset.git",
  2863. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2868. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "php": ">=8.2"
  2873. },
  2874. "conflict": {
  2875. "symfony/http-foundation": "<6.4"
  2876. },
  2877. "require-dev": {
  2878. "symfony/http-client": "^6.4|^7.0",
  2879. "symfony/http-foundation": "^6.4|^7.0",
  2880. "symfony/http-kernel": "^6.4|^7.0"
  2881. },
  2882. "type": "library",
  2883. "autoload": {
  2884. "psr-4": {
  2885. "Symfony\\Component\\Asset\\": ""
  2886. },
  2887. "exclude-from-classmap": [
  2888. "/Tests/"
  2889. ]
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "MIT"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Fabien Potencier",
  2898. "email": "fabien@symfony.com"
  2899. },
  2900. {
  2901. "name": "Symfony Community",
  2902. "homepage": "https://symfony.com/contributors"
  2903. }
  2904. ],
  2905. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2906. "homepage": "https://symfony.com",
  2907. "support": {
  2908. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2909. },
  2910. "funding": [
  2911. {
  2912. "url": "https://symfony.com/sponsor",
  2913. "type": "custom"
  2914. },
  2915. {
  2916. "url": "https://github.com/fabpot",
  2917. "type": "github"
  2918. },
  2919. {
  2920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2921. "type": "tidelift"
  2922. }
  2923. ],
  2924. "time": "2024-05-31T14:57:53+00:00"
  2925. },
  2926. {
  2927. "name": "symfony/cache",
  2928. "version": "v7.1.3",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/symfony/cache.git",
  2932. "reference": "8ac37acee794372f9732fe8a61a8221f6762148e"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/symfony/cache/zipball/8ac37acee794372f9732fe8a61a8221f6762148e",
  2937. "reference": "8ac37acee794372f9732fe8a61a8221f6762148e",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "php": ">=8.2",
  2942. "psr/cache": "^2.0|^3.0",
  2943. "psr/log": "^1.1|^2|^3",
  2944. "symfony/cache-contracts": "^2.5|^3",
  2945. "symfony/deprecation-contracts": "^2.5|^3.0",
  2946. "symfony/service-contracts": "^2.5|^3",
  2947. "symfony/var-exporter": "^6.4|^7.0"
  2948. },
  2949. "conflict": {
  2950. "doctrine/dbal": "<3.6",
  2951. "symfony/dependency-injection": "<6.4",
  2952. "symfony/http-kernel": "<6.4",
  2953. "symfony/var-dumper": "<6.4"
  2954. },
  2955. "provide": {
  2956. "psr/cache-implementation": "2.0|3.0",
  2957. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2958. "symfony/cache-implementation": "1.1|2.0|3.0"
  2959. },
  2960. "require-dev": {
  2961. "cache/integration-tests": "dev-master",
  2962. "doctrine/dbal": "^3.6|^4",
  2963. "predis/predis": "^1.1|^2.0",
  2964. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2965. "symfony/config": "^6.4|^7.0",
  2966. "symfony/dependency-injection": "^6.4|^7.0",
  2967. "symfony/filesystem": "^6.4|^7.0",
  2968. "symfony/http-kernel": "^6.4|^7.0",
  2969. "symfony/messenger": "^6.4|^7.0",
  2970. "symfony/var-dumper": "^6.4|^7.0"
  2971. },
  2972. "type": "library",
  2973. "autoload": {
  2974. "psr-4": {
  2975. "Symfony\\Component\\Cache\\": ""
  2976. },
  2977. "classmap": [
  2978. "Traits/ValueWrapper.php"
  2979. ],
  2980. "exclude-from-classmap": [
  2981. "/Tests/"
  2982. ]
  2983. },
  2984. "notification-url": "https://packagist.org/downloads/",
  2985. "license": [
  2986. "MIT"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "Nicolas Grekas",
  2991. "email": "p@tchwork.com"
  2992. },
  2993. {
  2994. "name": "Symfony Community",
  2995. "homepage": "https://symfony.com/contributors"
  2996. }
  2997. ],
  2998. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2999. "homepage": "https://symfony.com",
  3000. "keywords": [
  3001. "caching",
  3002. "psr6"
  3003. ],
  3004. "support": {
  3005. "source": "https://github.com/symfony/cache/tree/v7.1.3"
  3006. },
  3007. "funding": [
  3008. {
  3009. "url": "https://symfony.com/sponsor",
  3010. "type": "custom"
  3011. },
  3012. {
  3013. "url": "https://github.com/fabpot",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3018. "type": "tidelift"
  3019. }
  3020. ],
  3021. "time": "2024-07-17T06:10:24+00:00"
  3022. },
  3023. {
  3024. "name": "symfony/cache-contracts",
  3025. "version": "v3.5.0",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/symfony/cache-contracts.git",
  3029. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3034. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "php": ">=8.1",
  3039. "psr/cache": "^3.0"
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-main": "3.5-dev"
  3045. },
  3046. "thanks": {
  3047. "name": "symfony/contracts",
  3048. "url": "https://github.com/symfony/contracts"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Symfony\\Contracts\\Cache\\": ""
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "Nicolas Grekas",
  3063. "email": "p@tchwork.com"
  3064. },
  3065. {
  3066. "name": "Symfony Community",
  3067. "homepage": "https://symfony.com/contributors"
  3068. }
  3069. ],
  3070. "description": "Generic abstractions related to caching",
  3071. "homepage": "https://symfony.com",
  3072. "keywords": [
  3073. "abstractions",
  3074. "contracts",
  3075. "decoupling",
  3076. "interfaces",
  3077. "interoperability",
  3078. "standards"
  3079. ],
  3080. "support": {
  3081. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3082. },
  3083. "funding": [
  3084. {
  3085. "url": "https://symfony.com/sponsor",
  3086. "type": "custom"
  3087. },
  3088. {
  3089. "url": "https://github.com/fabpot",
  3090. "type": "github"
  3091. },
  3092. {
  3093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3094. "type": "tidelift"
  3095. }
  3096. ],
  3097. "time": "2024-04-18T09:32:20+00:00"
  3098. },
  3099. {
  3100. "name": "symfony/clock",
  3101. "version": "v7.1.1",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/symfony/clock.git",
  3105. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3110. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "php": ">=8.2",
  3115. "psr/clock": "^1.0",
  3116. "symfony/polyfill-php83": "^1.28"
  3117. },
  3118. "provide": {
  3119. "psr/clock-implementation": "1.0"
  3120. },
  3121. "type": "library",
  3122. "autoload": {
  3123. "files": [
  3124. "Resources/now.php"
  3125. ],
  3126. "psr-4": {
  3127. "Symfony\\Component\\Clock\\": ""
  3128. },
  3129. "exclude-from-classmap": [
  3130. "/Tests/"
  3131. ]
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Nicolas Grekas",
  3140. "email": "p@tchwork.com"
  3141. },
  3142. {
  3143. "name": "Symfony Community",
  3144. "homepage": "https://symfony.com/contributors"
  3145. }
  3146. ],
  3147. "description": "Decouples applications from the system clock",
  3148. "homepage": "https://symfony.com",
  3149. "keywords": [
  3150. "clock",
  3151. "psr20",
  3152. "time"
  3153. ],
  3154. "support": {
  3155. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3156. },
  3157. "funding": [
  3158. {
  3159. "url": "https://symfony.com/sponsor",
  3160. "type": "custom"
  3161. },
  3162. {
  3163. "url": "https://github.com/fabpot",
  3164. "type": "github"
  3165. },
  3166. {
  3167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3168. "type": "tidelift"
  3169. }
  3170. ],
  3171. "time": "2024-05-31T14:57:53+00:00"
  3172. },
  3173. {
  3174. "name": "symfony/config",
  3175. "version": "v7.1.1",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/symfony/config.git",
  3179. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3184. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "php": ">=8.2",
  3189. "symfony/deprecation-contracts": "^2.5|^3",
  3190. "symfony/filesystem": "^7.1",
  3191. "symfony/polyfill-ctype": "~1.8"
  3192. },
  3193. "conflict": {
  3194. "symfony/finder": "<6.4",
  3195. "symfony/service-contracts": "<2.5"
  3196. },
  3197. "require-dev": {
  3198. "symfony/event-dispatcher": "^6.4|^7.0",
  3199. "symfony/finder": "^6.4|^7.0",
  3200. "symfony/messenger": "^6.4|^7.0",
  3201. "symfony/service-contracts": "^2.5|^3",
  3202. "symfony/yaml": "^6.4|^7.0"
  3203. },
  3204. "type": "library",
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Symfony\\Component\\Config\\": ""
  3208. },
  3209. "exclude-from-classmap": [
  3210. "/Tests/"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Fabien Potencier",
  3220. "email": "fabien@symfony.com"
  3221. },
  3222. {
  3223. "name": "Symfony Community",
  3224. "homepage": "https://symfony.com/contributors"
  3225. }
  3226. ],
  3227. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3228. "homepage": "https://symfony.com",
  3229. "support": {
  3230. "source": "https://github.com/symfony/config/tree/v7.1.1"
  3231. },
  3232. "funding": [
  3233. {
  3234. "url": "https://symfony.com/sponsor",
  3235. "type": "custom"
  3236. },
  3237. {
  3238. "url": "https://github.com/fabpot",
  3239. "type": "github"
  3240. },
  3241. {
  3242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3243. "type": "tidelift"
  3244. }
  3245. ],
  3246. "time": "2024-05-31T14:57:53+00:00"
  3247. },
  3248. {
  3249. "name": "symfony/console",
  3250. "version": "v7.1.3",
  3251. "source": {
  3252. "type": "git",
  3253. "url": "https://github.com/symfony/console.git",
  3254. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9"
  3255. },
  3256. "dist": {
  3257. "type": "zip",
  3258. "url": "https://api.github.com/repos/symfony/console/zipball/cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  3259. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  3260. "shasum": ""
  3261. },
  3262. "require": {
  3263. "php": ">=8.2",
  3264. "symfony/polyfill-mbstring": "~1.0",
  3265. "symfony/service-contracts": "^2.5|^3",
  3266. "symfony/string": "^6.4|^7.0"
  3267. },
  3268. "conflict": {
  3269. "symfony/dependency-injection": "<6.4",
  3270. "symfony/dotenv": "<6.4",
  3271. "symfony/event-dispatcher": "<6.4",
  3272. "symfony/lock": "<6.4",
  3273. "symfony/process": "<6.4"
  3274. },
  3275. "provide": {
  3276. "psr/log-implementation": "1.0|2.0|3.0"
  3277. },
  3278. "require-dev": {
  3279. "psr/log": "^1|^2|^3",
  3280. "symfony/config": "^6.4|^7.0",
  3281. "symfony/dependency-injection": "^6.4|^7.0",
  3282. "symfony/event-dispatcher": "^6.4|^7.0",
  3283. "symfony/http-foundation": "^6.4|^7.0",
  3284. "symfony/http-kernel": "^6.4|^7.0",
  3285. "symfony/lock": "^6.4|^7.0",
  3286. "symfony/messenger": "^6.4|^7.0",
  3287. "symfony/process": "^6.4|^7.0",
  3288. "symfony/stopwatch": "^6.4|^7.0",
  3289. "symfony/var-dumper": "^6.4|^7.0"
  3290. },
  3291. "type": "library",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Symfony\\Component\\Console\\": ""
  3295. },
  3296. "exclude-from-classmap": [
  3297. "/Tests/"
  3298. ]
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Fabien Potencier",
  3307. "email": "fabien@symfony.com"
  3308. },
  3309. {
  3310. "name": "Symfony Community",
  3311. "homepage": "https://symfony.com/contributors"
  3312. }
  3313. ],
  3314. "description": "Eases the creation of beautiful and testable command line interfaces",
  3315. "homepage": "https://symfony.com",
  3316. "keywords": [
  3317. "cli",
  3318. "command-line",
  3319. "console",
  3320. "terminal"
  3321. ],
  3322. "support": {
  3323. "source": "https://github.com/symfony/console/tree/v7.1.3"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2024-07-26T12:41:01+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/dependency-injection",
  3343. "version": "v7.1.3",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/dependency-injection.git",
  3347. "reference": "8126f0be4ff984e4db0140e60917900a53facb49"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8126f0be4ff984e4db0140e60917900a53facb49",
  3352. "reference": "8126f0be4ff984e4db0140e60917900a53facb49",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=8.2",
  3357. "psr/container": "^1.1|^2.0",
  3358. "symfony/deprecation-contracts": "^2.5|^3",
  3359. "symfony/service-contracts": "^3.5",
  3360. "symfony/var-exporter": "^6.4|^7.0"
  3361. },
  3362. "conflict": {
  3363. "ext-psr": "<1.1|>=2",
  3364. "symfony/config": "<6.4",
  3365. "symfony/finder": "<6.4",
  3366. "symfony/yaml": "<6.4"
  3367. },
  3368. "provide": {
  3369. "psr/container-implementation": "1.1|2.0",
  3370. "symfony/service-implementation": "1.1|2.0|3.0"
  3371. },
  3372. "require-dev": {
  3373. "symfony/config": "^6.4|^7.0",
  3374. "symfony/expression-language": "^6.4|^7.0",
  3375. "symfony/yaml": "^6.4|^7.0"
  3376. },
  3377. "type": "library",
  3378. "autoload": {
  3379. "psr-4": {
  3380. "Symfony\\Component\\DependencyInjection\\": ""
  3381. },
  3382. "exclude-from-classmap": [
  3383. "/Tests/"
  3384. ]
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Fabien Potencier",
  3393. "email": "fabien@symfony.com"
  3394. },
  3395. {
  3396. "name": "Symfony Community",
  3397. "homepage": "https://symfony.com/contributors"
  3398. }
  3399. ],
  3400. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3401. "homepage": "https://symfony.com",
  3402. "support": {
  3403. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.3"
  3404. },
  3405. "funding": [
  3406. {
  3407. "url": "https://symfony.com/sponsor",
  3408. "type": "custom"
  3409. },
  3410. {
  3411. "url": "https://github.com/fabpot",
  3412. "type": "github"
  3413. },
  3414. {
  3415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3416. "type": "tidelift"
  3417. }
  3418. ],
  3419. "time": "2024-07-26T07:35:39+00:00"
  3420. },
  3421. {
  3422. "name": "symfony/deprecation-contracts",
  3423. "version": "v3.5.0",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/symfony/deprecation-contracts.git",
  3427. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3432. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "php": ">=8.1"
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-main": "3.5-dev"
  3442. },
  3443. "thanks": {
  3444. "name": "symfony/contracts",
  3445. "url": "https://github.com/symfony/contracts"
  3446. }
  3447. },
  3448. "autoload": {
  3449. "files": [
  3450. "function.php"
  3451. ]
  3452. },
  3453. "notification-url": "https://packagist.org/downloads/",
  3454. "license": [
  3455. "MIT"
  3456. ],
  3457. "authors": [
  3458. {
  3459. "name": "Nicolas Grekas",
  3460. "email": "p@tchwork.com"
  3461. },
  3462. {
  3463. "name": "Symfony Community",
  3464. "homepage": "https://symfony.com/contributors"
  3465. }
  3466. ],
  3467. "description": "A generic function and convention to trigger deprecation notices",
  3468. "homepage": "https://symfony.com",
  3469. "support": {
  3470. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3471. },
  3472. "funding": [
  3473. {
  3474. "url": "https://symfony.com/sponsor",
  3475. "type": "custom"
  3476. },
  3477. {
  3478. "url": "https://github.com/fabpot",
  3479. "type": "github"
  3480. },
  3481. {
  3482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3483. "type": "tidelift"
  3484. }
  3485. ],
  3486. "time": "2024-04-18T09:32:20+00:00"
  3487. },
  3488. {
  3489. "name": "symfony/doctrine-bridge",
  3490. "version": "v7.1.3",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/symfony/doctrine-bridge.git",
  3494. "reference": "b526822483124b62ff3cda14237418408f444e4d"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b526822483124b62ff3cda14237418408f444e4d",
  3499. "reference": "b526822483124b62ff3cda14237418408f444e4d",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "doctrine/event-manager": "^2",
  3504. "doctrine/persistence": "^3.1",
  3505. "php": ">=8.2",
  3506. "symfony/deprecation-contracts": "^2.5|^3",
  3507. "symfony/polyfill-ctype": "~1.8",
  3508. "symfony/polyfill-mbstring": "~1.0",
  3509. "symfony/service-contracts": "^2.5|^3"
  3510. },
  3511. "conflict": {
  3512. "doctrine/dbal": "<3.6",
  3513. "doctrine/lexer": "<1.1",
  3514. "doctrine/orm": "<2.15",
  3515. "symfony/cache": "<6.4",
  3516. "symfony/dependency-injection": "<6.4",
  3517. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3518. "symfony/http-foundation": "<6.4",
  3519. "symfony/http-kernel": "<6.4",
  3520. "symfony/lock": "<6.4",
  3521. "symfony/messenger": "<6.4",
  3522. "symfony/property-info": "<6.4",
  3523. "symfony/security-bundle": "<6.4",
  3524. "symfony/security-core": "<6.4",
  3525. "symfony/validator": "<6.4"
  3526. },
  3527. "require-dev": {
  3528. "doctrine/collections": "^1.0|^2.0",
  3529. "doctrine/data-fixtures": "^1.1",
  3530. "doctrine/dbal": "^3.6|^4",
  3531. "doctrine/orm": "^2.15|^3",
  3532. "psr/log": "^1|^2|^3",
  3533. "symfony/cache": "^6.4|^7.0",
  3534. "symfony/config": "^6.4|^7.0",
  3535. "symfony/dependency-injection": "^6.4|^7.0",
  3536. "symfony/doctrine-messenger": "^6.4|^7.0",
  3537. "symfony/expression-language": "^6.4|^7.0",
  3538. "symfony/form": "^6.4.6|^7.0.6",
  3539. "symfony/http-kernel": "^6.4|^7.0",
  3540. "symfony/lock": "^6.4|^7.0",
  3541. "symfony/messenger": "^6.4|^7.0",
  3542. "symfony/property-access": "^6.4|^7.0",
  3543. "symfony/property-info": "^6.4|^7.0",
  3544. "symfony/security-core": "^6.4|^7.0",
  3545. "symfony/stopwatch": "^6.4|^7.0",
  3546. "symfony/translation": "^6.4|^7.0",
  3547. "symfony/type-info": "^7.1",
  3548. "symfony/uid": "^6.4|^7.0",
  3549. "symfony/validator": "^6.4|^7.0",
  3550. "symfony/var-dumper": "^6.4|^7.0"
  3551. },
  3552. "type": "symfony-bridge",
  3553. "autoload": {
  3554. "psr-4": {
  3555. "Symfony\\Bridge\\Doctrine\\": ""
  3556. },
  3557. "exclude-from-classmap": [
  3558. "/Tests/"
  3559. ]
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Fabien Potencier",
  3568. "email": "fabien@symfony.com"
  3569. },
  3570. {
  3571. "name": "Symfony Community",
  3572. "homepage": "https://symfony.com/contributors"
  3573. }
  3574. ],
  3575. "description": "Provides integration for Doctrine with various Symfony components",
  3576. "homepage": "https://symfony.com",
  3577. "support": {
  3578. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.3"
  3579. },
  3580. "funding": [
  3581. {
  3582. "url": "https://symfony.com/sponsor",
  3583. "type": "custom"
  3584. },
  3585. {
  3586. "url": "https://github.com/fabpot",
  3587. "type": "github"
  3588. },
  3589. {
  3590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3591. "type": "tidelift"
  3592. }
  3593. ],
  3594. "time": "2024-07-26T12:41:01+00:00"
  3595. },
  3596. {
  3597. "name": "symfony/dotenv",
  3598. "version": "v7.1.3",
  3599. "source": {
  3600. "type": "git",
  3601. "url": "https://github.com/symfony/dotenv.git",
  3602. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3"
  3603. },
  3604. "dist": {
  3605. "type": "zip",
  3606. "url": "https://api.github.com/repos/symfony/dotenv/zipball/a26be30fd61678dab694a18a85084cea7673bbf3",
  3607. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3",
  3608. "shasum": ""
  3609. },
  3610. "require": {
  3611. "php": ">=8.2"
  3612. },
  3613. "conflict": {
  3614. "symfony/console": "<6.4",
  3615. "symfony/process": "<6.4"
  3616. },
  3617. "require-dev": {
  3618. "symfony/console": "^6.4|^7.0",
  3619. "symfony/process": "^6.4|^7.0"
  3620. },
  3621. "type": "library",
  3622. "autoload": {
  3623. "psr-4": {
  3624. "Symfony\\Component\\Dotenv\\": ""
  3625. },
  3626. "exclude-from-classmap": [
  3627. "/Tests/"
  3628. ]
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "Fabien Potencier",
  3637. "email": "fabien@symfony.com"
  3638. },
  3639. {
  3640. "name": "Symfony Community",
  3641. "homepage": "https://symfony.com/contributors"
  3642. }
  3643. ],
  3644. "description": "Registers environment variables from a .env file",
  3645. "homepage": "https://symfony.com",
  3646. "keywords": [
  3647. "dotenv",
  3648. "env",
  3649. "environment"
  3650. ],
  3651. "support": {
  3652. "source": "https://github.com/symfony/dotenv/tree/v7.1.3"
  3653. },
  3654. "funding": [
  3655. {
  3656. "url": "https://symfony.com/sponsor",
  3657. "type": "custom"
  3658. },
  3659. {
  3660. "url": "https://github.com/fabpot",
  3661. "type": "github"
  3662. },
  3663. {
  3664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3665. "type": "tidelift"
  3666. }
  3667. ],
  3668. "time": "2024-07-09T19:36:07+00:00"
  3669. },
  3670. {
  3671. "name": "symfony/error-handler",
  3672. "version": "v7.1.3",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/error-handler.git",
  3676. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3681. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3682. "shasum": ""
  3683. },
  3684. "require": {
  3685. "php": ">=8.2",
  3686. "psr/log": "^1|^2|^3",
  3687. "symfony/var-dumper": "^6.4|^7.0"
  3688. },
  3689. "conflict": {
  3690. "symfony/deprecation-contracts": "<2.5",
  3691. "symfony/http-kernel": "<6.4"
  3692. },
  3693. "require-dev": {
  3694. "symfony/deprecation-contracts": "^2.5|^3",
  3695. "symfony/http-kernel": "^6.4|^7.0",
  3696. "symfony/serializer": "^6.4|^7.0"
  3697. },
  3698. "bin": [
  3699. "Resources/bin/patch-type-declarations"
  3700. ],
  3701. "type": "library",
  3702. "autoload": {
  3703. "psr-4": {
  3704. "Symfony\\Component\\ErrorHandler\\": ""
  3705. },
  3706. "exclude-from-classmap": [
  3707. "/Tests/"
  3708. ]
  3709. },
  3710. "notification-url": "https://packagist.org/downloads/",
  3711. "license": [
  3712. "MIT"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "Fabien Potencier",
  3717. "email": "fabien@symfony.com"
  3718. },
  3719. {
  3720. "name": "Symfony Community",
  3721. "homepage": "https://symfony.com/contributors"
  3722. }
  3723. ],
  3724. "description": "Provides tools to manage errors and ease debugging PHP code",
  3725. "homepage": "https://symfony.com",
  3726. "support": {
  3727. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3728. },
  3729. "funding": [
  3730. {
  3731. "url": "https://symfony.com/sponsor",
  3732. "type": "custom"
  3733. },
  3734. {
  3735. "url": "https://github.com/fabpot",
  3736. "type": "github"
  3737. },
  3738. {
  3739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3740. "type": "tidelift"
  3741. }
  3742. ],
  3743. "time": "2024-07-26T13:02:51+00:00"
  3744. },
  3745. {
  3746. "name": "symfony/event-dispatcher",
  3747. "version": "v7.1.1",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://github.com/symfony/event-dispatcher.git",
  3751. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3756. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3757. "shasum": ""
  3758. },
  3759. "require": {
  3760. "php": ">=8.2",
  3761. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3762. },
  3763. "conflict": {
  3764. "symfony/dependency-injection": "<6.4",
  3765. "symfony/service-contracts": "<2.5"
  3766. },
  3767. "provide": {
  3768. "psr/event-dispatcher-implementation": "1.0",
  3769. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3770. },
  3771. "require-dev": {
  3772. "psr/log": "^1|^2|^3",
  3773. "symfony/config": "^6.4|^7.0",
  3774. "symfony/dependency-injection": "^6.4|^7.0",
  3775. "symfony/error-handler": "^6.4|^7.0",
  3776. "symfony/expression-language": "^6.4|^7.0",
  3777. "symfony/http-foundation": "^6.4|^7.0",
  3778. "symfony/service-contracts": "^2.5|^3",
  3779. "symfony/stopwatch": "^6.4|^7.0"
  3780. },
  3781. "type": "library",
  3782. "autoload": {
  3783. "psr-4": {
  3784. "Symfony\\Component\\EventDispatcher\\": ""
  3785. },
  3786. "exclude-from-classmap": [
  3787. "/Tests/"
  3788. ]
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Fabien Potencier",
  3797. "email": "fabien@symfony.com"
  3798. },
  3799. {
  3800. "name": "Symfony Community",
  3801. "homepage": "https://symfony.com/contributors"
  3802. }
  3803. ],
  3804. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3805. "homepage": "https://symfony.com",
  3806. "support": {
  3807. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3808. },
  3809. "funding": [
  3810. {
  3811. "url": "https://symfony.com/sponsor",
  3812. "type": "custom"
  3813. },
  3814. {
  3815. "url": "https://github.com/fabpot",
  3816. "type": "github"
  3817. },
  3818. {
  3819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3820. "type": "tidelift"
  3821. }
  3822. ],
  3823. "time": "2024-05-31T14:57:53+00:00"
  3824. },
  3825. {
  3826. "name": "symfony/event-dispatcher-contracts",
  3827. "version": "v3.5.0",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3831. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3836. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "php": ">=8.1",
  3841. "psr/event-dispatcher": "^1"
  3842. },
  3843. "type": "library",
  3844. "extra": {
  3845. "branch-alias": {
  3846. "dev-main": "3.5-dev"
  3847. },
  3848. "thanks": {
  3849. "name": "symfony/contracts",
  3850. "url": "https://github.com/symfony/contracts"
  3851. }
  3852. },
  3853. "autoload": {
  3854. "psr-4": {
  3855. "Symfony\\Contracts\\EventDispatcher\\": ""
  3856. }
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "MIT"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "Nicolas Grekas",
  3865. "email": "p@tchwork.com"
  3866. },
  3867. {
  3868. "name": "Symfony Community",
  3869. "homepage": "https://symfony.com/contributors"
  3870. }
  3871. ],
  3872. "description": "Generic abstractions related to dispatching event",
  3873. "homepage": "https://symfony.com",
  3874. "keywords": [
  3875. "abstractions",
  3876. "contracts",
  3877. "decoupling",
  3878. "interfaces",
  3879. "interoperability",
  3880. "standards"
  3881. ],
  3882. "support": {
  3883. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3884. },
  3885. "funding": [
  3886. {
  3887. "url": "https://symfony.com/sponsor",
  3888. "type": "custom"
  3889. },
  3890. {
  3891. "url": "https://github.com/fabpot",
  3892. "type": "github"
  3893. },
  3894. {
  3895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3896. "type": "tidelift"
  3897. }
  3898. ],
  3899. "time": "2024-04-18T09:32:20+00:00"
  3900. },
  3901. {
  3902. "name": "symfony/expression-language",
  3903. "version": "v7.1.1",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://github.com/symfony/expression-language.git",
  3907. "reference": "463cb95f80c14136175f4e03f7f6199b01c6b8b4"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://api.github.com/repos/symfony/expression-language/zipball/463cb95f80c14136175f4e03f7f6199b01c6b8b4",
  3912. "reference": "463cb95f80c14136175f4e03f7f6199b01c6b8b4",
  3913. "shasum": ""
  3914. },
  3915. "require": {
  3916. "php": ">=8.2",
  3917. "symfony/cache": "^6.4|^7.0",
  3918. "symfony/deprecation-contracts": "^2.5|^3",
  3919. "symfony/service-contracts": "^2.5|^3"
  3920. },
  3921. "type": "library",
  3922. "autoload": {
  3923. "psr-4": {
  3924. "Symfony\\Component\\ExpressionLanguage\\": ""
  3925. },
  3926. "exclude-from-classmap": [
  3927. "/Tests/"
  3928. ]
  3929. },
  3930. "notification-url": "https://packagist.org/downloads/",
  3931. "license": [
  3932. "MIT"
  3933. ],
  3934. "authors": [
  3935. {
  3936. "name": "Fabien Potencier",
  3937. "email": "fabien@symfony.com"
  3938. },
  3939. {
  3940. "name": "Symfony Community",
  3941. "homepage": "https://symfony.com/contributors"
  3942. }
  3943. ],
  3944. "description": "Provides an engine that can compile and evaluate expressions",
  3945. "homepage": "https://symfony.com",
  3946. "support": {
  3947. "source": "https://github.com/symfony/expression-language/tree/v7.1.1"
  3948. },
  3949. "funding": [
  3950. {
  3951. "url": "https://symfony.com/sponsor",
  3952. "type": "custom"
  3953. },
  3954. {
  3955. "url": "https://github.com/fabpot",
  3956. "type": "github"
  3957. },
  3958. {
  3959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3960. "type": "tidelift"
  3961. }
  3962. ],
  3963. "time": "2024-05-31T14:57:53+00:00"
  3964. },
  3965. {
  3966. "name": "symfony/filesystem",
  3967. "version": "v7.1.2",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/symfony/filesystem.git",
  3971. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c",
  3976. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c",
  3977. "shasum": ""
  3978. },
  3979. "require": {
  3980. "php": ">=8.2",
  3981. "symfony/polyfill-ctype": "~1.8",
  3982. "symfony/polyfill-mbstring": "~1.8"
  3983. },
  3984. "require-dev": {
  3985. "symfony/process": "^6.4|^7.0"
  3986. },
  3987. "type": "library",
  3988. "autoload": {
  3989. "psr-4": {
  3990. "Symfony\\Component\\Filesystem\\": ""
  3991. },
  3992. "exclude-from-classmap": [
  3993. "/Tests/"
  3994. ]
  3995. },
  3996. "notification-url": "https://packagist.org/downloads/",
  3997. "license": [
  3998. "MIT"
  3999. ],
  4000. "authors": [
  4001. {
  4002. "name": "Fabien Potencier",
  4003. "email": "fabien@symfony.com"
  4004. },
  4005. {
  4006. "name": "Symfony Community",
  4007. "homepage": "https://symfony.com/contributors"
  4008. }
  4009. ],
  4010. "description": "Provides basic utilities for the filesystem",
  4011. "homepage": "https://symfony.com",
  4012. "support": {
  4013. "source": "https://github.com/symfony/filesystem/tree/v7.1.2"
  4014. },
  4015. "funding": [
  4016. {
  4017. "url": "https://symfony.com/sponsor",
  4018. "type": "custom"
  4019. },
  4020. {
  4021. "url": "https://github.com/fabpot",
  4022. "type": "github"
  4023. },
  4024. {
  4025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4026. "type": "tidelift"
  4027. }
  4028. ],
  4029. "time": "2024-06-28T10:03:55+00:00"
  4030. },
  4031. {
  4032. "name": "symfony/finder",
  4033. "version": "v7.1.3",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/symfony/finder.git",
  4037. "reference": "717c6329886f32dc65e27461f80f2a465412fdca"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/symfony/finder/zipball/717c6329886f32dc65e27461f80f2a465412fdca",
  4042. "reference": "717c6329886f32dc65e27461f80f2a465412fdca",
  4043. "shasum": ""
  4044. },
  4045. "require": {
  4046. "php": ">=8.2"
  4047. },
  4048. "require-dev": {
  4049. "symfony/filesystem": "^6.4|^7.0"
  4050. },
  4051. "type": "library",
  4052. "autoload": {
  4053. "psr-4": {
  4054. "Symfony\\Component\\Finder\\": ""
  4055. },
  4056. "exclude-from-classmap": [
  4057. "/Tests/"
  4058. ]
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Fabien Potencier",
  4067. "email": "fabien@symfony.com"
  4068. },
  4069. {
  4070. "name": "Symfony Community",
  4071. "homepage": "https://symfony.com/contributors"
  4072. }
  4073. ],
  4074. "description": "Finds files and directories via an intuitive fluent interface",
  4075. "homepage": "https://symfony.com",
  4076. "support": {
  4077. "source": "https://github.com/symfony/finder/tree/v7.1.3"
  4078. },
  4079. "funding": [
  4080. {
  4081. "url": "https://symfony.com/sponsor",
  4082. "type": "custom"
  4083. },
  4084. {
  4085. "url": "https://github.com/fabpot",
  4086. "type": "github"
  4087. },
  4088. {
  4089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4090. "type": "tidelift"
  4091. }
  4092. ],
  4093. "time": "2024-07-24T07:08:44+00:00"
  4094. },
  4095. {
  4096. "name": "symfony/flex",
  4097. "version": "v2.4.6",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/symfony/flex.git",
  4101. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/symfony/flex/zipball/4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4106. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4107. "shasum": ""
  4108. },
  4109. "require": {
  4110. "composer-plugin-api": "^2.1",
  4111. "php": ">=8.0"
  4112. },
  4113. "require-dev": {
  4114. "composer/composer": "^2.1",
  4115. "symfony/dotenv": "^5.4|^6.0",
  4116. "symfony/filesystem": "^5.4|^6.0",
  4117. "symfony/phpunit-bridge": "^5.4|^6.0",
  4118. "symfony/process": "^5.4|^6.0"
  4119. },
  4120. "type": "composer-plugin",
  4121. "extra": {
  4122. "class": "Symfony\\Flex\\Flex"
  4123. },
  4124. "autoload": {
  4125. "psr-4": {
  4126. "Symfony\\Flex\\": "src"
  4127. }
  4128. },
  4129. "notification-url": "https://packagist.org/downloads/",
  4130. "license": [
  4131. "MIT"
  4132. ],
  4133. "authors": [
  4134. {
  4135. "name": "Fabien Potencier",
  4136. "email": "fabien.potencier@gmail.com"
  4137. }
  4138. ],
  4139. "description": "Composer plugin for Symfony",
  4140. "support": {
  4141. "issues": "https://github.com/symfony/flex/issues",
  4142. "source": "https://github.com/symfony/flex/tree/v2.4.6"
  4143. },
  4144. "funding": [
  4145. {
  4146. "url": "https://symfony.com/sponsor",
  4147. "type": "custom"
  4148. },
  4149. {
  4150. "url": "https://github.com/fabpot",
  4151. "type": "github"
  4152. },
  4153. {
  4154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4155. "type": "tidelift"
  4156. }
  4157. ],
  4158. "time": "2024-04-27T10:22:22+00:00"
  4159. },
  4160. {
  4161. "name": "symfony/form",
  4162. "version": "v7.1.3",
  4163. "source": {
  4164. "type": "git",
  4165. "url": "https://github.com/symfony/form.git",
  4166. "reference": "11df2e2e142161824eb341e96cbb3c56c3bb57dc"
  4167. },
  4168. "dist": {
  4169. "type": "zip",
  4170. "url": "https://api.github.com/repos/symfony/form/zipball/11df2e2e142161824eb341e96cbb3c56c3bb57dc",
  4171. "reference": "11df2e2e142161824eb341e96cbb3c56c3bb57dc",
  4172. "shasum": ""
  4173. },
  4174. "require": {
  4175. "php": ">=8.2",
  4176. "symfony/deprecation-contracts": "^2.5|^3",
  4177. "symfony/event-dispatcher": "^6.4|^7.0",
  4178. "symfony/options-resolver": "^6.4|^7.0",
  4179. "symfony/polyfill-ctype": "~1.8",
  4180. "symfony/polyfill-intl-icu": "^1.21",
  4181. "symfony/polyfill-mbstring": "~1.0",
  4182. "symfony/property-access": "^6.4|^7.0",
  4183. "symfony/service-contracts": "^2.5|^3"
  4184. },
  4185. "conflict": {
  4186. "symfony/console": "<6.4",
  4187. "symfony/dependency-injection": "<6.4",
  4188. "symfony/doctrine-bridge": "<6.4",
  4189. "symfony/error-handler": "<6.4",
  4190. "symfony/framework-bundle": "<6.4",
  4191. "symfony/http-kernel": "<6.4",
  4192. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4193. "symfony/translation-contracts": "<2.5",
  4194. "symfony/twig-bridge": "<6.4"
  4195. },
  4196. "require-dev": {
  4197. "doctrine/collections": "^1.0|^2.0",
  4198. "symfony/config": "^6.4|^7.0",
  4199. "symfony/console": "^6.4|^7.0",
  4200. "symfony/dependency-injection": "^6.4|^7.0",
  4201. "symfony/expression-language": "^6.4|^7.0",
  4202. "symfony/html-sanitizer": "^6.4|^7.0",
  4203. "symfony/http-foundation": "^6.4|^7.0",
  4204. "symfony/http-kernel": "^6.4|^7.0",
  4205. "symfony/intl": "^6.4|^7.0",
  4206. "symfony/security-core": "^6.4|^7.0",
  4207. "symfony/security-csrf": "^6.4|^7.0",
  4208. "symfony/translation": "^6.4.3|^7.0.3",
  4209. "symfony/uid": "^6.4|^7.0",
  4210. "symfony/validator": "^6.4|^7.0",
  4211. "symfony/var-dumper": "^6.4|^7.0"
  4212. },
  4213. "type": "library",
  4214. "autoload": {
  4215. "psr-4": {
  4216. "Symfony\\Component\\Form\\": ""
  4217. },
  4218. "exclude-from-classmap": [
  4219. "/Tests/"
  4220. ]
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Fabien Potencier",
  4229. "email": "fabien@symfony.com"
  4230. },
  4231. {
  4232. "name": "Symfony Community",
  4233. "homepage": "https://symfony.com/contributors"
  4234. }
  4235. ],
  4236. "description": "Allows to easily create, process and reuse HTML forms",
  4237. "homepage": "https://symfony.com",
  4238. "support": {
  4239. "source": "https://github.com/symfony/form/tree/v7.1.3"
  4240. },
  4241. "funding": [
  4242. {
  4243. "url": "https://symfony.com/sponsor",
  4244. "type": "custom"
  4245. },
  4246. {
  4247. "url": "https://github.com/fabpot",
  4248. "type": "github"
  4249. },
  4250. {
  4251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4252. "type": "tidelift"
  4253. }
  4254. ],
  4255. "time": "2024-07-19T08:30:01+00:00"
  4256. },
  4257. {
  4258. "name": "symfony/framework-bundle",
  4259. "version": "v7.1.3",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/symfony/framework-bundle.git",
  4263. "reference": "a32ec544bd501eb4619eb977860ad3076ee55061"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/a32ec544bd501eb4619eb977860ad3076ee55061",
  4268. "reference": "a32ec544bd501eb4619eb977860ad3076ee55061",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "composer-runtime-api": ">=2.1",
  4273. "ext-xml": "*",
  4274. "php": ">=8.2",
  4275. "symfony/cache": "^6.4|^7.0",
  4276. "symfony/config": "^6.4|^7.0",
  4277. "symfony/dependency-injection": "^7.1",
  4278. "symfony/deprecation-contracts": "^2.5|^3",
  4279. "symfony/error-handler": "^6.4|^7.0",
  4280. "symfony/event-dispatcher": "^6.4|^7.0",
  4281. "symfony/filesystem": "^7.1",
  4282. "symfony/finder": "^6.4|^7.0",
  4283. "symfony/http-foundation": "^6.4|^7.0",
  4284. "symfony/http-kernel": "^6.4|^7.0",
  4285. "symfony/polyfill-mbstring": "~1.0",
  4286. "symfony/routing": "^6.4|^7.0"
  4287. },
  4288. "conflict": {
  4289. "doctrine/persistence": "<1.3",
  4290. "phpdocumentor/reflection-docblock": "<3.2.2",
  4291. "phpdocumentor/type-resolver": "<1.4.0",
  4292. "symfony/asset": "<6.4",
  4293. "symfony/asset-mapper": "<6.4",
  4294. "symfony/clock": "<6.4",
  4295. "symfony/console": "<6.4",
  4296. "symfony/dom-crawler": "<6.4",
  4297. "symfony/dotenv": "<6.4",
  4298. "symfony/form": "<6.4",
  4299. "symfony/http-client": "<6.4",
  4300. "symfony/lock": "<6.4",
  4301. "symfony/mailer": "<6.4",
  4302. "symfony/messenger": "<6.4",
  4303. "symfony/mime": "<6.4",
  4304. "symfony/property-access": "<6.4",
  4305. "symfony/property-info": "<6.4",
  4306. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4307. "symfony/security-core": "<6.4",
  4308. "symfony/security-csrf": "<6.4",
  4309. "symfony/serializer": "<6.4",
  4310. "symfony/stopwatch": "<6.4",
  4311. "symfony/translation": "<6.4",
  4312. "symfony/twig-bridge": "<6.4",
  4313. "symfony/twig-bundle": "<6.4",
  4314. "symfony/validator": "<6.4",
  4315. "symfony/web-profiler-bundle": "<6.4",
  4316. "symfony/workflow": "<6.4"
  4317. },
  4318. "require-dev": {
  4319. "doctrine/persistence": "^1.3|^2|^3",
  4320. "dragonmantank/cron-expression": "^3.1",
  4321. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4322. "seld/jsonlint": "^1.10",
  4323. "symfony/asset": "^6.4|^7.0",
  4324. "symfony/asset-mapper": "^6.4|^7.0",
  4325. "symfony/browser-kit": "^6.4|^7.0",
  4326. "symfony/clock": "^6.4|^7.0",
  4327. "symfony/console": "^6.4|^7.0",
  4328. "symfony/css-selector": "^6.4|^7.0",
  4329. "symfony/dom-crawler": "^6.4|^7.0",
  4330. "symfony/dotenv": "^6.4|^7.0",
  4331. "symfony/expression-language": "^6.4|^7.0",
  4332. "symfony/form": "^6.4|^7.0",
  4333. "symfony/html-sanitizer": "^6.4|^7.0",
  4334. "symfony/http-client": "^6.4|^7.0",
  4335. "symfony/lock": "^6.4|^7.0",
  4336. "symfony/mailer": "^6.4|^7.0",
  4337. "symfony/messenger": "^6.4|^7.0",
  4338. "symfony/mime": "^6.4|^7.0",
  4339. "symfony/notifier": "^6.4|^7.0",
  4340. "symfony/polyfill-intl-icu": "~1.0",
  4341. "symfony/process": "^6.4|^7.0",
  4342. "symfony/property-info": "^6.4|^7.0",
  4343. "symfony/rate-limiter": "^6.4|^7.0",
  4344. "symfony/scheduler": "^6.4.4|^7.0.4",
  4345. "symfony/security-bundle": "^6.4|^7.0",
  4346. "symfony/semaphore": "^6.4|^7.0",
  4347. "symfony/serializer": "^6.4|^7.0",
  4348. "symfony/stopwatch": "^6.4|^7.0",
  4349. "symfony/string": "^6.4|^7.0",
  4350. "symfony/translation": "^6.4|^7.0",
  4351. "symfony/twig-bundle": "^6.4|^7.0",
  4352. "symfony/type-info": "^7.1",
  4353. "symfony/uid": "^6.4|^7.0",
  4354. "symfony/validator": "^6.4|^7.0",
  4355. "symfony/web-link": "^6.4|^7.0",
  4356. "symfony/workflow": "^6.4|^7.0",
  4357. "symfony/yaml": "^6.4|^7.0",
  4358. "twig/twig": "^3.0.4"
  4359. },
  4360. "type": "symfony-bundle",
  4361. "autoload": {
  4362. "psr-4": {
  4363. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4364. },
  4365. "exclude-from-classmap": [
  4366. "/Tests/"
  4367. ]
  4368. },
  4369. "notification-url": "https://packagist.org/downloads/",
  4370. "license": [
  4371. "MIT"
  4372. ],
  4373. "authors": [
  4374. {
  4375. "name": "Fabien Potencier",
  4376. "email": "fabien@symfony.com"
  4377. },
  4378. {
  4379. "name": "Symfony Community",
  4380. "homepage": "https://symfony.com/contributors"
  4381. }
  4382. ],
  4383. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4384. "homepage": "https://symfony.com",
  4385. "support": {
  4386. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.3"
  4387. },
  4388. "funding": [
  4389. {
  4390. "url": "https://symfony.com/sponsor",
  4391. "type": "custom"
  4392. },
  4393. {
  4394. "url": "https://github.com/fabpot",
  4395. "type": "github"
  4396. },
  4397. {
  4398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4399. "type": "tidelift"
  4400. }
  4401. ],
  4402. "time": "2024-07-26T13:24:34+00:00"
  4403. },
  4404. {
  4405. "name": "symfony/html-sanitizer",
  4406. "version": "v7.1.1",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://github.com/symfony/html-sanitizer.git",
  4410. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/737cbaa8082b696d0574afd91b9f471eca67fc65",
  4415. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65",
  4416. "shasum": ""
  4417. },
  4418. "require": {
  4419. "ext-dom": "*",
  4420. "league/uri": "^6.5|^7.0",
  4421. "masterminds/html5": "^2.7.2",
  4422. "php": ">=8.2"
  4423. },
  4424. "type": "library",
  4425. "autoload": {
  4426. "psr-4": {
  4427. "Symfony\\Component\\HtmlSanitizer\\": ""
  4428. },
  4429. "exclude-from-classmap": [
  4430. "/Tests/"
  4431. ]
  4432. },
  4433. "notification-url": "https://packagist.org/downloads/",
  4434. "license": [
  4435. "MIT"
  4436. ],
  4437. "authors": [
  4438. {
  4439. "name": "Titouan Galopin",
  4440. "email": "galopintitouan@gmail.com"
  4441. },
  4442. {
  4443. "name": "Symfony Community",
  4444. "homepage": "https://symfony.com/contributors"
  4445. }
  4446. ],
  4447. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4448. "homepage": "https://symfony.com",
  4449. "keywords": [
  4450. "Purifier",
  4451. "html",
  4452. "sanitizer"
  4453. ],
  4454. "support": {
  4455. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.1"
  4456. },
  4457. "funding": [
  4458. {
  4459. "url": "https://symfony.com/sponsor",
  4460. "type": "custom"
  4461. },
  4462. {
  4463. "url": "https://github.com/fabpot",
  4464. "type": "github"
  4465. },
  4466. {
  4467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4468. "type": "tidelift"
  4469. }
  4470. ],
  4471. "time": "2024-05-31T14:55:39+00:00"
  4472. },
  4473. {
  4474. "name": "symfony/http-client",
  4475. "version": "v7.1.3",
  4476. "source": {
  4477. "type": "git",
  4478. "url": "https://github.com/symfony/http-client.git",
  4479. "reference": "b79858aa7a051ea791b0d50269a234a0b50cb231"
  4480. },
  4481. "dist": {
  4482. "type": "zip",
  4483. "url": "https://api.github.com/repos/symfony/http-client/zipball/b79858aa7a051ea791b0d50269a234a0b50cb231",
  4484. "reference": "b79858aa7a051ea791b0d50269a234a0b50cb231",
  4485. "shasum": ""
  4486. },
  4487. "require": {
  4488. "php": ">=8.2",
  4489. "psr/log": "^1|^2|^3",
  4490. "symfony/deprecation-contracts": "^2.5|^3",
  4491. "symfony/http-client-contracts": "^3.4.1",
  4492. "symfony/service-contracts": "^2.5|^3"
  4493. },
  4494. "conflict": {
  4495. "php-http/discovery": "<1.15",
  4496. "symfony/http-foundation": "<6.4"
  4497. },
  4498. "provide": {
  4499. "php-http/async-client-implementation": "*",
  4500. "php-http/client-implementation": "*",
  4501. "psr/http-client-implementation": "1.0",
  4502. "symfony/http-client-implementation": "3.0"
  4503. },
  4504. "require-dev": {
  4505. "amphp/amp": "^2.5",
  4506. "amphp/http-client": "^4.2.1",
  4507. "amphp/http-tunnel": "^1.0",
  4508. "amphp/socket": "^1.1",
  4509. "guzzlehttp/promises": "^1.4|^2.0",
  4510. "nyholm/psr7": "^1.0",
  4511. "php-http/httplug": "^1.0|^2.0",
  4512. "psr/http-client": "^1.0",
  4513. "symfony/dependency-injection": "^6.4|^7.0",
  4514. "symfony/http-kernel": "^6.4|^7.0",
  4515. "symfony/messenger": "^6.4|^7.0",
  4516. "symfony/process": "^6.4|^7.0",
  4517. "symfony/rate-limiter": "^6.4|^7.0",
  4518. "symfony/stopwatch": "^6.4|^7.0"
  4519. },
  4520. "type": "library",
  4521. "autoload": {
  4522. "psr-4": {
  4523. "Symfony\\Component\\HttpClient\\": ""
  4524. },
  4525. "exclude-from-classmap": [
  4526. "/Tests/"
  4527. ]
  4528. },
  4529. "notification-url": "https://packagist.org/downloads/",
  4530. "license": [
  4531. "MIT"
  4532. ],
  4533. "authors": [
  4534. {
  4535. "name": "Nicolas Grekas",
  4536. "email": "p@tchwork.com"
  4537. },
  4538. {
  4539. "name": "Symfony Community",
  4540. "homepage": "https://symfony.com/contributors"
  4541. }
  4542. ],
  4543. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4544. "homepage": "https://symfony.com",
  4545. "keywords": [
  4546. "http"
  4547. ],
  4548. "support": {
  4549. "source": "https://github.com/symfony/http-client/tree/v7.1.3"
  4550. },
  4551. "funding": [
  4552. {
  4553. "url": "https://symfony.com/sponsor",
  4554. "type": "custom"
  4555. },
  4556. {
  4557. "url": "https://github.com/fabpot",
  4558. "type": "github"
  4559. },
  4560. {
  4561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4562. "type": "tidelift"
  4563. }
  4564. ],
  4565. "time": "2024-07-17T06:10:24+00:00"
  4566. },
  4567. {
  4568. "name": "symfony/http-client-contracts",
  4569. "version": "v3.5.0",
  4570. "source": {
  4571. "type": "git",
  4572. "url": "https://github.com/symfony/http-client-contracts.git",
  4573. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4574. },
  4575. "dist": {
  4576. "type": "zip",
  4577. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4578. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4579. "shasum": ""
  4580. },
  4581. "require": {
  4582. "php": ">=8.1"
  4583. },
  4584. "type": "library",
  4585. "extra": {
  4586. "branch-alias": {
  4587. "dev-main": "3.5-dev"
  4588. },
  4589. "thanks": {
  4590. "name": "symfony/contracts",
  4591. "url": "https://github.com/symfony/contracts"
  4592. }
  4593. },
  4594. "autoload": {
  4595. "psr-4": {
  4596. "Symfony\\Contracts\\HttpClient\\": ""
  4597. },
  4598. "exclude-from-classmap": [
  4599. "/Test/"
  4600. ]
  4601. },
  4602. "notification-url": "https://packagist.org/downloads/",
  4603. "license": [
  4604. "MIT"
  4605. ],
  4606. "authors": [
  4607. {
  4608. "name": "Nicolas Grekas",
  4609. "email": "p@tchwork.com"
  4610. },
  4611. {
  4612. "name": "Symfony Community",
  4613. "homepage": "https://symfony.com/contributors"
  4614. }
  4615. ],
  4616. "description": "Generic abstractions related to HTTP clients",
  4617. "homepage": "https://symfony.com",
  4618. "keywords": [
  4619. "abstractions",
  4620. "contracts",
  4621. "decoupling",
  4622. "interfaces",
  4623. "interoperability",
  4624. "standards"
  4625. ],
  4626. "support": {
  4627. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4628. },
  4629. "funding": [
  4630. {
  4631. "url": "https://symfony.com/sponsor",
  4632. "type": "custom"
  4633. },
  4634. {
  4635. "url": "https://github.com/fabpot",
  4636. "type": "github"
  4637. },
  4638. {
  4639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4640. "type": "tidelift"
  4641. }
  4642. ],
  4643. "time": "2024-04-18T09:32:20+00:00"
  4644. },
  4645. {
  4646. "name": "symfony/http-foundation",
  4647. "version": "v7.1.3",
  4648. "source": {
  4649. "type": "git",
  4650. "url": "https://github.com/symfony/http-foundation.git",
  4651. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  4652. },
  4653. "dist": {
  4654. "type": "zip",
  4655. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4656. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4657. "shasum": ""
  4658. },
  4659. "require": {
  4660. "php": ">=8.2",
  4661. "symfony/polyfill-mbstring": "~1.1",
  4662. "symfony/polyfill-php83": "^1.27"
  4663. },
  4664. "conflict": {
  4665. "doctrine/dbal": "<3.6",
  4666. "symfony/cache": "<6.4"
  4667. },
  4668. "require-dev": {
  4669. "doctrine/dbal": "^3.6|^4",
  4670. "predis/predis": "^1.1|^2.0",
  4671. "symfony/cache": "^6.4|^7.0",
  4672. "symfony/dependency-injection": "^6.4|^7.0",
  4673. "symfony/expression-language": "^6.4|^7.0",
  4674. "symfony/http-kernel": "^6.4|^7.0",
  4675. "symfony/mime": "^6.4|^7.0",
  4676. "symfony/rate-limiter": "^6.4|^7.0"
  4677. },
  4678. "type": "library",
  4679. "autoload": {
  4680. "psr-4": {
  4681. "Symfony\\Component\\HttpFoundation\\": ""
  4682. },
  4683. "exclude-from-classmap": [
  4684. "/Tests/"
  4685. ]
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Fabien Potencier",
  4694. "email": "fabien@symfony.com"
  4695. },
  4696. {
  4697. "name": "Symfony Community",
  4698. "homepage": "https://symfony.com/contributors"
  4699. }
  4700. ],
  4701. "description": "Defines an object-oriented layer for the HTTP specification",
  4702. "homepage": "https://symfony.com",
  4703. "support": {
  4704. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  4705. },
  4706. "funding": [
  4707. {
  4708. "url": "https://symfony.com/sponsor",
  4709. "type": "custom"
  4710. },
  4711. {
  4712. "url": "https://github.com/fabpot",
  4713. "type": "github"
  4714. },
  4715. {
  4716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4717. "type": "tidelift"
  4718. }
  4719. ],
  4720. "time": "2024-07-26T12:41:01+00:00"
  4721. },
  4722. {
  4723. "name": "symfony/http-kernel",
  4724. "version": "v7.1.3",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/symfony/http-kernel.git",
  4728. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/db9702f3a04cc471ec8c70e881825db26ac5f186",
  4733. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186",
  4734. "shasum": ""
  4735. },
  4736. "require": {
  4737. "php": ">=8.2",
  4738. "psr/log": "^1|^2|^3",
  4739. "symfony/deprecation-contracts": "^2.5|^3",
  4740. "symfony/error-handler": "^6.4|^7.0",
  4741. "symfony/event-dispatcher": "^6.4|^7.0",
  4742. "symfony/http-foundation": "^6.4|^7.0",
  4743. "symfony/polyfill-ctype": "^1.8"
  4744. },
  4745. "conflict": {
  4746. "symfony/browser-kit": "<6.4",
  4747. "symfony/cache": "<6.4",
  4748. "symfony/config": "<6.4",
  4749. "symfony/console": "<6.4",
  4750. "symfony/dependency-injection": "<6.4",
  4751. "symfony/doctrine-bridge": "<6.4",
  4752. "symfony/form": "<6.4",
  4753. "symfony/http-client": "<6.4",
  4754. "symfony/http-client-contracts": "<2.5",
  4755. "symfony/mailer": "<6.4",
  4756. "symfony/messenger": "<6.4",
  4757. "symfony/translation": "<6.4",
  4758. "symfony/translation-contracts": "<2.5",
  4759. "symfony/twig-bridge": "<6.4",
  4760. "symfony/validator": "<6.4",
  4761. "symfony/var-dumper": "<6.4",
  4762. "twig/twig": "<3.0.4"
  4763. },
  4764. "provide": {
  4765. "psr/log-implementation": "1.0|2.0|3.0"
  4766. },
  4767. "require-dev": {
  4768. "psr/cache": "^1.0|^2.0|^3.0",
  4769. "symfony/browser-kit": "^6.4|^7.0",
  4770. "symfony/clock": "^6.4|^7.0",
  4771. "symfony/config": "^6.4|^7.0",
  4772. "symfony/console": "^6.4|^7.0",
  4773. "symfony/css-selector": "^6.4|^7.0",
  4774. "symfony/dependency-injection": "^6.4|^7.0",
  4775. "symfony/dom-crawler": "^6.4|^7.0",
  4776. "symfony/expression-language": "^6.4|^7.0",
  4777. "symfony/finder": "^6.4|^7.0",
  4778. "symfony/http-client-contracts": "^2.5|^3",
  4779. "symfony/process": "^6.4|^7.0",
  4780. "symfony/property-access": "^7.1",
  4781. "symfony/routing": "^6.4|^7.0",
  4782. "symfony/serializer": "^7.1",
  4783. "symfony/stopwatch": "^6.4|^7.0",
  4784. "symfony/translation": "^6.4|^7.0",
  4785. "symfony/translation-contracts": "^2.5|^3",
  4786. "symfony/uid": "^6.4|^7.0",
  4787. "symfony/validator": "^6.4|^7.0",
  4788. "symfony/var-dumper": "^6.4|^7.0",
  4789. "symfony/var-exporter": "^6.4|^7.0",
  4790. "twig/twig": "^3.0.4"
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Symfony\\Component\\HttpKernel\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Fabien Potencier",
  4808. "email": "fabien@symfony.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Provides a structured process for converting a Request into a Response",
  4816. "homepage": "https://symfony.com",
  4817. "support": {
  4818. "source": "https://github.com/symfony/http-kernel/tree/v7.1.3"
  4819. },
  4820. "funding": [
  4821. {
  4822. "url": "https://symfony.com/sponsor",
  4823. "type": "custom"
  4824. },
  4825. {
  4826. "url": "https://github.com/fabpot",
  4827. "type": "github"
  4828. },
  4829. {
  4830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4831. "type": "tidelift"
  4832. }
  4833. ],
  4834. "time": "2024-07-26T14:58:15+00:00"
  4835. },
  4836. {
  4837. "name": "symfony/mailer",
  4838. "version": "v7.1.2",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/symfony/mailer.git",
  4842. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4847. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "egulias/email-validator": "^2.1.10|^3|^4",
  4852. "php": ">=8.2",
  4853. "psr/event-dispatcher": "^1",
  4854. "psr/log": "^1|^2|^3",
  4855. "symfony/event-dispatcher": "^6.4|^7.0",
  4856. "symfony/mime": "^6.4|^7.0",
  4857. "symfony/service-contracts": "^2.5|^3"
  4858. },
  4859. "conflict": {
  4860. "symfony/http-client-contracts": "<2.5",
  4861. "symfony/http-kernel": "<6.4",
  4862. "symfony/messenger": "<6.4",
  4863. "symfony/mime": "<6.4",
  4864. "symfony/twig-bridge": "<6.4"
  4865. },
  4866. "require-dev": {
  4867. "symfony/console": "^6.4|^7.0",
  4868. "symfony/http-client": "^6.4|^7.0",
  4869. "symfony/messenger": "^6.4|^7.0",
  4870. "symfony/twig-bridge": "^6.4|^7.0"
  4871. },
  4872. "type": "library",
  4873. "autoload": {
  4874. "psr-4": {
  4875. "Symfony\\Component\\Mailer\\": ""
  4876. },
  4877. "exclude-from-classmap": [
  4878. "/Tests/"
  4879. ]
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Fabien Potencier",
  4888. "email": "fabien@symfony.com"
  4889. },
  4890. {
  4891. "name": "Symfony Community",
  4892. "homepage": "https://symfony.com/contributors"
  4893. }
  4894. ],
  4895. "description": "Helps sending emails",
  4896. "homepage": "https://symfony.com",
  4897. "support": {
  4898. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://symfony.com/sponsor",
  4903. "type": "custom"
  4904. },
  4905. {
  4906. "url": "https://github.com/fabpot",
  4907. "type": "github"
  4908. },
  4909. {
  4910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4911. "type": "tidelift"
  4912. }
  4913. ],
  4914. "time": "2024-06-28T08:00:31+00:00"
  4915. },
  4916. {
  4917. "name": "symfony/mime",
  4918. "version": "v7.1.2",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/symfony/mime.git",
  4922. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  4927. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "php": ">=8.2",
  4932. "symfony/polyfill-intl-idn": "^1.10",
  4933. "symfony/polyfill-mbstring": "^1.0"
  4934. },
  4935. "conflict": {
  4936. "egulias/email-validator": "~3.0.0",
  4937. "phpdocumentor/reflection-docblock": "<3.2.2",
  4938. "phpdocumentor/type-resolver": "<1.4.0",
  4939. "symfony/mailer": "<6.4",
  4940. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4941. },
  4942. "require-dev": {
  4943. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4944. "league/html-to-markdown": "^5.0",
  4945. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4946. "symfony/dependency-injection": "^6.4|^7.0",
  4947. "symfony/process": "^6.4|^7.0",
  4948. "symfony/property-access": "^6.4|^7.0",
  4949. "symfony/property-info": "^6.4|^7.0",
  4950. "symfony/serializer": "^6.4.3|^7.0.3"
  4951. },
  4952. "type": "library",
  4953. "autoload": {
  4954. "psr-4": {
  4955. "Symfony\\Component\\Mime\\": ""
  4956. },
  4957. "exclude-from-classmap": [
  4958. "/Tests/"
  4959. ]
  4960. },
  4961. "notification-url": "https://packagist.org/downloads/",
  4962. "license": [
  4963. "MIT"
  4964. ],
  4965. "authors": [
  4966. {
  4967. "name": "Fabien Potencier",
  4968. "email": "fabien@symfony.com"
  4969. },
  4970. {
  4971. "name": "Symfony Community",
  4972. "homepage": "https://symfony.com/contributors"
  4973. }
  4974. ],
  4975. "description": "Allows manipulating MIME messages",
  4976. "homepage": "https://symfony.com",
  4977. "keywords": [
  4978. "mime",
  4979. "mime-type"
  4980. ],
  4981. "support": {
  4982. "source": "https://github.com/symfony/mime/tree/v7.1.2"
  4983. },
  4984. "funding": [
  4985. {
  4986. "url": "https://symfony.com/sponsor",
  4987. "type": "custom"
  4988. },
  4989. {
  4990. "url": "https://github.com/fabpot",
  4991. "type": "github"
  4992. },
  4993. {
  4994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4995. "type": "tidelift"
  4996. }
  4997. ],
  4998. "time": "2024-06-28T10:03:55+00:00"
  4999. },
  5000. {
  5001. "name": "symfony/monolog-bridge",
  5002. "version": "v7.1.1",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/symfony/monolog-bridge.git",
  5006. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5011. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "monolog/monolog": "^3",
  5016. "php": ">=8.2",
  5017. "symfony/http-kernel": "^6.4|^7.0",
  5018. "symfony/service-contracts": "^2.5|^3"
  5019. },
  5020. "conflict": {
  5021. "symfony/console": "<6.4",
  5022. "symfony/http-foundation": "<6.4",
  5023. "symfony/security-core": "<6.4"
  5024. },
  5025. "require-dev": {
  5026. "symfony/console": "^6.4|^7.0",
  5027. "symfony/http-client": "^6.4|^7.0",
  5028. "symfony/mailer": "^6.4|^7.0",
  5029. "symfony/messenger": "^6.4|^7.0",
  5030. "symfony/mime": "^6.4|^7.0",
  5031. "symfony/security-core": "^6.4|^7.0",
  5032. "symfony/var-dumper": "^6.4|^7.0"
  5033. },
  5034. "type": "symfony-bridge",
  5035. "autoload": {
  5036. "psr-4": {
  5037. "Symfony\\Bridge\\Monolog\\": ""
  5038. },
  5039. "exclude-from-classmap": [
  5040. "/Tests/"
  5041. ]
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Fabien Potencier",
  5050. "email": "fabien@symfony.com"
  5051. },
  5052. {
  5053. "name": "Symfony Community",
  5054. "homepage": "https://symfony.com/contributors"
  5055. }
  5056. ],
  5057. "description": "Provides integration for Monolog with various Symfony components",
  5058. "homepage": "https://symfony.com",
  5059. "support": {
  5060. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  5061. },
  5062. "funding": [
  5063. {
  5064. "url": "https://symfony.com/sponsor",
  5065. "type": "custom"
  5066. },
  5067. {
  5068. "url": "https://github.com/fabpot",
  5069. "type": "github"
  5070. },
  5071. {
  5072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5073. "type": "tidelift"
  5074. }
  5075. ],
  5076. "time": "2024-05-31T14:57:53+00:00"
  5077. },
  5078. {
  5079. "name": "symfony/monolog-bundle",
  5080. "version": "v3.10.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/symfony/monolog-bundle.git",
  5084. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5089. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5094. "php": ">=7.2.5",
  5095. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5096. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5097. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5098. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5099. },
  5100. "require-dev": {
  5101. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5102. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5103. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5104. },
  5105. "type": "symfony-bundle",
  5106. "extra": {
  5107. "branch-alias": {
  5108. "dev-master": "3.x-dev"
  5109. }
  5110. },
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Symfony\\Bundle\\MonologBundle\\": ""
  5114. },
  5115. "exclude-from-classmap": [
  5116. "/Tests/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Fabien Potencier",
  5126. "email": "fabien@symfony.com"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Symfony MonologBundle",
  5134. "homepage": "https://symfony.com",
  5135. "keywords": [
  5136. "log",
  5137. "logging"
  5138. ],
  5139. "support": {
  5140. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5141. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5142. },
  5143. "funding": [
  5144. {
  5145. "url": "https://symfony.com/sponsor",
  5146. "type": "custom"
  5147. },
  5148. {
  5149. "url": "https://github.com/fabpot",
  5150. "type": "github"
  5151. },
  5152. {
  5153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5154. "type": "tidelift"
  5155. }
  5156. ],
  5157. "time": "2023-11-06T17:08:13+00:00"
  5158. },
  5159. {
  5160. "name": "symfony/options-resolver",
  5161. "version": "v7.1.1",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/symfony/options-resolver.git",
  5165. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5170. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": ">=8.2",
  5175. "symfony/deprecation-contracts": "^2.5|^3"
  5176. },
  5177. "type": "library",
  5178. "autoload": {
  5179. "psr-4": {
  5180. "Symfony\\Component\\OptionsResolver\\": ""
  5181. },
  5182. "exclude-from-classmap": [
  5183. "/Tests/"
  5184. ]
  5185. },
  5186. "notification-url": "https://packagist.org/downloads/",
  5187. "license": [
  5188. "MIT"
  5189. ],
  5190. "authors": [
  5191. {
  5192. "name": "Fabien Potencier",
  5193. "email": "fabien@symfony.com"
  5194. },
  5195. {
  5196. "name": "Symfony Community",
  5197. "homepage": "https://symfony.com/contributors"
  5198. }
  5199. ],
  5200. "description": "Provides an improved replacement for the array_replace PHP function",
  5201. "homepage": "https://symfony.com",
  5202. "keywords": [
  5203. "config",
  5204. "configuration",
  5205. "options"
  5206. ],
  5207. "support": {
  5208. "source": "https://github.com/symfony/options-resolver/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/password-hasher",
  5228. "version": "v7.1.1",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/password-hasher.git",
  5232. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5237. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">=8.2"
  5242. },
  5243. "conflict": {
  5244. "symfony/security-core": "<6.4"
  5245. },
  5246. "require-dev": {
  5247. "symfony/console": "^6.4|^7.0",
  5248. "symfony/security-core": "^6.4|^7.0"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "Symfony\\Component\\PasswordHasher\\": ""
  5254. },
  5255. "exclude-from-classmap": [
  5256. "/Tests/"
  5257. ]
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Robin Chalas",
  5266. "email": "robin.chalas@gmail.com"
  5267. },
  5268. {
  5269. "name": "Symfony Community",
  5270. "homepage": "https://symfony.com/contributors"
  5271. }
  5272. ],
  5273. "description": "Provides password hashing utilities",
  5274. "homepage": "https://symfony.com",
  5275. "keywords": [
  5276. "hashing",
  5277. "password"
  5278. ],
  5279. "support": {
  5280. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://symfony.com/sponsor",
  5285. "type": "custom"
  5286. },
  5287. {
  5288. "url": "https://github.com/fabpot",
  5289. "type": "github"
  5290. },
  5291. {
  5292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5293. "type": "tidelift"
  5294. }
  5295. ],
  5296. "time": "2024-05-31T14:57:53+00:00"
  5297. },
  5298. {
  5299. "name": "symfony/polyfill-intl-grapheme",
  5300. "version": "v1.30.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5304. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5309. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "php": ">=7.1"
  5314. },
  5315. "suggest": {
  5316. "ext-intl": "For best performance"
  5317. },
  5318. "type": "library",
  5319. "extra": {
  5320. "thanks": {
  5321. "name": "symfony/polyfill",
  5322. "url": "https://github.com/symfony/polyfill"
  5323. }
  5324. },
  5325. "autoload": {
  5326. "files": [
  5327. "bootstrap.php"
  5328. ],
  5329. "psr-4": {
  5330. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5331. }
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "Nicolas Grekas",
  5340. "email": "p@tchwork.com"
  5341. },
  5342. {
  5343. "name": "Symfony Community",
  5344. "homepage": "https://symfony.com/contributors"
  5345. }
  5346. ],
  5347. "description": "Symfony polyfill for intl's grapheme_* functions",
  5348. "homepage": "https://symfony.com",
  5349. "keywords": [
  5350. "compatibility",
  5351. "grapheme",
  5352. "intl",
  5353. "polyfill",
  5354. "portable",
  5355. "shim"
  5356. ],
  5357. "support": {
  5358. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  5359. },
  5360. "funding": [
  5361. {
  5362. "url": "https://symfony.com/sponsor",
  5363. "type": "custom"
  5364. },
  5365. {
  5366. "url": "https://github.com/fabpot",
  5367. "type": "github"
  5368. },
  5369. {
  5370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5371. "type": "tidelift"
  5372. }
  5373. ],
  5374. "time": "2024-05-31T15:07:36+00:00"
  5375. },
  5376. {
  5377. "name": "symfony/polyfill-intl-icu",
  5378. "version": "v1.30.0",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5382. "reference": "e76343c631b453088e2260ac41dfebe21954de81"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81",
  5387. "reference": "e76343c631b453088e2260ac41dfebe21954de81",
  5388. "shasum": ""
  5389. },
  5390. "require": {
  5391. "php": ">=7.1"
  5392. },
  5393. "suggest": {
  5394. "ext-intl": "For best performance and support of other locales than \"en\""
  5395. },
  5396. "type": "library",
  5397. "extra": {
  5398. "thanks": {
  5399. "name": "symfony/polyfill",
  5400. "url": "https://github.com/symfony/polyfill"
  5401. }
  5402. },
  5403. "autoload": {
  5404. "files": [
  5405. "bootstrap.php"
  5406. ],
  5407. "psr-4": {
  5408. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5409. },
  5410. "classmap": [
  5411. "Resources/stubs"
  5412. ],
  5413. "exclude-from-classmap": [
  5414. "/Tests/"
  5415. ]
  5416. },
  5417. "notification-url": "https://packagist.org/downloads/",
  5418. "license": [
  5419. "MIT"
  5420. ],
  5421. "authors": [
  5422. {
  5423. "name": "Nicolas Grekas",
  5424. "email": "p@tchwork.com"
  5425. },
  5426. {
  5427. "name": "Symfony Community",
  5428. "homepage": "https://symfony.com/contributors"
  5429. }
  5430. ],
  5431. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5432. "homepage": "https://symfony.com",
  5433. "keywords": [
  5434. "compatibility",
  5435. "icu",
  5436. "intl",
  5437. "polyfill",
  5438. "portable",
  5439. "shim"
  5440. ],
  5441. "support": {
  5442. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0"
  5443. },
  5444. "funding": [
  5445. {
  5446. "url": "https://symfony.com/sponsor",
  5447. "type": "custom"
  5448. },
  5449. {
  5450. "url": "https://github.com/fabpot",
  5451. "type": "github"
  5452. },
  5453. {
  5454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5455. "type": "tidelift"
  5456. }
  5457. ],
  5458. "time": "2024-05-31T15:07:36+00:00"
  5459. },
  5460. {
  5461. "name": "symfony/polyfill-intl-idn",
  5462. "version": "v1.30.0",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5466. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5471. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": ">=7.1",
  5476. "symfony/polyfill-intl-normalizer": "^1.10",
  5477. "symfony/polyfill-php72": "^1.10"
  5478. },
  5479. "suggest": {
  5480. "ext-intl": "For best performance"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "thanks": {
  5485. "name": "symfony/polyfill",
  5486. "url": "https://github.com/symfony/polyfill"
  5487. }
  5488. },
  5489. "autoload": {
  5490. "files": [
  5491. "bootstrap.php"
  5492. ],
  5493. "psr-4": {
  5494. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5495. }
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "MIT"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Laurent Bassin",
  5504. "email": "laurent@bassin.info"
  5505. },
  5506. {
  5507. "name": "Trevor Rowbotham",
  5508. "email": "trevor.rowbotham@pm.me"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "compatibility",
  5519. "idn",
  5520. "intl",
  5521. "polyfill",
  5522. "portable",
  5523. "shim"
  5524. ],
  5525. "support": {
  5526. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5527. },
  5528. "funding": [
  5529. {
  5530. "url": "https://symfony.com/sponsor",
  5531. "type": "custom"
  5532. },
  5533. {
  5534. "url": "https://github.com/fabpot",
  5535. "type": "github"
  5536. },
  5537. {
  5538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5539. "type": "tidelift"
  5540. }
  5541. ],
  5542. "time": "2024-05-31T15:07:36+00:00"
  5543. },
  5544. {
  5545. "name": "symfony/polyfill-intl-normalizer",
  5546. "version": "v1.30.0",
  5547. "source": {
  5548. "type": "git",
  5549. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5550. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  5551. },
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5555. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "php": ">=7.1"
  5560. },
  5561. "suggest": {
  5562. "ext-intl": "For best performance"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "thanks": {
  5567. "name": "symfony/polyfill",
  5568. "url": "https://github.com/symfony/polyfill"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "files": [
  5573. "bootstrap.php"
  5574. ],
  5575. "psr-4": {
  5576. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5577. },
  5578. "classmap": [
  5579. "Resources/stubs"
  5580. ]
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Nicolas Grekas",
  5589. "email": "p@tchwork.com"
  5590. },
  5591. {
  5592. "name": "Symfony Community",
  5593. "homepage": "https://symfony.com/contributors"
  5594. }
  5595. ],
  5596. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5597. "homepage": "https://symfony.com",
  5598. "keywords": [
  5599. "compatibility",
  5600. "intl",
  5601. "normalizer",
  5602. "polyfill",
  5603. "portable",
  5604. "shim"
  5605. ],
  5606. "support": {
  5607. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  5608. },
  5609. "funding": [
  5610. {
  5611. "url": "https://symfony.com/sponsor",
  5612. "type": "custom"
  5613. },
  5614. {
  5615. "url": "https://github.com/fabpot",
  5616. "type": "github"
  5617. },
  5618. {
  5619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5620. "type": "tidelift"
  5621. }
  5622. ],
  5623. "time": "2024-05-31T15:07:36+00:00"
  5624. },
  5625. {
  5626. "name": "symfony/polyfill-mbstring",
  5627. "version": "v1.30.0",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5631. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5636. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "php": ">=7.1"
  5641. },
  5642. "provide": {
  5643. "ext-mbstring": "*"
  5644. },
  5645. "suggest": {
  5646. "ext-mbstring": "For best performance"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "thanks": {
  5651. "name": "symfony/polyfill",
  5652. "url": "https://github.com/symfony/polyfill"
  5653. }
  5654. },
  5655. "autoload": {
  5656. "files": [
  5657. "bootstrap.php"
  5658. ],
  5659. "psr-4": {
  5660. "Symfony\\Polyfill\\Mbstring\\": ""
  5661. }
  5662. },
  5663. "notification-url": "https://packagist.org/downloads/",
  5664. "license": [
  5665. "MIT"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "Nicolas Grekas",
  5670. "email": "p@tchwork.com"
  5671. },
  5672. {
  5673. "name": "Symfony Community",
  5674. "homepage": "https://symfony.com/contributors"
  5675. }
  5676. ],
  5677. "description": "Symfony polyfill for the Mbstring extension",
  5678. "homepage": "https://symfony.com",
  5679. "keywords": [
  5680. "compatibility",
  5681. "mbstring",
  5682. "polyfill",
  5683. "portable",
  5684. "shim"
  5685. ],
  5686. "support": {
  5687. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://symfony.com/sponsor",
  5692. "type": "custom"
  5693. },
  5694. {
  5695. "url": "https://github.com/fabpot",
  5696. "type": "github"
  5697. },
  5698. {
  5699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5700. "type": "tidelift"
  5701. }
  5702. ],
  5703. "time": "2024-06-19T12:30:46+00:00"
  5704. },
  5705. {
  5706. "name": "symfony/polyfill-php72",
  5707. "version": "v1.30.0",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/symfony/polyfill-php72.git",
  5711. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  5716. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  5717. "shasum": ""
  5718. },
  5719. "require": {
  5720. "php": ">=7.1"
  5721. },
  5722. "type": "library",
  5723. "extra": {
  5724. "thanks": {
  5725. "name": "symfony/polyfill",
  5726. "url": "https://github.com/symfony/polyfill"
  5727. }
  5728. },
  5729. "autoload": {
  5730. "files": [
  5731. "bootstrap.php"
  5732. ],
  5733. "psr-4": {
  5734. "Symfony\\Polyfill\\Php72\\": ""
  5735. }
  5736. },
  5737. "notification-url": "https://packagist.org/downloads/",
  5738. "license": [
  5739. "MIT"
  5740. ],
  5741. "authors": [
  5742. {
  5743. "name": "Nicolas Grekas",
  5744. "email": "p@tchwork.com"
  5745. },
  5746. {
  5747. "name": "Symfony Community",
  5748. "homepage": "https://symfony.com/contributors"
  5749. }
  5750. ],
  5751. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5752. "homepage": "https://symfony.com",
  5753. "keywords": [
  5754. "compatibility",
  5755. "polyfill",
  5756. "portable",
  5757. "shim"
  5758. ],
  5759. "support": {
  5760. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  5761. },
  5762. "funding": [
  5763. {
  5764. "url": "https://symfony.com/sponsor",
  5765. "type": "custom"
  5766. },
  5767. {
  5768. "url": "https://github.com/fabpot",
  5769. "type": "github"
  5770. },
  5771. {
  5772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5773. "type": "tidelift"
  5774. }
  5775. ],
  5776. "time": "2024-06-19T12:30:46+00:00"
  5777. },
  5778. {
  5779. "name": "symfony/polyfill-php80",
  5780. "version": "v1.30.0",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/symfony/polyfill-php80.git",
  5784. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  5789. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  5790. "shasum": ""
  5791. },
  5792. "require": {
  5793. "php": ">=7.1"
  5794. },
  5795. "type": "library",
  5796. "extra": {
  5797. "thanks": {
  5798. "name": "symfony/polyfill",
  5799. "url": "https://github.com/symfony/polyfill"
  5800. }
  5801. },
  5802. "autoload": {
  5803. "files": [
  5804. "bootstrap.php"
  5805. ],
  5806. "psr-4": {
  5807. "Symfony\\Polyfill\\Php80\\": ""
  5808. },
  5809. "classmap": [
  5810. "Resources/stubs"
  5811. ]
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Ion Bazan",
  5820. "email": "ion.bazan@gmail.com"
  5821. },
  5822. {
  5823. "name": "Nicolas Grekas",
  5824. "email": "p@tchwork.com"
  5825. },
  5826. {
  5827. "name": "Symfony Community",
  5828. "homepage": "https://symfony.com/contributors"
  5829. }
  5830. ],
  5831. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5832. "homepage": "https://symfony.com",
  5833. "keywords": [
  5834. "compatibility",
  5835. "polyfill",
  5836. "portable",
  5837. "shim"
  5838. ],
  5839. "support": {
  5840. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  5841. },
  5842. "funding": [
  5843. {
  5844. "url": "https://symfony.com/sponsor",
  5845. "type": "custom"
  5846. },
  5847. {
  5848. "url": "https://github.com/fabpot",
  5849. "type": "github"
  5850. },
  5851. {
  5852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5853. "type": "tidelift"
  5854. }
  5855. ],
  5856. "time": "2024-05-31T15:07:36+00:00"
  5857. },
  5858. {
  5859. "name": "symfony/polyfill-php83",
  5860. "version": "v1.30.0",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/symfony/polyfill-php83.git",
  5864. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5869. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "php": ">=7.1"
  5874. },
  5875. "type": "library",
  5876. "extra": {
  5877. "thanks": {
  5878. "name": "symfony/polyfill",
  5879. "url": "https://github.com/symfony/polyfill"
  5880. }
  5881. },
  5882. "autoload": {
  5883. "files": [
  5884. "bootstrap.php"
  5885. ],
  5886. "psr-4": {
  5887. "Symfony\\Polyfill\\Php83\\": ""
  5888. },
  5889. "classmap": [
  5890. "Resources/stubs"
  5891. ]
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Nicolas Grekas",
  5900. "email": "p@tchwork.com"
  5901. },
  5902. {
  5903. "name": "Symfony Community",
  5904. "homepage": "https://symfony.com/contributors"
  5905. }
  5906. ],
  5907. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5908. "homepage": "https://symfony.com",
  5909. "keywords": [
  5910. "compatibility",
  5911. "polyfill",
  5912. "portable",
  5913. "shim"
  5914. ],
  5915. "support": {
  5916. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  5917. },
  5918. "funding": [
  5919. {
  5920. "url": "https://symfony.com/sponsor",
  5921. "type": "custom"
  5922. },
  5923. {
  5924. "url": "https://github.com/fabpot",
  5925. "type": "github"
  5926. },
  5927. {
  5928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5929. "type": "tidelift"
  5930. }
  5931. ],
  5932. "time": "2024-06-19T12:35:24+00:00"
  5933. },
  5934. {
  5935. "name": "symfony/process",
  5936. "version": "v7.1.3",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://github.com/symfony/process.git",
  5940. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  5945. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  5946. "shasum": ""
  5947. },
  5948. "require": {
  5949. "php": ">=8.2"
  5950. },
  5951. "type": "library",
  5952. "autoload": {
  5953. "psr-4": {
  5954. "Symfony\\Component\\Process\\": ""
  5955. },
  5956. "exclude-from-classmap": [
  5957. "/Tests/"
  5958. ]
  5959. },
  5960. "notification-url": "https://packagist.org/downloads/",
  5961. "license": [
  5962. "MIT"
  5963. ],
  5964. "authors": [
  5965. {
  5966. "name": "Fabien Potencier",
  5967. "email": "fabien@symfony.com"
  5968. },
  5969. {
  5970. "name": "Symfony Community",
  5971. "homepage": "https://symfony.com/contributors"
  5972. }
  5973. ],
  5974. "description": "Executes commands in sub-processes",
  5975. "homepage": "https://symfony.com",
  5976. "support": {
  5977. "source": "https://github.com/symfony/process/tree/v7.1.3"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://symfony.com/sponsor",
  5982. "type": "custom"
  5983. },
  5984. {
  5985. "url": "https://github.com/fabpot",
  5986. "type": "github"
  5987. },
  5988. {
  5989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5990. "type": "tidelift"
  5991. }
  5992. ],
  5993. "time": "2024-07-26T12:44:47+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/property-access",
  5997. "version": "v7.1.1",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/property-access.git",
  6001. "reference": "74e39e6a6276b8e384f34c6ddbc10a6c9a60193a"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/property-access/zipball/74e39e6a6276b8e384f34c6ddbc10a6c9a60193a",
  6006. "reference": "74e39e6a6276b8e384f34c6ddbc10a6c9a60193a",
  6007. "shasum": ""
  6008. },
  6009. "require": {
  6010. "php": ">=8.2",
  6011. "symfony/property-info": "^6.4|^7.0"
  6012. },
  6013. "require-dev": {
  6014. "symfony/cache": "^6.4|^7.0"
  6015. },
  6016. "type": "library",
  6017. "autoload": {
  6018. "psr-4": {
  6019. "Symfony\\Component\\PropertyAccess\\": ""
  6020. },
  6021. "exclude-from-classmap": [
  6022. "/Tests/"
  6023. ]
  6024. },
  6025. "notification-url": "https://packagist.org/downloads/",
  6026. "license": [
  6027. "MIT"
  6028. ],
  6029. "authors": [
  6030. {
  6031. "name": "Fabien Potencier",
  6032. "email": "fabien@symfony.com"
  6033. },
  6034. {
  6035. "name": "Symfony Community",
  6036. "homepage": "https://symfony.com/contributors"
  6037. }
  6038. ],
  6039. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6040. "homepage": "https://symfony.com",
  6041. "keywords": [
  6042. "access",
  6043. "array",
  6044. "extraction",
  6045. "index",
  6046. "injection",
  6047. "object",
  6048. "property",
  6049. "property-path",
  6050. "reflection"
  6051. ],
  6052. "support": {
  6053. "source": "https://github.com/symfony/property-access/tree/v7.1.1"
  6054. },
  6055. "funding": [
  6056. {
  6057. "url": "https://symfony.com/sponsor",
  6058. "type": "custom"
  6059. },
  6060. {
  6061. "url": "https://github.com/fabpot",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6066. "type": "tidelift"
  6067. }
  6068. ],
  6069. "time": "2024-05-31T14:57:53+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/property-info",
  6073. "version": "v7.1.3",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/property-info.git",
  6077. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6082. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=8.2",
  6087. "symfony/string": "^6.4|^7.0",
  6088. "symfony/type-info": "^7.1"
  6089. },
  6090. "conflict": {
  6091. "phpdocumentor/reflection-docblock": "<5.2",
  6092. "phpdocumentor/type-resolver": "<1.5.1",
  6093. "symfony/dependency-injection": "<6.4",
  6094. "symfony/serializer": "<6.4"
  6095. },
  6096. "require-dev": {
  6097. "phpdocumentor/reflection-docblock": "^5.2",
  6098. "phpstan/phpdoc-parser": "^1.0",
  6099. "symfony/cache": "^6.4|^7.0",
  6100. "symfony/dependency-injection": "^6.4|^7.0",
  6101. "symfony/serializer": "^6.4|^7.0"
  6102. },
  6103. "type": "library",
  6104. "autoload": {
  6105. "psr-4": {
  6106. "Symfony\\Component\\PropertyInfo\\": ""
  6107. },
  6108. "exclude-from-classmap": [
  6109. "/Tests/"
  6110. ]
  6111. },
  6112. "notification-url": "https://packagist.org/downloads/",
  6113. "license": [
  6114. "MIT"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "Kévin Dunglas",
  6119. "email": "dunglas@gmail.com"
  6120. },
  6121. {
  6122. "name": "Symfony Community",
  6123. "homepage": "https://symfony.com/contributors"
  6124. }
  6125. ],
  6126. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6127. "homepage": "https://symfony.com",
  6128. "keywords": [
  6129. "doctrine",
  6130. "phpdoc",
  6131. "property",
  6132. "symfony",
  6133. "type",
  6134. "validator"
  6135. ],
  6136. "support": {
  6137. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  6138. },
  6139. "funding": [
  6140. {
  6141. "url": "https://symfony.com/sponsor",
  6142. "type": "custom"
  6143. },
  6144. {
  6145. "url": "https://github.com/fabpot",
  6146. "type": "github"
  6147. },
  6148. {
  6149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6150. "type": "tidelift"
  6151. }
  6152. ],
  6153. "time": "2024-07-26T07:36:36+00:00"
  6154. },
  6155. {
  6156. "name": "symfony/routing",
  6157. "version": "v7.1.3",
  6158. "source": {
  6159. "type": "git",
  6160. "url": "https://github.com/symfony/routing.git",
  6161. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0"
  6162. },
  6163. "dist": {
  6164. "type": "zip",
  6165. "url": "https://api.github.com/repos/symfony/routing/zipball/8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  6166. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  6167. "shasum": ""
  6168. },
  6169. "require": {
  6170. "php": ">=8.2",
  6171. "symfony/deprecation-contracts": "^2.5|^3"
  6172. },
  6173. "conflict": {
  6174. "symfony/config": "<6.4",
  6175. "symfony/dependency-injection": "<6.4",
  6176. "symfony/yaml": "<6.4"
  6177. },
  6178. "require-dev": {
  6179. "psr/log": "^1|^2|^3",
  6180. "symfony/config": "^6.4|^7.0",
  6181. "symfony/dependency-injection": "^6.4|^7.0",
  6182. "symfony/expression-language": "^6.4|^7.0",
  6183. "symfony/http-foundation": "^6.4|^7.0",
  6184. "symfony/yaml": "^6.4|^7.0"
  6185. },
  6186. "type": "library",
  6187. "autoload": {
  6188. "psr-4": {
  6189. "Symfony\\Component\\Routing\\": ""
  6190. },
  6191. "exclude-from-classmap": [
  6192. "/Tests/"
  6193. ]
  6194. },
  6195. "notification-url": "https://packagist.org/downloads/",
  6196. "license": [
  6197. "MIT"
  6198. ],
  6199. "authors": [
  6200. {
  6201. "name": "Fabien Potencier",
  6202. "email": "fabien@symfony.com"
  6203. },
  6204. {
  6205. "name": "Symfony Community",
  6206. "homepage": "https://symfony.com/contributors"
  6207. }
  6208. ],
  6209. "description": "Maps an HTTP request to a set of configuration variables",
  6210. "homepage": "https://symfony.com",
  6211. "keywords": [
  6212. "router",
  6213. "routing",
  6214. "uri",
  6215. "url"
  6216. ],
  6217. "support": {
  6218. "source": "https://github.com/symfony/routing/tree/v7.1.3"
  6219. },
  6220. "funding": [
  6221. {
  6222. "url": "https://symfony.com/sponsor",
  6223. "type": "custom"
  6224. },
  6225. {
  6226. "url": "https://github.com/fabpot",
  6227. "type": "github"
  6228. },
  6229. {
  6230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6231. "type": "tidelift"
  6232. }
  6233. ],
  6234. "time": "2024-07-17T06:10:24+00:00"
  6235. },
  6236. {
  6237. "name": "symfony/runtime",
  6238. "version": "v7.1.1",
  6239. "source": {
  6240. "type": "git",
  6241. "url": "https://github.com/symfony/runtime.git",
  6242. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6243. },
  6244. "dist": {
  6245. "type": "zip",
  6246. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6247. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6248. "shasum": ""
  6249. },
  6250. "require": {
  6251. "composer-plugin-api": "^1.0|^2.0",
  6252. "php": ">=8.2"
  6253. },
  6254. "conflict": {
  6255. "symfony/dotenv": "<6.4"
  6256. },
  6257. "require-dev": {
  6258. "composer/composer": "^2.6",
  6259. "symfony/console": "^6.4|^7.0",
  6260. "symfony/dotenv": "^6.4|^7.0",
  6261. "symfony/http-foundation": "^6.4|^7.0",
  6262. "symfony/http-kernel": "^6.4|^7.0"
  6263. },
  6264. "type": "composer-plugin",
  6265. "extra": {
  6266. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6267. },
  6268. "autoload": {
  6269. "psr-4": {
  6270. "Symfony\\Component\\Runtime\\": "",
  6271. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6272. },
  6273. "exclude-from-classmap": [
  6274. "/Tests/"
  6275. ]
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Nicolas Grekas",
  6284. "email": "p@tchwork.com"
  6285. },
  6286. {
  6287. "name": "Symfony Community",
  6288. "homepage": "https://symfony.com/contributors"
  6289. }
  6290. ],
  6291. "description": "Enables decoupling PHP applications from global state",
  6292. "homepage": "https://symfony.com",
  6293. "keywords": [
  6294. "runtime"
  6295. ],
  6296. "support": {
  6297. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2024-05-31T14:55:39+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/security-bundle",
  6317. "version": "v7.1.3",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/security-bundle.git",
  6321. "reference": "4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad",
  6326. "reference": "4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "composer-runtime-api": ">=2.1",
  6331. "ext-xml": "*",
  6332. "php": ">=8.2",
  6333. "symfony/clock": "^6.4|^7.0",
  6334. "symfony/config": "^6.4|^7.0",
  6335. "symfony/dependency-injection": "^6.4|^7.0",
  6336. "symfony/event-dispatcher": "^6.4|^7.0",
  6337. "symfony/http-foundation": "^6.4|^7.0",
  6338. "symfony/http-kernel": "^6.4|^7.0",
  6339. "symfony/password-hasher": "^6.4|^7.0",
  6340. "symfony/security-core": "^6.4|^7.0",
  6341. "symfony/security-csrf": "^6.4|^7.0",
  6342. "symfony/security-http": "^7.1",
  6343. "symfony/service-contracts": "^2.5|^3"
  6344. },
  6345. "conflict": {
  6346. "symfony/browser-kit": "<6.4",
  6347. "symfony/console": "<6.4",
  6348. "symfony/framework-bundle": "<6.4",
  6349. "symfony/http-client": "<6.4",
  6350. "symfony/ldap": "<6.4",
  6351. "symfony/serializer": "<6.4",
  6352. "symfony/twig-bundle": "<6.4",
  6353. "symfony/validator": "<6.4"
  6354. },
  6355. "require-dev": {
  6356. "symfony/asset": "^6.4|^7.0",
  6357. "symfony/browser-kit": "^6.4|^7.0",
  6358. "symfony/console": "^6.4|^7.0",
  6359. "symfony/css-selector": "^6.4|^7.0",
  6360. "symfony/dom-crawler": "^6.4|^7.0",
  6361. "symfony/expression-language": "^6.4|^7.0",
  6362. "symfony/form": "^6.4|^7.0",
  6363. "symfony/framework-bundle": "^6.4|^7.0",
  6364. "symfony/http-client": "^6.4|^7.0",
  6365. "symfony/ldap": "^6.4|^7.0",
  6366. "symfony/process": "^6.4|^7.0",
  6367. "symfony/rate-limiter": "^6.4|^7.0",
  6368. "symfony/serializer": "^6.4|^7.0",
  6369. "symfony/translation": "^6.4|^7.0",
  6370. "symfony/twig-bridge": "^6.4|^7.0",
  6371. "symfony/twig-bundle": "^6.4|^7.0",
  6372. "symfony/validator": "^6.4|^7.0",
  6373. "symfony/yaml": "^6.4|^7.0",
  6374. "twig/twig": "^3.0.4",
  6375. "web-token/jwt-library": "^3.3.2|^4.0"
  6376. },
  6377. "type": "symfony-bundle",
  6378. "autoload": {
  6379. "psr-4": {
  6380. "Symfony\\Bundle\\SecurityBundle\\": ""
  6381. },
  6382. "exclude-from-classmap": [
  6383. "/Tests/"
  6384. ]
  6385. },
  6386. "notification-url": "https://packagist.org/downloads/",
  6387. "license": [
  6388. "MIT"
  6389. ],
  6390. "authors": [
  6391. {
  6392. "name": "Fabien Potencier",
  6393. "email": "fabien@symfony.com"
  6394. },
  6395. {
  6396. "name": "Symfony Community",
  6397. "homepage": "https://symfony.com/contributors"
  6398. }
  6399. ],
  6400. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6401. "homepage": "https://symfony.com",
  6402. "support": {
  6403. "source": "https://github.com/symfony/security-bundle/tree/v7.1.3"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://symfony.com/sponsor",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/fabpot",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2024-07-26T07:24:20+00:00"
  6420. },
  6421. {
  6422. "name": "symfony/security-core",
  6423. "version": "v7.1.3",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/symfony/security-core.git",
  6427. "reference": "aa4f432586a129017ce0ba34e2b1bfe6babfe8c7"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/symfony/security-core/zipball/aa4f432586a129017ce0ba34e2b1bfe6babfe8c7",
  6432. "reference": "aa4f432586a129017ce0ba34e2b1bfe6babfe8c7",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=8.2",
  6437. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6438. "symfony/password-hasher": "^6.4|^7.0",
  6439. "symfony/service-contracts": "^2.5|^3"
  6440. },
  6441. "conflict": {
  6442. "symfony/dependency-injection": "<6.4",
  6443. "symfony/event-dispatcher": "<6.4",
  6444. "symfony/http-foundation": "<6.4",
  6445. "symfony/ldap": "<6.4",
  6446. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6447. "symfony/validator": "<6.4"
  6448. },
  6449. "require-dev": {
  6450. "psr/cache": "^1.0|^2.0|^3.0",
  6451. "psr/container": "^1.1|^2.0",
  6452. "psr/log": "^1|^2|^3",
  6453. "symfony/cache": "^6.4|^7.0",
  6454. "symfony/dependency-injection": "^6.4|^7.0",
  6455. "symfony/event-dispatcher": "^6.4|^7.0",
  6456. "symfony/expression-language": "^6.4|^7.0",
  6457. "symfony/http-foundation": "^6.4|^7.0",
  6458. "symfony/ldap": "^6.4|^7.0",
  6459. "symfony/string": "^6.4|^7.0",
  6460. "symfony/translation": "^6.4.3|^7.0.3",
  6461. "symfony/validator": "^6.4|^7.0"
  6462. },
  6463. "type": "library",
  6464. "autoload": {
  6465. "psr-4": {
  6466. "Symfony\\Component\\Security\\Core\\": ""
  6467. },
  6468. "exclude-from-classmap": [
  6469. "/Tests/"
  6470. ]
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "Fabien Potencier",
  6479. "email": "fabien@symfony.com"
  6480. },
  6481. {
  6482. "name": "Symfony Community",
  6483. "homepage": "https://symfony.com/contributors"
  6484. }
  6485. ],
  6486. "description": "Symfony Security Component - Core Library",
  6487. "homepage": "https://symfony.com",
  6488. "support": {
  6489. "source": "https://github.com/symfony/security-core/tree/v7.1.3"
  6490. },
  6491. "funding": [
  6492. {
  6493. "url": "https://symfony.com/sponsor",
  6494. "type": "custom"
  6495. },
  6496. {
  6497. "url": "https://github.com/fabpot",
  6498. "type": "github"
  6499. },
  6500. {
  6501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6502. "type": "tidelift"
  6503. }
  6504. ],
  6505. "time": "2024-07-26T12:41:01+00:00"
  6506. },
  6507. {
  6508. "name": "symfony/security-csrf",
  6509. "version": "v7.1.1",
  6510. "source": {
  6511. "type": "git",
  6512. "url": "https://github.com/symfony/security-csrf.git",
  6513. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6514. },
  6515. "dist": {
  6516. "type": "zip",
  6517. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6518. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6519. "shasum": ""
  6520. },
  6521. "require": {
  6522. "php": ">=8.2",
  6523. "symfony/security-core": "^6.4|^7.0"
  6524. },
  6525. "conflict": {
  6526. "symfony/http-foundation": "<6.4"
  6527. },
  6528. "require-dev": {
  6529. "symfony/http-foundation": "^6.4|^7.0"
  6530. },
  6531. "type": "library",
  6532. "autoload": {
  6533. "psr-4": {
  6534. "Symfony\\Component\\Security\\Csrf\\": ""
  6535. },
  6536. "exclude-from-classmap": [
  6537. "/Tests/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "MIT"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Fabien Potencier",
  6547. "email": "fabien@symfony.com"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Symfony Security Component - CSRF Library",
  6555. "homepage": "https://symfony.com",
  6556. "support": {
  6557. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6558. },
  6559. "funding": [
  6560. {
  6561. "url": "https://symfony.com/sponsor",
  6562. "type": "custom"
  6563. },
  6564. {
  6565. "url": "https://github.com/fabpot",
  6566. "type": "github"
  6567. },
  6568. {
  6569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6570. "type": "tidelift"
  6571. }
  6572. ],
  6573. "time": "2024-05-31T14:57:53+00:00"
  6574. },
  6575. {
  6576. "name": "symfony/security-http",
  6577. "version": "v7.1.3",
  6578. "source": {
  6579. "type": "git",
  6580. "url": "https://github.com/symfony/security-http.git",
  6581. "reference": "19f07b6530dbb82017c38ee7582b154f5c42b179"
  6582. },
  6583. "dist": {
  6584. "type": "zip",
  6585. "url": "https://api.github.com/repos/symfony/security-http/zipball/19f07b6530dbb82017c38ee7582b154f5c42b179",
  6586. "reference": "19f07b6530dbb82017c38ee7582b154f5c42b179",
  6587. "shasum": ""
  6588. },
  6589. "require": {
  6590. "php": ">=8.2",
  6591. "symfony/deprecation-contracts": "^2.5|^3",
  6592. "symfony/http-foundation": "^6.4|^7.0",
  6593. "symfony/http-kernel": "^6.4|^7.0",
  6594. "symfony/polyfill-mbstring": "~1.0",
  6595. "symfony/property-access": "^6.4|^7.0",
  6596. "symfony/security-core": "^6.4|^7.0",
  6597. "symfony/service-contracts": "^2.5|^3"
  6598. },
  6599. "conflict": {
  6600. "symfony/clock": "<6.4",
  6601. "symfony/event-dispatcher": "<6.4",
  6602. "symfony/http-client-contracts": "<3.0",
  6603. "symfony/security-bundle": "<6.4",
  6604. "symfony/security-csrf": "<6.4"
  6605. },
  6606. "require-dev": {
  6607. "psr/log": "^1|^2|^3",
  6608. "symfony/cache": "^6.4|^7.0",
  6609. "symfony/clock": "^6.4|^7.0",
  6610. "symfony/expression-language": "^6.4|^7.0",
  6611. "symfony/http-client": "^6.4|^7.0",
  6612. "symfony/http-client-contracts": "^3.0",
  6613. "symfony/rate-limiter": "^6.4|^7.0",
  6614. "symfony/routing": "^6.4|^7.0",
  6615. "symfony/security-csrf": "^6.4|^7.0",
  6616. "symfony/translation": "^6.4|^7.0",
  6617. "web-token/jwt-library": "^3.3.2|^4.0"
  6618. },
  6619. "type": "library",
  6620. "autoload": {
  6621. "psr-4": {
  6622. "Symfony\\Component\\Security\\Http\\": ""
  6623. },
  6624. "exclude-from-classmap": [
  6625. "/Tests/"
  6626. ]
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "MIT"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Fabien Potencier",
  6635. "email": "fabien@symfony.com"
  6636. },
  6637. {
  6638. "name": "Symfony Community",
  6639. "homepage": "https://symfony.com/contributors"
  6640. }
  6641. ],
  6642. "description": "Symfony Security Component - HTTP Integration",
  6643. "homepage": "https://symfony.com",
  6644. "support": {
  6645. "source": "https://github.com/symfony/security-http/tree/v7.1.3"
  6646. },
  6647. "funding": [
  6648. {
  6649. "url": "https://symfony.com/sponsor",
  6650. "type": "custom"
  6651. },
  6652. {
  6653. "url": "https://github.com/fabpot",
  6654. "type": "github"
  6655. },
  6656. {
  6657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6658. "type": "tidelift"
  6659. }
  6660. ],
  6661. "time": "2024-07-26T07:24:20+00:00"
  6662. },
  6663. {
  6664. "name": "symfony/serializer",
  6665. "version": "v7.1.3",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/symfony/serializer.git",
  6669. "reference": "0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/symfony/serializer/zipball/0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09",
  6674. "reference": "0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": ">=8.2",
  6679. "symfony/deprecation-contracts": "^2.5|^3",
  6680. "symfony/polyfill-ctype": "~1.8"
  6681. },
  6682. "conflict": {
  6683. "phpdocumentor/reflection-docblock": "<3.2.2",
  6684. "phpdocumentor/type-resolver": "<1.4.0",
  6685. "symfony/dependency-injection": "<6.4",
  6686. "symfony/property-access": "<6.4",
  6687. "symfony/property-info": "<6.4",
  6688. "symfony/uid": "<6.4",
  6689. "symfony/validator": "<6.4",
  6690. "symfony/yaml": "<6.4"
  6691. },
  6692. "require-dev": {
  6693. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6694. "seld/jsonlint": "^1.10",
  6695. "symfony/cache": "^6.4|^7.0",
  6696. "symfony/config": "^6.4|^7.0",
  6697. "symfony/console": "^6.4|^7.0",
  6698. "symfony/dependency-injection": "^6.4|^7.0",
  6699. "symfony/error-handler": "^6.4|^7.0",
  6700. "symfony/filesystem": "^6.4|^7.0",
  6701. "symfony/form": "^6.4|^7.0",
  6702. "symfony/http-foundation": "^6.4|^7.0",
  6703. "symfony/http-kernel": "^6.4|^7.0",
  6704. "symfony/messenger": "^6.4|^7.0",
  6705. "symfony/mime": "^6.4|^7.0",
  6706. "symfony/property-access": "^6.4|^7.0",
  6707. "symfony/property-info": "^6.4|^7.0",
  6708. "symfony/translation-contracts": "^2.5|^3",
  6709. "symfony/type-info": "^7.1",
  6710. "symfony/uid": "^6.4|^7.0",
  6711. "symfony/validator": "^6.4|^7.0",
  6712. "symfony/var-dumper": "^6.4|^7.0",
  6713. "symfony/var-exporter": "^6.4|^7.0",
  6714. "symfony/yaml": "^6.4|^7.0"
  6715. },
  6716. "type": "library",
  6717. "autoload": {
  6718. "psr-4": {
  6719. "Symfony\\Component\\Serializer\\": ""
  6720. },
  6721. "exclude-from-classmap": [
  6722. "/Tests/"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Fabien Potencier",
  6732. "email": "fabien@symfony.com"
  6733. },
  6734. {
  6735. "name": "Symfony Community",
  6736. "homepage": "https://symfony.com/contributors"
  6737. }
  6738. ],
  6739. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6740. "homepage": "https://symfony.com",
  6741. "support": {
  6742. "source": "https://github.com/symfony/serializer/tree/v7.1.3"
  6743. },
  6744. "funding": [
  6745. {
  6746. "url": "https://symfony.com/sponsor",
  6747. "type": "custom"
  6748. },
  6749. {
  6750. "url": "https://github.com/fabpot",
  6751. "type": "github"
  6752. },
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2024-07-17T06:10:24+00:00"
  6759. },
  6760. {
  6761. "name": "symfony/service-contracts",
  6762. "version": "v3.5.0",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/symfony/service-contracts.git",
  6766. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6771. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": ">=8.1",
  6776. "psr/container": "^1.1|^2.0",
  6777. "symfony/deprecation-contracts": "^2.5|^3"
  6778. },
  6779. "conflict": {
  6780. "ext-psr": "<1.1|>=2"
  6781. },
  6782. "type": "library",
  6783. "extra": {
  6784. "branch-alias": {
  6785. "dev-main": "3.5-dev"
  6786. },
  6787. "thanks": {
  6788. "name": "symfony/contracts",
  6789. "url": "https://github.com/symfony/contracts"
  6790. }
  6791. },
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Symfony\\Contracts\\Service\\": ""
  6795. },
  6796. "exclude-from-classmap": [
  6797. "/Test/"
  6798. ]
  6799. },
  6800. "notification-url": "https://packagist.org/downloads/",
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Nicolas Grekas",
  6807. "email": "p@tchwork.com"
  6808. },
  6809. {
  6810. "name": "Symfony Community",
  6811. "homepage": "https://symfony.com/contributors"
  6812. }
  6813. ],
  6814. "description": "Generic abstractions related to writing services",
  6815. "homepage": "https://symfony.com",
  6816. "keywords": [
  6817. "abstractions",
  6818. "contracts",
  6819. "decoupling",
  6820. "interfaces",
  6821. "interoperability",
  6822. "standards"
  6823. ],
  6824. "support": {
  6825. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6826. },
  6827. "funding": [
  6828. {
  6829. "url": "https://symfony.com/sponsor",
  6830. "type": "custom"
  6831. },
  6832. {
  6833. "url": "https://github.com/fabpot",
  6834. "type": "github"
  6835. },
  6836. {
  6837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6838. "type": "tidelift"
  6839. }
  6840. ],
  6841. "time": "2024-04-18T09:32:20+00:00"
  6842. },
  6843. {
  6844. "name": "symfony/stimulus-bundle",
  6845. "version": "v2.18.1",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/symfony/stimulus-bundle.git",
  6849. "reference": "017b60e036c366c8ce0e77864d5aabab436ad73d"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/017b60e036c366c8ce0e77864d5aabab436ad73d",
  6854. "reference": "017b60e036c366c8ce0e77864d5aabab436ad73d",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "php": ">=8.1",
  6859. "symfony/config": "^5.4|^6.0|^7.0",
  6860. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6861. "symfony/deprecation-contracts": "^2.0|^3.0",
  6862. "symfony/finder": "^5.4|^6.0|^7.0",
  6863. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6864. "twig/twig": "^2.15.3|^3.8"
  6865. },
  6866. "require-dev": {
  6867. "symfony/asset-mapper": "^6.3|^7.0",
  6868. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6869. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6870. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6871. "zenstruck/browser": "^1.4"
  6872. },
  6873. "type": "symfony-bundle",
  6874. "autoload": {
  6875. "psr-4": {
  6876. "Symfony\\UX\\StimulusBundle\\": "src"
  6877. }
  6878. },
  6879. "notification-url": "https://packagist.org/downloads/",
  6880. "license": [
  6881. "MIT"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "Symfony Community",
  6886. "homepage": "https://symfony.com/contributors"
  6887. }
  6888. ],
  6889. "description": "Integration with your Symfony app & Stimulus!",
  6890. "keywords": [
  6891. "symfony-ux"
  6892. ],
  6893. "support": {
  6894. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.18.1"
  6895. },
  6896. "funding": [
  6897. {
  6898. "url": "https://symfony.com/sponsor",
  6899. "type": "custom"
  6900. },
  6901. {
  6902. "url": "https://github.com/fabpot",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6907. "type": "tidelift"
  6908. }
  6909. ],
  6910. "time": "2024-06-11T13:21:54+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/stopwatch",
  6914. "version": "v7.1.1",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/stopwatch.git",
  6918. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6923. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "php": ">=8.2",
  6928. "symfony/service-contracts": "^2.5|^3"
  6929. },
  6930. "type": "library",
  6931. "autoload": {
  6932. "psr-4": {
  6933. "Symfony\\Component\\Stopwatch\\": ""
  6934. },
  6935. "exclude-from-classmap": [
  6936. "/Tests/"
  6937. ]
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Fabien Potencier",
  6946. "email": "fabien@symfony.com"
  6947. },
  6948. {
  6949. "name": "Symfony Community",
  6950. "homepage": "https://symfony.com/contributors"
  6951. }
  6952. ],
  6953. "description": "Provides a way to profile code",
  6954. "homepage": "https://symfony.com",
  6955. "support": {
  6956. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  6957. },
  6958. "funding": [
  6959. {
  6960. "url": "https://symfony.com/sponsor",
  6961. "type": "custom"
  6962. },
  6963. {
  6964. "url": "https://github.com/fabpot",
  6965. "type": "github"
  6966. },
  6967. {
  6968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6969. "type": "tidelift"
  6970. }
  6971. ],
  6972. "time": "2024-05-31T14:57:53+00:00"
  6973. },
  6974. {
  6975. "name": "symfony/string",
  6976. "version": "v7.1.3",
  6977. "source": {
  6978. "type": "git",
  6979. "url": "https://github.com/symfony/string.git",
  6980. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07"
  6981. },
  6982. "dist": {
  6983. "type": "zip",
  6984. "url": "https://api.github.com/repos/symfony/string/zipball/ea272a882be7f20cad58d5d78c215001617b7f07",
  6985. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07",
  6986. "shasum": ""
  6987. },
  6988. "require": {
  6989. "php": ">=8.2",
  6990. "symfony/polyfill-ctype": "~1.8",
  6991. "symfony/polyfill-intl-grapheme": "~1.0",
  6992. "symfony/polyfill-intl-normalizer": "~1.0",
  6993. "symfony/polyfill-mbstring": "~1.0"
  6994. },
  6995. "conflict": {
  6996. "symfony/translation-contracts": "<2.5"
  6997. },
  6998. "require-dev": {
  6999. "symfony/emoji": "^7.1",
  7000. "symfony/error-handler": "^6.4|^7.0",
  7001. "symfony/http-client": "^6.4|^7.0",
  7002. "symfony/intl": "^6.4|^7.0",
  7003. "symfony/translation-contracts": "^2.5|^3.0",
  7004. "symfony/var-exporter": "^6.4|^7.0"
  7005. },
  7006. "type": "library",
  7007. "autoload": {
  7008. "files": [
  7009. "Resources/functions.php"
  7010. ],
  7011. "psr-4": {
  7012. "Symfony\\Component\\String\\": ""
  7013. },
  7014. "exclude-from-classmap": [
  7015. "/Tests/"
  7016. ]
  7017. },
  7018. "notification-url": "https://packagist.org/downloads/",
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Nicolas Grekas",
  7025. "email": "p@tchwork.com"
  7026. },
  7027. {
  7028. "name": "Symfony Community",
  7029. "homepage": "https://symfony.com/contributors"
  7030. }
  7031. ],
  7032. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7033. "homepage": "https://symfony.com",
  7034. "keywords": [
  7035. "grapheme",
  7036. "i18n",
  7037. "string",
  7038. "unicode",
  7039. "utf-8",
  7040. "utf8"
  7041. ],
  7042. "support": {
  7043. "source": "https://github.com/symfony/string/tree/v7.1.3"
  7044. },
  7045. "funding": [
  7046. {
  7047. "url": "https://symfony.com/sponsor",
  7048. "type": "custom"
  7049. },
  7050. {
  7051. "url": "https://github.com/fabpot",
  7052. "type": "github"
  7053. },
  7054. {
  7055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7056. "type": "tidelift"
  7057. }
  7058. ],
  7059. "time": "2024-07-22T10:25:37+00:00"
  7060. },
  7061. {
  7062. "name": "symfony/translation",
  7063. "version": "v7.1.3",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/symfony/translation.git",
  7067. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
  7072. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
  7073. "shasum": ""
  7074. },
  7075. "require": {
  7076. "php": ">=8.2",
  7077. "symfony/polyfill-mbstring": "~1.0",
  7078. "symfony/translation-contracts": "^2.5|^3.0"
  7079. },
  7080. "conflict": {
  7081. "symfony/config": "<6.4",
  7082. "symfony/console": "<6.4",
  7083. "symfony/dependency-injection": "<6.4",
  7084. "symfony/http-client-contracts": "<2.5",
  7085. "symfony/http-kernel": "<6.4",
  7086. "symfony/service-contracts": "<2.5",
  7087. "symfony/twig-bundle": "<6.4",
  7088. "symfony/yaml": "<6.4"
  7089. },
  7090. "provide": {
  7091. "symfony/translation-implementation": "2.3|3.0"
  7092. },
  7093. "require-dev": {
  7094. "nikic/php-parser": "^4.18|^5.0",
  7095. "psr/log": "^1|^2|^3",
  7096. "symfony/config": "^6.4|^7.0",
  7097. "symfony/console": "^6.4|^7.0",
  7098. "symfony/dependency-injection": "^6.4|^7.0",
  7099. "symfony/finder": "^6.4|^7.0",
  7100. "symfony/http-client-contracts": "^2.5|^3.0",
  7101. "symfony/http-kernel": "^6.4|^7.0",
  7102. "symfony/intl": "^6.4|^7.0",
  7103. "symfony/polyfill-intl-icu": "^1.21",
  7104. "symfony/routing": "^6.4|^7.0",
  7105. "symfony/service-contracts": "^2.5|^3",
  7106. "symfony/yaml": "^6.4|^7.0"
  7107. },
  7108. "type": "library",
  7109. "autoload": {
  7110. "files": [
  7111. "Resources/functions.php"
  7112. ],
  7113. "psr-4": {
  7114. "Symfony\\Component\\Translation\\": ""
  7115. },
  7116. "exclude-from-classmap": [
  7117. "/Tests/"
  7118. ]
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "MIT"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Fabien Potencier",
  7127. "email": "fabien@symfony.com"
  7128. },
  7129. {
  7130. "name": "Symfony Community",
  7131. "homepage": "https://symfony.com/contributors"
  7132. }
  7133. ],
  7134. "description": "Provides tools to internationalize your application",
  7135. "homepage": "https://symfony.com",
  7136. "support": {
  7137. "source": "https://github.com/symfony/translation/tree/v7.1.3"
  7138. },
  7139. "funding": [
  7140. {
  7141. "url": "https://symfony.com/sponsor",
  7142. "type": "custom"
  7143. },
  7144. {
  7145. "url": "https://github.com/fabpot",
  7146. "type": "github"
  7147. },
  7148. {
  7149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7150. "type": "tidelift"
  7151. }
  7152. ],
  7153. "time": "2024-07-26T12:41:01+00:00"
  7154. },
  7155. {
  7156. "name": "symfony/translation-contracts",
  7157. "version": "v3.5.0",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/symfony/translation-contracts.git",
  7161. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7166. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": ">=8.1"
  7171. },
  7172. "type": "library",
  7173. "extra": {
  7174. "branch-alias": {
  7175. "dev-main": "3.5-dev"
  7176. },
  7177. "thanks": {
  7178. "name": "symfony/contracts",
  7179. "url": "https://github.com/symfony/contracts"
  7180. }
  7181. },
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Symfony\\Contracts\\Translation\\": ""
  7185. },
  7186. "exclude-from-classmap": [
  7187. "/Test/"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Nicolas Grekas",
  7197. "email": "p@tchwork.com"
  7198. },
  7199. {
  7200. "name": "Symfony Community",
  7201. "homepage": "https://symfony.com/contributors"
  7202. }
  7203. ],
  7204. "description": "Generic abstractions related to translation",
  7205. "homepage": "https://symfony.com",
  7206. "keywords": [
  7207. "abstractions",
  7208. "contracts",
  7209. "decoupling",
  7210. "interfaces",
  7211. "interoperability",
  7212. "standards"
  7213. ],
  7214. "support": {
  7215. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7216. },
  7217. "funding": [
  7218. {
  7219. "url": "https://symfony.com/sponsor",
  7220. "type": "custom"
  7221. },
  7222. {
  7223. "url": "https://github.com/fabpot",
  7224. "type": "github"
  7225. },
  7226. {
  7227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7228. "type": "tidelift"
  7229. }
  7230. ],
  7231. "time": "2024-04-18T09:32:20+00:00"
  7232. },
  7233. {
  7234. "name": "symfony/twig-bridge",
  7235. "version": "v7.1.1",
  7236. "source": {
  7237. "type": "git",
  7238. "url": "https://github.com/symfony/twig-bridge.git",
  7239. "reference": "96e6e12a63db80bcedefc012042d2cb2d1a015f8"
  7240. },
  7241. "dist": {
  7242. "type": "zip",
  7243. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/96e6e12a63db80bcedefc012042d2cb2d1a015f8",
  7244. "reference": "96e6e12a63db80bcedefc012042d2cb2d1a015f8",
  7245. "shasum": ""
  7246. },
  7247. "require": {
  7248. "php": ">=8.2",
  7249. "symfony/translation-contracts": "^2.5|^3",
  7250. "twig/twig": "^3.9"
  7251. },
  7252. "conflict": {
  7253. "phpdocumentor/reflection-docblock": "<3.2.2",
  7254. "phpdocumentor/type-resolver": "<1.4.0",
  7255. "symfony/console": "<6.4",
  7256. "symfony/form": "<6.4",
  7257. "symfony/http-foundation": "<6.4",
  7258. "symfony/http-kernel": "<6.4",
  7259. "symfony/mime": "<6.4",
  7260. "symfony/serializer": "<6.4",
  7261. "symfony/translation": "<6.4",
  7262. "symfony/workflow": "<6.4"
  7263. },
  7264. "require-dev": {
  7265. "egulias/email-validator": "^2.1.10|^3|^4",
  7266. "league/html-to-markdown": "^5.0",
  7267. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7268. "symfony/asset": "^6.4|^7.0",
  7269. "symfony/asset-mapper": "^6.4|^7.0",
  7270. "symfony/console": "^6.4|^7.0",
  7271. "symfony/dependency-injection": "^6.4|^7.0",
  7272. "symfony/emoji": "^7.1",
  7273. "symfony/expression-language": "^6.4|^7.0",
  7274. "symfony/finder": "^6.4|^7.0",
  7275. "symfony/form": "^6.4|^7.0",
  7276. "symfony/html-sanitizer": "^6.4|^7.0",
  7277. "symfony/http-foundation": "^6.4|^7.0",
  7278. "symfony/http-kernel": "^6.4|^7.0",
  7279. "symfony/intl": "^6.4|^7.0",
  7280. "symfony/mime": "^6.4|^7.0",
  7281. "symfony/polyfill-intl-icu": "~1.0",
  7282. "symfony/property-info": "^6.4|^7.0",
  7283. "symfony/routing": "^6.4|^7.0",
  7284. "symfony/security-acl": "^2.8|^3.0",
  7285. "symfony/security-core": "^6.4|^7.0",
  7286. "symfony/security-csrf": "^6.4|^7.0",
  7287. "symfony/security-http": "^6.4|^7.0",
  7288. "symfony/serializer": "^6.4.3|^7.0.3",
  7289. "symfony/stopwatch": "^6.4|^7.0",
  7290. "symfony/translation": "^6.4|^7.0",
  7291. "symfony/web-link": "^6.4|^7.0",
  7292. "symfony/workflow": "^6.4|^7.0",
  7293. "symfony/yaml": "^6.4|^7.0",
  7294. "twig/cssinliner-extra": "^2.12|^3",
  7295. "twig/inky-extra": "^2.12|^3",
  7296. "twig/markdown-extra": "^2.12|^3"
  7297. },
  7298. "type": "symfony-bridge",
  7299. "autoload": {
  7300. "psr-4": {
  7301. "Symfony\\Bridge\\Twig\\": ""
  7302. },
  7303. "exclude-from-classmap": [
  7304. "/Tests/"
  7305. ]
  7306. },
  7307. "notification-url": "https://packagist.org/downloads/",
  7308. "license": [
  7309. "MIT"
  7310. ],
  7311. "authors": [
  7312. {
  7313. "name": "Fabien Potencier",
  7314. "email": "fabien@symfony.com"
  7315. },
  7316. {
  7317. "name": "Symfony Community",
  7318. "homepage": "https://symfony.com/contributors"
  7319. }
  7320. ],
  7321. "description": "Provides integration for Twig with various Symfony components",
  7322. "homepage": "https://symfony.com",
  7323. "support": {
  7324. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.1"
  7325. },
  7326. "funding": [
  7327. {
  7328. "url": "https://symfony.com/sponsor",
  7329. "type": "custom"
  7330. },
  7331. {
  7332. "url": "https://github.com/fabpot",
  7333. "type": "github"
  7334. },
  7335. {
  7336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7337. "type": "tidelift"
  7338. }
  7339. ],
  7340. "time": "2024-05-31T14:57:53+00:00"
  7341. },
  7342. {
  7343. "name": "symfony/twig-bundle",
  7344. "version": "v7.1.1",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/symfony/twig-bundle.git",
  7348. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  7353. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "composer-runtime-api": ">=2.1",
  7358. "php": ">=8.2",
  7359. "symfony/config": "^6.4|^7.0",
  7360. "symfony/dependency-injection": "^6.4|^7.0",
  7361. "symfony/http-foundation": "^6.4|^7.0",
  7362. "symfony/http-kernel": "^6.4|^7.0",
  7363. "symfony/twig-bridge": "^6.4|^7.0",
  7364. "twig/twig": "^3.0.4"
  7365. },
  7366. "conflict": {
  7367. "symfony/framework-bundle": "<6.4",
  7368. "symfony/translation": "<6.4"
  7369. },
  7370. "require-dev": {
  7371. "symfony/asset": "^6.4|^7.0",
  7372. "symfony/expression-language": "^6.4|^7.0",
  7373. "symfony/finder": "^6.4|^7.0",
  7374. "symfony/form": "^6.4|^7.0",
  7375. "symfony/framework-bundle": "^6.4|^7.0",
  7376. "symfony/routing": "^6.4|^7.0",
  7377. "symfony/stopwatch": "^6.4|^7.0",
  7378. "symfony/translation": "^6.4|^7.0",
  7379. "symfony/web-link": "^6.4|^7.0",
  7380. "symfony/yaml": "^6.4|^7.0"
  7381. },
  7382. "type": "symfony-bundle",
  7383. "autoload": {
  7384. "psr-4": {
  7385. "Symfony\\Bundle\\TwigBundle\\": ""
  7386. },
  7387. "exclude-from-classmap": [
  7388. "/Tests/"
  7389. ]
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "license": [
  7393. "MIT"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "Fabien Potencier",
  7398. "email": "fabien@symfony.com"
  7399. },
  7400. {
  7401. "name": "Symfony Community",
  7402. "homepage": "https://symfony.com/contributors"
  7403. }
  7404. ],
  7405. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7406. "homepage": "https://symfony.com",
  7407. "support": {
  7408. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.1"
  7409. },
  7410. "funding": [
  7411. {
  7412. "url": "https://symfony.com/sponsor",
  7413. "type": "custom"
  7414. },
  7415. {
  7416. "url": "https://github.com/fabpot",
  7417. "type": "github"
  7418. },
  7419. {
  7420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7421. "type": "tidelift"
  7422. }
  7423. ],
  7424. "time": "2024-05-31T14:57:53+00:00"
  7425. },
  7426. {
  7427. "name": "symfony/type-info",
  7428. "version": "v7.1.1",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/symfony/type-info.git",
  7432. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/symfony/type-info/zipball/60b28eb733f1453287f1263ed305b96091e0d1dc",
  7437. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "php": ">=8.2",
  7442. "psr/container": "^1.1|^2.0"
  7443. },
  7444. "conflict": {
  7445. "phpstan/phpdoc-parser": "<1.0",
  7446. "symfony/dependency-injection": "<6.4",
  7447. "symfony/property-info": "<6.4"
  7448. },
  7449. "require-dev": {
  7450. "phpstan/phpdoc-parser": "^1.0",
  7451. "symfony/dependency-injection": "^6.4|^7.0",
  7452. "symfony/property-info": "^6.4|^7.0"
  7453. },
  7454. "type": "library",
  7455. "autoload": {
  7456. "psr-4": {
  7457. "Symfony\\Component\\TypeInfo\\": ""
  7458. },
  7459. "exclude-from-classmap": [
  7460. "/Tests/"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Mathias Arlaud",
  7470. "email": "mathias.arlaud@gmail.com"
  7471. },
  7472. {
  7473. "name": "Baptiste LEDUC",
  7474. "email": "baptiste.leduc@gmail.com"
  7475. },
  7476. {
  7477. "name": "Symfony Community",
  7478. "homepage": "https://symfony.com/contributors"
  7479. }
  7480. ],
  7481. "description": "Extracts PHP types information.",
  7482. "homepage": "https://symfony.com",
  7483. "keywords": [
  7484. "PHPStan",
  7485. "phpdoc",
  7486. "symfony",
  7487. "type"
  7488. ],
  7489. "support": {
  7490. "source": "https://github.com/symfony/type-info/tree/v7.1.1"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://symfony.com/sponsor",
  7495. "type": "custom"
  7496. },
  7497. {
  7498. "url": "https://github.com/fabpot",
  7499. "type": "github"
  7500. },
  7501. {
  7502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7503. "type": "tidelift"
  7504. }
  7505. ],
  7506. "time": "2024-05-31T14:59:31+00:00"
  7507. },
  7508. {
  7509. "name": "symfony/ux-chartjs",
  7510. "version": "v2.20.0",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/symfony/ux-chartjs.git",
  7514. "reference": "3a669e28d6665515da4d3117d245650d325212da"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/symfony/ux-chartjs/zipball/3a669e28d6665515da4d3117d245650d325212da",
  7519. "reference": "3a669e28d6665515da4d3117d245650d325212da",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "php": ">=8.1",
  7524. "symfony/config": "^5.4|^6.0|^7.0",
  7525. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7526. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7527. "symfony/stimulus-bundle": "^2.9.1"
  7528. },
  7529. "conflict": {
  7530. "symfony/flex": "<1.13"
  7531. },
  7532. "require-dev": {
  7533. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7534. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7535. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7536. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7537. },
  7538. "type": "symfony-bundle",
  7539. "extra": {
  7540. "thanks": {
  7541. "name": "symfony/ux",
  7542. "url": "https://github.com/symfony/ux"
  7543. }
  7544. },
  7545. "autoload": {
  7546. "psr-4": {
  7547. "Symfony\\UX\\Chartjs\\": "src/"
  7548. }
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "MIT"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Titouan Galopin",
  7557. "email": "galopintitouan@gmail.com"
  7558. },
  7559. {
  7560. "name": "Symfony Community",
  7561. "homepage": "https://symfony.com/contributors"
  7562. }
  7563. ],
  7564. "description": "Chart.js integration for Symfony",
  7565. "homepage": "https://symfony.com",
  7566. "keywords": [
  7567. "symfony-ux"
  7568. ],
  7569. "support": {
  7570. "source": "https://github.com/symfony/ux-chartjs/tree/v2.20.0"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://symfony.com/sponsor",
  7575. "type": "custom"
  7576. },
  7577. {
  7578. "url": "https://github.com/fabpot",
  7579. "type": "github"
  7580. },
  7581. {
  7582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7583. "type": "tidelift"
  7584. }
  7585. ],
  7586. "time": "2024-09-24T09:27:42+00:00"
  7587. },
  7588. {
  7589. "name": "symfony/validator",
  7590. "version": "v7.1.3",
  7591. "source": {
  7592. "type": "git",
  7593. "url": "https://github.com/symfony/validator.git",
  7594. "reference": "ba711a6cfc008544dad059abb3c1d997f1472237"
  7595. },
  7596. "dist": {
  7597. "type": "zip",
  7598. "url": "https://api.github.com/repos/symfony/validator/zipball/ba711a6cfc008544dad059abb3c1d997f1472237",
  7599. "reference": "ba711a6cfc008544dad059abb3c1d997f1472237",
  7600. "shasum": ""
  7601. },
  7602. "require": {
  7603. "php": ">=8.2",
  7604. "symfony/deprecation-contracts": "^2.5|^3",
  7605. "symfony/polyfill-ctype": "~1.8",
  7606. "symfony/polyfill-mbstring": "~1.0",
  7607. "symfony/polyfill-php83": "^1.27",
  7608. "symfony/translation-contracts": "^2.5|^3"
  7609. },
  7610. "conflict": {
  7611. "doctrine/lexer": "<1.1",
  7612. "symfony/dependency-injection": "<6.4",
  7613. "symfony/doctrine-bridge": "<7.0",
  7614. "symfony/expression-language": "<6.4",
  7615. "symfony/http-kernel": "<6.4",
  7616. "symfony/intl": "<6.4",
  7617. "symfony/property-info": "<6.4",
  7618. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7619. "symfony/yaml": "<6.4"
  7620. },
  7621. "require-dev": {
  7622. "egulias/email-validator": "^2.1.10|^3|^4",
  7623. "symfony/cache": "^6.4|^7.0",
  7624. "symfony/config": "^6.4|^7.0",
  7625. "symfony/console": "^6.4|^7.0",
  7626. "symfony/dependency-injection": "^6.4|^7.0",
  7627. "symfony/expression-language": "^6.4|^7.0",
  7628. "symfony/finder": "^6.4|^7.0",
  7629. "symfony/http-client": "^6.4|^7.0",
  7630. "symfony/http-foundation": "^6.4|^7.0",
  7631. "symfony/http-kernel": "^6.4|^7.0",
  7632. "symfony/intl": "^6.4|^7.0",
  7633. "symfony/mime": "^6.4|^7.0",
  7634. "symfony/property-access": "^6.4|^7.0",
  7635. "symfony/property-info": "^6.4|^7.0",
  7636. "symfony/translation": "^6.4.3|^7.0.3",
  7637. "symfony/type-info": "^7.1",
  7638. "symfony/yaml": "^6.4|^7.0"
  7639. },
  7640. "type": "library",
  7641. "autoload": {
  7642. "psr-4": {
  7643. "Symfony\\Component\\Validator\\": ""
  7644. },
  7645. "exclude-from-classmap": [
  7646. "/Tests/",
  7647. "/Resources/bin/"
  7648. ]
  7649. },
  7650. "notification-url": "https://packagist.org/downloads/",
  7651. "license": [
  7652. "MIT"
  7653. ],
  7654. "authors": [
  7655. {
  7656. "name": "Fabien Potencier",
  7657. "email": "fabien@symfony.com"
  7658. },
  7659. {
  7660. "name": "Symfony Community",
  7661. "homepage": "https://symfony.com/contributors"
  7662. }
  7663. ],
  7664. "description": "Provides tools to validate values",
  7665. "homepage": "https://symfony.com",
  7666. "support": {
  7667. "source": "https://github.com/symfony/validator/tree/v7.1.3"
  7668. },
  7669. "funding": [
  7670. {
  7671. "url": "https://symfony.com/sponsor",
  7672. "type": "custom"
  7673. },
  7674. {
  7675. "url": "https://github.com/fabpot",
  7676. "type": "github"
  7677. },
  7678. {
  7679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7680. "type": "tidelift"
  7681. }
  7682. ],
  7683. "time": "2024-07-26T12:41:01+00:00"
  7684. },
  7685. {
  7686. "name": "symfony/var-dumper",
  7687. "version": "v7.1.3",
  7688. "source": {
  7689. "type": "git",
  7690. "url": "https://github.com/symfony/var-dumper.git",
  7691. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f"
  7692. },
  7693. "dist": {
  7694. "type": "zip",
  7695. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/86af4617cca75a6e28598f49ae0690f3b9d4591f",
  7696. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f",
  7697. "shasum": ""
  7698. },
  7699. "require": {
  7700. "php": ">=8.2",
  7701. "symfony/polyfill-mbstring": "~1.0"
  7702. },
  7703. "conflict": {
  7704. "symfony/console": "<6.4"
  7705. },
  7706. "require-dev": {
  7707. "ext-iconv": "*",
  7708. "symfony/console": "^6.4|^7.0",
  7709. "symfony/http-kernel": "^6.4|^7.0",
  7710. "symfony/process": "^6.4|^7.0",
  7711. "symfony/uid": "^6.4|^7.0",
  7712. "twig/twig": "^3.0.4"
  7713. },
  7714. "bin": [
  7715. "Resources/bin/var-dump-server"
  7716. ],
  7717. "type": "library",
  7718. "autoload": {
  7719. "files": [
  7720. "Resources/functions/dump.php"
  7721. ],
  7722. "psr-4": {
  7723. "Symfony\\Component\\VarDumper\\": ""
  7724. },
  7725. "exclude-from-classmap": [
  7726. "/Tests/"
  7727. ]
  7728. },
  7729. "notification-url": "https://packagist.org/downloads/",
  7730. "license": [
  7731. "MIT"
  7732. ],
  7733. "authors": [
  7734. {
  7735. "name": "Nicolas Grekas",
  7736. "email": "p@tchwork.com"
  7737. },
  7738. {
  7739. "name": "Symfony Community",
  7740. "homepage": "https://symfony.com/contributors"
  7741. }
  7742. ],
  7743. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7744. "homepage": "https://symfony.com",
  7745. "keywords": [
  7746. "debug",
  7747. "dump"
  7748. ],
  7749. "support": {
  7750. "source": "https://github.com/symfony/var-dumper/tree/v7.1.3"
  7751. },
  7752. "funding": [
  7753. {
  7754. "url": "https://symfony.com/sponsor",
  7755. "type": "custom"
  7756. },
  7757. {
  7758. "url": "https://github.com/fabpot",
  7759. "type": "github"
  7760. },
  7761. {
  7762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7763. "type": "tidelift"
  7764. }
  7765. ],
  7766. "time": "2024-07-26T12:41:01+00:00"
  7767. },
  7768. {
  7769. "name": "symfony/var-exporter",
  7770. "version": "v7.1.2",
  7771. "source": {
  7772. "type": "git",
  7773. "url": "https://github.com/symfony/var-exporter.git",
  7774. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7775. },
  7776. "dist": {
  7777. "type": "zip",
  7778. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7779. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7780. "shasum": ""
  7781. },
  7782. "require": {
  7783. "php": ">=8.2"
  7784. },
  7785. "require-dev": {
  7786. "symfony/property-access": "^6.4|^7.0",
  7787. "symfony/serializer": "^6.4|^7.0",
  7788. "symfony/var-dumper": "^6.4|^7.0"
  7789. },
  7790. "type": "library",
  7791. "autoload": {
  7792. "psr-4": {
  7793. "Symfony\\Component\\VarExporter\\": ""
  7794. },
  7795. "exclude-from-classmap": [
  7796. "/Tests/"
  7797. ]
  7798. },
  7799. "notification-url": "https://packagist.org/downloads/",
  7800. "license": [
  7801. "MIT"
  7802. ],
  7803. "authors": [
  7804. {
  7805. "name": "Nicolas Grekas",
  7806. "email": "p@tchwork.com"
  7807. },
  7808. {
  7809. "name": "Symfony Community",
  7810. "homepage": "https://symfony.com/contributors"
  7811. }
  7812. ],
  7813. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7814. "homepage": "https://symfony.com",
  7815. "keywords": [
  7816. "clone",
  7817. "construct",
  7818. "export",
  7819. "hydrate",
  7820. "instantiate",
  7821. "lazy-loading",
  7822. "proxy",
  7823. "serialize"
  7824. ],
  7825. "support": {
  7826. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7827. },
  7828. "funding": [
  7829. {
  7830. "url": "https://symfony.com/sponsor",
  7831. "type": "custom"
  7832. },
  7833. {
  7834. "url": "https://github.com/fabpot",
  7835. "type": "github"
  7836. },
  7837. {
  7838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7839. "type": "tidelift"
  7840. }
  7841. ],
  7842. "time": "2024-06-28T08:00:31+00:00"
  7843. },
  7844. {
  7845. "name": "symfony/web-link",
  7846. "version": "v7.1.1",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/symfony/web-link.git",
  7850. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7855. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "php": ">=8.2",
  7860. "psr/link": "^1.1|^2.0"
  7861. },
  7862. "conflict": {
  7863. "symfony/http-kernel": "<6.4"
  7864. },
  7865. "provide": {
  7866. "psr/link-implementation": "1.0|2.0"
  7867. },
  7868. "require-dev": {
  7869. "symfony/http-kernel": "^6.4|^7.0"
  7870. },
  7871. "type": "library",
  7872. "autoload": {
  7873. "psr-4": {
  7874. "Symfony\\Component\\WebLink\\": ""
  7875. },
  7876. "exclude-from-classmap": [
  7877. "/Tests/"
  7878. ]
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "MIT"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Kévin Dunglas",
  7887. "email": "dunglas@gmail.com"
  7888. },
  7889. {
  7890. "name": "Symfony Community",
  7891. "homepage": "https://symfony.com/contributors"
  7892. }
  7893. ],
  7894. "description": "Manages links between resources",
  7895. "homepage": "https://symfony.com",
  7896. "keywords": [
  7897. "dns-prefetch",
  7898. "http",
  7899. "http2",
  7900. "link",
  7901. "performance",
  7902. "prefetch",
  7903. "preload",
  7904. "prerender",
  7905. "psr13",
  7906. "push"
  7907. ],
  7908. "support": {
  7909. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://symfony.com/sponsor",
  7914. "type": "custom"
  7915. },
  7916. {
  7917. "url": "https://github.com/fabpot",
  7918. "type": "github"
  7919. },
  7920. {
  7921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7922. "type": "tidelift"
  7923. }
  7924. ],
  7925. "time": "2024-05-31T14:57:53+00:00"
  7926. },
  7927. {
  7928. "name": "symfony/webpack-encore-bundle",
  7929. "version": "v2.1.1",
  7930. "source": {
  7931. "type": "git",
  7932. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7933. "reference": "75cb918df3f65e28cf0d4bc03042bc45ccb19dd0"
  7934. },
  7935. "dist": {
  7936. "type": "zip",
  7937. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/75cb918df3f65e28cf0d4bc03042bc45ccb19dd0",
  7938. "reference": "75cb918df3f65e28cf0d4bc03042bc45ccb19dd0",
  7939. "shasum": ""
  7940. },
  7941. "require": {
  7942. "php": ">=8.1.0",
  7943. "symfony/asset": "^5.4 || ^6.2 || ^7.0",
  7944. "symfony/config": "^5.4 || ^6.2 || ^7.0",
  7945. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
  7946. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
  7947. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  7948. },
  7949. "require-dev": {
  7950. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
  7951. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
  7952. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
  7953. "symfony/web-link": "^5.4 || ^6.2 || ^7.0"
  7954. },
  7955. "type": "symfony-bundle",
  7956. "extra": {
  7957. "thanks": {
  7958. "name": "symfony/webpack-encore",
  7959. "url": "https://github.com/symfony/webpack-encore"
  7960. }
  7961. },
  7962. "autoload": {
  7963. "psr-4": {
  7964. "Symfony\\WebpackEncoreBundle\\": "src"
  7965. }
  7966. },
  7967. "notification-url": "https://packagist.org/downloads/",
  7968. "license": [
  7969. "MIT"
  7970. ],
  7971. "authors": [
  7972. {
  7973. "name": "Symfony Community",
  7974. "homepage": "https://symfony.com/contributors"
  7975. }
  7976. ],
  7977. "description": "Integration with your Symfony app & Webpack Encore!",
  7978. "support": {
  7979. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7980. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.1.1"
  7981. },
  7982. "funding": [
  7983. {
  7984. "url": "https://symfony.com/sponsor",
  7985. "type": "custom"
  7986. },
  7987. {
  7988. "url": "https://github.com/fabpot",
  7989. "type": "github"
  7990. },
  7991. {
  7992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7993. "type": "tidelift"
  7994. }
  7995. ],
  7996. "time": "2023-10-22T18:53:08+00:00"
  7997. },
  7998. {
  7999. "name": "symfony/yaml",
  8000. "version": "v7.1.1",
  8001. "source": {
  8002. "type": "git",
  8003. "url": "https://github.com/symfony/yaml.git",
  8004. "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
  8005. },
  8006. "dist": {
  8007. "type": "zip",
  8008. "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
  8009. "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
  8010. "shasum": ""
  8011. },
  8012. "require": {
  8013. "php": ">=8.2",
  8014. "symfony/polyfill-ctype": "^1.8"
  8015. },
  8016. "conflict": {
  8017. "symfony/console": "<6.4"
  8018. },
  8019. "require-dev": {
  8020. "symfony/console": "^6.4|^7.0"
  8021. },
  8022. "bin": [
  8023. "Resources/bin/yaml-lint"
  8024. ],
  8025. "type": "library",
  8026. "autoload": {
  8027. "psr-4": {
  8028. "Symfony\\Component\\Yaml\\": ""
  8029. },
  8030. "exclude-from-classmap": [
  8031. "/Tests/"
  8032. ]
  8033. },
  8034. "notification-url": "https://packagist.org/downloads/",
  8035. "license": [
  8036. "MIT"
  8037. ],
  8038. "authors": [
  8039. {
  8040. "name": "Fabien Potencier",
  8041. "email": "fabien@symfony.com"
  8042. },
  8043. {
  8044. "name": "Symfony Community",
  8045. "homepage": "https://symfony.com/contributors"
  8046. }
  8047. ],
  8048. "description": "Loads and dumps YAML files",
  8049. "homepage": "https://symfony.com",
  8050. "support": {
  8051. "source": "https://github.com/symfony/yaml/tree/v7.1.1"
  8052. },
  8053. "funding": [
  8054. {
  8055. "url": "https://symfony.com/sponsor",
  8056. "type": "custom"
  8057. },
  8058. {
  8059. "url": "https://github.com/fabpot",
  8060. "type": "github"
  8061. },
  8062. {
  8063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8064. "type": "tidelift"
  8065. }
  8066. ],
  8067. "time": "2024-05-31T14:57:53+00:00"
  8068. },
  8069. {
  8070. "name": "twig/extra-bundle",
  8071. "version": "v3.10.0",
  8072. "source": {
  8073. "type": "git",
  8074. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8075. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454"
  8076. },
  8077. "dist": {
  8078. "type": "zip",
  8079. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8080. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8081. "shasum": ""
  8082. },
  8083. "require": {
  8084. "php": ">=7.2.5",
  8085. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8086. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8087. "twig/twig": "^3.0"
  8088. },
  8089. "require-dev": {
  8090. "league/commonmark": "^1.0|^2.0",
  8091. "symfony/phpunit-bridge": "^6.4|^7.0",
  8092. "twig/cache-extra": "^3.0",
  8093. "twig/cssinliner-extra": "^3.0",
  8094. "twig/html-extra": "^3.0",
  8095. "twig/inky-extra": "^3.0",
  8096. "twig/intl-extra": "^3.0",
  8097. "twig/markdown-extra": "^3.0",
  8098. "twig/string-extra": "^3.0"
  8099. },
  8100. "type": "symfony-bundle",
  8101. "autoload": {
  8102. "psr-4": {
  8103. "Twig\\Extra\\TwigExtraBundle\\": ""
  8104. },
  8105. "exclude-from-classmap": [
  8106. "/Tests/"
  8107. ]
  8108. },
  8109. "notification-url": "https://packagist.org/downloads/",
  8110. "license": [
  8111. "MIT"
  8112. ],
  8113. "authors": [
  8114. {
  8115. "name": "Fabien Potencier",
  8116. "email": "fabien@symfony.com",
  8117. "homepage": "http://fabien.potencier.org",
  8118. "role": "Lead Developer"
  8119. }
  8120. ],
  8121. "description": "A Symfony bundle for extra Twig extensions",
  8122. "homepage": "https://twig.symfony.com",
  8123. "keywords": [
  8124. "bundle",
  8125. "extra",
  8126. "twig"
  8127. ],
  8128. "support": {
  8129. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.10.0"
  8130. },
  8131. "funding": [
  8132. {
  8133. "url": "https://github.com/fabpot",
  8134. "type": "github"
  8135. },
  8136. {
  8137. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8138. "type": "tidelift"
  8139. }
  8140. ],
  8141. "time": "2024-05-11T07:35:57+00:00"
  8142. },
  8143. {
  8144. "name": "twig/markdown-extra",
  8145. "version": "v3.10.0",
  8146. "source": {
  8147. "type": "git",
  8148. "url": "https://github.com/twigphp/markdown-extra.git",
  8149. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d"
  8150. },
  8151. "dist": {
  8152. "type": "zip",
  8153. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8154. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8155. "shasum": ""
  8156. },
  8157. "require": {
  8158. "php": ">=7.2.5",
  8159. "symfony/deprecation-contracts": "^2.5|^3",
  8160. "twig/twig": "^3.0"
  8161. },
  8162. "require-dev": {
  8163. "erusev/parsedown": "^1.7",
  8164. "league/commonmark": "^1.0|^2.0",
  8165. "league/html-to-markdown": "^4.8|^5.0",
  8166. "michelf/php-markdown": "^1.8|^2.0",
  8167. "symfony/phpunit-bridge": "^6.4|^7.0"
  8168. },
  8169. "type": "library",
  8170. "autoload": {
  8171. "files": [
  8172. "Resources/functions.php"
  8173. ],
  8174. "psr-4": {
  8175. "Twig\\Extra\\Markdown\\": ""
  8176. },
  8177. "exclude-from-classmap": [
  8178. "/Tests/"
  8179. ]
  8180. },
  8181. "notification-url": "https://packagist.org/downloads/",
  8182. "license": [
  8183. "MIT"
  8184. ],
  8185. "authors": [
  8186. {
  8187. "name": "Fabien Potencier",
  8188. "email": "fabien@symfony.com",
  8189. "homepage": "http://fabien.potencier.org",
  8190. "role": "Lead Developer"
  8191. }
  8192. ],
  8193. "description": "A Twig extension for Markdown",
  8194. "homepage": "https://twig.symfony.com",
  8195. "keywords": [
  8196. "html",
  8197. "markdown",
  8198. "twig"
  8199. ],
  8200. "support": {
  8201. "source": "https://github.com/twigphp/markdown-extra/tree/v3.10.0"
  8202. },
  8203. "funding": [
  8204. {
  8205. "url": "https://github.com/fabpot",
  8206. "type": "github"
  8207. },
  8208. {
  8209. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8210. "type": "tidelift"
  8211. }
  8212. ],
  8213. "time": "2024-05-11T07:35:57+00:00"
  8214. },
  8215. {
  8216. "name": "twig/twig",
  8217. "version": "v3.10.3",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/twigphp/Twig.git",
  8221. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/twigphp/Twig/zipball/67f29781ffafa520b0bbfbd8384674b42db04572",
  8226. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "php": ">=7.2.5",
  8231. "symfony/deprecation-contracts": "^2.5|^3",
  8232. "symfony/polyfill-ctype": "^1.8",
  8233. "symfony/polyfill-mbstring": "^1.3",
  8234. "symfony/polyfill-php80": "^1.22"
  8235. },
  8236. "require-dev": {
  8237. "psr/container": "^1.0|^2.0",
  8238. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8239. },
  8240. "type": "library",
  8241. "autoload": {
  8242. "files": [
  8243. "src/Resources/core.php",
  8244. "src/Resources/debug.php",
  8245. "src/Resources/escaper.php",
  8246. "src/Resources/string_loader.php"
  8247. ],
  8248. "psr-4": {
  8249. "Twig\\": "src/"
  8250. }
  8251. },
  8252. "notification-url": "https://packagist.org/downloads/",
  8253. "license": [
  8254. "BSD-3-Clause"
  8255. ],
  8256. "authors": [
  8257. {
  8258. "name": "Fabien Potencier",
  8259. "email": "fabien@symfony.com",
  8260. "homepage": "http://fabien.potencier.org",
  8261. "role": "Lead Developer"
  8262. },
  8263. {
  8264. "name": "Twig Team",
  8265. "role": "Contributors"
  8266. },
  8267. {
  8268. "name": "Armin Ronacher",
  8269. "email": "armin.ronacher@active-4.com",
  8270. "role": "Project Founder"
  8271. }
  8272. ],
  8273. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8274. "homepage": "https://twig.symfony.com",
  8275. "keywords": [
  8276. "templating"
  8277. ],
  8278. "support": {
  8279. "issues": "https://github.com/twigphp/Twig/issues",
  8280. "source": "https://github.com/twigphp/Twig/tree/v3.10.3"
  8281. },
  8282. "funding": [
  8283. {
  8284. "url": "https://github.com/fabpot",
  8285. "type": "github"
  8286. },
  8287. {
  8288. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8289. "type": "tidelift"
  8290. }
  8291. ],
  8292. "time": "2024-05-16T10:04:27+00:00"
  8293. },
  8294. {
  8295. "name": "webmozart/assert",
  8296. "version": "1.11.0",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/webmozarts/assert.git",
  8300. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8305. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8306. "shasum": ""
  8307. },
  8308. "require": {
  8309. "ext-ctype": "*",
  8310. "php": "^7.2 || ^8.0"
  8311. },
  8312. "conflict": {
  8313. "phpstan/phpstan": "<0.12.20",
  8314. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8315. },
  8316. "require-dev": {
  8317. "phpunit/phpunit": "^8.5.13"
  8318. },
  8319. "type": "library",
  8320. "extra": {
  8321. "branch-alias": {
  8322. "dev-master": "1.10-dev"
  8323. }
  8324. },
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Webmozart\\Assert\\": "src/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Bernhard Schussek",
  8337. "email": "bschussek@gmail.com"
  8338. }
  8339. ],
  8340. "description": "Assertions to validate method input/output with nice error messages.",
  8341. "keywords": [
  8342. "assert",
  8343. "check",
  8344. "validate"
  8345. ],
  8346. "support": {
  8347. "issues": "https://github.com/webmozarts/assert/issues",
  8348. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8349. },
  8350. "time": "2022-06-03T18:03:27+00:00"
  8351. }
  8352. ],
  8353. "packages-dev": [
  8354. {
  8355. "name": "myclabs/deep-copy",
  8356. "version": "1.12.0",
  8357. "source": {
  8358. "type": "git",
  8359. "url": "https://github.com/myclabs/DeepCopy.git",
  8360. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8361. },
  8362. "dist": {
  8363. "type": "zip",
  8364. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8365. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8366. "shasum": ""
  8367. },
  8368. "require": {
  8369. "php": "^7.1 || ^8.0"
  8370. },
  8371. "conflict": {
  8372. "doctrine/collections": "<1.6.8",
  8373. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8374. },
  8375. "require-dev": {
  8376. "doctrine/collections": "^1.6.8",
  8377. "doctrine/common": "^2.13.3 || ^3.2.2",
  8378. "phpspec/prophecy": "^1.10",
  8379. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8380. },
  8381. "type": "library",
  8382. "autoload": {
  8383. "files": [
  8384. "src/DeepCopy/deep_copy.php"
  8385. ],
  8386. "psr-4": {
  8387. "DeepCopy\\": "src/DeepCopy/"
  8388. }
  8389. },
  8390. "notification-url": "https://packagist.org/downloads/",
  8391. "license": [
  8392. "MIT"
  8393. ],
  8394. "description": "Create deep copies (clones) of your objects",
  8395. "keywords": [
  8396. "clone",
  8397. "copy",
  8398. "duplicate",
  8399. "object",
  8400. "object graph"
  8401. ],
  8402. "support": {
  8403. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8404. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8405. },
  8406. "funding": [
  8407. {
  8408. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8409. "type": "tidelift"
  8410. }
  8411. ],
  8412. "time": "2024-06-12T14:39:25+00:00"
  8413. },
  8414. {
  8415. "name": "nikic/php-parser",
  8416. "version": "v5.1.0",
  8417. "source": {
  8418. "type": "git",
  8419. "url": "https://github.com/nikic/PHP-Parser.git",
  8420. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  8421. },
  8422. "dist": {
  8423. "type": "zip",
  8424. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8425. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8426. "shasum": ""
  8427. },
  8428. "require": {
  8429. "ext-ctype": "*",
  8430. "ext-json": "*",
  8431. "ext-tokenizer": "*",
  8432. "php": ">=7.4"
  8433. },
  8434. "require-dev": {
  8435. "ircmaxell/php-yacc": "^0.0.7",
  8436. "phpunit/phpunit": "^9.0"
  8437. },
  8438. "bin": [
  8439. "bin/php-parse"
  8440. ],
  8441. "type": "library",
  8442. "extra": {
  8443. "branch-alias": {
  8444. "dev-master": "5.0-dev"
  8445. }
  8446. },
  8447. "autoload": {
  8448. "psr-4": {
  8449. "PhpParser\\": "lib/PhpParser"
  8450. }
  8451. },
  8452. "notification-url": "https://packagist.org/downloads/",
  8453. "license": [
  8454. "BSD-3-Clause"
  8455. ],
  8456. "authors": [
  8457. {
  8458. "name": "Nikita Popov"
  8459. }
  8460. ],
  8461. "description": "A PHP parser written in PHP",
  8462. "keywords": [
  8463. "parser",
  8464. "php"
  8465. ],
  8466. "support": {
  8467. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8468. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  8469. },
  8470. "time": "2024-07-01T20:03:41+00:00"
  8471. },
  8472. {
  8473. "name": "phar-io/manifest",
  8474. "version": "2.0.4",
  8475. "source": {
  8476. "type": "git",
  8477. "url": "https://github.com/phar-io/manifest.git",
  8478. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8479. },
  8480. "dist": {
  8481. "type": "zip",
  8482. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8483. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8484. "shasum": ""
  8485. },
  8486. "require": {
  8487. "ext-dom": "*",
  8488. "ext-libxml": "*",
  8489. "ext-phar": "*",
  8490. "ext-xmlwriter": "*",
  8491. "phar-io/version": "^3.0.1",
  8492. "php": "^7.2 || ^8.0"
  8493. },
  8494. "type": "library",
  8495. "extra": {
  8496. "branch-alias": {
  8497. "dev-master": "2.0.x-dev"
  8498. }
  8499. },
  8500. "autoload": {
  8501. "classmap": [
  8502. "src/"
  8503. ]
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "BSD-3-Clause"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Arne Blankerts",
  8512. "email": "arne@blankerts.de",
  8513. "role": "Developer"
  8514. },
  8515. {
  8516. "name": "Sebastian Heuer",
  8517. "email": "sebastian@phpeople.de",
  8518. "role": "Developer"
  8519. },
  8520. {
  8521. "name": "Sebastian Bergmann",
  8522. "email": "sebastian@phpunit.de",
  8523. "role": "Developer"
  8524. }
  8525. ],
  8526. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8527. "support": {
  8528. "issues": "https://github.com/phar-io/manifest/issues",
  8529. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8530. },
  8531. "funding": [
  8532. {
  8533. "url": "https://github.com/theseer",
  8534. "type": "github"
  8535. }
  8536. ],
  8537. "time": "2024-03-03T12:33:53+00:00"
  8538. },
  8539. {
  8540. "name": "phar-io/version",
  8541. "version": "3.2.1",
  8542. "source": {
  8543. "type": "git",
  8544. "url": "https://github.com/phar-io/version.git",
  8545. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8546. },
  8547. "dist": {
  8548. "type": "zip",
  8549. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8550. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8551. "shasum": ""
  8552. },
  8553. "require": {
  8554. "php": "^7.2 || ^8.0"
  8555. },
  8556. "type": "library",
  8557. "autoload": {
  8558. "classmap": [
  8559. "src/"
  8560. ]
  8561. },
  8562. "notification-url": "https://packagist.org/downloads/",
  8563. "license": [
  8564. "BSD-3-Clause"
  8565. ],
  8566. "authors": [
  8567. {
  8568. "name": "Arne Blankerts",
  8569. "email": "arne@blankerts.de",
  8570. "role": "Developer"
  8571. },
  8572. {
  8573. "name": "Sebastian Heuer",
  8574. "email": "sebastian@phpeople.de",
  8575. "role": "Developer"
  8576. },
  8577. {
  8578. "name": "Sebastian Bergmann",
  8579. "email": "sebastian@phpunit.de",
  8580. "role": "Developer"
  8581. }
  8582. ],
  8583. "description": "Library for handling version information and constraints",
  8584. "support": {
  8585. "issues": "https://github.com/phar-io/version/issues",
  8586. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8587. },
  8588. "time": "2022-02-21T01:04:05+00:00"
  8589. },
  8590. {
  8591. "name": "phpunit/php-code-coverage",
  8592. "version": "9.2.31",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8596. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  8601. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  8602. "shasum": ""
  8603. },
  8604. "require": {
  8605. "ext-dom": "*",
  8606. "ext-libxml": "*",
  8607. "ext-xmlwriter": "*",
  8608. "nikic/php-parser": "^4.18 || ^5.0",
  8609. "php": ">=7.3",
  8610. "phpunit/php-file-iterator": "^3.0.3",
  8611. "phpunit/php-text-template": "^2.0.2",
  8612. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8613. "sebastian/complexity": "^2.0",
  8614. "sebastian/environment": "^5.1.2",
  8615. "sebastian/lines-of-code": "^1.0.3",
  8616. "sebastian/version": "^3.0.1",
  8617. "theseer/tokenizer": "^1.2.0"
  8618. },
  8619. "require-dev": {
  8620. "phpunit/phpunit": "^9.3"
  8621. },
  8622. "suggest": {
  8623. "ext-pcov": "PHP extension that provides line coverage",
  8624. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8625. },
  8626. "type": "library",
  8627. "extra": {
  8628. "branch-alias": {
  8629. "dev-master": "9.2-dev"
  8630. }
  8631. },
  8632. "autoload": {
  8633. "classmap": [
  8634. "src/"
  8635. ]
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "BSD-3-Clause"
  8640. ],
  8641. "authors": [
  8642. {
  8643. "name": "Sebastian Bergmann",
  8644. "email": "sebastian@phpunit.de",
  8645. "role": "lead"
  8646. }
  8647. ],
  8648. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8649. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8650. "keywords": [
  8651. "coverage",
  8652. "testing",
  8653. "xunit"
  8654. ],
  8655. "support": {
  8656. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8657. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8658. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  8659. },
  8660. "funding": [
  8661. {
  8662. "url": "https://github.com/sebastianbergmann",
  8663. "type": "github"
  8664. }
  8665. ],
  8666. "time": "2024-03-02T06:37:42+00:00"
  8667. },
  8668. {
  8669. "name": "phpunit/php-file-iterator",
  8670. "version": "3.0.6",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8674. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8679. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "php": ">=7.3"
  8684. },
  8685. "require-dev": {
  8686. "phpunit/phpunit": "^9.3"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "3.0-dev"
  8692. }
  8693. },
  8694. "autoload": {
  8695. "classmap": [
  8696. "src/"
  8697. ]
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "BSD-3-Clause"
  8702. ],
  8703. "authors": [
  8704. {
  8705. "name": "Sebastian Bergmann",
  8706. "email": "sebastian@phpunit.de",
  8707. "role": "lead"
  8708. }
  8709. ],
  8710. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8711. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8712. "keywords": [
  8713. "filesystem",
  8714. "iterator"
  8715. ],
  8716. "support": {
  8717. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8718. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8719. },
  8720. "funding": [
  8721. {
  8722. "url": "https://github.com/sebastianbergmann",
  8723. "type": "github"
  8724. }
  8725. ],
  8726. "time": "2021-12-02T12:48:52+00:00"
  8727. },
  8728. {
  8729. "name": "phpunit/php-invoker",
  8730. "version": "3.1.1",
  8731. "source": {
  8732. "type": "git",
  8733. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8734. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8735. },
  8736. "dist": {
  8737. "type": "zip",
  8738. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8739. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8740. "shasum": ""
  8741. },
  8742. "require": {
  8743. "php": ">=7.3"
  8744. },
  8745. "require-dev": {
  8746. "ext-pcntl": "*",
  8747. "phpunit/phpunit": "^9.3"
  8748. },
  8749. "suggest": {
  8750. "ext-pcntl": "*"
  8751. },
  8752. "type": "library",
  8753. "extra": {
  8754. "branch-alias": {
  8755. "dev-master": "3.1-dev"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "classmap": [
  8760. "src/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "BSD-3-Clause"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Sebastian Bergmann",
  8770. "email": "sebastian@phpunit.de",
  8771. "role": "lead"
  8772. }
  8773. ],
  8774. "description": "Invoke callables with a timeout",
  8775. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8776. "keywords": [
  8777. "process"
  8778. ],
  8779. "support": {
  8780. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8781. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8782. },
  8783. "funding": [
  8784. {
  8785. "url": "https://github.com/sebastianbergmann",
  8786. "type": "github"
  8787. }
  8788. ],
  8789. "time": "2020-09-28T05:58:55+00:00"
  8790. },
  8791. {
  8792. "name": "phpunit/php-text-template",
  8793. "version": "2.0.4",
  8794. "source": {
  8795. "type": "git",
  8796. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8797. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8798. },
  8799. "dist": {
  8800. "type": "zip",
  8801. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8802. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8803. "shasum": ""
  8804. },
  8805. "require": {
  8806. "php": ">=7.3"
  8807. },
  8808. "require-dev": {
  8809. "phpunit/phpunit": "^9.3"
  8810. },
  8811. "type": "library",
  8812. "extra": {
  8813. "branch-alias": {
  8814. "dev-master": "2.0-dev"
  8815. }
  8816. },
  8817. "autoload": {
  8818. "classmap": [
  8819. "src/"
  8820. ]
  8821. },
  8822. "notification-url": "https://packagist.org/downloads/",
  8823. "license": [
  8824. "BSD-3-Clause"
  8825. ],
  8826. "authors": [
  8827. {
  8828. "name": "Sebastian Bergmann",
  8829. "email": "sebastian@phpunit.de",
  8830. "role": "lead"
  8831. }
  8832. ],
  8833. "description": "Simple template engine.",
  8834. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8835. "keywords": [
  8836. "template"
  8837. ],
  8838. "support": {
  8839. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8840. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8841. },
  8842. "funding": [
  8843. {
  8844. "url": "https://github.com/sebastianbergmann",
  8845. "type": "github"
  8846. }
  8847. ],
  8848. "time": "2020-10-26T05:33:50+00:00"
  8849. },
  8850. {
  8851. "name": "phpunit/php-timer",
  8852. "version": "5.0.3",
  8853. "source": {
  8854. "type": "git",
  8855. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8856. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8857. },
  8858. "dist": {
  8859. "type": "zip",
  8860. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8861. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8862. "shasum": ""
  8863. },
  8864. "require": {
  8865. "php": ">=7.3"
  8866. },
  8867. "require-dev": {
  8868. "phpunit/phpunit": "^9.3"
  8869. },
  8870. "type": "library",
  8871. "extra": {
  8872. "branch-alias": {
  8873. "dev-master": "5.0-dev"
  8874. }
  8875. },
  8876. "autoload": {
  8877. "classmap": [
  8878. "src/"
  8879. ]
  8880. },
  8881. "notification-url": "https://packagist.org/downloads/",
  8882. "license": [
  8883. "BSD-3-Clause"
  8884. ],
  8885. "authors": [
  8886. {
  8887. "name": "Sebastian Bergmann",
  8888. "email": "sebastian@phpunit.de",
  8889. "role": "lead"
  8890. }
  8891. ],
  8892. "description": "Utility class for timing",
  8893. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8894. "keywords": [
  8895. "timer"
  8896. ],
  8897. "support": {
  8898. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8899. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8900. },
  8901. "funding": [
  8902. {
  8903. "url": "https://github.com/sebastianbergmann",
  8904. "type": "github"
  8905. }
  8906. ],
  8907. "time": "2020-10-26T13:16:10+00:00"
  8908. },
  8909. {
  8910. "name": "phpunit/phpunit",
  8911. "version": "9.6.20",
  8912. "source": {
  8913. "type": "git",
  8914. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8915. "reference": "49d7820565836236411f5dc002d16dd689cde42f"
  8916. },
  8917. "dist": {
  8918. "type": "zip",
  8919. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f",
  8920. "reference": "49d7820565836236411f5dc002d16dd689cde42f",
  8921. "shasum": ""
  8922. },
  8923. "require": {
  8924. "doctrine/instantiator": "^1.5.0 || ^2",
  8925. "ext-dom": "*",
  8926. "ext-json": "*",
  8927. "ext-libxml": "*",
  8928. "ext-mbstring": "*",
  8929. "ext-xml": "*",
  8930. "ext-xmlwriter": "*",
  8931. "myclabs/deep-copy": "^1.12.0",
  8932. "phar-io/manifest": "^2.0.4",
  8933. "phar-io/version": "^3.2.1",
  8934. "php": ">=7.3",
  8935. "phpunit/php-code-coverage": "^9.2.31",
  8936. "phpunit/php-file-iterator": "^3.0.6",
  8937. "phpunit/php-invoker": "^3.1.1",
  8938. "phpunit/php-text-template": "^2.0.4",
  8939. "phpunit/php-timer": "^5.0.3",
  8940. "sebastian/cli-parser": "^1.0.2",
  8941. "sebastian/code-unit": "^1.0.8",
  8942. "sebastian/comparator": "^4.0.8",
  8943. "sebastian/diff": "^4.0.6",
  8944. "sebastian/environment": "^5.1.5",
  8945. "sebastian/exporter": "^4.0.6",
  8946. "sebastian/global-state": "^5.0.7",
  8947. "sebastian/object-enumerator": "^4.0.4",
  8948. "sebastian/resource-operations": "^3.0.4",
  8949. "sebastian/type": "^3.2.1",
  8950. "sebastian/version": "^3.0.2"
  8951. },
  8952. "suggest": {
  8953. "ext-soap": "To be able to generate mocks based on WSDL files",
  8954. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8955. },
  8956. "bin": [
  8957. "phpunit"
  8958. ],
  8959. "type": "library",
  8960. "extra": {
  8961. "branch-alias": {
  8962. "dev-master": "9.6-dev"
  8963. }
  8964. },
  8965. "autoload": {
  8966. "files": [
  8967. "src/Framework/Assert/Functions.php"
  8968. ],
  8969. "classmap": [
  8970. "src/"
  8971. ]
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "BSD-3-Clause"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Sebastian Bergmann",
  8980. "email": "sebastian@phpunit.de",
  8981. "role": "lead"
  8982. }
  8983. ],
  8984. "description": "The PHP Unit Testing framework.",
  8985. "homepage": "https://phpunit.de/",
  8986. "keywords": [
  8987. "phpunit",
  8988. "testing",
  8989. "xunit"
  8990. ],
  8991. "support": {
  8992. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8993. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8994. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20"
  8995. },
  8996. "funding": [
  8997. {
  8998. "url": "https://phpunit.de/sponsors.html",
  8999. "type": "custom"
  9000. },
  9001. {
  9002. "url": "https://github.com/sebastianbergmann",
  9003. "type": "github"
  9004. },
  9005. {
  9006. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9007. "type": "tidelift"
  9008. }
  9009. ],
  9010. "time": "2024-07-10T11:45:39+00:00"
  9011. },
  9012. {
  9013. "name": "sebastian/cli-parser",
  9014. "version": "1.0.2",
  9015. "source": {
  9016. "type": "git",
  9017. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9018. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9019. },
  9020. "dist": {
  9021. "type": "zip",
  9022. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9023. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9024. "shasum": ""
  9025. },
  9026. "require": {
  9027. "php": ">=7.3"
  9028. },
  9029. "require-dev": {
  9030. "phpunit/phpunit": "^9.3"
  9031. },
  9032. "type": "library",
  9033. "extra": {
  9034. "branch-alias": {
  9035. "dev-master": "1.0-dev"
  9036. }
  9037. },
  9038. "autoload": {
  9039. "classmap": [
  9040. "src/"
  9041. ]
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "BSD-3-Clause"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Sebastian Bergmann",
  9050. "email": "sebastian@phpunit.de",
  9051. "role": "lead"
  9052. }
  9053. ],
  9054. "description": "Library for parsing CLI options",
  9055. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9056. "support": {
  9057. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9058. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9059. },
  9060. "funding": [
  9061. {
  9062. "url": "https://github.com/sebastianbergmann",
  9063. "type": "github"
  9064. }
  9065. ],
  9066. "time": "2024-03-02T06:27:43+00:00"
  9067. },
  9068. {
  9069. "name": "sebastian/code-unit",
  9070. "version": "1.0.8",
  9071. "source": {
  9072. "type": "git",
  9073. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9074. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9075. },
  9076. "dist": {
  9077. "type": "zip",
  9078. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9079. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9080. "shasum": ""
  9081. },
  9082. "require": {
  9083. "php": ">=7.3"
  9084. },
  9085. "require-dev": {
  9086. "phpunit/phpunit": "^9.3"
  9087. },
  9088. "type": "library",
  9089. "extra": {
  9090. "branch-alias": {
  9091. "dev-master": "1.0-dev"
  9092. }
  9093. },
  9094. "autoload": {
  9095. "classmap": [
  9096. "src/"
  9097. ]
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "BSD-3-Clause"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Sebastian Bergmann",
  9106. "email": "sebastian@phpunit.de",
  9107. "role": "lead"
  9108. }
  9109. ],
  9110. "description": "Collection of value objects that represent the PHP code units",
  9111. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9112. "support": {
  9113. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9114. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://github.com/sebastianbergmann",
  9119. "type": "github"
  9120. }
  9121. ],
  9122. "time": "2020-10-26T13:08:54+00:00"
  9123. },
  9124. {
  9125. "name": "sebastian/code-unit-reverse-lookup",
  9126. "version": "2.0.3",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9130. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9135. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9136. "shasum": ""
  9137. },
  9138. "require": {
  9139. "php": ">=7.3"
  9140. },
  9141. "require-dev": {
  9142. "phpunit/phpunit": "^9.3"
  9143. },
  9144. "type": "library",
  9145. "extra": {
  9146. "branch-alias": {
  9147. "dev-master": "2.0-dev"
  9148. }
  9149. },
  9150. "autoload": {
  9151. "classmap": [
  9152. "src/"
  9153. ]
  9154. },
  9155. "notification-url": "https://packagist.org/downloads/",
  9156. "license": [
  9157. "BSD-3-Clause"
  9158. ],
  9159. "authors": [
  9160. {
  9161. "name": "Sebastian Bergmann",
  9162. "email": "sebastian@phpunit.de"
  9163. }
  9164. ],
  9165. "description": "Looks up which function or method a line of code belongs to",
  9166. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9167. "support": {
  9168. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9169. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9170. },
  9171. "funding": [
  9172. {
  9173. "url": "https://github.com/sebastianbergmann",
  9174. "type": "github"
  9175. }
  9176. ],
  9177. "time": "2020-09-28T05:30:19+00:00"
  9178. },
  9179. {
  9180. "name": "sebastian/comparator",
  9181. "version": "4.0.8",
  9182. "source": {
  9183. "type": "git",
  9184. "url": "https://github.com/sebastianbergmann/comparator.git",
  9185. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9186. },
  9187. "dist": {
  9188. "type": "zip",
  9189. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9190. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9191. "shasum": ""
  9192. },
  9193. "require": {
  9194. "php": ">=7.3",
  9195. "sebastian/diff": "^4.0",
  9196. "sebastian/exporter": "^4.0"
  9197. },
  9198. "require-dev": {
  9199. "phpunit/phpunit": "^9.3"
  9200. },
  9201. "type": "library",
  9202. "extra": {
  9203. "branch-alias": {
  9204. "dev-master": "4.0-dev"
  9205. }
  9206. },
  9207. "autoload": {
  9208. "classmap": [
  9209. "src/"
  9210. ]
  9211. },
  9212. "notification-url": "https://packagist.org/downloads/",
  9213. "license": [
  9214. "BSD-3-Clause"
  9215. ],
  9216. "authors": [
  9217. {
  9218. "name": "Sebastian Bergmann",
  9219. "email": "sebastian@phpunit.de"
  9220. },
  9221. {
  9222. "name": "Jeff Welch",
  9223. "email": "whatthejeff@gmail.com"
  9224. },
  9225. {
  9226. "name": "Volker Dusch",
  9227. "email": "github@wallbash.com"
  9228. },
  9229. {
  9230. "name": "Bernhard Schussek",
  9231. "email": "bschussek@2bepublished.at"
  9232. }
  9233. ],
  9234. "description": "Provides the functionality to compare PHP values for equality",
  9235. "homepage": "https://github.com/sebastianbergmann/comparator",
  9236. "keywords": [
  9237. "comparator",
  9238. "compare",
  9239. "equality"
  9240. ],
  9241. "support": {
  9242. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9243. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9244. },
  9245. "funding": [
  9246. {
  9247. "url": "https://github.com/sebastianbergmann",
  9248. "type": "github"
  9249. }
  9250. ],
  9251. "time": "2022-09-14T12:41:17+00:00"
  9252. },
  9253. {
  9254. "name": "sebastian/complexity",
  9255. "version": "2.0.3",
  9256. "source": {
  9257. "type": "git",
  9258. "url": "https://github.com/sebastianbergmann/complexity.git",
  9259. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9260. },
  9261. "dist": {
  9262. "type": "zip",
  9263. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9264. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9265. "shasum": ""
  9266. },
  9267. "require": {
  9268. "nikic/php-parser": "^4.18 || ^5.0",
  9269. "php": ">=7.3"
  9270. },
  9271. "require-dev": {
  9272. "phpunit/phpunit": "^9.3"
  9273. },
  9274. "type": "library",
  9275. "extra": {
  9276. "branch-alias": {
  9277. "dev-master": "2.0-dev"
  9278. }
  9279. },
  9280. "autoload": {
  9281. "classmap": [
  9282. "src/"
  9283. ]
  9284. },
  9285. "notification-url": "https://packagist.org/downloads/",
  9286. "license": [
  9287. "BSD-3-Clause"
  9288. ],
  9289. "authors": [
  9290. {
  9291. "name": "Sebastian Bergmann",
  9292. "email": "sebastian@phpunit.de",
  9293. "role": "lead"
  9294. }
  9295. ],
  9296. "description": "Library for calculating the complexity of PHP code units",
  9297. "homepage": "https://github.com/sebastianbergmann/complexity",
  9298. "support": {
  9299. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9300. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9301. },
  9302. "funding": [
  9303. {
  9304. "url": "https://github.com/sebastianbergmann",
  9305. "type": "github"
  9306. }
  9307. ],
  9308. "time": "2023-12-22T06:19:30+00:00"
  9309. },
  9310. {
  9311. "name": "sebastian/diff",
  9312. "version": "4.0.6",
  9313. "source": {
  9314. "type": "git",
  9315. "url": "https://github.com/sebastianbergmann/diff.git",
  9316. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9317. },
  9318. "dist": {
  9319. "type": "zip",
  9320. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9321. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9322. "shasum": ""
  9323. },
  9324. "require": {
  9325. "php": ">=7.3"
  9326. },
  9327. "require-dev": {
  9328. "phpunit/phpunit": "^9.3",
  9329. "symfony/process": "^4.2 || ^5"
  9330. },
  9331. "type": "library",
  9332. "extra": {
  9333. "branch-alias": {
  9334. "dev-master": "4.0-dev"
  9335. }
  9336. },
  9337. "autoload": {
  9338. "classmap": [
  9339. "src/"
  9340. ]
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "BSD-3-Clause"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Sebastian Bergmann",
  9349. "email": "sebastian@phpunit.de"
  9350. },
  9351. {
  9352. "name": "Kore Nordmann",
  9353. "email": "mail@kore-nordmann.de"
  9354. }
  9355. ],
  9356. "description": "Diff implementation",
  9357. "homepage": "https://github.com/sebastianbergmann/diff",
  9358. "keywords": [
  9359. "diff",
  9360. "udiff",
  9361. "unidiff",
  9362. "unified diff"
  9363. ],
  9364. "support": {
  9365. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9366. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9367. },
  9368. "funding": [
  9369. {
  9370. "url": "https://github.com/sebastianbergmann",
  9371. "type": "github"
  9372. }
  9373. ],
  9374. "time": "2024-03-02T06:30:58+00:00"
  9375. },
  9376. {
  9377. "name": "sebastian/environment",
  9378. "version": "5.1.5",
  9379. "source": {
  9380. "type": "git",
  9381. "url": "https://github.com/sebastianbergmann/environment.git",
  9382. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9383. },
  9384. "dist": {
  9385. "type": "zip",
  9386. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9387. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9388. "shasum": ""
  9389. },
  9390. "require": {
  9391. "php": ">=7.3"
  9392. },
  9393. "require-dev": {
  9394. "phpunit/phpunit": "^9.3"
  9395. },
  9396. "suggest": {
  9397. "ext-posix": "*"
  9398. },
  9399. "type": "library",
  9400. "extra": {
  9401. "branch-alias": {
  9402. "dev-master": "5.1-dev"
  9403. }
  9404. },
  9405. "autoload": {
  9406. "classmap": [
  9407. "src/"
  9408. ]
  9409. },
  9410. "notification-url": "https://packagist.org/downloads/",
  9411. "license": [
  9412. "BSD-3-Clause"
  9413. ],
  9414. "authors": [
  9415. {
  9416. "name": "Sebastian Bergmann",
  9417. "email": "sebastian@phpunit.de"
  9418. }
  9419. ],
  9420. "description": "Provides functionality to handle HHVM/PHP environments",
  9421. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9422. "keywords": [
  9423. "Xdebug",
  9424. "environment",
  9425. "hhvm"
  9426. ],
  9427. "support": {
  9428. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9429. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9430. },
  9431. "funding": [
  9432. {
  9433. "url": "https://github.com/sebastianbergmann",
  9434. "type": "github"
  9435. }
  9436. ],
  9437. "time": "2023-02-03T06:03:51+00:00"
  9438. },
  9439. {
  9440. "name": "sebastian/exporter",
  9441. "version": "4.0.6",
  9442. "source": {
  9443. "type": "git",
  9444. "url": "https://github.com/sebastianbergmann/exporter.git",
  9445. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9446. },
  9447. "dist": {
  9448. "type": "zip",
  9449. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9450. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9451. "shasum": ""
  9452. },
  9453. "require": {
  9454. "php": ">=7.3",
  9455. "sebastian/recursion-context": "^4.0"
  9456. },
  9457. "require-dev": {
  9458. "ext-mbstring": "*",
  9459. "phpunit/phpunit": "^9.3"
  9460. },
  9461. "type": "library",
  9462. "extra": {
  9463. "branch-alias": {
  9464. "dev-master": "4.0-dev"
  9465. }
  9466. },
  9467. "autoload": {
  9468. "classmap": [
  9469. "src/"
  9470. ]
  9471. },
  9472. "notification-url": "https://packagist.org/downloads/",
  9473. "license": [
  9474. "BSD-3-Clause"
  9475. ],
  9476. "authors": [
  9477. {
  9478. "name": "Sebastian Bergmann",
  9479. "email": "sebastian@phpunit.de"
  9480. },
  9481. {
  9482. "name": "Jeff Welch",
  9483. "email": "whatthejeff@gmail.com"
  9484. },
  9485. {
  9486. "name": "Volker Dusch",
  9487. "email": "github@wallbash.com"
  9488. },
  9489. {
  9490. "name": "Adam Harvey",
  9491. "email": "aharvey@php.net"
  9492. },
  9493. {
  9494. "name": "Bernhard Schussek",
  9495. "email": "bschussek@gmail.com"
  9496. }
  9497. ],
  9498. "description": "Provides the functionality to export PHP variables for visualization",
  9499. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9500. "keywords": [
  9501. "export",
  9502. "exporter"
  9503. ],
  9504. "support": {
  9505. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9506. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. }
  9513. ],
  9514. "time": "2024-03-02T06:33:00+00:00"
  9515. },
  9516. {
  9517. "name": "sebastian/global-state",
  9518. "version": "5.0.7",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/sebastianbergmann/global-state.git",
  9522. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9527. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9528. "shasum": ""
  9529. },
  9530. "require": {
  9531. "php": ">=7.3",
  9532. "sebastian/object-reflector": "^2.0",
  9533. "sebastian/recursion-context": "^4.0"
  9534. },
  9535. "require-dev": {
  9536. "ext-dom": "*",
  9537. "phpunit/phpunit": "^9.3"
  9538. },
  9539. "suggest": {
  9540. "ext-uopz": "*"
  9541. },
  9542. "type": "library",
  9543. "extra": {
  9544. "branch-alias": {
  9545. "dev-master": "5.0-dev"
  9546. }
  9547. },
  9548. "autoload": {
  9549. "classmap": [
  9550. "src/"
  9551. ]
  9552. },
  9553. "notification-url": "https://packagist.org/downloads/",
  9554. "license": [
  9555. "BSD-3-Clause"
  9556. ],
  9557. "authors": [
  9558. {
  9559. "name": "Sebastian Bergmann",
  9560. "email": "sebastian@phpunit.de"
  9561. }
  9562. ],
  9563. "description": "Snapshotting of global state",
  9564. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9565. "keywords": [
  9566. "global state"
  9567. ],
  9568. "support": {
  9569. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9570. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://github.com/sebastianbergmann",
  9575. "type": "github"
  9576. }
  9577. ],
  9578. "time": "2024-03-02T06:35:11+00:00"
  9579. },
  9580. {
  9581. "name": "sebastian/lines-of-code",
  9582. "version": "1.0.4",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9586. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9591. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9592. "shasum": ""
  9593. },
  9594. "require": {
  9595. "nikic/php-parser": "^4.18 || ^5.0",
  9596. "php": ">=7.3"
  9597. },
  9598. "require-dev": {
  9599. "phpunit/phpunit": "^9.3"
  9600. },
  9601. "type": "library",
  9602. "extra": {
  9603. "branch-alias": {
  9604. "dev-master": "1.0-dev"
  9605. }
  9606. },
  9607. "autoload": {
  9608. "classmap": [
  9609. "src/"
  9610. ]
  9611. },
  9612. "notification-url": "https://packagist.org/downloads/",
  9613. "license": [
  9614. "BSD-3-Clause"
  9615. ],
  9616. "authors": [
  9617. {
  9618. "name": "Sebastian Bergmann",
  9619. "email": "sebastian@phpunit.de",
  9620. "role": "lead"
  9621. }
  9622. ],
  9623. "description": "Library for counting the lines of code in PHP source code",
  9624. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9625. "support": {
  9626. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9627. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9628. },
  9629. "funding": [
  9630. {
  9631. "url": "https://github.com/sebastianbergmann",
  9632. "type": "github"
  9633. }
  9634. ],
  9635. "time": "2023-12-22T06:20:34+00:00"
  9636. },
  9637. {
  9638. "name": "sebastian/object-enumerator",
  9639. "version": "4.0.4",
  9640. "source": {
  9641. "type": "git",
  9642. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9643. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9644. },
  9645. "dist": {
  9646. "type": "zip",
  9647. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9648. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9649. "shasum": ""
  9650. },
  9651. "require": {
  9652. "php": ">=7.3",
  9653. "sebastian/object-reflector": "^2.0",
  9654. "sebastian/recursion-context": "^4.0"
  9655. },
  9656. "require-dev": {
  9657. "phpunit/phpunit": "^9.3"
  9658. },
  9659. "type": "library",
  9660. "extra": {
  9661. "branch-alias": {
  9662. "dev-master": "4.0-dev"
  9663. }
  9664. },
  9665. "autoload": {
  9666. "classmap": [
  9667. "src/"
  9668. ]
  9669. },
  9670. "notification-url": "https://packagist.org/downloads/",
  9671. "license": [
  9672. "BSD-3-Clause"
  9673. ],
  9674. "authors": [
  9675. {
  9676. "name": "Sebastian Bergmann",
  9677. "email": "sebastian@phpunit.de"
  9678. }
  9679. ],
  9680. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9681. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9682. "support": {
  9683. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9684. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9685. },
  9686. "funding": [
  9687. {
  9688. "url": "https://github.com/sebastianbergmann",
  9689. "type": "github"
  9690. }
  9691. ],
  9692. "time": "2020-10-26T13:12:34+00:00"
  9693. },
  9694. {
  9695. "name": "sebastian/object-reflector",
  9696. "version": "2.0.4",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9700. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9705. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "php": ">=7.3"
  9710. },
  9711. "require-dev": {
  9712. "phpunit/phpunit": "^9.3"
  9713. },
  9714. "type": "library",
  9715. "extra": {
  9716. "branch-alias": {
  9717. "dev-master": "2.0-dev"
  9718. }
  9719. },
  9720. "autoload": {
  9721. "classmap": [
  9722. "src/"
  9723. ]
  9724. },
  9725. "notification-url": "https://packagist.org/downloads/",
  9726. "license": [
  9727. "BSD-3-Clause"
  9728. ],
  9729. "authors": [
  9730. {
  9731. "name": "Sebastian Bergmann",
  9732. "email": "sebastian@phpunit.de"
  9733. }
  9734. ],
  9735. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9736. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9737. "support": {
  9738. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9739. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9740. },
  9741. "funding": [
  9742. {
  9743. "url": "https://github.com/sebastianbergmann",
  9744. "type": "github"
  9745. }
  9746. ],
  9747. "time": "2020-10-26T13:14:26+00:00"
  9748. },
  9749. {
  9750. "name": "sebastian/recursion-context",
  9751. "version": "4.0.5",
  9752. "source": {
  9753. "type": "git",
  9754. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9755. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9756. },
  9757. "dist": {
  9758. "type": "zip",
  9759. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9760. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9761. "shasum": ""
  9762. },
  9763. "require": {
  9764. "php": ">=7.3"
  9765. },
  9766. "require-dev": {
  9767. "phpunit/phpunit": "^9.3"
  9768. },
  9769. "type": "library",
  9770. "extra": {
  9771. "branch-alias": {
  9772. "dev-master": "4.0-dev"
  9773. }
  9774. },
  9775. "autoload": {
  9776. "classmap": [
  9777. "src/"
  9778. ]
  9779. },
  9780. "notification-url": "https://packagist.org/downloads/",
  9781. "license": [
  9782. "BSD-3-Clause"
  9783. ],
  9784. "authors": [
  9785. {
  9786. "name": "Sebastian Bergmann",
  9787. "email": "sebastian@phpunit.de"
  9788. },
  9789. {
  9790. "name": "Jeff Welch",
  9791. "email": "whatthejeff@gmail.com"
  9792. },
  9793. {
  9794. "name": "Adam Harvey",
  9795. "email": "aharvey@php.net"
  9796. }
  9797. ],
  9798. "description": "Provides functionality to recursively process PHP variables",
  9799. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9800. "support": {
  9801. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9802. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2023-02-03T06:07:39+00:00"
  9811. },
  9812. {
  9813. "name": "sebastian/resource-operations",
  9814. "version": "3.0.4",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9818. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9823. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9824. "shasum": ""
  9825. },
  9826. "require": {
  9827. "php": ">=7.3"
  9828. },
  9829. "require-dev": {
  9830. "phpunit/phpunit": "^9.0"
  9831. },
  9832. "type": "library",
  9833. "extra": {
  9834. "branch-alias": {
  9835. "dev-main": "3.0-dev"
  9836. }
  9837. },
  9838. "autoload": {
  9839. "classmap": [
  9840. "src/"
  9841. ]
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "BSD-3-Clause"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Sebastian Bergmann",
  9850. "email": "sebastian@phpunit.de"
  9851. }
  9852. ],
  9853. "description": "Provides a list of PHP built-in functions that operate on resources",
  9854. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9855. "support": {
  9856. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9857. },
  9858. "funding": [
  9859. {
  9860. "url": "https://github.com/sebastianbergmann",
  9861. "type": "github"
  9862. }
  9863. ],
  9864. "time": "2024-03-14T16:00:52+00:00"
  9865. },
  9866. {
  9867. "name": "sebastian/type",
  9868. "version": "3.2.1",
  9869. "source": {
  9870. "type": "git",
  9871. "url": "https://github.com/sebastianbergmann/type.git",
  9872. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9873. },
  9874. "dist": {
  9875. "type": "zip",
  9876. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9877. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9878. "shasum": ""
  9879. },
  9880. "require": {
  9881. "php": ">=7.3"
  9882. },
  9883. "require-dev": {
  9884. "phpunit/phpunit": "^9.5"
  9885. },
  9886. "type": "library",
  9887. "extra": {
  9888. "branch-alias": {
  9889. "dev-master": "3.2-dev"
  9890. }
  9891. },
  9892. "autoload": {
  9893. "classmap": [
  9894. "src/"
  9895. ]
  9896. },
  9897. "notification-url": "https://packagist.org/downloads/",
  9898. "license": [
  9899. "BSD-3-Clause"
  9900. ],
  9901. "authors": [
  9902. {
  9903. "name": "Sebastian Bergmann",
  9904. "email": "sebastian@phpunit.de",
  9905. "role": "lead"
  9906. }
  9907. ],
  9908. "description": "Collection of value objects that represent the types of the PHP type system",
  9909. "homepage": "https://github.com/sebastianbergmann/type",
  9910. "support": {
  9911. "issues": "https://github.com/sebastianbergmann/type/issues",
  9912. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9913. },
  9914. "funding": [
  9915. {
  9916. "url": "https://github.com/sebastianbergmann",
  9917. "type": "github"
  9918. }
  9919. ],
  9920. "time": "2023-02-03T06:13:03+00:00"
  9921. },
  9922. {
  9923. "name": "sebastian/version",
  9924. "version": "3.0.2",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/sebastianbergmann/version.git",
  9928. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9933. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "php": ">=7.3"
  9938. },
  9939. "type": "library",
  9940. "extra": {
  9941. "branch-alias": {
  9942. "dev-master": "3.0-dev"
  9943. }
  9944. },
  9945. "autoload": {
  9946. "classmap": [
  9947. "src/"
  9948. ]
  9949. },
  9950. "notification-url": "https://packagist.org/downloads/",
  9951. "license": [
  9952. "BSD-3-Clause"
  9953. ],
  9954. "authors": [
  9955. {
  9956. "name": "Sebastian Bergmann",
  9957. "email": "sebastian@phpunit.de",
  9958. "role": "lead"
  9959. }
  9960. ],
  9961. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9962. "homepage": "https://github.com/sebastianbergmann/version",
  9963. "support": {
  9964. "issues": "https://github.com/sebastianbergmann/version/issues",
  9965. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://github.com/sebastianbergmann",
  9970. "type": "github"
  9971. }
  9972. ],
  9973. "time": "2020-09-28T06:39:44+00:00"
  9974. },
  9975. {
  9976. "name": "symfony/browser-kit",
  9977. "version": "v7.1.1",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/symfony/browser-kit.git",
  9981. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  9986. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  9987. "shasum": ""
  9988. },
  9989. "require": {
  9990. "php": ">=8.2",
  9991. "symfony/dom-crawler": "^6.4|^7.0"
  9992. },
  9993. "require-dev": {
  9994. "symfony/css-selector": "^6.4|^7.0",
  9995. "symfony/http-client": "^6.4|^7.0",
  9996. "symfony/mime": "^6.4|^7.0",
  9997. "symfony/process": "^6.4|^7.0"
  9998. },
  9999. "type": "library",
  10000. "autoload": {
  10001. "psr-4": {
  10002. "Symfony\\Component\\BrowserKit\\": ""
  10003. },
  10004. "exclude-from-classmap": [
  10005. "/Tests/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "MIT"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Fabien Potencier",
  10015. "email": "fabien@symfony.com"
  10016. },
  10017. {
  10018. "name": "Symfony Community",
  10019. "homepage": "https://symfony.com/contributors"
  10020. }
  10021. ],
  10022. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10023. "homepage": "https://symfony.com",
  10024. "support": {
  10025. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  10026. },
  10027. "funding": [
  10028. {
  10029. "url": "https://symfony.com/sponsor",
  10030. "type": "custom"
  10031. },
  10032. {
  10033. "url": "https://github.com/fabpot",
  10034. "type": "github"
  10035. },
  10036. {
  10037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10038. "type": "tidelift"
  10039. }
  10040. ],
  10041. "time": "2024-05-31T14:57:53+00:00"
  10042. },
  10043. {
  10044. "name": "symfony/css-selector",
  10045. "version": "v7.1.1",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/symfony/css-selector.git",
  10049. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10054. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10055. "shasum": ""
  10056. },
  10057. "require": {
  10058. "php": ">=8.2"
  10059. },
  10060. "type": "library",
  10061. "autoload": {
  10062. "psr-4": {
  10063. "Symfony\\Component\\CssSelector\\": ""
  10064. },
  10065. "exclude-from-classmap": [
  10066. "/Tests/"
  10067. ]
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Fabien Potencier",
  10076. "email": "fabien@symfony.com"
  10077. },
  10078. {
  10079. "name": "Jean-François Simon",
  10080. "email": "jeanfrancois.simon@sensiolabs.com"
  10081. },
  10082. {
  10083. "name": "Symfony Community",
  10084. "homepage": "https://symfony.com/contributors"
  10085. }
  10086. ],
  10087. "description": "Converts CSS selectors to XPath expressions",
  10088. "homepage": "https://symfony.com",
  10089. "support": {
  10090. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10091. },
  10092. "funding": [
  10093. {
  10094. "url": "https://symfony.com/sponsor",
  10095. "type": "custom"
  10096. },
  10097. {
  10098. "url": "https://github.com/fabpot",
  10099. "type": "github"
  10100. },
  10101. {
  10102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10103. "type": "tidelift"
  10104. }
  10105. ],
  10106. "time": "2024-05-31T14:57:53+00:00"
  10107. },
  10108. {
  10109. "name": "symfony/debug-bundle",
  10110. "version": "v7.1.1",
  10111. "source": {
  10112. "type": "git",
  10113. "url": "https://github.com/symfony/debug-bundle.git",
  10114. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10115. },
  10116. "dist": {
  10117. "type": "zip",
  10118. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10119. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10120. "shasum": ""
  10121. },
  10122. "require": {
  10123. "ext-xml": "*",
  10124. "php": ">=8.2",
  10125. "symfony/dependency-injection": "^6.4|^7.0",
  10126. "symfony/http-kernel": "^6.4|^7.0",
  10127. "symfony/twig-bridge": "^6.4|^7.0",
  10128. "symfony/var-dumper": "^6.4|^7.0"
  10129. },
  10130. "conflict": {
  10131. "symfony/config": "<6.4",
  10132. "symfony/dependency-injection": "<6.4"
  10133. },
  10134. "require-dev": {
  10135. "symfony/config": "^6.4|^7.0",
  10136. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10137. },
  10138. "type": "symfony-bundle",
  10139. "autoload": {
  10140. "psr-4": {
  10141. "Symfony\\Bundle\\DebugBundle\\": ""
  10142. },
  10143. "exclude-from-classmap": [
  10144. "/Tests/"
  10145. ]
  10146. },
  10147. "notification-url": "https://packagist.org/downloads/",
  10148. "license": [
  10149. "MIT"
  10150. ],
  10151. "authors": [
  10152. {
  10153. "name": "Fabien Potencier",
  10154. "email": "fabien@symfony.com"
  10155. },
  10156. {
  10157. "name": "Symfony Community",
  10158. "homepage": "https://symfony.com/contributors"
  10159. }
  10160. ],
  10161. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10162. "homepage": "https://symfony.com",
  10163. "support": {
  10164. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10165. },
  10166. "funding": [
  10167. {
  10168. "url": "https://symfony.com/sponsor",
  10169. "type": "custom"
  10170. },
  10171. {
  10172. "url": "https://github.com/fabpot",
  10173. "type": "github"
  10174. },
  10175. {
  10176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10177. "type": "tidelift"
  10178. }
  10179. ],
  10180. "time": "2024-05-31T14:55:39+00:00"
  10181. },
  10182. {
  10183. "name": "symfony/dom-crawler",
  10184. "version": "v7.1.1",
  10185. "source": {
  10186. "type": "git",
  10187. "url": "https://github.com/symfony/dom-crawler.git",
  10188. "reference": "01ce8174447f1f1dd33a5854b01beef79061d9fa"
  10189. },
  10190. "dist": {
  10191. "type": "zip",
  10192. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/01ce8174447f1f1dd33a5854b01beef79061d9fa",
  10193. "reference": "01ce8174447f1f1dd33a5854b01beef79061d9fa",
  10194. "shasum": ""
  10195. },
  10196. "require": {
  10197. "masterminds/html5": "^2.6",
  10198. "php": ">=8.2",
  10199. "symfony/polyfill-ctype": "~1.8",
  10200. "symfony/polyfill-mbstring": "~1.0"
  10201. },
  10202. "require-dev": {
  10203. "symfony/css-selector": "^6.4|^7.0"
  10204. },
  10205. "type": "library",
  10206. "autoload": {
  10207. "psr-4": {
  10208. "Symfony\\Component\\DomCrawler\\": ""
  10209. },
  10210. "exclude-from-classmap": [
  10211. "/Tests/"
  10212. ]
  10213. },
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "MIT"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Fabien Potencier",
  10221. "email": "fabien@symfony.com"
  10222. },
  10223. {
  10224. "name": "Symfony Community",
  10225. "homepage": "https://symfony.com/contributors"
  10226. }
  10227. ],
  10228. "description": "Eases DOM navigation for HTML and XML documents",
  10229. "homepage": "https://symfony.com",
  10230. "support": {
  10231. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.1"
  10232. },
  10233. "funding": [
  10234. {
  10235. "url": "https://symfony.com/sponsor",
  10236. "type": "custom"
  10237. },
  10238. {
  10239. "url": "https://github.com/fabpot",
  10240. "type": "github"
  10241. },
  10242. {
  10243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10244. "type": "tidelift"
  10245. }
  10246. ],
  10247. "time": "2024-05-31T14:57:53+00:00"
  10248. },
  10249. {
  10250. "name": "symfony/maker-bundle",
  10251. "version": "v1.60.0",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/symfony/maker-bundle.git",
  10255. "reference": "c305a02a22974670f359d4274c9431e1a191f559"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c305a02a22974670f359d4274c9431e1a191f559",
  10260. "reference": "c305a02a22974670f359d4274c9431e1a191f559",
  10261. "shasum": ""
  10262. },
  10263. "require": {
  10264. "doctrine/inflector": "^2.0",
  10265. "nikic/php-parser": "^4.18|^5.0",
  10266. "php": ">=8.1",
  10267. "symfony/config": "^6.4|^7.0",
  10268. "symfony/console": "^6.4|^7.0",
  10269. "symfony/dependency-injection": "^6.4|^7.0",
  10270. "symfony/deprecation-contracts": "^2.2|^3",
  10271. "symfony/filesystem": "^6.4|^7.0",
  10272. "symfony/finder": "^6.4|^7.0",
  10273. "symfony/framework-bundle": "^6.4|^7.0",
  10274. "symfony/http-kernel": "^6.4|^7.0",
  10275. "symfony/process": "^6.4|^7.0"
  10276. },
  10277. "conflict": {
  10278. "doctrine/doctrine-bundle": "<2.10",
  10279. "doctrine/orm": "<2.15"
  10280. },
  10281. "require-dev": {
  10282. "composer/semver": "^3.0",
  10283. "doctrine/doctrine-bundle": "^2.5.0",
  10284. "doctrine/orm": "^2.15|^3",
  10285. "symfony/http-client": "^6.4|^7.0",
  10286. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10287. "symfony/security-core": "^6.4|^7.0",
  10288. "symfony/yaml": "^6.4|^7.0",
  10289. "twig/twig": "^3.0|^4.x-dev"
  10290. },
  10291. "type": "symfony-bundle",
  10292. "extra": {
  10293. "branch-alias": {
  10294. "dev-main": "1.x-dev"
  10295. }
  10296. },
  10297. "autoload": {
  10298. "psr-4": {
  10299. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10300. }
  10301. },
  10302. "notification-url": "https://packagist.org/downloads/",
  10303. "license": [
  10304. "MIT"
  10305. ],
  10306. "authors": [
  10307. {
  10308. "name": "Symfony Community",
  10309. "homepage": "https://symfony.com/contributors"
  10310. }
  10311. ],
  10312. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10313. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10314. "keywords": [
  10315. "code generator",
  10316. "dev",
  10317. "generator",
  10318. "scaffold",
  10319. "scaffolding"
  10320. ],
  10321. "support": {
  10322. "issues": "https://github.com/symfony/maker-bundle/issues",
  10323. "source": "https://github.com/symfony/maker-bundle/tree/v1.60.0"
  10324. },
  10325. "funding": [
  10326. {
  10327. "url": "https://symfony.com/sponsor",
  10328. "type": "custom"
  10329. },
  10330. {
  10331. "url": "https://github.com/fabpot",
  10332. "type": "github"
  10333. },
  10334. {
  10335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10336. "type": "tidelift"
  10337. }
  10338. ],
  10339. "time": "2024-06-10T06:03:18+00:00"
  10340. },
  10341. {
  10342. "name": "symfony/phpunit-bridge",
  10343. "version": "v7.1.3",
  10344. "source": {
  10345. "type": "git",
  10346. "url": "https://github.com/symfony/phpunit-bridge.git",
  10347. "reference": "e823122d31935eb711e2767c31f3d71cb0b87fb1"
  10348. },
  10349. "dist": {
  10350. "type": "zip",
  10351. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e823122d31935eb711e2767c31f3d71cb0b87fb1",
  10352. "reference": "e823122d31935eb711e2767c31f3d71cb0b87fb1",
  10353. "shasum": ""
  10354. },
  10355. "require": {
  10356. "php": ">=7.2.5"
  10357. },
  10358. "conflict": {
  10359. "phpunit/phpunit": "<7.5|9.1.2"
  10360. },
  10361. "require-dev": {
  10362. "symfony/deprecation-contracts": "^2.5|^3.0",
  10363. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10364. "symfony/polyfill-php81": "^1.27"
  10365. },
  10366. "bin": [
  10367. "bin/simple-phpunit"
  10368. ],
  10369. "type": "symfony-bridge",
  10370. "extra": {
  10371. "thanks": {
  10372. "name": "phpunit/phpunit",
  10373. "url": "https://github.com/sebastianbergmann/phpunit"
  10374. }
  10375. },
  10376. "autoload": {
  10377. "files": [
  10378. "bootstrap.php"
  10379. ],
  10380. "psr-4": {
  10381. "Symfony\\Bridge\\PhpUnit\\": ""
  10382. },
  10383. "exclude-from-classmap": [
  10384. "/Tests/",
  10385. "/bin/"
  10386. ]
  10387. },
  10388. "notification-url": "https://packagist.org/downloads/",
  10389. "license": [
  10390. "MIT"
  10391. ],
  10392. "authors": [
  10393. {
  10394. "name": "Nicolas Grekas",
  10395. "email": "p@tchwork.com"
  10396. },
  10397. {
  10398. "name": "Symfony Community",
  10399. "homepage": "https://symfony.com/contributors"
  10400. }
  10401. ],
  10402. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10403. "homepage": "https://symfony.com",
  10404. "support": {
  10405. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.3"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://symfony.com/sponsor",
  10410. "type": "custom"
  10411. },
  10412. {
  10413. "url": "https://github.com/fabpot",
  10414. "type": "github"
  10415. },
  10416. {
  10417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10418. "type": "tidelift"
  10419. }
  10420. ],
  10421. "time": "2024-07-26T12:41:01+00:00"
  10422. },
  10423. {
  10424. "name": "symfony/web-profiler-bundle",
  10425. "version": "v7.1.3",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10429. "reference": "b9357f73d2c14dcd36783a67386f510654828668"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/b9357f73d2c14dcd36783a67386f510654828668",
  10434. "reference": "b9357f73d2c14dcd36783a67386f510654828668",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": ">=8.2",
  10439. "symfony/config": "^6.4|^7.0",
  10440. "symfony/framework-bundle": "^6.4|^7.0",
  10441. "symfony/http-kernel": "^6.4|^7.0",
  10442. "symfony/routing": "^6.4|^7.0",
  10443. "symfony/twig-bundle": "^6.4|^7.0",
  10444. "twig/twig": "^3.10"
  10445. },
  10446. "conflict": {
  10447. "symfony/form": "<6.4",
  10448. "symfony/mailer": "<6.4",
  10449. "symfony/messenger": "<6.4"
  10450. },
  10451. "require-dev": {
  10452. "symfony/browser-kit": "^6.4|^7.0",
  10453. "symfony/console": "^6.4|^7.0",
  10454. "symfony/css-selector": "^6.4|^7.0",
  10455. "symfony/stopwatch": "^6.4|^7.0"
  10456. },
  10457. "type": "symfony-bundle",
  10458. "autoload": {
  10459. "psr-4": {
  10460. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10461. },
  10462. "exclude-from-classmap": [
  10463. "/Tests/"
  10464. ]
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "MIT"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "Fabien Potencier",
  10473. "email": "fabien@symfony.com"
  10474. },
  10475. {
  10476. "name": "Symfony Community",
  10477. "homepage": "https://symfony.com/contributors"
  10478. }
  10479. ],
  10480. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10481. "homepage": "https://symfony.com",
  10482. "keywords": [
  10483. "dev"
  10484. ],
  10485. "support": {
  10486. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.3"
  10487. },
  10488. "funding": [
  10489. {
  10490. "url": "https://symfony.com/sponsor",
  10491. "type": "custom"
  10492. },
  10493. {
  10494. "url": "https://github.com/fabpot",
  10495. "type": "github"
  10496. },
  10497. {
  10498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10499. "type": "tidelift"
  10500. }
  10501. ],
  10502. "time": "2024-07-26T12:41:01+00:00"
  10503. },
  10504. {
  10505. "name": "theseer/tokenizer",
  10506. "version": "1.2.3",
  10507. "source": {
  10508. "type": "git",
  10509. "url": "https://github.com/theseer/tokenizer.git",
  10510. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10511. },
  10512. "dist": {
  10513. "type": "zip",
  10514. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10515. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10516. "shasum": ""
  10517. },
  10518. "require": {
  10519. "ext-dom": "*",
  10520. "ext-tokenizer": "*",
  10521. "ext-xmlwriter": "*",
  10522. "php": "^7.2 || ^8.0"
  10523. },
  10524. "type": "library",
  10525. "autoload": {
  10526. "classmap": [
  10527. "src/"
  10528. ]
  10529. },
  10530. "notification-url": "https://packagist.org/downloads/",
  10531. "license": [
  10532. "BSD-3-Clause"
  10533. ],
  10534. "authors": [
  10535. {
  10536. "name": "Arne Blankerts",
  10537. "email": "arne@blankerts.de",
  10538. "role": "Developer"
  10539. }
  10540. ],
  10541. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10542. "support": {
  10543. "issues": "https://github.com/theseer/tokenizer/issues",
  10544. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10545. },
  10546. "funding": [
  10547. {
  10548. "url": "https://github.com/theseer",
  10549. "type": "github"
  10550. }
  10551. ],
  10552. "time": "2024-03-03T12:36:25+00:00"
  10553. }
  10554. ],
  10555. "aliases": [],
  10556. "minimum-stability": "stable",
  10557. "stability-flags": [],
  10558. "prefer-stable": false,
  10559. "prefer-lowest": false,
  10560. "platform": {
  10561. "php": "^8.2",
  10562. "ext-ctype": "*",
  10563. "ext-iconv": "*"
  10564. },
  10565. "platform-dev": [],
  10566. "platform-overrides": {
  10567. "php": "8.2"
  10568. },
  10569. "plugin-api-version": "2.6.0"
  10570. }