composer.lock 361 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992
  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": "467141bbdc6343d94dba80817b4ecfdc",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  20. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.11",
  28. "symfony/phpunit-bridge": "^3 || ^7"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Composer\\Semver\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Nils Adermann",
  48. "email": "naderman@naderman.de",
  49. "homepage": "http://www.naderman.de"
  50. },
  51. {
  52. "name": "Jordi Boggiano",
  53. "email": "j.boggiano@seld.be",
  54. "homepage": "http://seld.be"
  55. },
  56. {
  57. "name": "Rob Bast",
  58. "email": "rob.bast@gmail.com",
  59. "homepage": "http://robbast.nl"
  60. }
  61. ],
  62. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  63. "keywords": [
  64. "semantic",
  65. "semver",
  66. "validation",
  67. "versioning"
  68. ],
  69. "support": {
  70. "irc": "ircs://irc.libera.chat:6697/composer",
  71. "issues": "https://github.com/composer/semver/issues",
  72. "source": "https://github.com/composer/semver/tree/3.4.3"
  73. },
  74. "funding": [
  75. {
  76. "url": "https://packagist.com",
  77. "type": "custom"
  78. },
  79. {
  80. "url": "https://github.com/composer",
  81. "type": "github"
  82. },
  83. {
  84. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  85. "type": "tidelift"
  86. }
  87. ],
  88. "time": "2024-09-19T14:15:21+00:00"
  89. },
  90. {
  91. "name": "doctrine/cache",
  92. "version": "2.2.0",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/doctrine/cache.git",
  96. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  101. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "php": "~7.1 || ^8.0"
  106. },
  107. "conflict": {
  108. "doctrine/common": ">2.2,<2.4"
  109. },
  110. "require-dev": {
  111. "cache/integration-tests": "dev-master",
  112. "doctrine/coding-standard": "^9",
  113. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  114. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  115. "symfony/cache": "^4.4 || ^5.4 || ^6",
  116. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "MIT"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Guilherme Blanco",
  131. "email": "guilhermeblanco@gmail.com"
  132. },
  133. {
  134. "name": "Roman Borschel",
  135. "email": "roman@code-factory.org"
  136. },
  137. {
  138. "name": "Benjamin Eberlei",
  139. "email": "kontakt@beberlei.de"
  140. },
  141. {
  142. "name": "Jonathan Wage",
  143. "email": "jonwage@gmail.com"
  144. },
  145. {
  146. "name": "Johannes Schmitt",
  147. "email": "schmittjoh@gmail.com"
  148. }
  149. ],
  150. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  151. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  152. "keywords": [
  153. "abstraction",
  154. "apcu",
  155. "cache",
  156. "caching",
  157. "couchdb",
  158. "memcached",
  159. "php",
  160. "redis",
  161. "xcache"
  162. ],
  163. "support": {
  164. "issues": "https://github.com/doctrine/cache/issues",
  165. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  166. },
  167. "funding": [
  168. {
  169. "url": "https://www.doctrine-project.org/sponsorship.html",
  170. "type": "custom"
  171. },
  172. {
  173. "url": "https://www.patreon.com/phpdoctrine",
  174. "type": "patreon"
  175. },
  176. {
  177. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  178. "type": "tidelift"
  179. }
  180. ],
  181. "time": "2022-05-20T20:07:39+00:00"
  182. },
  183. {
  184. "name": "doctrine/collections",
  185. "version": "2.2.2",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/doctrine/collections.git",
  189. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  194. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  195. "shasum": ""
  196. },
  197. "require": {
  198. "doctrine/deprecations": "^1",
  199. "php": "^8.1"
  200. },
  201. "require-dev": {
  202. "doctrine/coding-standard": "^12",
  203. "ext-json": "*",
  204. "phpstan/phpstan": "^1.8",
  205. "phpstan/phpstan-phpunit": "^1.0",
  206. "phpunit/phpunit": "^10.5",
  207. "vimeo/psalm": "^5.11"
  208. },
  209. "type": "library",
  210. "autoload": {
  211. "psr-4": {
  212. "Doctrine\\Common\\Collections\\": "src"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Guilherme Blanco",
  222. "email": "guilhermeblanco@gmail.com"
  223. },
  224. {
  225. "name": "Roman Borschel",
  226. "email": "roman@code-factory.org"
  227. },
  228. {
  229. "name": "Benjamin Eberlei",
  230. "email": "kontakt@beberlei.de"
  231. },
  232. {
  233. "name": "Jonathan Wage",
  234. "email": "jonwage@gmail.com"
  235. },
  236. {
  237. "name": "Johannes Schmitt",
  238. "email": "schmittjoh@gmail.com"
  239. }
  240. ],
  241. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  242. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  243. "keywords": [
  244. "array",
  245. "collections",
  246. "iterators",
  247. "php"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/doctrine/collections/issues",
  251. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  252. },
  253. "funding": [
  254. {
  255. "url": "https://www.doctrine-project.org/sponsorship.html",
  256. "type": "custom"
  257. },
  258. {
  259. "url": "https://www.patreon.com/phpdoctrine",
  260. "type": "patreon"
  261. },
  262. {
  263. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  264. "type": "tidelift"
  265. }
  266. ],
  267. "time": "2024-04-18T06:56:21+00:00"
  268. },
  269. {
  270. "name": "doctrine/dbal",
  271. "version": "3.9.3",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/doctrine/dbal.git",
  275. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  280. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "composer-runtime-api": "^2",
  285. "doctrine/cache": "^1.11|^2.0",
  286. "doctrine/deprecations": "^0.5.3|^1",
  287. "doctrine/event-manager": "^1|^2",
  288. "php": "^7.4 || ^8.0",
  289. "psr/cache": "^1|^2|^3",
  290. "psr/log": "^1|^2|^3"
  291. },
  292. "require-dev": {
  293. "doctrine/coding-standard": "12.0.0",
  294. "fig/log-test": "^1",
  295. "jetbrains/phpstorm-stubs": "2023.1",
  296. "phpstan/phpstan": "1.12.6",
  297. "phpstan/phpstan-strict-rules": "^1.6",
  298. "phpunit/phpunit": "9.6.20",
  299. "psalm/plugin-phpunit": "0.18.4",
  300. "slevomat/coding-standard": "8.13.1",
  301. "squizlabs/php_codesniffer": "3.10.2",
  302. "symfony/cache": "^5.4|^6.0|^7.0",
  303. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  304. "vimeo/psalm": "4.30.0"
  305. },
  306. "suggest": {
  307. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  308. },
  309. "bin": [
  310. "bin/doctrine-dbal"
  311. ],
  312. "type": "library",
  313. "autoload": {
  314. "psr-4": {
  315. "Doctrine\\DBAL\\": "src"
  316. }
  317. },
  318. "notification-url": "https://packagist.org/downloads/",
  319. "license": [
  320. "MIT"
  321. ],
  322. "authors": [
  323. {
  324. "name": "Guilherme Blanco",
  325. "email": "guilhermeblanco@gmail.com"
  326. },
  327. {
  328. "name": "Roman Borschel",
  329. "email": "roman@code-factory.org"
  330. },
  331. {
  332. "name": "Benjamin Eberlei",
  333. "email": "kontakt@beberlei.de"
  334. },
  335. {
  336. "name": "Jonathan Wage",
  337. "email": "jonwage@gmail.com"
  338. }
  339. ],
  340. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  341. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  342. "keywords": [
  343. "abstraction",
  344. "database",
  345. "db2",
  346. "dbal",
  347. "mariadb",
  348. "mssql",
  349. "mysql",
  350. "oci8",
  351. "oracle",
  352. "pdo",
  353. "pgsql",
  354. "postgresql",
  355. "queryobject",
  356. "sasql",
  357. "sql",
  358. "sqlite",
  359. "sqlserver",
  360. "sqlsrv"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/doctrine/dbal/issues",
  364. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  365. },
  366. "funding": [
  367. {
  368. "url": "https://www.doctrine-project.org/sponsorship.html",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://www.patreon.com/phpdoctrine",
  373. "type": "patreon"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2024-10-10T17:56:43+00:00"
  381. },
  382. {
  383. "name": "doctrine/deprecations",
  384. "version": "1.1.3",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/doctrine/deprecations.git",
  388. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  393. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^7.1 || ^8.0"
  398. },
  399. "require-dev": {
  400. "doctrine/coding-standard": "^9",
  401. "phpstan/phpstan": "1.4.10 || 1.10.15",
  402. "phpstan/phpstan-phpunit": "^1.0",
  403. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  404. "psalm/plugin-phpunit": "0.18.4",
  405. "psr/log": "^1 || ^2 || ^3",
  406. "vimeo/psalm": "4.30.0 || 5.12.0"
  407. },
  408. "suggest": {
  409. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  410. },
  411. "type": "library",
  412. "autoload": {
  413. "psr-4": {
  414. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "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.",
  422. "homepage": "https://www.doctrine-project.org/",
  423. "support": {
  424. "issues": "https://github.com/doctrine/deprecations/issues",
  425. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  426. },
  427. "time": "2024-01-30T19:34:25+00:00"
  428. },
  429. {
  430. "name": "doctrine/doctrine-bundle",
  431. "version": "2.13.0",
  432. "source": {
  433. "type": "git",
  434. "url": "https://github.com/doctrine/DoctrineBundle.git",
  435. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  436. },
  437. "dist": {
  438. "type": "zip",
  439. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  440. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  441. "shasum": ""
  442. },
  443. "require": {
  444. "doctrine/cache": "^1.11 || ^2.0",
  445. "doctrine/dbal": "^3.7.0 || ^4.0",
  446. "doctrine/persistence": "^2.2 || ^3",
  447. "doctrine/sql-formatter": "^1.0.1",
  448. "php": "^7.4 || ^8.0",
  449. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  450. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  451. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  452. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  453. "symfony/deprecation-contracts": "^2.1 || ^3",
  454. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  455. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  456. "symfony/polyfill-php80": "^1.15",
  457. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  458. },
  459. "conflict": {
  460. "doctrine/annotations": ">=3.0",
  461. "doctrine/orm": "<2.17 || >=4.0",
  462. "twig/twig": "<1.34 || >=2.0 <2.4"
  463. },
  464. "require-dev": {
  465. "doctrine/annotations": "^1 || ^2",
  466. "doctrine/coding-standard": "^12",
  467. "doctrine/deprecations": "^1.0",
  468. "doctrine/orm": "^2.17 || ^3.0",
  469. "friendsofphp/proxy-manager-lts": "^1.0",
  470. "phpunit/phpunit": "^9.5.26",
  471. "psalm/plugin-phpunit": "^0.18.4",
  472. "psalm/plugin-symfony": "^5",
  473. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  474. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  475. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  476. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  477. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  478. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  479. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  480. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  481. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  482. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  483. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  484. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  485. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  486. "vimeo/psalm": "^5.15"
  487. },
  488. "suggest": {
  489. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  490. "ext-pdo": "*",
  491. "symfony/web-profiler-bundle": "To use the data collector."
  492. },
  493. "type": "symfony-bundle",
  494. "autoload": {
  495. "psr-4": {
  496. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  497. }
  498. },
  499. "notification-url": "https://packagist.org/downloads/",
  500. "license": [
  501. "MIT"
  502. ],
  503. "authors": [
  504. {
  505. "name": "Fabien Potencier",
  506. "email": "fabien@symfony.com"
  507. },
  508. {
  509. "name": "Benjamin Eberlei",
  510. "email": "kontakt@beberlei.de"
  511. },
  512. {
  513. "name": "Symfony Community",
  514. "homepage": "https://symfony.com/contributors"
  515. },
  516. {
  517. "name": "Doctrine Project",
  518. "homepage": "https://www.doctrine-project.org/"
  519. }
  520. ],
  521. "description": "Symfony DoctrineBundle",
  522. "homepage": "https://www.doctrine-project.org",
  523. "keywords": [
  524. "database",
  525. "dbal",
  526. "orm",
  527. "persistence"
  528. ],
  529. "support": {
  530. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  531. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  532. },
  533. "funding": [
  534. {
  535. "url": "https://www.doctrine-project.org/sponsorship.html",
  536. "type": "custom"
  537. },
  538. {
  539. "url": "https://www.patreon.com/phpdoctrine",
  540. "type": "patreon"
  541. },
  542. {
  543. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  544. "type": "tidelift"
  545. }
  546. ],
  547. "time": "2024-09-01T09:46:40+00:00"
  548. },
  549. {
  550. "name": "doctrine/doctrine-migrations-bundle",
  551. "version": "3.3.1",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  555. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  560. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  561. "shasum": ""
  562. },
  563. "require": {
  564. "doctrine/doctrine-bundle": "^2.4",
  565. "doctrine/migrations": "^3.2",
  566. "php": "^7.2|^8.0",
  567. "symfony/deprecation-contracts": "^2.1 || ^3",
  568. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  569. },
  570. "require-dev": {
  571. "composer/semver": "^3.0",
  572. "doctrine/coding-standard": "^12",
  573. "doctrine/orm": "^2.6 || ^3",
  574. "doctrine/persistence": "^2.0 || ^3 ",
  575. "phpstan/phpstan": "^1.4",
  576. "phpstan/phpstan-deprecation-rules": "^1",
  577. "phpstan/phpstan-phpunit": "^1",
  578. "phpstan/phpstan-strict-rules": "^1.1",
  579. "phpstan/phpstan-symfony": "^1.3",
  580. "phpunit/phpunit": "^8.5|^9.5",
  581. "psalm/plugin-phpunit": "^0.18.4",
  582. "psalm/plugin-symfony": "^3 || ^5",
  583. "symfony/phpunit-bridge": "^6.3 || ^7",
  584. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  585. "vimeo/psalm": "^4.30 || ^5.15"
  586. },
  587. "type": "symfony-bundle",
  588. "autoload": {
  589. "psr-4": {
  590. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  591. },
  592. "exclude-from-classmap": [
  593. "/Tests/"
  594. ]
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Fabien Potencier",
  603. "email": "fabien@symfony.com"
  604. },
  605. {
  606. "name": "Doctrine Project",
  607. "homepage": "https://www.doctrine-project.org"
  608. },
  609. {
  610. "name": "Symfony Community",
  611. "homepage": "https://symfony.com/contributors"
  612. }
  613. ],
  614. "description": "Symfony DoctrineMigrationsBundle",
  615. "homepage": "https://www.doctrine-project.org",
  616. "keywords": [
  617. "dbal",
  618. "migrations",
  619. "schema"
  620. ],
  621. "support": {
  622. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  623. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  624. },
  625. "funding": [
  626. {
  627. "url": "https://www.doctrine-project.org/sponsorship.html",
  628. "type": "custom"
  629. },
  630. {
  631. "url": "https://www.patreon.com/phpdoctrine",
  632. "type": "patreon"
  633. },
  634. {
  635. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  636. "type": "tidelift"
  637. }
  638. ],
  639. "time": "2024-05-14T20:32:18+00:00"
  640. },
  641. {
  642. "name": "doctrine/event-manager",
  643. "version": "2.0.1",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/doctrine/event-manager.git",
  647. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  652. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  653. "shasum": ""
  654. },
  655. "require": {
  656. "php": "^8.1"
  657. },
  658. "conflict": {
  659. "doctrine/common": "<2.9"
  660. },
  661. "require-dev": {
  662. "doctrine/coding-standard": "^12",
  663. "phpstan/phpstan": "^1.8.8",
  664. "phpunit/phpunit": "^10.5",
  665. "vimeo/psalm": "^5.24"
  666. },
  667. "type": "library",
  668. "autoload": {
  669. "psr-4": {
  670. "Doctrine\\Common\\": "src"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Guilherme Blanco",
  680. "email": "guilhermeblanco@gmail.com"
  681. },
  682. {
  683. "name": "Roman Borschel",
  684. "email": "roman@code-factory.org"
  685. },
  686. {
  687. "name": "Benjamin Eberlei",
  688. "email": "kontakt@beberlei.de"
  689. },
  690. {
  691. "name": "Jonathan Wage",
  692. "email": "jonwage@gmail.com"
  693. },
  694. {
  695. "name": "Johannes Schmitt",
  696. "email": "schmittjoh@gmail.com"
  697. },
  698. {
  699. "name": "Marco Pivetta",
  700. "email": "ocramius@gmail.com"
  701. }
  702. ],
  703. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  704. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  705. "keywords": [
  706. "event",
  707. "event dispatcher",
  708. "event manager",
  709. "event system",
  710. "events"
  711. ],
  712. "support": {
  713. "issues": "https://github.com/doctrine/event-manager/issues",
  714. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  715. },
  716. "funding": [
  717. {
  718. "url": "https://www.doctrine-project.org/sponsorship.html",
  719. "type": "custom"
  720. },
  721. {
  722. "url": "https://www.patreon.com/phpdoctrine",
  723. "type": "patreon"
  724. },
  725. {
  726. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  727. "type": "tidelift"
  728. }
  729. ],
  730. "time": "2024-05-22T20:47:39+00:00"
  731. },
  732. {
  733. "name": "doctrine/inflector",
  734. "version": "2.0.10",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/doctrine/inflector.git",
  738. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  743. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  744. "shasum": ""
  745. },
  746. "require": {
  747. "php": "^7.2 || ^8.0"
  748. },
  749. "require-dev": {
  750. "doctrine/coding-standard": "^11.0",
  751. "phpstan/phpstan": "^1.8",
  752. "phpstan/phpstan-phpunit": "^1.1",
  753. "phpstan/phpstan-strict-rules": "^1.3",
  754. "phpunit/phpunit": "^8.5 || ^9.5",
  755. "vimeo/psalm": "^4.25 || ^5.4"
  756. },
  757. "type": "library",
  758. "autoload": {
  759. "psr-4": {
  760. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Guilherme Blanco",
  770. "email": "guilhermeblanco@gmail.com"
  771. },
  772. {
  773. "name": "Roman Borschel",
  774. "email": "roman@code-factory.org"
  775. },
  776. {
  777. "name": "Benjamin Eberlei",
  778. "email": "kontakt@beberlei.de"
  779. },
  780. {
  781. "name": "Jonathan Wage",
  782. "email": "jonwage@gmail.com"
  783. },
  784. {
  785. "name": "Johannes Schmitt",
  786. "email": "schmittjoh@gmail.com"
  787. }
  788. ],
  789. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  790. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  791. "keywords": [
  792. "inflection",
  793. "inflector",
  794. "lowercase",
  795. "manipulation",
  796. "php",
  797. "plural",
  798. "singular",
  799. "strings",
  800. "uppercase",
  801. "words"
  802. ],
  803. "support": {
  804. "issues": "https://github.com/doctrine/inflector/issues",
  805. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  806. },
  807. "funding": [
  808. {
  809. "url": "https://www.doctrine-project.org/sponsorship.html",
  810. "type": "custom"
  811. },
  812. {
  813. "url": "https://www.patreon.com/phpdoctrine",
  814. "type": "patreon"
  815. },
  816. {
  817. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  818. "type": "tidelift"
  819. }
  820. ],
  821. "time": "2024-02-18T20:23:39+00:00"
  822. },
  823. {
  824. "name": "doctrine/instantiator",
  825. "version": "2.0.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/doctrine/instantiator.git",
  829. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  834. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "php": "^8.1"
  839. },
  840. "require-dev": {
  841. "doctrine/coding-standard": "^11",
  842. "ext-pdo": "*",
  843. "ext-phar": "*",
  844. "phpbench/phpbench": "^1.2",
  845. "phpstan/phpstan": "^1.9.4",
  846. "phpstan/phpstan-phpunit": "^1.3",
  847. "phpunit/phpunit": "^9.5.27",
  848. "vimeo/psalm": "^5.4"
  849. },
  850. "type": "library",
  851. "autoload": {
  852. "psr-4": {
  853. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  854. }
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Marco Pivetta",
  863. "email": "ocramius@gmail.com",
  864. "homepage": "https://ocramius.github.io/"
  865. }
  866. ],
  867. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  868. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  869. "keywords": [
  870. "constructor",
  871. "instantiate"
  872. ],
  873. "support": {
  874. "issues": "https://github.com/doctrine/instantiator/issues",
  875. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  876. },
  877. "funding": [
  878. {
  879. "url": "https://www.doctrine-project.org/sponsorship.html",
  880. "type": "custom"
  881. },
  882. {
  883. "url": "https://www.patreon.com/phpdoctrine",
  884. "type": "patreon"
  885. },
  886. {
  887. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  888. "type": "tidelift"
  889. }
  890. ],
  891. "time": "2022-12-30T00:23:10+00:00"
  892. },
  893. {
  894. "name": "doctrine/lexer",
  895. "version": "3.0.1",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/doctrine/lexer.git",
  899. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  904. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "php": "^8.1"
  909. },
  910. "require-dev": {
  911. "doctrine/coding-standard": "^12",
  912. "phpstan/phpstan": "^1.10",
  913. "phpunit/phpunit": "^10.5",
  914. "psalm/plugin-phpunit": "^0.18.3",
  915. "vimeo/psalm": "^5.21"
  916. },
  917. "type": "library",
  918. "autoload": {
  919. "psr-4": {
  920. "Doctrine\\Common\\Lexer\\": "src"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Guilherme Blanco",
  930. "email": "guilhermeblanco@gmail.com"
  931. },
  932. {
  933. "name": "Roman Borschel",
  934. "email": "roman@code-factory.org"
  935. },
  936. {
  937. "name": "Johannes Schmitt",
  938. "email": "schmittjoh@gmail.com"
  939. }
  940. ],
  941. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  942. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  943. "keywords": [
  944. "annotations",
  945. "docblock",
  946. "lexer",
  947. "parser",
  948. "php"
  949. ],
  950. "support": {
  951. "issues": "https://github.com/doctrine/lexer/issues",
  952. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  953. },
  954. "funding": [
  955. {
  956. "url": "https://www.doctrine-project.org/sponsorship.html",
  957. "type": "custom"
  958. },
  959. {
  960. "url": "https://www.patreon.com/phpdoctrine",
  961. "type": "patreon"
  962. },
  963. {
  964. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  965. "type": "tidelift"
  966. }
  967. ],
  968. "time": "2024-02-05T11:56:58+00:00"
  969. },
  970. {
  971. "name": "doctrine/migrations",
  972. "version": "3.8.2",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/doctrine/migrations.git",
  976. "reference": "5007eb1168691225ac305fe16856755c20860842"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  981. "reference": "5007eb1168691225ac305fe16856755c20860842",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "composer-runtime-api": "^2",
  986. "doctrine/dbal": "^3.6 || ^4",
  987. "doctrine/deprecations": "^0.5.3 || ^1",
  988. "doctrine/event-manager": "^1.2 || ^2.0",
  989. "php": "^8.1",
  990. "psr/log": "^1.1.3 || ^2 || ^3",
  991. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  992. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  993. "symfony/var-exporter": "^6.2 || ^7.0"
  994. },
  995. "conflict": {
  996. "doctrine/orm": "<2.12 || >=4"
  997. },
  998. "require-dev": {
  999. "doctrine/coding-standard": "^12",
  1000. "doctrine/orm": "^2.13 || ^3",
  1001. "doctrine/persistence": "^2 || ^3",
  1002. "doctrine/sql-formatter": "^1.0",
  1003. "ext-pdo_sqlite": "*",
  1004. "fig/log-test": "^1",
  1005. "phpstan/phpstan": "^1.10",
  1006. "phpstan/phpstan-deprecation-rules": "^1.1",
  1007. "phpstan/phpstan-phpunit": "^1.3",
  1008. "phpstan/phpstan-strict-rules": "^1.4",
  1009. "phpstan/phpstan-symfony": "^1.3",
  1010. "phpunit/phpunit": "^10.3",
  1011. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1012. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1013. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1014. },
  1015. "suggest": {
  1016. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1017. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1018. },
  1019. "bin": [
  1020. "bin/doctrine-migrations"
  1021. ],
  1022. "type": "library",
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Doctrine\\Migrations\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Benjamin Eberlei",
  1035. "email": "kontakt@beberlei.de"
  1036. },
  1037. {
  1038. "name": "Jonathan Wage",
  1039. "email": "jonwage@gmail.com"
  1040. },
  1041. {
  1042. "name": "Michael Simonson",
  1043. "email": "contact@mikesimonson.com"
  1044. }
  1045. ],
  1046. "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.",
  1047. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1048. "keywords": [
  1049. "database",
  1050. "dbal",
  1051. "migrations"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/doctrine/migrations/issues",
  1055. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://www.doctrine-project.org/sponsorship.html",
  1060. "type": "custom"
  1061. },
  1062. {
  1063. "url": "https://www.patreon.com/phpdoctrine",
  1064. "type": "patreon"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2024-10-10T21:35:27+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/orm",
  1075. "version": "3.3.0",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/orm.git",
  1079. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1084. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "composer-runtime-api": "^2",
  1089. "doctrine/collections": "^2.2",
  1090. "doctrine/dbal": "^3.8.2 || ^4",
  1091. "doctrine/deprecations": "^0.5.3 || ^1",
  1092. "doctrine/event-manager": "^1.2 || ^2",
  1093. "doctrine/inflector": "^1.4 || ^2.0",
  1094. "doctrine/instantiator": "^1.3 || ^2",
  1095. "doctrine/lexer": "^3",
  1096. "doctrine/persistence": "^3.3.1",
  1097. "ext-ctype": "*",
  1098. "php": "^8.1",
  1099. "psr/cache": "^1 || ^2 || ^3",
  1100. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1101. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1102. },
  1103. "require-dev": {
  1104. "doctrine/coding-standard": "^12.0",
  1105. "phpbench/phpbench": "^1.0",
  1106. "phpdocumentor/guides-cli": "^1.4",
  1107. "phpstan/extension-installer": "^1.4",
  1108. "phpstan/phpstan": "1.12.6",
  1109. "phpstan/phpstan-deprecation-rules": "^1.2",
  1110. "phpunit/phpunit": "^10.4.0",
  1111. "psr/log": "^1 || ^2 || ^3",
  1112. "squizlabs/php_codesniffer": "3.7.2",
  1113. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1114. "vimeo/psalm": "5.24.0"
  1115. },
  1116. "suggest": {
  1117. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1118. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1119. },
  1120. "type": "library",
  1121. "autoload": {
  1122. "psr-4": {
  1123. "Doctrine\\ORM\\": "src"
  1124. }
  1125. },
  1126. "notification-url": "https://packagist.org/downloads/",
  1127. "license": [
  1128. "MIT"
  1129. ],
  1130. "authors": [
  1131. {
  1132. "name": "Guilherme Blanco",
  1133. "email": "guilhermeblanco@gmail.com"
  1134. },
  1135. {
  1136. "name": "Roman Borschel",
  1137. "email": "roman@code-factory.org"
  1138. },
  1139. {
  1140. "name": "Benjamin Eberlei",
  1141. "email": "kontakt@beberlei.de"
  1142. },
  1143. {
  1144. "name": "Jonathan Wage",
  1145. "email": "jonwage@gmail.com"
  1146. },
  1147. {
  1148. "name": "Marco Pivetta",
  1149. "email": "ocramius@gmail.com"
  1150. }
  1151. ],
  1152. "description": "Object-Relational-Mapper for PHP",
  1153. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1154. "keywords": [
  1155. "database",
  1156. "orm"
  1157. ],
  1158. "support": {
  1159. "issues": "https://github.com/doctrine/orm/issues",
  1160. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1161. },
  1162. "time": "2024-10-12T20:07:18+00:00"
  1163. },
  1164. {
  1165. "name": "doctrine/persistence",
  1166. "version": "3.3.3",
  1167. "source": {
  1168. "type": "git",
  1169. "url": "https://github.com/doctrine/persistence.git",
  1170. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1171. },
  1172. "dist": {
  1173. "type": "zip",
  1174. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1175. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1176. "shasum": ""
  1177. },
  1178. "require": {
  1179. "doctrine/event-manager": "^1 || ^2",
  1180. "php": "^7.2 || ^8.0",
  1181. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1182. },
  1183. "conflict": {
  1184. "doctrine/common": "<2.10"
  1185. },
  1186. "require-dev": {
  1187. "doctrine/coding-standard": "^12",
  1188. "doctrine/common": "^3.0",
  1189. "phpstan/phpstan": "1.11.1",
  1190. "phpstan/phpstan-phpunit": "^1",
  1191. "phpstan/phpstan-strict-rules": "^1.1",
  1192. "phpunit/phpunit": "^8.5 || ^9.5",
  1193. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1194. "vimeo/psalm": "4.30.0 || 5.24.0"
  1195. },
  1196. "type": "library",
  1197. "autoload": {
  1198. "psr-4": {
  1199. "Doctrine\\Persistence\\": "src/Persistence"
  1200. }
  1201. },
  1202. "notification-url": "https://packagist.org/downloads/",
  1203. "license": [
  1204. "MIT"
  1205. ],
  1206. "authors": [
  1207. {
  1208. "name": "Guilherme Blanco",
  1209. "email": "guilhermeblanco@gmail.com"
  1210. },
  1211. {
  1212. "name": "Roman Borschel",
  1213. "email": "roman@code-factory.org"
  1214. },
  1215. {
  1216. "name": "Benjamin Eberlei",
  1217. "email": "kontakt@beberlei.de"
  1218. },
  1219. {
  1220. "name": "Jonathan Wage",
  1221. "email": "jonwage@gmail.com"
  1222. },
  1223. {
  1224. "name": "Johannes Schmitt",
  1225. "email": "schmittjoh@gmail.com"
  1226. },
  1227. {
  1228. "name": "Marco Pivetta",
  1229. "email": "ocramius@gmail.com"
  1230. }
  1231. ],
  1232. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1233. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1234. "keywords": [
  1235. "mapper",
  1236. "object",
  1237. "odm",
  1238. "orm",
  1239. "persistence"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/doctrine/persistence/issues",
  1243. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1244. },
  1245. "funding": [
  1246. {
  1247. "url": "https://www.doctrine-project.org/sponsorship.html",
  1248. "type": "custom"
  1249. },
  1250. {
  1251. "url": "https://www.patreon.com/phpdoctrine",
  1252. "type": "patreon"
  1253. },
  1254. {
  1255. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1256. "type": "tidelift"
  1257. }
  1258. ],
  1259. "time": "2024-06-20T10:14:30+00:00"
  1260. },
  1261. {
  1262. "name": "doctrine/sql-formatter",
  1263. "version": "1.5.1",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/doctrine/sql-formatter.git",
  1267. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1272. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "php": "^8.1"
  1277. },
  1278. "require-dev": {
  1279. "doctrine/coding-standard": "^12",
  1280. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1281. "phpstan/phpstan": "^1.10",
  1282. "phpunit/phpunit": "^10.5",
  1283. "vimeo/psalm": "^5.24"
  1284. },
  1285. "bin": [
  1286. "bin/sql-formatter"
  1287. ],
  1288. "type": "library",
  1289. "autoload": {
  1290. "psr-4": {
  1291. "Doctrine\\SqlFormatter\\": "src"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Jeremy Dorn",
  1301. "email": "jeremy@jeremydorn.com",
  1302. "homepage": "https://jeremydorn.com/"
  1303. }
  1304. ],
  1305. "description": "a PHP SQL highlighting library",
  1306. "homepage": "https://github.com/doctrine/sql-formatter/",
  1307. "keywords": [
  1308. "highlight",
  1309. "sql"
  1310. ],
  1311. "support": {
  1312. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1313. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1314. },
  1315. "time": "2024-10-21T18:21:57+00:00"
  1316. },
  1317. {
  1318. "name": "egulias/email-validator",
  1319. "version": "4.0.2",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/egulias/EmailValidator.git",
  1323. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1328. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "doctrine/lexer": "^2.0 || ^3.0",
  1333. "php": ">=8.1",
  1334. "symfony/polyfill-intl-idn": "^1.26"
  1335. },
  1336. "require-dev": {
  1337. "phpunit/phpunit": "^10.2",
  1338. "vimeo/psalm": "^5.12"
  1339. },
  1340. "suggest": {
  1341. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1342. },
  1343. "type": "library",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-master": "4.0.x-dev"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Egulias\\EmailValidator\\": "src"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Eduardo Gulias Davis"
  1361. }
  1362. ],
  1363. "description": "A library for validating emails against several RFCs",
  1364. "homepage": "https://github.com/egulias/EmailValidator",
  1365. "keywords": [
  1366. "email",
  1367. "emailvalidation",
  1368. "emailvalidator",
  1369. "validation",
  1370. "validator"
  1371. ],
  1372. "support": {
  1373. "issues": "https://github.com/egulias/EmailValidator/issues",
  1374. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1375. },
  1376. "funding": [
  1377. {
  1378. "url": "https://github.com/egulias",
  1379. "type": "github"
  1380. }
  1381. ],
  1382. "time": "2023-10-06T06:47:41+00:00"
  1383. },
  1384. {
  1385. "name": "friendsofsymfony/ckeditor-bundle",
  1386. "version": "2.5.0",
  1387. "source": {
  1388. "type": "git",
  1389. "url": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle.git",
  1390. "reference": "9d4cd4f2db4d800164b9c3051e4bfdee21acb27f"
  1391. },
  1392. "dist": {
  1393. "type": "zip",
  1394. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSCKEditorBundle/zipball/9d4cd4f2db4d800164b9c3051e4bfdee21acb27f",
  1395. "reference": "9d4cd4f2db4d800164b9c3051e4bfdee21acb27f",
  1396. "shasum": ""
  1397. },
  1398. "require": {
  1399. "ext-json": "*",
  1400. "ext-zip": "*",
  1401. "php": "^8.0",
  1402. "symfony/asset": "^5.4 || ^6.0 || ^7.0",
  1403. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  1404. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  1405. "symfony/expression-language": "^5.4 || ^6.0 || ^7.0",
  1406. "symfony/form": "^5.4 || ^6.0 || ^7.0",
  1407. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  1408. "symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
  1409. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  1410. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  1411. "symfony/property-access": "^5.4 || ^6.0 || ^7.0",
  1412. "symfony/routing": "^5.4 || ^6.0 || ^7.0",
  1413. "symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
  1414. "twig/twig": "^2.4 || ^3.0"
  1415. },
  1416. "conflict": {
  1417. "sebastian/environment": "<1.3.4",
  1418. "sebastian/exporter": "<2.0.0"
  1419. },
  1420. "require-dev": {
  1421. "friendsofphp/php-cs-fixer": "^3.41",
  1422. "matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
  1423. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1424. "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
  1425. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1426. },
  1427. "suggest": {
  1428. "egeloen/form-extra-bundle": "Allows to load CKEditor asynchronously"
  1429. },
  1430. "type": "symfony-bundle",
  1431. "extra": {
  1432. "branch-alias": {
  1433. "dev-master": "3.x-dev"
  1434. }
  1435. },
  1436. "autoload": {
  1437. "psr-4": {
  1438. "FOS\\CKEditorBundle\\": "src/"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Eric GELOEN",
  1448. "email": "geloen.eric@gmail.com"
  1449. },
  1450. {
  1451. "name": "FriendsOfSymfony Community",
  1452. "homepage": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/graphs/contributors"
  1453. }
  1454. ],
  1455. "description": "Provides a CKEditor integration for your Symfony project.",
  1456. "keywords": [
  1457. "CKEditor"
  1458. ],
  1459. "support": {
  1460. "issues": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/issues",
  1461. "source": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/tree/2.5.0"
  1462. },
  1463. "time": "2024-01-23T15:35:55+00:00"
  1464. },
  1465. {
  1466. "name": "monolog/monolog",
  1467. "version": "3.7.0",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/Seldaek/monolog.git",
  1471. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1476. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1477. "shasum": ""
  1478. },
  1479. "require": {
  1480. "php": ">=8.1",
  1481. "psr/log": "^2.0 || ^3.0"
  1482. },
  1483. "provide": {
  1484. "psr/log-implementation": "3.0.0"
  1485. },
  1486. "require-dev": {
  1487. "aws/aws-sdk-php": "^3.0",
  1488. "doctrine/couchdb": "~1.0@dev",
  1489. "elasticsearch/elasticsearch": "^7 || ^8",
  1490. "ext-json": "*",
  1491. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1492. "guzzlehttp/guzzle": "^7.4.5",
  1493. "guzzlehttp/psr7": "^2.2",
  1494. "mongodb/mongodb": "^1.8",
  1495. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1496. "phpstan/phpstan": "^1.9",
  1497. "phpstan/phpstan-deprecation-rules": "^1.0",
  1498. "phpstan/phpstan-strict-rules": "^1.4",
  1499. "phpunit/phpunit": "^10.5.17",
  1500. "predis/predis": "^1.1 || ^2",
  1501. "ruflin/elastica": "^7",
  1502. "symfony/mailer": "^5.4 || ^6",
  1503. "symfony/mime": "^5.4 || ^6"
  1504. },
  1505. "suggest": {
  1506. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1507. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1508. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1509. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1510. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1511. "ext-mbstring": "Allow to work properly with unicode symbols",
  1512. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1513. "ext-openssl": "Required to send log messages using SSL",
  1514. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1515. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1516. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1517. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1518. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1519. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1520. },
  1521. "type": "library",
  1522. "extra": {
  1523. "branch-alias": {
  1524. "dev-main": "3.x-dev"
  1525. }
  1526. },
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Monolog\\": "src/Monolog"
  1530. }
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Jordi Boggiano",
  1539. "email": "j.boggiano@seld.be",
  1540. "homepage": "https://seld.be"
  1541. }
  1542. ],
  1543. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1544. "homepage": "https://github.com/Seldaek/monolog",
  1545. "keywords": [
  1546. "log",
  1547. "logging",
  1548. "psr-3"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/Seldaek/monolog/issues",
  1552. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  1553. },
  1554. "funding": [
  1555. {
  1556. "url": "https://github.com/Seldaek",
  1557. "type": "github"
  1558. },
  1559. {
  1560. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1561. "type": "tidelift"
  1562. }
  1563. ],
  1564. "time": "2024-06-28T09:40:51+00:00"
  1565. },
  1566. {
  1567. "name": "phpdocumentor/reflection-common",
  1568. "version": "2.2.0",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1572. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1577. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": "^7.2 || ^8.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-2.x": "2.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "phpDocumentor\\Reflection\\": "src/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Jaap van Otterdijk",
  1601. "email": "opensource@ijaap.nl"
  1602. }
  1603. ],
  1604. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1605. "homepage": "http://www.phpdoc.org",
  1606. "keywords": [
  1607. "FQSEN",
  1608. "phpDocumentor",
  1609. "phpdoc",
  1610. "reflection",
  1611. "static analysis"
  1612. ],
  1613. "support": {
  1614. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1615. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1616. },
  1617. "time": "2020-06-27T09:03:43+00:00"
  1618. },
  1619. {
  1620. "name": "phpdocumentor/reflection-docblock",
  1621. "version": "5.4.1",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1625. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1630. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "doctrine/deprecations": "^1.1",
  1635. "ext-filter": "*",
  1636. "php": "^7.4 || ^8.0",
  1637. "phpdocumentor/reflection-common": "^2.2",
  1638. "phpdocumentor/type-resolver": "^1.7",
  1639. "phpstan/phpdoc-parser": "^1.7",
  1640. "webmozart/assert": "^1.9.1"
  1641. },
  1642. "require-dev": {
  1643. "mockery/mockery": "~1.3.5",
  1644. "phpstan/extension-installer": "^1.1",
  1645. "phpstan/phpstan": "^1.8",
  1646. "phpstan/phpstan-mockery": "^1.1",
  1647. "phpstan/phpstan-webmozart-assert": "^1.2",
  1648. "phpunit/phpunit": "^9.5",
  1649. "vimeo/psalm": "^5.13"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "5.x-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "phpDocumentor\\Reflection\\": "src"
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Mike van Riel",
  1669. "email": "me@mikevanriel.com"
  1670. },
  1671. {
  1672. "name": "Jaap van Otterdijk",
  1673. "email": "opensource@ijaap.nl"
  1674. }
  1675. ],
  1676. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1677. "support": {
  1678. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1679. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  1680. },
  1681. "time": "2024-05-21T05:55:05+00:00"
  1682. },
  1683. {
  1684. "name": "phpdocumentor/type-resolver",
  1685. "version": "1.8.2",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1689. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  1694. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  1695. "shasum": ""
  1696. },
  1697. "require": {
  1698. "doctrine/deprecations": "^1.0",
  1699. "php": "^7.3 || ^8.0",
  1700. "phpdocumentor/reflection-common": "^2.0",
  1701. "phpstan/phpdoc-parser": "^1.13"
  1702. },
  1703. "require-dev": {
  1704. "ext-tokenizer": "*",
  1705. "phpbench/phpbench": "^1.2",
  1706. "phpstan/extension-installer": "^1.1",
  1707. "phpstan/phpstan": "^1.8",
  1708. "phpstan/phpstan-phpunit": "^1.1",
  1709. "phpunit/phpunit": "^9.5",
  1710. "rector/rector": "^0.13.9",
  1711. "vimeo/psalm": "^4.25"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-1.x": "1.x-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "phpDocumentor\\Reflection\\": "src"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "Mike van Riel",
  1731. "email": "me@mikevanriel.com"
  1732. }
  1733. ],
  1734. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1735. "support": {
  1736. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1737. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  1738. },
  1739. "time": "2024-02-23T11:10:43+00:00"
  1740. },
  1741. {
  1742. "name": "phpstan/phpdoc-parser",
  1743. "version": "1.33.0",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1747. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  1752. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  1753. "shasum": ""
  1754. },
  1755. "require": {
  1756. "php": "^7.2 || ^8.0"
  1757. },
  1758. "require-dev": {
  1759. "doctrine/annotations": "^2.0",
  1760. "nikic/php-parser": "^4.15",
  1761. "php-parallel-lint/php-parallel-lint": "^1.2",
  1762. "phpstan/extension-installer": "^1.0",
  1763. "phpstan/phpstan": "^1.5",
  1764. "phpstan/phpstan-phpunit": "^1.1",
  1765. "phpstan/phpstan-strict-rules": "^1.0",
  1766. "phpunit/phpunit": "^9.5",
  1767. "symfony/process": "^5.2"
  1768. },
  1769. "type": "library",
  1770. "autoload": {
  1771. "psr-4": {
  1772. "PHPStan\\PhpDocParser\\": [
  1773. "src/"
  1774. ]
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1782. "support": {
  1783. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1784. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  1785. },
  1786. "time": "2024-10-13T11:25:22+00:00"
  1787. },
  1788. {
  1789. "name": "psr/cache",
  1790. "version": "3.0.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/php-fig/cache.git",
  1794. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1799. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "php": ">=8.0.0"
  1804. },
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "1.0.x-dev"
  1809. }
  1810. },
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Psr\\Cache\\": "src/"
  1814. }
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "MIT"
  1819. ],
  1820. "authors": [
  1821. {
  1822. "name": "PHP-FIG",
  1823. "homepage": "https://www.php-fig.org/"
  1824. }
  1825. ],
  1826. "description": "Common interface for caching libraries",
  1827. "keywords": [
  1828. "cache",
  1829. "psr",
  1830. "psr-6"
  1831. ],
  1832. "support": {
  1833. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1834. },
  1835. "time": "2021-02-03T23:26:27+00:00"
  1836. },
  1837. {
  1838. "name": "psr/clock",
  1839. "version": "1.0.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/php-fig/clock.git",
  1843. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1848. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": "^7.0 || ^8.0"
  1853. },
  1854. "type": "library",
  1855. "autoload": {
  1856. "psr-4": {
  1857. "Psr\\Clock\\": "src/"
  1858. }
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "MIT"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "PHP-FIG",
  1867. "homepage": "https://www.php-fig.org/"
  1868. }
  1869. ],
  1870. "description": "Common interface for reading the clock.",
  1871. "homepage": "https://github.com/php-fig/clock",
  1872. "keywords": [
  1873. "clock",
  1874. "now",
  1875. "psr",
  1876. "psr-20",
  1877. "time"
  1878. ],
  1879. "support": {
  1880. "issues": "https://github.com/php-fig/clock/issues",
  1881. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1882. },
  1883. "time": "2022-11-25T14:36:26+00:00"
  1884. },
  1885. {
  1886. "name": "psr/container",
  1887. "version": "2.0.2",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/php-fig/container.git",
  1891. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1896. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1897. "shasum": ""
  1898. },
  1899. "require": {
  1900. "php": ">=7.4.0"
  1901. },
  1902. "type": "library",
  1903. "extra": {
  1904. "branch-alias": {
  1905. "dev-master": "2.0.x-dev"
  1906. }
  1907. },
  1908. "autoload": {
  1909. "psr-4": {
  1910. "Psr\\Container\\": "src/"
  1911. }
  1912. },
  1913. "notification-url": "https://packagist.org/downloads/",
  1914. "license": [
  1915. "MIT"
  1916. ],
  1917. "authors": [
  1918. {
  1919. "name": "PHP-FIG",
  1920. "homepage": "https://www.php-fig.org/"
  1921. }
  1922. ],
  1923. "description": "Common Container Interface (PHP FIG PSR-11)",
  1924. "homepage": "https://github.com/php-fig/container",
  1925. "keywords": [
  1926. "PSR-11",
  1927. "container",
  1928. "container-interface",
  1929. "container-interop",
  1930. "psr"
  1931. ],
  1932. "support": {
  1933. "issues": "https://github.com/php-fig/container/issues",
  1934. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1935. },
  1936. "time": "2021-11-05T16:47:00+00:00"
  1937. },
  1938. {
  1939. "name": "psr/event-dispatcher",
  1940. "version": "1.0.0",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/php-fig/event-dispatcher.git",
  1944. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1949. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "php": ">=7.2.0"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "branch-alias": {
  1958. "dev-master": "1.0.x-dev"
  1959. }
  1960. },
  1961. "autoload": {
  1962. "psr-4": {
  1963. "Psr\\EventDispatcher\\": "src/"
  1964. }
  1965. },
  1966. "notification-url": "https://packagist.org/downloads/",
  1967. "license": [
  1968. "MIT"
  1969. ],
  1970. "authors": [
  1971. {
  1972. "name": "PHP-FIG",
  1973. "homepage": "http://www.php-fig.org/"
  1974. }
  1975. ],
  1976. "description": "Standard interfaces for event handling.",
  1977. "keywords": [
  1978. "events",
  1979. "psr",
  1980. "psr-14"
  1981. ],
  1982. "support": {
  1983. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1984. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1985. },
  1986. "time": "2019-01-08T18:20:26+00:00"
  1987. },
  1988. {
  1989. "name": "psr/link",
  1990. "version": "2.0.1",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/php-fig/link.git",
  1994. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1999. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=8.0.0"
  2004. },
  2005. "suggest": {
  2006. "fig/link-util": "Provides some useful PSR-13 utilities"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "2.0.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Psr\\Link\\": "src/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "PHP-FIG",
  2026. "homepage": "http://www.php-fig.org/"
  2027. }
  2028. ],
  2029. "description": "Common interfaces for HTTP links",
  2030. "homepage": "https://github.com/php-fig/link",
  2031. "keywords": [
  2032. "http",
  2033. "http-link",
  2034. "link",
  2035. "psr",
  2036. "psr-13",
  2037. "rest"
  2038. ],
  2039. "support": {
  2040. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2041. },
  2042. "time": "2021-03-11T23:00:27+00:00"
  2043. },
  2044. {
  2045. "name": "psr/log",
  2046. "version": "3.0.2",
  2047. "source": {
  2048. "type": "git",
  2049. "url": "https://github.com/php-fig/log.git",
  2050. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2051. },
  2052. "dist": {
  2053. "type": "zip",
  2054. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2055. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2056. "shasum": ""
  2057. },
  2058. "require": {
  2059. "php": ">=8.0.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "3.x-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Psr\\Log\\": "src"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "https://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Common interface for logging libraries",
  2083. "homepage": "https://github.com/php-fig/log",
  2084. "keywords": [
  2085. "log",
  2086. "psr",
  2087. "psr-3"
  2088. ],
  2089. "support": {
  2090. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2091. },
  2092. "time": "2024-09-11T13:17:53+00:00"
  2093. },
  2094. {
  2095. "name": "symfony/asset",
  2096. "version": "v7.1.1",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/symfony/asset.git",
  2100. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2105. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "php": ">=8.2"
  2110. },
  2111. "conflict": {
  2112. "symfony/http-foundation": "<6.4"
  2113. },
  2114. "require-dev": {
  2115. "symfony/http-client": "^6.4|^7.0",
  2116. "symfony/http-foundation": "^6.4|^7.0",
  2117. "symfony/http-kernel": "^6.4|^7.0"
  2118. },
  2119. "type": "library",
  2120. "autoload": {
  2121. "psr-4": {
  2122. "Symfony\\Component\\Asset\\": ""
  2123. },
  2124. "exclude-from-classmap": [
  2125. "/Tests/"
  2126. ]
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "MIT"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Fabien Potencier",
  2135. "email": "fabien@symfony.com"
  2136. },
  2137. {
  2138. "name": "Symfony Community",
  2139. "homepage": "https://symfony.com/contributors"
  2140. }
  2141. ],
  2142. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2143. "homepage": "https://symfony.com",
  2144. "support": {
  2145. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2146. },
  2147. "funding": [
  2148. {
  2149. "url": "https://symfony.com/sponsor",
  2150. "type": "custom"
  2151. },
  2152. {
  2153. "url": "https://github.com/fabpot",
  2154. "type": "github"
  2155. },
  2156. {
  2157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2158. "type": "tidelift"
  2159. }
  2160. ],
  2161. "time": "2024-05-31T14:57:53+00:00"
  2162. },
  2163. {
  2164. "name": "symfony/asset-mapper",
  2165. "version": "v7.1.5",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/symfony/asset-mapper.git",
  2169. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2174. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "composer/semver": "^3.0",
  2179. "php": ">=8.2",
  2180. "symfony/deprecation-contracts": "^2.1|^3",
  2181. "symfony/filesystem": "^7.1",
  2182. "symfony/http-client": "^6.4|^7.0"
  2183. },
  2184. "conflict": {
  2185. "symfony/framework-bundle": "<6.4"
  2186. },
  2187. "require-dev": {
  2188. "symfony/asset": "^6.4|^7.0",
  2189. "symfony/browser-kit": "^6.4|^7.0",
  2190. "symfony/console": "^6.4|^7.0",
  2191. "symfony/event-dispatcher-contracts": "^3.0",
  2192. "symfony/finder": "^6.4|^7.0",
  2193. "symfony/framework-bundle": "^6.4|^7.0",
  2194. "symfony/http-foundation": "^6.4|^7.0",
  2195. "symfony/http-kernel": "^6.4|^7.0",
  2196. "symfony/web-link": "^6.4|^7.0"
  2197. },
  2198. "type": "library",
  2199. "autoload": {
  2200. "psr-4": {
  2201. "Symfony\\Component\\AssetMapper\\": ""
  2202. },
  2203. "exclude-from-classmap": [
  2204. "/Tests/"
  2205. ]
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Fabien Potencier",
  2214. "email": "fabien@symfony.com"
  2215. },
  2216. {
  2217. "name": "Symfony Community",
  2218. "homepage": "https://symfony.com/contributors"
  2219. }
  2220. ],
  2221. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2222. "homepage": "https://symfony.com",
  2223. "support": {
  2224. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  2225. },
  2226. "funding": [
  2227. {
  2228. "url": "https://symfony.com/sponsor",
  2229. "type": "custom"
  2230. },
  2231. {
  2232. "url": "https://github.com/fabpot",
  2233. "type": "github"
  2234. },
  2235. {
  2236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2237. "type": "tidelift"
  2238. }
  2239. ],
  2240. "time": "2024-09-19T08:57:32+00:00"
  2241. },
  2242. {
  2243. "name": "symfony/cache",
  2244. "version": "v7.1.5",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/symfony/cache.git",
  2248. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2253. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "php": ">=8.2",
  2258. "psr/cache": "^2.0|^3.0",
  2259. "psr/log": "^1.1|^2|^3",
  2260. "symfony/cache-contracts": "^2.5|^3",
  2261. "symfony/deprecation-contracts": "^2.5|^3.0",
  2262. "symfony/service-contracts": "^2.5|^3",
  2263. "symfony/var-exporter": "^6.4|^7.0"
  2264. },
  2265. "conflict": {
  2266. "doctrine/dbal": "<3.6",
  2267. "symfony/dependency-injection": "<6.4",
  2268. "symfony/http-kernel": "<6.4",
  2269. "symfony/var-dumper": "<6.4"
  2270. },
  2271. "provide": {
  2272. "psr/cache-implementation": "2.0|3.0",
  2273. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2274. "symfony/cache-implementation": "1.1|2.0|3.0"
  2275. },
  2276. "require-dev": {
  2277. "cache/integration-tests": "dev-master",
  2278. "doctrine/dbal": "^3.6|^4",
  2279. "predis/predis": "^1.1|^2.0",
  2280. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2281. "symfony/config": "^6.4|^7.0",
  2282. "symfony/dependency-injection": "^6.4|^7.0",
  2283. "symfony/filesystem": "^6.4|^7.0",
  2284. "symfony/http-kernel": "^6.4|^7.0",
  2285. "symfony/messenger": "^6.4|^7.0",
  2286. "symfony/var-dumper": "^6.4|^7.0"
  2287. },
  2288. "type": "library",
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Symfony\\Component\\Cache\\": ""
  2292. },
  2293. "classmap": [
  2294. "Traits/ValueWrapper.php"
  2295. ],
  2296. "exclude-from-classmap": [
  2297. "/Tests/"
  2298. ]
  2299. },
  2300. "notification-url": "https://packagist.org/downloads/",
  2301. "license": [
  2302. "MIT"
  2303. ],
  2304. "authors": [
  2305. {
  2306. "name": "Nicolas Grekas",
  2307. "email": "p@tchwork.com"
  2308. },
  2309. {
  2310. "name": "Symfony Community",
  2311. "homepage": "https://symfony.com/contributors"
  2312. }
  2313. ],
  2314. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2315. "homepage": "https://symfony.com",
  2316. "keywords": [
  2317. "caching",
  2318. "psr6"
  2319. ],
  2320. "support": {
  2321. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  2322. },
  2323. "funding": [
  2324. {
  2325. "url": "https://symfony.com/sponsor",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://github.com/fabpot",
  2330. "type": "github"
  2331. },
  2332. {
  2333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2334. "type": "tidelift"
  2335. }
  2336. ],
  2337. "time": "2024-09-17T09:16:35+00:00"
  2338. },
  2339. {
  2340. "name": "symfony/cache-contracts",
  2341. "version": "v3.5.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/symfony/cache-contracts.git",
  2345. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2350. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=8.1",
  2355. "psr/cache": "^3.0"
  2356. },
  2357. "type": "library",
  2358. "extra": {
  2359. "branch-alias": {
  2360. "dev-main": "3.5-dev"
  2361. },
  2362. "thanks": {
  2363. "name": "symfony/contracts",
  2364. "url": "https://github.com/symfony/contracts"
  2365. }
  2366. },
  2367. "autoload": {
  2368. "psr-4": {
  2369. "Symfony\\Contracts\\Cache\\": ""
  2370. }
  2371. },
  2372. "notification-url": "https://packagist.org/downloads/",
  2373. "license": [
  2374. "MIT"
  2375. ],
  2376. "authors": [
  2377. {
  2378. "name": "Nicolas Grekas",
  2379. "email": "p@tchwork.com"
  2380. },
  2381. {
  2382. "name": "Symfony Community",
  2383. "homepage": "https://symfony.com/contributors"
  2384. }
  2385. ],
  2386. "description": "Generic abstractions related to caching",
  2387. "homepage": "https://symfony.com",
  2388. "keywords": [
  2389. "abstractions",
  2390. "contracts",
  2391. "decoupling",
  2392. "interfaces",
  2393. "interoperability",
  2394. "standards"
  2395. ],
  2396. "support": {
  2397. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  2398. },
  2399. "funding": [
  2400. {
  2401. "url": "https://symfony.com/sponsor",
  2402. "type": "custom"
  2403. },
  2404. {
  2405. "url": "https://github.com/fabpot",
  2406. "type": "github"
  2407. },
  2408. {
  2409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2410. "type": "tidelift"
  2411. }
  2412. ],
  2413. "time": "2024-04-18T09:32:20+00:00"
  2414. },
  2415. {
  2416. "name": "symfony/clock",
  2417. "version": "v7.1.1",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/symfony/clock.git",
  2421. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2426. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2427. "shasum": ""
  2428. },
  2429. "require": {
  2430. "php": ">=8.2",
  2431. "psr/clock": "^1.0",
  2432. "symfony/polyfill-php83": "^1.28"
  2433. },
  2434. "provide": {
  2435. "psr/clock-implementation": "1.0"
  2436. },
  2437. "type": "library",
  2438. "autoload": {
  2439. "files": [
  2440. "Resources/now.php"
  2441. ],
  2442. "psr-4": {
  2443. "Symfony\\Component\\Clock\\": ""
  2444. },
  2445. "exclude-from-classmap": [
  2446. "/Tests/"
  2447. ]
  2448. },
  2449. "notification-url": "https://packagist.org/downloads/",
  2450. "license": [
  2451. "MIT"
  2452. ],
  2453. "authors": [
  2454. {
  2455. "name": "Nicolas Grekas",
  2456. "email": "p@tchwork.com"
  2457. },
  2458. {
  2459. "name": "Symfony Community",
  2460. "homepage": "https://symfony.com/contributors"
  2461. }
  2462. ],
  2463. "description": "Decouples applications from the system clock",
  2464. "homepage": "https://symfony.com",
  2465. "keywords": [
  2466. "clock",
  2467. "psr20",
  2468. "time"
  2469. ],
  2470. "support": {
  2471. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2472. },
  2473. "funding": [
  2474. {
  2475. "url": "https://symfony.com/sponsor",
  2476. "type": "custom"
  2477. },
  2478. {
  2479. "url": "https://github.com/fabpot",
  2480. "type": "github"
  2481. },
  2482. {
  2483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2484. "type": "tidelift"
  2485. }
  2486. ],
  2487. "time": "2024-05-31T14:57:53+00:00"
  2488. },
  2489. {
  2490. "name": "symfony/config",
  2491. "version": "v7.1.1",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://github.com/symfony/config.git",
  2495. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  2496. },
  2497. "dist": {
  2498. "type": "zip",
  2499. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2500. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2501. "shasum": ""
  2502. },
  2503. "require": {
  2504. "php": ">=8.2",
  2505. "symfony/deprecation-contracts": "^2.5|^3",
  2506. "symfony/filesystem": "^7.1",
  2507. "symfony/polyfill-ctype": "~1.8"
  2508. },
  2509. "conflict": {
  2510. "symfony/finder": "<6.4",
  2511. "symfony/service-contracts": "<2.5"
  2512. },
  2513. "require-dev": {
  2514. "symfony/event-dispatcher": "^6.4|^7.0",
  2515. "symfony/finder": "^6.4|^7.0",
  2516. "symfony/messenger": "^6.4|^7.0",
  2517. "symfony/service-contracts": "^2.5|^3",
  2518. "symfony/yaml": "^6.4|^7.0"
  2519. },
  2520. "type": "library",
  2521. "autoload": {
  2522. "psr-4": {
  2523. "Symfony\\Component\\Config\\": ""
  2524. },
  2525. "exclude-from-classmap": [
  2526. "/Tests/"
  2527. ]
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Fabien Potencier",
  2536. "email": "fabien@symfony.com"
  2537. },
  2538. {
  2539. "name": "Symfony Community",
  2540. "homepage": "https://symfony.com/contributors"
  2541. }
  2542. ],
  2543. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2544. "homepage": "https://symfony.com",
  2545. "support": {
  2546. "source": "https://github.com/symfony/config/tree/v7.1.1"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://symfony.com/sponsor",
  2551. "type": "custom"
  2552. },
  2553. {
  2554. "url": "https://github.com/fabpot",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2559. "type": "tidelift"
  2560. }
  2561. ],
  2562. "time": "2024-05-31T14:57:53+00:00"
  2563. },
  2564. {
  2565. "name": "symfony/console",
  2566. "version": "v7.1.5",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/symfony/console.git",
  2570. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  2575. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "php": ">=8.2",
  2580. "symfony/polyfill-mbstring": "~1.0",
  2581. "symfony/service-contracts": "^2.5|^3",
  2582. "symfony/string": "^6.4|^7.0"
  2583. },
  2584. "conflict": {
  2585. "symfony/dependency-injection": "<6.4",
  2586. "symfony/dotenv": "<6.4",
  2587. "symfony/event-dispatcher": "<6.4",
  2588. "symfony/lock": "<6.4",
  2589. "symfony/process": "<6.4"
  2590. },
  2591. "provide": {
  2592. "psr/log-implementation": "1.0|2.0|3.0"
  2593. },
  2594. "require-dev": {
  2595. "psr/log": "^1|^2|^3",
  2596. "symfony/config": "^6.4|^7.0",
  2597. "symfony/dependency-injection": "^6.4|^7.0",
  2598. "symfony/event-dispatcher": "^6.4|^7.0",
  2599. "symfony/http-foundation": "^6.4|^7.0",
  2600. "symfony/http-kernel": "^6.4|^7.0",
  2601. "symfony/lock": "^6.4|^7.0",
  2602. "symfony/messenger": "^6.4|^7.0",
  2603. "symfony/process": "^6.4|^7.0",
  2604. "symfony/stopwatch": "^6.4|^7.0",
  2605. "symfony/var-dumper": "^6.4|^7.0"
  2606. },
  2607. "type": "library",
  2608. "autoload": {
  2609. "psr-4": {
  2610. "Symfony\\Component\\Console\\": ""
  2611. },
  2612. "exclude-from-classmap": [
  2613. "/Tests/"
  2614. ]
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "MIT"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Fabien Potencier",
  2623. "email": "fabien@symfony.com"
  2624. },
  2625. {
  2626. "name": "Symfony Community",
  2627. "homepage": "https://symfony.com/contributors"
  2628. }
  2629. ],
  2630. "description": "Eases the creation of beautiful and testable command line interfaces",
  2631. "homepage": "https://symfony.com",
  2632. "keywords": [
  2633. "cli",
  2634. "command-line",
  2635. "console",
  2636. "terminal"
  2637. ],
  2638. "support": {
  2639. "source": "https://github.com/symfony/console/tree/v7.1.5"
  2640. },
  2641. "funding": [
  2642. {
  2643. "url": "https://symfony.com/sponsor",
  2644. "type": "custom"
  2645. },
  2646. {
  2647. "url": "https://github.com/fabpot",
  2648. "type": "github"
  2649. },
  2650. {
  2651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2652. "type": "tidelift"
  2653. }
  2654. ],
  2655. "time": "2024-09-20T08:28:38+00:00"
  2656. },
  2657. {
  2658. "name": "symfony/dependency-injection",
  2659. "version": "v7.1.5",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/symfony/dependency-injection.git",
  2663. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  2668. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  2669. "shasum": ""
  2670. },
  2671. "require": {
  2672. "php": ">=8.2",
  2673. "psr/container": "^1.1|^2.0",
  2674. "symfony/deprecation-contracts": "^2.5|^3",
  2675. "symfony/service-contracts": "^3.5",
  2676. "symfony/var-exporter": "^6.4|^7.0"
  2677. },
  2678. "conflict": {
  2679. "ext-psr": "<1.1|>=2",
  2680. "symfony/config": "<6.4",
  2681. "symfony/finder": "<6.4",
  2682. "symfony/yaml": "<6.4"
  2683. },
  2684. "provide": {
  2685. "psr/container-implementation": "1.1|2.0",
  2686. "symfony/service-implementation": "1.1|2.0|3.0"
  2687. },
  2688. "require-dev": {
  2689. "symfony/config": "^6.4|^7.0",
  2690. "symfony/expression-language": "^6.4|^7.0",
  2691. "symfony/yaml": "^6.4|^7.0"
  2692. },
  2693. "type": "library",
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Symfony\\Component\\DependencyInjection\\": ""
  2697. },
  2698. "exclude-from-classmap": [
  2699. "/Tests/"
  2700. ]
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Fabien Potencier",
  2709. "email": "fabien@symfony.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "https://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2717. "homepage": "https://symfony.com",
  2718. "support": {
  2719. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  2720. },
  2721. "funding": [
  2722. {
  2723. "url": "https://symfony.com/sponsor",
  2724. "type": "custom"
  2725. },
  2726. {
  2727. "url": "https://github.com/fabpot",
  2728. "type": "github"
  2729. },
  2730. {
  2731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2732. "type": "tidelift"
  2733. }
  2734. ],
  2735. "time": "2024-09-20T08:28:38+00:00"
  2736. },
  2737. {
  2738. "name": "symfony/deprecation-contracts",
  2739. "version": "v3.5.0",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/symfony/deprecation-contracts.git",
  2743. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2748. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "php": ">=8.1"
  2753. },
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-main": "3.5-dev"
  2758. },
  2759. "thanks": {
  2760. "name": "symfony/contracts",
  2761. "url": "https://github.com/symfony/contracts"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "files": [
  2766. "function.php"
  2767. ]
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Nicolas Grekas",
  2776. "email": "p@tchwork.com"
  2777. },
  2778. {
  2779. "name": "Symfony Community",
  2780. "homepage": "https://symfony.com/contributors"
  2781. }
  2782. ],
  2783. "description": "A generic function and convention to trigger deprecation notices",
  2784. "homepage": "https://symfony.com",
  2785. "support": {
  2786. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  2787. },
  2788. "funding": [
  2789. {
  2790. "url": "https://symfony.com/sponsor",
  2791. "type": "custom"
  2792. },
  2793. {
  2794. "url": "https://github.com/fabpot",
  2795. "type": "github"
  2796. },
  2797. {
  2798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2799. "type": "tidelift"
  2800. }
  2801. ],
  2802. "time": "2024-04-18T09:32:20+00:00"
  2803. },
  2804. {
  2805. "name": "symfony/doctrine-bridge",
  2806. "version": "v7.1.5",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/symfony/doctrine-bridge.git",
  2810. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  2815. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "doctrine/event-manager": "^2",
  2820. "doctrine/persistence": "^3.1",
  2821. "php": ">=8.2",
  2822. "symfony/deprecation-contracts": "^2.5|^3",
  2823. "symfony/polyfill-ctype": "~1.8",
  2824. "symfony/polyfill-mbstring": "~1.0",
  2825. "symfony/service-contracts": "^2.5|^3"
  2826. },
  2827. "conflict": {
  2828. "doctrine/dbal": "<3.6",
  2829. "doctrine/lexer": "<1.1",
  2830. "doctrine/orm": "<2.15",
  2831. "symfony/cache": "<6.4",
  2832. "symfony/dependency-injection": "<6.4",
  2833. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2834. "symfony/http-foundation": "<6.4",
  2835. "symfony/http-kernel": "<6.4",
  2836. "symfony/lock": "<6.4",
  2837. "symfony/messenger": "<6.4",
  2838. "symfony/property-info": "<6.4",
  2839. "symfony/security-bundle": "<6.4",
  2840. "symfony/security-core": "<6.4",
  2841. "symfony/validator": "<6.4"
  2842. },
  2843. "require-dev": {
  2844. "doctrine/collections": "^1.0|^2.0",
  2845. "doctrine/data-fixtures": "^1.1",
  2846. "doctrine/dbal": "^3.6|^4",
  2847. "doctrine/orm": "^2.15|^3",
  2848. "psr/log": "^1|^2|^3",
  2849. "symfony/cache": "^6.4|^7.0",
  2850. "symfony/config": "^6.4|^7.0",
  2851. "symfony/dependency-injection": "^6.4|^7.0",
  2852. "symfony/doctrine-messenger": "^6.4|^7.0",
  2853. "symfony/expression-language": "^6.4|^7.0",
  2854. "symfony/form": "^6.4.6|^7.0.6",
  2855. "symfony/http-kernel": "^6.4|^7.0",
  2856. "symfony/lock": "^6.4|^7.0",
  2857. "symfony/messenger": "^6.4|^7.0",
  2858. "symfony/property-access": "^6.4|^7.0",
  2859. "symfony/property-info": "^6.4|^7.0",
  2860. "symfony/security-core": "^6.4|^7.0",
  2861. "symfony/stopwatch": "^6.4|^7.0",
  2862. "symfony/translation": "^6.4|^7.0",
  2863. "symfony/type-info": "^7.1",
  2864. "symfony/uid": "^6.4|^7.0",
  2865. "symfony/validator": "^6.4|^7.0",
  2866. "symfony/var-dumper": "^6.4|^7.0"
  2867. },
  2868. "type": "symfony-bridge",
  2869. "autoload": {
  2870. "psr-4": {
  2871. "Symfony\\Bridge\\Doctrine\\": ""
  2872. },
  2873. "exclude-from-classmap": [
  2874. "/Tests/"
  2875. ]
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Fabien Potencier",
  2884. "email": "fabien@symfony.com"
  2885. },
  2886. {
  2887. "name": "Symfony Community",
  2888. "homepage": "https://symfony.com/contributors"
  2889. }
  2890. ],
  2891. "description": "Provides integration for Doctrine with various Symfony components",
  2892. "homepage": "https://symfony.com",
  2893. "support": {
  2894. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://symfony.com/sponsor",
  2899. "type": "custom"
  2900. },
  2901. {
  2902. "url": "https://github.com/fabpot",
  2903. "type": "github"
  2904. },
  2905. {
  2906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2907. "type": "tidelift"
  2908. }
  2909. ],
  2910. "time": "2024-09-08T12:32:26+00:00"
  2911. },
  2912. {
  2913. "name": "symfony/doctrine-messenger",
  2914. "version": "v7.1.5",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/symfony/doctrine-messenger.git",
  2918. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  2923. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "doctrine/dbal": "^3.6|^4",
  2928. "php": ">=8.2",
  2929. "symfony/messenger": "^6.4|^7.0",
  2930. "symfony/service-contracts": "^2.5|^3"
  2931. },
  2932. "conflict": {
  2933. "doctrine/persistence": "<1.3"
  2934. },
  2935. "require-dev": {
  2936. "doctrine/persistence": "^1.3|^2|^3",
  2937. "symfony/property-access": "^6.4|^7.0",
  2938. "symfony/serializer": "^6.4|^7.0"
  2939. },
  2940. "type": "symfony-messenger-bridge",
  2941. "autoload": {
  2942. "psr-4": {
  2943. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2944. },
  2945. "exclude-from-classmap": [
  2946. "/Tests/"
  2947. ]
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Fabien Potencier",
  2956. "email": "fabien@symfony.com"
  2957. },
  2958. {
  2959. "name": "Symfony Community",
  2960. "homepage": "https://symfony.com/contributors"
  2961. }
  2962. ],
  2963. "description": "Symfony Doctrine Messenger Bridge",
  2964. "homepage": "https://symfony.com",
  2965. "support": {
  2966. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  2967. },
  2968. "funding": [
  2969. {
  2970. "url": "https://symfony.com/sponsor",
  2971. "type": "custom"
  2972. },
  2973. {
  2974. "url": "https://github.com/fabpot",
  2975. "type": "github"
  2976. },
  2977. {
  2978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2979. "type": "tidelift"
  2980. }
  2981. ],
  2982. "time": "2024-09-20T08:28:38+00:00"
  2983. },
  2984. {
  2985. "name": "symfony/dotenv",
  2986. "version": "v7.1.5",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/symfony/dotenv.git",
  2990. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  2995. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "php": ">=8.2"
  3000. },
  3001. "conflict": {
  3002. "symfony/console": "<6.4",
  3003. "symfony/process": "<6.4"
  3004. },
  3005. "require-dev": {
  3006. "symfony/console": "^6.4|^7.0",
  3007. "symfony/process": "^6.4|^7.0"
  3008. },
  3009. "type": "library",
  3010. "autoload": {
  3011. "psr-4": {
  3012. "Symfony\\Component\\Dotenv\\": ""
  3013. },
  3014. "exclude-from-classmap": [
  3015. "/Tests/"
  3016. ]
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "MIT"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Fabien Potencier",
  3025. "email": "fabien@symfony.com"
  3026. },
  3027. {
  3028. "name": "Symfony Community",
  3029. "homepage": "https://symfony.com/contributors"
  3030. }
  3031. ],
  3032. "description": "Registers environment variables from a .env file",
  3033. "homepage": "https://symfony.com",
  3034. "keywords": [
  3035. "dotenv",
  3036. "env",
  3037. "environment"
  3038. ],
  3039. "support": {
  3040. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  3041. },
  3042. "funding": [
  3043. {
  3044. "url": "https://symfony.com/sponsor",
  3045. "type": "custom"
  3046. },
  3047. {
  3048. "url": "https://github.com/fabpot",
  3049. "type": "github"
  3050. },
  3051. {
  3052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3053. "type": "tidelift"
  3054. }
  3055. ],
  3056. "time": "2024-09-17T09:16:35+00:00"
  3057. },
  3058. {
  3059. "name": "symfony/error-handler",
  3060. "version": "v7.1.3",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/symfony/error-handler.git",
  3064. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3069. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3070. "shasum": ""
  3071. },
  3072. "require": {
  3073. "php": ">=8.2",
  3074. "psr/log": "^1|^2|^3",
  3075. "symfony/var-dumper": "^6.4|^7.0"
  3076. },
  3077. "conflict": {
  3078. "symfony/deprecation-contracts": "<2.5",
  3079. "symfony/http-kernel": "<6.4"
  3080. },
  3081. "require-dev": {
  3082. "symfony/deprecation-contracts": "^2.5|^3",
  3083. "symfony/http-kernel": "^6.4|^7.0",
  3084. "symfony/serializer": "^6.4|^7.0"
  3085. },
  3086. "bin": [
  3087. "Resources/bin/patch-type-declarations"
  3088. ],
  3089. "type": "library",
  3090. "autoload": {
  3091. "psr-4": {
  3092. "Symfony\\Component\\ErrorHandler\\": ""
  3093. },
  3094. "exclude-from-classmap": [
  3095. "/Tests/"
  3096. ]
  3097. },
  3098. "notification-url": "https://packagist.org/downloads/",
  3099. "license": [
  3100. "MIT"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Fabien Potencier",
  3105. "email": "fabien@symfony.com"
  3106. },
  3107. {
  3108. "name": "Symfony Community",
  3109. "homepage": "https://symfony.com/contributors"
  3110. }
  3111. ],
  3112. "description": "Provides tools to manage errors and ease debugging PHP code",
  3113. "homepage": "https://symfony.com",
  3114. "support": {
  3115. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3116. },
  3117. "funding": [
  3118. {
  3119. "url": "https://symfony.com/sponsor",
  3120. "type": "custom"
  3121. },
  3122. {
  3123. "url": "https://github.com/fabpot",
  3124. "type": "github"
  3125. },
  3126. {
  3127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3128. "type": "tidelift"
  3129. }
  3130. ],
  3131. "time": "2024-07-26T13:02:51+00:00"
  3132. },
  3133. {
  3134. "name": "symfony/event-dispatcher",
  3135. "version": "v7.1.1",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/symfony/event-dispatcher.git",
  3139. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3144. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3145. "shasum": ""
  3146. },
  3147. "require": {
  3148. "php": ">=8.2",
  3149. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3150. },
  3151. "conflict": {
  3152. "symfony/dependency-injection": "<6.4",
  3153. "symfony/service-contracts": "<2.5"
  3154. },
  3155. "provide": {
  3156. "psr/event-dispatcher-implementation": "1.0",
  3157. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3158. },
  3159. "require-dev": {
  3160. "psr/log": "^1|^2|^3",
  3161. "symfony/config": "^6.4|^7.0",
  3162. "symfony/dependency-injection": "^6.4|^7.0",
  3163. "symfony/error-handler": "^6.4|^7.0",
  3164. "symfony/expression-language": "^6.4|^7.0",
  3165. "symfony/http-foundation": "^6.4|^7.0",
  3166. "symfony/service-contracts": "^2.5|^3",
  3167. "symfony/stopwatch": "^6.4|^7.0"
  3168. },
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Symfony\\Component\\EventDispatcher\\": ""
  3173. },
  3174. "exclude-from-classmap": [
  3175. "/Tests/"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Fabien Potencier",
  3185. "email": "fabien@symfony.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3193. "homepage": "https://symfony.com",
  3194. "support": {
  3195. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://symfony.com/sponsor",
  3200. "type": "custom"
  3201. },
  3202. {
  3203. "url": "https://github.com/fabpot",
  3204. "type": "github"
  3205. },
  3206. {
  3207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3208. "type": "tidelift"
  3209. }
  3210. ],
  3211. "time": "2024-05-31T14:57:53+00:00"
  3212. },
  3213. {
  3214. "name": "symfony/event-dispatcher-contracts",
  3215. "version": "v3.5.0",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3219. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3224. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=8.1",
  3229. "psr/event-dispatcher": "^1"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-main": "3.5-dev"
  3235. },
  3236. "thanks": {
  3237. "name": "symfony/contracts",
  3238. "url": "https://github.com/symfony/contracts"
  3239. }
  3240. },
  3241. "autoload": {
  3242. "psr-4": {
  3243. "Symfony\\Contracts\\EventDispatcher\\": ""
  3244. }
  3245. },
  3246. "notification-url": "https://packagist.org/downloads/",
  3247. "license": [
  3248. "MIT"
  3249. ],
  3250. "authors": [
  3251. {
  3252. "name": "Nicolas Grekas",
  3253. "email": "p@tchwork.com"
  3254. },
  3255. {
  3256. "name": "Symfony Community",
  3257. "homepage": "https://symfony.com/contributors"
  3258. }
  3259. ],
  3260. "description": "Generic abstractions related to dispatching event",
  3261. "homepage": "https://symfony.com",
  3262. "keywords": [
  3263. "abstractions",
  3264. "contracts",
  3265. "decoupling",
  3266. "interfaces",
  3267. "interoperability",
  3268. "standards"
  3269. ],
  3270. "support": {
  3271. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3272. },
  3273. "funding": [
  3274. {
  3275. "url": "https://symfony.com/sponsor",
  3276. "type": "custom"
  3277. },
  3278. {
  3279. "url": "https://github.com/fabpot",
  3280. "type": "github"
  3281. },
  3282. {
  3283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3284. "type": "tidelift"
  3285. }
  3286. ],
  3287. "time": "2024-04-18T09:32:20+00:00"
  3288. },
  3289. {
  3290. "name": "symfony/expression-language",
  3291. "version": "v7.1.4",
  3292. "source": {
  3293. "type": "git",
  3294. "url": "https://github.com/symfony/expression-language.git",
  3295. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  3296. },
  3297. "dist": {
  3298. "type": "zip",
  3299. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  3300. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  3301. "shasum": ""
  3302. },
  3303. "require": {
  3304. "php": ">=8.2",
  3305. "symfony/cache": "^6.4|^7.0",
  3306. "symfony/deprecation-contracts": "^2.5|^3",
  3307. "symfony/service-contracts": "^2.5|^3"
  3308. },
  3309. "type": "library",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Symfony\\Component\\ExpressionLanguage\\": ""
  3313. },
  3314. "exclude-from-classmap": [
  3315. "/Tests/"
  3316. ]
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Fabien Potencier",
  3325. "email": "fabien@symfony.com"
  3326. },
  3327. {
  3328. "name": "Symfony Community",
  3329. "homepage": "https://symfony.com/contributors"
  3330. }
  3331. ],
  3332. "description": "Provides an engine that can compile and evaluate expressions",
  3333. "homepage": "https://symfony.com",
  3334. "support": {
  3335. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://symfony.com/sponsor",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://github.com/fabpot",
  3344. "type": "github"
  3345. },
  3346. {
  3347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3348. "type": "tidelift"
  3349. }
  3350. ],
  3351. "time": "2024-08-12T09:59:40+00:00"
  3352. },
  3353. {
  3354. "name": "symfony/filesystem",
  3355. "version": "v7.1.5",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/symfony/filesystem.git",
  3359. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3364. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": ">=8.2",
  3369. "symfony/polyfill-ctype": "~1.8",
  3370. "symfony/polyfill-mbstring": "~1.8"
  3371. },
  3372. "require-dev": {
  3373. "symfony/process": "^6.4|^7.0"
  3374. },
  3375. "type": "library",
  3376. "autoload": {
  3377. "psr-4": {
  3378. "Symfony\\Component\\Filesystem\\": ""
  3379. },
  3380. "exclude-from-classmap": [
  3381. "/Tests/"
  3382. ]
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "MIT"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Fabien Potencier",
  3391. "email": "fabien@symfony.com"
  3392. },
  3393. {
  3394. "name": "Symfony Community",
  3395. "homepage": "https://symfony.com/contributors"
  3396. }
  3397. ],
  3398. "description": "Provides basic utilities for the filesystem",
  3399. "homepage": "https://symfony.com",
  3400. "support": {
  3401. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  3402. },
  3403. "funding": [
  3404. {
  3405. "url": "https://symfony.com/sponsor",
  3406. "type": "custom"
  3407. },
  3408. {
  3409. "url": "https://github.com/fabpot",
  3410. "type": "github"
  3411. },
  3412. {
  3413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3414. "type": "tidelift"
  3415. }
  3416. ],
  3417. "time": "2024-09-17T09:16:35+00:00"
  3418. },
  3419. {
  3420. "name": "symfony/finder",
  3421. "version": "v7.1.4",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/symfony/finder.git",
  3425. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  3430. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  3431. "shasum": ""
  3432. },
  3433. "require": {
  3434. "php": ">=8.2"
  3435. },
  3436. "require-dev": {
  3437. "symfony/filesystem": "^6.4|^7.0"
  3438. },
  3439. "type": "library",
  3440. "autoload": {
  3441. "psr-4": {
  3442. "Symfony\\Component\\Finder\\": ""
  3443. },
  3444. "exclude-from-classmap": [
  3445. "/Tests/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Fabien Potencier",
  3455. "email": "fabien@symfony.com"
  3456. },
  3457. {
  3458. "name": "Symfony Community",
  3459. "homepage": "https://symfony.com/contributors"
  3460. }
  3461. ],
  3462. "description": "Finds files and directories via an intuitive fluent interface",
  3463. "homepage": "https://symfony.com",
  3464. "support": {
  3465. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  3466. },
  3467. "funding": [
  3468. {
  3469. "url": "https://symfony.com/sponsor",
  3470. "type": "custom"
  3471. },
  3472. {
  3473. "url": "https://github.com/fabpot",
  3474. "type": "github"
  3475. },
  3476. {
  3477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3478. "type": "tidelift"
  3479. }
  3480. ],
  3481. "time": "2024-08-13T14:28:19+00:00"
  3482. },
  3483. {
  3484. "name": "symfony/flex",
  3485. "version": "v2.4.7",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/symfony/flex.git",
  3489. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3494. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3495. "shasum": ""
  3496. },
  3497. "require": {
  3498. "composer-plugin-api": "^2.1",
  3499. "php": ">=8.0"
  3500. },
  3501. "conflict": {
  3502. "composer/semver": "<1.7.2"
  3503. },
  3504. "require-dev": {
  3505. "composer/composer": "^2.1",
  3506. "symfony/dotenv": "^5.4|^6.0",
  3507. "symfony/filesystem": "^5.4|^6.0",
  3508. "symfony/phpunit-bridge": "^5.4|^6.0",
  3509. "symfony/process": "^5.4|^6.0"
  3510. },
  3511. "type": "composer-plugin",
  3512. "extra": {
  3513. "class": "Symfony\\Flex\\Flex"
  3514. },
  3515. "autoload": {
  3516. "psr-4": {
  3517. "Symfony\\Flex\\": "src"
  3518. }
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "Fabien Potencier",
  3527. "email": "fabien.potencier@gmail.com"
  3528. }
  3529. ],
  3530. "description": "Composer plugin for Symfony",
  3531. "support": {
  3532. "issues": "https://github.com/symfony/flex/issues",
  3533. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  3534. },
  3535. "funding": [
  3536. {
  3537. "url": "https://symfony.com/sponsor",
  3538. "type": "custom"
  3539. },
  3540. {
  3541. "url": "https://github.com/fabpot",
  3542. "type": "github"
  3543. },
  3544. {
  3545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3546. "type": "tidelift"
  3547. }
  3548. ],
  3549. "time": "2024-10-07T08:51:54+00:00"
  3550. },
  3551. {
  3552. "name": "symfony/form",
  3553. "version": "v7.1.5",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://github.com/symfony/form.git",
  3557. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  3562. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  3563. "shasum": ""
  3564. },
  3565. "require": {
  3566. "php": ">=8.2",
  3567. "symfony/deprecation-contracts": "^2.5|^3",
  3568. "symfony/event-dispatcher": "^6.4|^7.0",
  3569. "symfony/options-resolver": "^6.4|^7.0",
  3570. "symfony/polyfill-ctype": "~1.8",
  3571. "symfony/polyfill-intl-icu": "^1.21",
  3572. "symfony/polyfill-mbstring": "~1.0",
  3573. "symfony/property-access": "^6.4|^7.0",
  3574. "symfony/service-contracts": "^2.5|^3"
  3575. },
  3576. "conflict": {
  3577. "symfony/console": "<6.4",
  3578. "symfony/dependency-injection": "<6.4",
  3579. "symfony/doctrine-bridge": "<6.4",
  3580. "symfony/error-handler": "<6.4",
  3581. "symfony/framework-bundle": "<6.4",
  3582. "symfony/http-kernel": "<6.4",
  3583. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3584. "symfony/translation-contracts": "<2.5",
  3585. "symfony/twig-bridge": "<6.4"
  3586. },
  3587. "require-dev": {
  3588. "doctrine/collections": "^1.0|^2.0",
  3589. "symfony/config": "^6.4|^7.0",
  3590. "symfony/console": "^6.4|^7.0",
  3591. "symfony/dependency-injection": "^6.4|^7.0",
  3592. "symfony/expression-language": "^6.4|^7.0",
  3593. "symfony/html-sanitizer": "^6.4|^7.0",
  3594. "symfony/http-foundation": "^6.4|^7.0",
  3595. "symfony/http-kernel": "^6.4|^7.0",
  3596. "symfony/intl": "^6.4|^7.0",
  3597. "symfony/security-core": "^6.4|^7.0",
  3598. "symfony/security-csrf": "^6.4|^7.0",
  3599. "symfony/translation": "^6.4.3|^7.0.3",
  3600. "symfony/uid": "^6.4|^7.0",
  3601. "symfony/validator": "^6.4|^7.0",
  3602. "symfony/var-dumper": "^6.4|^7.0"
  3603. },
  3604. "type": "library",
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Symfony\\Component\\Form\\": ""
  3608. },
  3609. "exclude-from-classmap": [
  3610. "/Tests/"
  3611. ]
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "Fabien Potencier",
  3620. "email": "fabien@symfony.com"
  3621. },
  3622. {
  3623. "name": "Symfony Community",
  3624. "homepage": "https://symfony.com/contributors"
  3625. }
  3626. ],
  3627. "description": "Allows to easily create, process and reuse HTML forms",
  3628. "homepage": "https://symfony.com",
  3629. "support": {
  3630. "source": "https://github.com/symfony/form/tree/v7.1.5"
  3631. },
  3632. "funding": [
  3633. {
  3634. "url": "https://symfony.com/sponsor",
  3635. "type": "custom"
  3636. },
  3637. {
  3638. "url": "https://github.com/fabpot",
  3639. "type": "github"
  3640. },
  3641. {
  3642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3643. "type": "tidelift"
  3644. }
  3645. ],
  3646. "time": "2024-09-20T08:28:38+00:00"
  3647. },
  3648. {
  3649. "name": "symfony/framework-bundle",
  3650. "version": "v7.1.5",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/symfony/framework-bundle.git",
  3654. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  3659. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "composer-runtime-api": ">=2.1",
  3664. "ext-xml": "*",
  3665. "php": ">=8.2",
  3666. "symfony/cache": "^6.4|^7.0",
  3667. "symfony/config": "^6.4|^7.0",
  3668. "symfony/dependency-injection": "^7.1.5",
  3669. "symfony/deprecation-contracts": "^2.5|^3",
  3670. "symfony/error-handler": "^6.4|^7.0",
  3671. "symfony/event-dispatcher": "^6.4|^7.0",
  3672. "symfony/filesystem": "^7.1",
  3673. "symfony/finder": "^6.4|^7.0",
  3674. "symfony/http-foundation": "^6.4|^7.0",
  3675. "symfony/http-kernel": "^6.4|^7.0",
  3676. "symfony/polyfill-mbstring": "~1.0",
  3677. "symfony/routing": "^6.4|^7.0"
  3678. },
  3679. "conflict": {
  3680. "doctrine/persistence": "<1.3",
  3681. "phpdocumentor/reflection-docblock": "<3.2.2",
  3682. "phpdocumentor/type-resolver": "<1.4.0",
  3683. "symfony/asset": "<6.4",
  3684. "symfony/asset-mapper": "<6.4",
  3685. "symfony/clock": "<6.4",
  3686. "symfony/console": "<6.4",
  3687. "symfony/dom-crawler": "<6.4",
  3688. "symfony/dotenv": "<6.4",
  3689. "symfony/form": "<6.4",
  3690. "symfony/http-client": "<6.4",
  3691. "symfony/lock": "<6.4",
  3692. "symfony/mailer": "<6.4",
  3693. "symfony/messenger": "<6.4",
  3694. "symfony/mime": "<6.4",
  3695. "symfony/property-access": "<6.4",
  3696. "symfony/property-info": "<6.4",
  3697. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3698. "symfony/security-core": "<6.4",
  3699. "symfony/security-csrf": "<6.4",
  3700. "symfony/serializer": "<6.4",
  3701. "symfony/stopwatch": "<6.4",
  3702. "symfony/translation": "<6.4",
  3703. "symfony/twig-bridge": "<6.4",
  3704. "symfony/twig-bundle": "<6.4",
  3705. "symfony/validator": "<6.4",
  3706. "symfony/web-profiler-bundle": "<6.4",
  3707. "symfony/workflow": "<6.4"
  3708. },
  3709. "require-dev": {
  3710. "doctrine/persistence": "^1.3|^2|^3",
  3711. "dragonmantank/cron-expression": "^3.1",
  3712. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3713. "seld/jsonlint": "^1.10",
  3714. "symfony/asset": "^6.4|^7.0",
  3715. "symfony/asset-mapper": "^6.4|^7.0",
  3716. "symfony/browser-kit": "^6.4|^7.0",
  3717. "symfony/clock": "^6.4|^7.0",
  3718. "symfony/console": "^6.4|^7.0",
  3719. "symfony/css-selector": "^6.4|^7.0",
  3720. "symfony/dom-crawler": "^6.4|^7.0",
  3721. "symfony/dotenv": "^6.4|^7.0",
  3722. "symfony/expression-language": "^6.4|^7.0",
  3723. "symfony/form": "^6.4|^7.0",
  3724. "symfony/html-sanitizer": "^6.4|^7.0",
  3725. "symfony/http-client": "^6.4|^7.0",
  3726. "symfony/lock": "^6.4|^7.0",
  3727. "symfony/mailer": "^6.4|^7.0",
  3728. "symfony/messenger": "^6.4|^7.0",
  3729. "symfony/mime": "^6.4|^7.0",
  3730. "symfony/notifier": "^6.4|^7.0",
  3731. "symfony/polyfill-intl-icu": "~1.0",
  3732. "symfony/process": "^6.4|^7.0",
  3733. "symfony/property-info": "^6.4|^7.0",
  3734. "symfony/rate-limiter": "^6.4|^7.0",
  3735. "symfony/scheduler": "^6.4.4|^7.0.4",
  3736. "symfony/security-bundle": "^6.4|^7.0",
  3737. "symfony/semaphore": "^6.4|^7.0",
  3738. "symfony/serializer": "^6.4|^7.0",
  3739. "symfony/stopwatch": "^6.4|^7.0",
  3740. "symfony/string": "^6.4|^7.0",
  3741. "symfony/translation": "^6.4|^7.0",
  3742. "symfony/twig-bundle": "^6.4|^7.0",
  3743. "symfony/type-info": "^7.1",
  3744. "symfony/uid": "^6.4|^7.0",
  3745. "symfony/validator": "^6.4|^7.0",
  3746. "symfony/web-link": "^6.4|^7.0",
  3747. "symfony/workflow": "^6.4|^7.0",
  3748. "symfony/yaml": "^6.4|^7.0",
  3749. "twig/twig": "^3.0.4"
  3750. },
  3751. "type": "symfony-bundle",
  3752. "autoload": {
  3753. "psr-4": {
  3754. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3755. },
  3756. "exclude-from-classmap": [
  3757. "/Tests/"
  3758. ]
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Fabien Potencier",
  3767. "email": "fabien@symfony.com"
  3768. },
  3769. {
  3770. "name": "Symfony Community",
  3771. "homepage": "https://symfony.com/contributors"
  3772. }
  3773. ],
  3774. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3775. "homepage": "https://symfony.com",
  3776. "support": {
  3777. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  3778. },
  3779. "funding": [
  3780. {
  3781. "url": "https://symfony.com/sponsor",
  3782. "type": "custom"
  3783. },
  3784. {
  3785. "url": "https://github.com/fabpot",
  3786. "type": "github"
  3787. },
  3788. {
  3789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3790. "type": "tidelift"
  3791. }
  3792. ],
  3793. "time": "2024-09-20T13:35:23+00:00"
  3794. },
  3795. {
  3796. "name": "symfony/http-client",
  3797. "version": "v7.1.5",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/symfony/http-client.git",
  3801. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  3806. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  3807. "shasum": ""
  3808. },
  3809. "require": {
  3810. "php": ">=8.2",
  3811. "psr/log": "^1|^2|^3",
  3812. "symfony/deprecation-contracts": "^2.5|^3",
  3813. "symfony/http-client-contracts": "^3.4.1",
  3814. "symfony/service-contracts": "^2.5|^3"
  3815. },
  3816. "conflict": {
  3817. "php-http/discovery": "<1.15",
  3818. "symfony/http-foundation": "<6.4"
  3819. },
  3820. "provide": {
  3821. "php-http/async-client-implementation": "*",
  3822. "php-http/client-implementation": "*",
  3823. "psr/http-client-implementation": "1.0",
  3824. "symfony/http-client-implementation": "3.0"
  3825. },
  3826. "require-dev": {
  3827. "amphp/amp": "^2.5",
  3828. "amphp/http-client": "^4.2.1",
  3829. "amphp/http-tunnel": "^1.0",
  3830. "amphp/socket": "^1.1",
  3831. "guzzlehttp/promises": "^1.4|^2.0",
  3832. "nyholm/psr7": "^1.0",
  3833. "php-http/httplug": "^1.0|^2.0",
  3834. "psr/http-client": "^1.0",
  3835. "symfony/dependency-injection": "^6.4|^7.0",
  3836. "symfony/http-kernel": "^6.4|^7.0",
  3837. "symfony/messenger": "^6.4|^7.0",
  3838. "symfony/process": "^6.4|^7.0",
  3839. "symfony/rate-limiter": "^6.4|^7.0",
  3840. "symfony/stopwatch": "^6.4|^7.0"
  3841. },
  3842. "type": "library",
  3843. "autoload": {
  3844. "psr-4": {
  3845. "Symfony\\Component\\HttpClient\\": ""
  3846. },
  3847. "exclude-from-classmap": [
  3848. "/Tests/"
  3849. ]
  3850. },
  3851. "notification-url": "https://packagist.org/downloads/",
  3852. "license": [
  3853. "MIT"
  3854. ],
  3855. "authors": [
  3856. {
  3857. "name": "Nicolas Grekas",
  3858. "email": "p@tchwork.com"
  3859. },
  3860. {
  3861. "name": "Symfony Community",
  3862. "homepage": "https://symfony.com/contributors"
  3863. }
  3864. ],
  3865. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3866. "homepage": "https://symfony.com",
  3867. "keywords": [
  3868. "http"
  3869. ],
  3870. "support": {
  3871. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  3872. },
  3873. "funding": [
  3874. {
  3875. "url": "https://symfony.com/sponsor",
  3876. "type": "custom"
  3877. },
  3878. {
  3879. "url": "https://github.com/fabpot",
  3880. "type": "github"
  3881. },
  3882. {
  3883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3884. "type": "tidelift"
  3885. }
  3886. ],
  3887. "time": "2024-09-20T13:35:23+00:00"
  3888. },
  3889. {
  3890. "name": "symfony/http-client-contracts",
  3891. "version": "v3.5.0",
  3892. "source": {
  3893. "type": "git",
  3894. "url": "https://github.com/symfony/http-client-contracts.git",
  3895. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  3896. },
  3897. "dist": {
  3898. "type": "zip",
  3899. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  3900. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  3901. "shasum": ""
  3902. },
  3903. "require": {
  3904. "php": ">=8.1"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-main": "3.5-dev"
  3910. },
  3911. "thanks": {
  3912. "name": "symfony/contracts",
  3913. "url": "https://github.com/symfony/contracts"
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Symfony\\Contracts\\HttpClient\\": ""
  3919. },
  3920. "exclude-from-classmap": [
  3921. "/Test/"
  3922. ]
  3923. },
  3924. "notification-url": "https://packagist.org/downloads/",
  3925. "license": [
  3926. "MIT"
  3927. ],
  3928. "authors": [
  3929. {
  3930. "name": "Nicolas Grekas",
  3931. "email": "p@tchwork.com"
  3932. },
  3933. {
  3934. "name": "Symfony Community",
  3935. "homepage": "https://symfony.com/contributors"
  3936. }
  3937. ],
  3938. "description": "Generic abstractions related to HTTP clients",
  3939. "homepage": "https://symfony.com",
  3940. "keywords": [
  3941. "abstractions",
  3942. "contracts",
  3943. "decoupling",
  3944. "interfaces",
  3945. "interoperability",
  3946. "standards"
  3947. ],
  3948. "support": {
  3949. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  3950. },
  3951. "funding": [
  3952. {
  3953. "url": "https://symfony.com/sponsor",
  3954. "type": "custom"
  3955. },
  3956. {
  3957. "url": "https://github.com/fabpot",
  3958. "type": "github"
  3959. },
  3960. {
  3961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3962. "type": "tidelift"
  3963. }
  3964. ],
  3965. "time": "2024-04-18T09:32:20+00:00"
  3966. },
  3967. {
  3968. "name": "symfony/http-foundation",
  3969. "version": "v7.1.5",
  3970. "source": {
  3971. "type": "git",
  3972. "url": "https://github.com/symfony/http-foundation.git",
  3973. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  3974. },
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  3978. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  3979. "shasum": ""
  3980. },
  3981. "require": {
  3982. "php": ">=8.2",
  3983. "symfony/polyfill-mbstring": "~1.1",
  3984. "symfony/polyfill-php83": "^1.27"
  3985. },
  3986. "conflict": {
  3987. "doctrine/dbal": "<3.6",
  3988. "symfony/cache": "<6.4"
  3989. },
  3990. "require-dev": {
  3991. "doctrine/dbal": "^3.6|^4",
  3992. "predis/predis": "^1.1|^2.0",
  3993. "symfony/cache": "^6.4|^7.0",
  3994. "symfony/dependency-injection": "^6.4|^7.0",
  3995. "symfony/expression-language": "^6.4|^7.0",
  3996. "symfony/http-kernel": "^6.4|^7.0",
  3997. "symfony/mime": "^6.4|^7.0",
  3998. "symfony/rate-limiter": "^6.4|^7.0"
  3999. },
  4000. "type": "library",
  4001. "autoload": {
  4002. "psr-4": {
  4003. "Symfony\\Component\\HttpFoundation\\": ""
  4004. },
  4005. "exclude-from-classmap": [
  4006. "/Tests/"
  4007. ]
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "Fabien Potencier",
  4016. "email": "fabien@symfony.com"
  4017. },
  4018. {
  4019. "name": "Symfony Community",
  4020. "homepage": "https://symfony.com/contributors"
  4021. }
  4022. ],
  4023. "description": "Defines an object-oriented layer for the HTTP specification",
  4024. "homepage": "https://symfony.com",
  4025. "support": {
  4026. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  4027. },
  4028. "funding": [
  4029. {
  4030. "url": "https://symfony.com/sponsor",
  4031. "type": "custom"
  4032. },
  4033. {
  4034. "url": "https://github.com/fabpot",
  4035. "type": "github"
  4036. },
  4037. {
  4038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4039. "type": "tidelift"
  4040. }
  4041. ],
  4042. "time": "2024-09-20T08:28:38+00:00"
  4043. },
  4044. {
  4045. "name": "symfony/http-kernel",
  4046. "version": "v7.1.5",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/symfony/http-kernel.git",
  4050. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  4055. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "php": ">=8.2",
  4060. "psr/log": "^1|^2|^3",
  4061. "symfony/deprecation-contracts": "^2.5|^3",
  4062. "symfony/error-handler": "^6.4|^7.0",
  4063. "symfony/event-dispatcher": "^6.4|^7.0",
  4064. "symfony/http-foundation": "^6.4|^7.0",
  4065. "symfony/polyfill-ctype": "^1.8"
  4066. },
  4067. "conflict": {
  4068. "symfony/browser-kit": "<6.4",
  4069. "symfony/cache": "<6.4",
  4070. "symfony/config": "<6.4",
  4071. "symfony/console": "<6.4",
  4072. "symfony/dependency-injection": "<6.4",
  4073. "symfony/doctrine-bridge": "<6.4",
  4074. "symfony/form": "<6.4",
  4075. "symfony/http-client": "<6.4",
  4076. "symfony/http-client-contracts": "<2.5",
  4077. "symfony/mailer": "<6.4",
  4078. "symfony/messenger": "<6.4",
  4079. "symfony/translation": "<6.4",
  4080. "symfony/translation-contracts": "<2.5",
  4081. "symfony/twig-bridge": "<6.4",
  4082. "symfony/validator": "<6.4",
  4083. "symfony/var-dumper": "<6.4",
  4084. "twig/twig": "<3.0.4"
  4085. },
  4086. "provide": {
  4087. "psr/log-implementation": "1.0|2.0|3.0"
  4088. },
  4089. "require-dev": {
  4090. "psr/cache": "^1.0|^2.0|^3.0",
  4091. "symfony/browser-kit": "^6.4|^7.0",
  4092. "symfony/clock": "^6.4|^7.0",
  4093. "symfony/config": "^6.4|^7.0",
  4094. "symfony/console": "^6.4|^7.0",
  4095. "symfony/css-selector": "^6.4|^7.0",
  4096. "symfony/dependency-injection": "^6.4|^7.0",
  4097. "symfony/dom-crawler": "^6.4|^7.0",
  4098. "symfony/expression-language": "^6.4|^7.0",
  4099. "symfony/finder": "^6.4|^7.0",
  4100. "symfony/http-client-contracts": "^2.5|^3",
  4101. "symfony/process": "^6.4|^7.0",
  4102. "symfony/property-access": "^7.1",
  4103. "symfony/routing": "^6.4|^7.0",
  4104. "symfony/serializer": "^7.1",
  4105. "symfony/stopwatch": "^6.4|^7.0",
  4106. "symfony/translation": "^6.4|^7.0",
  4107. "symfony/translation-contracts": "^2.5|^3",
  4108. "symfony/uid": "^6.4|^7.0",
  4109. "symfony/validator": "^6.4|^7.0",
  4110. "symfony/var-dumper": "^6.4|^7.0",
  4111. "symfony/var-exporter": "^6.4|^7.0",
  4112. "twig/twig": "^3.0.4"
  4113. },
  4114. "type": "library",
  4115. "autoload": {
  4116. "psr-4": {
  4117. "Symfony\\Component\\HttpKernel\\": ""
  4118. },
  4119. "exclude-from-classmap": [
  4120. "/Tests/"
  4121. ]
  4122. },
  4123. "notification-url": "https://packagist.org/downloads/",
  4124. "license": [
  4125. "MIT"
  4126. ],
  4127. "authors": [
  4128. {
  4129. "name": "Fabien Potencier",
  4130. "email": "fabien@symfony.com"
  4131. },
  4132. {
  4133. "name": "Symfony Community",
  4134. "homepage": "https://symfony.com/contributors"
  4135. }
  4136. ],
  4137. "description": "Provides a structured process for converting a Request into a Response",
  4138. "homepage": "https://symfony.com",
  4139. "support": {
  4140. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  4141. },
  4142. "funding": [
  4143. {
  4144. "url": "https://symfony.com/sponsor",
  4145. "type": "custom"
  4146. },
  4147. {
  4148. "url": "https://github.com/fabpot",
  4149. "type": "github"
  4150. },
  4151. {
  4152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4153. "type": "tidelift"
  4154. }
  4155. ],
  4156. "time": "2024-09-21T06:09:21+00:00"
  4157. },
  4158. {
  4159. "name": "symfony/intl",
  4160. "version": "v7.1.5",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://github.com/symfony/intl.git",
  4164. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  4169. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  4170. "shasum": ""
  4171. },
  4172. "require": {
  4173. "php": ">=8.2",
  4174. "symfony/deprecation-contracts": "^2.5|^3"
  4175. },
  4176. "conflict": {
  4177. "symfony/string": "<7.1"
  4178. },
  4179. "require-dev": {
  4180. "symfony/filesystem": "^6.4|^7.0",
  4181. "symfony/var-exporter": "^6.4|^7.0"
  4182. },
  4183. "type": "library",
  4184. "autoload": {
  4185. "psr-4": {
  4186. "Symfony\\Component\\Intl\\": ""
  4187. },
  4188. "exclude-from-classmap": [
  4189. "/Tests/",
  4190. "/Resources/data/"
  4191. ]
  4192. },
  4193. "notification-url": "https://packagist.org/downloads/",
  4194. "license": [
  4195. "MIT"
  4196. ],
  4197. "authors": [
  4198. {
  4199. "name": "Bernhard Schussek",
  4200. "email": "bschussek@gmail.com"
  4201. },
  4202. {
  4203. "name": "Eriksen Costa",
  4204. "email": "eriksen.costa@infranology.com.br"
  4205. },
  4206. {
  4207. "name": "Igor Wiedler",
  4208. "email": "igor@wiedler.ch"
  4209. },
  4210. {
  4211. "name": "Symfony Community",
  4212. "homepage": "https://symfony.com/contributors"
  4213. }
  4214. ],
  4215. "description": "Provides access to the localization data of the ICU library",
  4216. "homepage": "https://symfony.com",
  4217. "keywords": [
  4218. "i18n",
  4219. "icu",
  4220. "internationalization",
  4221. "intl",
  4222. "l10n",
  4223. "localization"
  4224. ],
  4225. "support": {
  4226. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  4227. },
  4228. "funding": [
  4229. {
  4230. "url": "https://symfony.com/sponsor",
  4231. "type": "custom"
  4232. },
  4233. {
  4234. "url": "https://github.com/fabpot",
  4235. "type": "github"
  4236. },
  4237. {
  4238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4239. "type": "tidelift"
  4240. }
  4241. ],
  4242. "time": "2024-09-20T08:28:38+00:00"
  4243. },
  4244. {
  4245. "name": "symfony/mailer",
  4246. "version": "v7.1.5",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/symfony/mailer.git",
  4250. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4255. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4256. "shasum": ""
  4257. },
  4258. "require": {
  4259. "egulias/email-validator": "^2.1.10|^3|^4",
  4260. "php": ">=8.2",
  4261. "psr/event-dispatcher": "^1",
  4262. "psr/log": "^1|^2|^3",
  4263. "symfony/event-dispatcher": "^6.4|^7.0",
  4264. "symfony/mime": "^6.4|^7.0",
  4265. "symfony/service-contracts": "^2.5|^3"
  4266. },
  4267. "conflict": {
  4268. "symfony/http-client-contracts": "<2.5",
  4269. "symfony/http-kernel": "<6.4",
  4270. "symfony/messenger": "<6.4",
  4271. "symfony/mime": "<6.4",
  4272. "symfony/twig-bridge": "<6.4"
  4273. },
  4274. "require-dev": {
  4275. "symfony/console": "^6.4|^7.0",
  4276. "symfony/http-client": "^6.4|^7.0",
  4277. "symfony/messenger": "^6.4|^7.0",
  4278. "symfony/twig-bridge": "^6.4|^7.0"
  4279. },
  4280. "type": "library",
  4281. "autoload": {
  4282. "psr-4": {
  4283. "Symfony\\Component\\Mailer\\": ""
  4284. },
  4285. "exclude-from-classmap": [
  4286. "/Tests/"
  4287. ]
  4288. },
  4289. "notification-url": "https://packagist.org/downloads/",
  4290. "license": [
  4291. "MIT"
  4292. ],
  4293. "authors": [
  4294. {
  4295. "name": "Fabien Potencier",
  4296. "email": "fabien@symfony.com"
  4297. },
  4298. {
  4299. "name": "Symfony Community",
  4300. "homepage": "https://symfony.com/contributors"
  4301. }
  4302. ],
  4303. "description": "Helps sending emails",
  4304. "homepage": "https://symfony.com",
  4305. "support": {
  4306. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  4307. },
  4308. "funding": [
  4309. {
  4310. "url": "https://symfony.com/sponsor",
  4311. "type": "custom"
  4312. },
  4313. {
  4314. "url": "https://github.com/fabpot",
  4315. "type": "github"
  4316. },
  4317. {
  4318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4319. "type": "tidelift"
  4320. }
  4321. ],
  4322. "time": "2024-09-08T12:32:26+00:00"
  4323. },
  4324. {
  4325. "name": "symfony/messenger",
  4326. "version": "v7.1.5",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/symfony/messenger.git",
  4330. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4335. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "php": ">=8.2",
  4340. "psr/log": "^1|^2|^3",
  4341. "symfony/clock": "^6.4|^7.0"
  4342. },
  4343. "conflict": {
  4344. "symfony/console": "<6.4",
  4345. "symfony/event-dispatcher": "<6.4",
  4346. "symfony/event-dispatcher-contracts": "<2.5",
  4347. "symfony/framework-bundle": "<6.4",
  4348. "symfony/http-kernel": "<6.4",
  4349. "symfony/serializer": "<6.4"
  4350. },
  4351. "require-dev": {
  4352. "psr/cache": "^1.0|^2.0|^3.0",
  4353. "symfony/console": "^6.4|^7.0",
  4354. "symfony/dependency-injection": "^6.4|^7.0",
  4355. "symfony/event-dispatcher": "^6.4|^7.0",
  4356. "symfony/http-kernel": "^6.4|^7.0",
  4357. "symfony/process": "^6.4|^7.0",
  4358. "symfony/property-access": "^6.4|^7.0",
  4359. "symfony/rate-limiter": "^6.4|^7.0",
  4360. "symfony/routing": "^6.4|^7.0",
  4361. "symfony/serializer": "^6.4|^7.0",
  4362. "symfony/service-contracts": "^2.5|^3",
  4363. "symfony/stopwatch": "^6.4|^7.0",
  4364. "symfony/validator": "^6.4|^7.0"
  4365. },
  4366. "type": "library",
  4367. "autoload": {
  4368. "psr-4": {
  4369. "Symfony\\Component\\Messenger\\": ""
  4370. },
  4371. "exclude-from-classmap": [
  4372. "/Tests/"
  4373. ]
  4374. },
  4375. "notification-url": "https://packagist.org/downloads/",
  4376. "license": [
  4377. "MIT"
  4378. ],
  4379. "authors": [
  4380. {
  4381. "name": "Samuel Roze",
  4382. "email": "samuel.roze@gmail.com"
  4383. },
  4384. {
  4385. "name": "Symfony Community",
  4386. "homepage": "https://symfony.com/contributors"
  4387. }
  4388. ],
  4389. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4390. "homepage": "https://symfony.com",
  4391. "support": {
  4392. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  4393. },
  4394. "funding": [
  4395. {
  4396. "url": "https://symfony.com/sponsor",
  4397. "type": "custom"
  4398. },
  4399. {
  4400. "url": "https://github.com/fabpot",
  4401. "type": "github"
  4402. },
  4403. {
  4404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4405. "type": "tidelift"
  4406. }
  4407. ],
  4408. "time": "2024-09-08T12:32:26+00:00"
  4409. },
  4410. {
  4411. "name": "symfony/mime",
  4412. "version": "v7.1.5",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/symfony/mime.git",
  4416. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4421. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "php": ">=8.2",
  4426. "symfony/polyfill-intl-idn": "^1.10",
  4427. "symfony/polyfill-mbstring": "^1.0"
  4428. },
  4429. "conflict": {
  4430. "egulias/email-validator": "~3.0.0",
  4431. "phpdocumentor/reflection-docblock": "<3.2.2",
  4432. "phpdocumentor/type-resolver": "<1.4.0",
  4433. "symfony/mailer": "<6.4",
  4434. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4435. },
  4436. "require-dev": {
  4437. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4438. "league/html-to-markdown": "^5.0",
  4439. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4440. "symfony/dependency-injection": "^6.4|^7.0",
  4441. "symfony/process": "^6.4|^7.0",
  4442. "symfony/property-access": "^6.4|^7.0",
  4443. "symfony/property-info": "^6.4|^7.0",
  4444. "symfony/serializer": "^6.4.3|^7.0.3"
  4445. },
  4446. "type": "library",
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Symfony\\Component\\Mime\\": ""
  4450. },
  4451. "exclude-from-classmap": [
  4452. "/Tests/"
  4453. ]
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "Fabien Potencier",
  4462. "email": "fabien@symfony.com"
  4463. },
  4464. {
  4465. "name": "Symfony Community",
  4466. "homepage": "https://symfony.com/contributors"
  4467. }
  4468. ],
  4469. "description": "Allows manipulating MIME messages",
  4470. "homepage": "https://symfony.com",
  4471. "keywords": [
  4472. "mime",
  4473. "mime-type"
  4474. ],
  4475. "support": {
  4476. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  4477. },
  4478. "funding": [
  4479. {
  4480. "url": "https://symfony.com/sponsor",
  4481. "type": "custom"
  4482. },
  4483. {
  4484. "url": "https://github.com/fabpot",
  4485. "type": "github"
  4486. },
  4487. {
  4488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4489. "type": "tidelift"
  4490. }
  4491. ],
  4492. "time": "2024-09-20T08:28:38+00:00"
  4493. },
  4494. {
  4495. "name": "symfony/monolog-bridge",
  4496. "version": "v7.1.1",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://github.com/symfony/monolog-bridge.git",
  4500. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4505. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4506. "shasum": ""
  4507. },
  4508. "require": {
  4509. "monolog/monolog": "^3",
  4510. "php": ">=8.2",
  4511. "symfony/http-kernel": "^6.4|^7.0",
  4512. "symfony/service-contracts": "^2.5|^3"
  4513. },
  4514. "conflict": {
  4515. "symfony/console": "<6.4",
  4516. "symfony/http-foundation": "<6.4",
  4517. "symfony/security-core": "<6.4"
  4518. },
  4519. "require-dev": {
  4520. "symfony/console": "^6.4|^7.0",
  4521. "symfony/http-client": "^6.4|^7.0",
  4522. "symfony/mailer": "^6.4|^7.0",
  4523. "symfony/messenger": "^6.4|^7.0",
  4524. "symfony/mime": "^6.4|^7.0",
  4525. "symfony/security-core": "^6.4|^7.0",
  4526. "symfony/var-dumper": "^6.4|^7.0"
  4527. },
  4528. "type": "symfony-bridge",
  4529. "autoload": {
  4530. "psr-4": {
  4531. "Symfony\\Bridge\\Monolog\\": ""
  4532. },
  4533. "exclude-from-classmap": [
  4534. "/Tests/"
  4535. ]
  4536. },
  4537. "notification-url": "https://packagist.org/downloads/",
  4538. "license": [
  4539. "MIT"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Fabien Potencier",
  4544. "email": "fabien@symfony.com"
  4545. },
  4546. {
  4547. "name": "Symfony Community",
  4548. "homepage": "https://symfony.com/contributors"
  4549. }
  4550. ],
  4551. "description": "Provides integration for Monolog with various Symfony components",
  4552. "homepage": "https://symfony.com",
  4553. "support": {
  4554. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://symfony.com/sponsor",
  4559. "type": "custom"
  4560. },
  4561. {
  4562. "url": "https://github.com/fabpot",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2024-05-31T14:57:53+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/monolog-bundle",
  4574. "version": "v3.10.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/monolog-bundle.git",
  4578. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4583. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4588. "php": ">=7.2.5",
  4589. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4590. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4591. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4592. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4593. },
  4594. "require-dev": {
  4595. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4596. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4597. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4598. },
  4599. "type": "symfony-bundle",
  4600. "extra": {
  4601. "branch-alias": {
  4602. "dev-master": "3.x-dev"
  4603. }
  4604. },
  4605. "autoload": {
  4606. "psr-4": {
  4607. "Symfony\\Bundle\\MonologBundle\\": ""
  4608. },
  4609. "exclude-from-classmap": [
  4610. "/Tests/"
  4611. ]
  4612. },
  4613. "notification-url": "https://packagist.org/downloads/",
  4614. "license": [
  4615. "MIT"
  4616. ],
  4617. "authors": [
  4618. {
  4619. "name": "Fabien Potencier",
  4620. "email": "fabien@symfony.com"
  4621. },
  4622. {
  4623. "name": "Symfony Community",
  4624. "homepage": "https://symfony.com/contributors"
  4625. }
  4626. ],
  4627. "description": "Symfony MonologBundle",
  4628. "homepage": "https://symfony.com",
  4629. "keywords": [
  4630. "log",
  4631. "logging"
  4632. ],
  4633. "support": {
  4634. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4635. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4636. },
  4637. "funding": [
  4638. {
  4639. "url": "https://symfony.com/sponsor",
  4640. "type": "custom"
  4641. },
  4642. {
  4643. "url": "https://github.com/fabpot",
  4644. "type": "github"
  4645. },
  4646. {
  4647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4648. "type": "tidelift"
  4649. }
  4650. ],
  4651. "time": "2023-11-06T17:08:13+00:00"
  4652. },
  4653. {
  4654. "name": "symfony/notifier",
  4655. "version": "v7.1.5",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/symfony/notifier.git",
  4659. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  4664. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "php": ">=8.2",
  4669. "psr/log": "^1|^2|^3"
  4670. },
  4671. "conflict": {
  4672. "symfony/event-dispatcher": "<6.4",
  4673. "symfony/event-dispatcher-contracts": "<2.5",
  4674. "symfony/http-client-contracts": "<2.5",
  4675. "symfony/http-kernel": "<6.4"
  4676. },
  4677. "require-dev": {
  4678. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4679. "symfony/http-client-contracts": "^2.5|^3",
  4680. "symfony/http-foundation": "^6.4|^7.0",
  4681. "symfony/messenger": "^6.4|^7.0"
  4682. },
  4683. "type": "library",
  4684. "autoload": {
  4685. "psr-4": {
  4686. "Symfony\\Component\\Notifier\\": ""
  4687. },
  4688. "exclude-from-classmap": [
  4689. "/Tests/"
  4690. ]
  4691. },
  4692. "notification-url": "https://packagist.org/downloads/",
  4693. "license": [
  4694. "MIT"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Fabien Potencier",
  4699. "email": "fabien@symfony.com"
  4700. },
  4701. {
  4702. "name": "Symfony Community",
  4703. "homepage": "https://symfony.com/contributors"
  4704. }
  4705. ],
  4706. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4707. "homepage": "https://symfony.com",
  4708. "keywords": [
  4709. "notification",
  4710. "notifier"
  4711. ],
  4712. "support": {
  4713. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  4714. },
  4715. "funding": [
  4716. {
  4717. "url": "https://symfony.com/sponsor",
  4718. "type": "custom"
  4719. },
  4720. {
  4721. "url": "https://github.com/fabpot",
  4722. "type": "github"
  4723. },
  4724. {
  4725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4726. "type": "tidelift"
  4727. }
  4728. ],
  4729. "time": "2024-09-08T12:32:26+00:00"
  4730. },
  4731. {
  4732. "name": "symfony/options-resolver",
  4733. "version": "v7.1.1",
  4734. "source": {
  4735. "type": "git",
  4736. "url": "https://github.com/symfony/options-resolver.git",
  4737. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  4738. },
  4739. "dist": {
  4740. "type": "zip",
  4741. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  4742. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  4743. "shasum": ""
  4744. },
  4745. "require": {
  4746. "php": ">=8.2",
  4747. "symfony/deprecation-contracts": "^2.5|^3"
  4748. },
  4749. "type": "library",
  4750. "autoload": {
  4751. "psr-4": {
  4752. "Symfony\\Component\\OptionsResolver\\": ""
  4753. },
  4754. "exclude-from-classmap": [
  4755. "/Tests/"
  4756. ]
  4757. },
  4758. "notification-url": "https://packagist.org/downloads/",
  4759. "license": [
  4760. "MIT"
  4761. ],
  4762. "authors": [
  4763. {
  4764. "name": "Fabien Potencier",
  4765. "email": "fabien@symfony.com"
  4766. },
  4767. {
  4768. "name": "Symfony Community",
  4769. "homepage": "https://symfony.com/contributors"
  4770. }
  4771. ],
  4772. "description": "Provides an improved replacement for the array_replace PHP function",
  4773. "homepage": "https://symfony.com",
  4774. "keywords": [
  4775. "config",
  4776. "configuration",
  4777. "options"
  4778. ],
  4779. "support": {
  4780. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  4781. },
  4782. "funding": [
  4783. {
  4784. "url": "https://symfony.com/sponsor",
  4785. "type": "custom"
  4786. },
  4787. {
  4788. "url": "https://github.com/fabpot",
  4789. "type": "github"
  4790. },
  4791. {
  4792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4793. "type": "tidelift"
  4794. }
  4795. ],
  4796. "time": "2024-05-31T14:57:53+00:00"
  4797. },
  4798. {
  4799. "name": "symfony/password-hasher",
  4800. "version": "v7.1.1",
  4801. "source": {
  4802. "type": "git",
  4803. "url": "https://github.com/symfony/password-hasher.git",
  4804. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  4805. },
  4806. "dist": {
  4807. "type": "zip",
  4808. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  4809. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  4810. "shasum": ""
  4811. },
  4812. "require": {
  4813. "php": ">=8.2"
  4814. },
  4815. "conflict": {
  4816. "symfony/security-core": "<6.4"
  4817. },
  4818. "require-dev": {
  4819. "symfony/console": "^6.4|^7.0",
  4820. "symfony/security-core": "^6.4|^7.0"
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Symfony\\Component\\PasswordHasher\\": ""
  4826. },
  4827. "exclude-from-classmap": [
  4828. "/Tests/"
  4829. ]
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Robin Chalas",
  4838. "email": "robin.chalas@gmail.com"
  4839. },
  4840. {
  4841. "name": "Symfony Community",
  4842. "homepage": "https://symfony.com/contributors"
  4843. }
  4844. ],
  4845. "description": "Provides password hashing utilities",
  4846. "homepage": "https://symfony.com",
  4847. "keywords": [
  4848. "hashing",
  4849. "password"
  4850. ],
  4851. "support": {
  4852. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  4853. },
  4854. "funding": [
  4855. {
  4856. "url": "https://symfony.com/sponsor",
  4857. "type": "custom"
  4858. },
  4859. {
  4860. "url": "https://github.com/fabpot",
  4861. "type": "github"
  4862. },
  4863. {
  4864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4865. "type": "tidelift"
  4866. }
  4867. ],
  4868. "time": "2024-05-31T14:57:53+00:00"
  4869. },
  4870. {
  4871. "name": "symfony/polyfill-intl-grapheme",
  4872. "version": "v1.31.0",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4876. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4881. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "php": ">=7.2"
  4886. },
  4887. "suggest": {
  4888. "ext-intl": "For best performance"
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "thanks": {
  4893. "name": "symfony/polyfill",
  4894. "url": "https://github.com/symfony/polyfill"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "files": [
  4899. "bootstrap.php"
  4900. ],
  4901. "psr-4": {
  4902. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4903. }
  4904. },
  4905. "notification-url": "https://packagist.org/downloads/",
  4906. "license": [
  4907. "MIT"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "Nicolas Grekas",
  4912. "email": "p@tchwork.com"
  4913. },
  4914. {
  4915. "name": "Symfony Community",
  4916. "homepage": "https://symfony.com/contributors"
  4917. }
  4918. ],
  4919. "description": "Symfony polyfill for intl's grapheme_* functions",
  4920. "homepage": "https://symfony.com",
  4921. "keywords": [
  4922. "compatibility",
  4923. "grapheme",
  4924. "intl",
  4925. "polyfill",
  4926. "portable",
  4927. "shim"
  4928. ],
  4929. "support": {
  4930. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  4931. },
  4932. "funding": [
  4933. {
  4934. "url": "https://symfony.com/sponsor",
  4935. "type": "custom"
  4936. },
  4937. {
  4938. "url": "https://github.com/fabpot",
  4939. "type": "github"
  4940. },
  4941. {
  4942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4943. "type": "tidelift"
  4944. }
  4945. ],
  4946. "time": "2024-09-09T11:45:10+00:00"
  4947. },
  4948. {
  4949. "name": "symfony/polyfill-intl-icu",
  4950. "version": "v1.31.0",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4954. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4959. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4960. "shasum": ""
  4961. },
  4962. "require": {
  4963. "php": ">=7.2"
  4964. },
  4965. "suggest": {
  4966. "ext-intl": "For best performance and support of other locales than \"en\""
  4967. },
  4968. "type": "library",
  4969. "extra": {
  4970. "thanks": {
  4971. "name": "symfony/polyfill",
  4972. "url": "https://github.com/symfony/polyfill"
  4973. }
  4974. },
  4975. "autoload": {
  4976. "files": [
  4977. "bootstrap.php"
  4978. ],
  4979. "psr-4": {
  4980. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4981. },
  4982. "classmap": [
  4983. "Resources/stubs"
  4984. ],
  4985. "exclude-from-classmap": [
  4986. "/Tests/"
  4987. ]
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Nicolas Grekas",
  4996. "email": "p@tchwork.com"
  4997. },
  4998. {
  4999. "name": "Symfony Community",
  5000. "homepage": "https://symfony.com/contributors"
  5001. }
  5002. ],
  5003. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5004. "homepage": "https://symfony.com",
  5005. "keywords": [
  5006. "compatibility",
  5007. "icu",
  5008. "intl",
  5009. "polyfill",
  5010. "portable",
  5011. "shim"
  5012. ],
  5013. "support": {
  5014. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5015. },
  5016. "funding": [
  5017. {
  5018. "url": "https://symfony.com/sponsor",
  5019. "type": "custom"
  5020. },
  5021. {
  5022. "url": "https://github.com/fabpot",
  5023. "type": "github"
  5024. },
  5025. {
  5026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5027. "type": "tidelift"
  5028. }
  5029. ],
  5030. "time": "2024-09-09T11:45:10+00:00"
  5031. },
  5032. {
  5033. "name": "symfony/polyfill-intl-idn",
  5034. "version": "v1.31.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5038. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5043. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "php": ">=7.2",
  5048. "symfony/polyfill-intl-normalizer": "^1.10"
  5049. },
  5050. "suggest": {
  5051. "ext-intl": "For best performance"
  5052. },
  5053. "type": "library",
  5054. "extra": {
  5055. "thanks": {
  5056. "name": "symfony/polyfill",
  5057. "url": "https://github.com/symfony/polyfill"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "files": [
  5062. "bootstrap.php"
  5063. ],
  5064. "psr-4": {
  5065. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5066. }
  5067. },
  5068. "notification-url": "https://packagist.org/downloads/",
  5069. "license": [
  5070. "MIT"
  5071. ],
  5072. "authors": [
  5073. {
  5074. "name": "Laurent Bassin",
  5075. "email": "laurent@bassin.info"
  5076. },
  5077. {
  5078. "name": "Trevor Rowbotham",
  5079. "email": "trevor.rowbotham@pm.me"
  5080. },
  5081. {
  5082. "name": "Symfony Community",
  5083. "homepage": "https://symfony.com/contributors"
  5084. }
  5085. ],
  5086. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5087. "homepage": "https://symfony.com",
  5088. "keywords": [
  5089. "compatibility",
  5090. "idn",
  5091. "intl",
  5092. "polyfill",
  5093. "portable",
  5094. "shim"
  5095. ],
  5096. "support": {
  5097. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5098. },
  5099. "funding": [
  5100. {
  5101. "url": "https://symfony.com/sponsor",
  5102. "type": "custom"
  5103. },
  5104. {
  5105. "url": "https://github.com/fabpot",
  5106. "type": "github"
  5107. },
  5108. {
  5109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5110. "type": "tidelift"
  5111. }
  5112. ],
  5113. "time": "2024-09-09T11:45:10+00:00"
  5114. },
  5115. {
  5116. "name": "symfony/polyfill-intl-normalizer",
  5117. "version": "v1.31.0",
  5118. "source": {
  5119. "type": "git",
  5120. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5121. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5122. },
  5123. "dist": {
  5124. "type": "zip",
  5125. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5126. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5127. "shasum": ""
  5128. },
  5129. "require": {
  5130. "php": ">=7.2"
  5131. },
  5132. "suggest": {
  5133. "ext-intl": "For best performance"
  5134. },
  5135. "type": "library",
  5136. "extra": {
  5137. "thanks": {
  5138. "name": "symfony/polyfill",
  5139. "url": "https://github.com/symfony/polyfill"
  5140. }
  5141. },
  5142. "autoload": {
  5143. "files": [
  5144. "bootstrap.php"
  5145. ],
  5146. "psr-4": {
  5147. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5148. },
  5149. "classmap": [
  5150. "Resources/stubs"
  5151. ]
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "MIT"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "Nicolas Grekas",
  5160. "email": "p@tchwork.com"
  5161. },
  5162. {
  5163. "name": "Symfony Community",
  5164. "homepage": "https://symfony.com/contributors"
  5165. }
  5166. ],
  5167. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5168. "homepage": "https://symfony.com",
  5169. "keywords": [
  5170. "compatibility",
  5171. "intl",
  5172. "normalizer",
  5173. "polyfill",
  5174. "portable",
  5175. "shim"
  5176. ],
  5177. "support": {
  5178. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://symfony.com/sponsor",
  5183. "type": "custom"
  5184. },
  5185. {
  5186. "url": "https://github.com/fabpot",
  5187. "type": "github"
  5188. },
  5189. {
  5190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5191. "type": "tidelift"
  5192. }
  5193. ],
  5194. "time": "2024-09-09T11:45:10+00:00"
  5195. },
  5196. {
  5197. "name": "symfony/polyfill-mbstring",
  5198. "version": "v1.31.0",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5202. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5207. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "php": ">=7.2"
  5212. },
  5213. "provide": {
  5214. "ext-mbstring": "*"
  5215. },
  5216. "suggest": {
  5217. "ext-mbstring": "For best performance"
  5218. },
  5219. "type": "library",
  5220. "extra": {
  5221. "thanks": {
  5222. "name": "symfony/polyfill",
  5223. "url": "https://github.com/symfony/polyfill"
  5224. }
  5225. },
  5226. "autoload": {
  5227. "files": [
  5228. "bootstrap.php"
  5229. ],
  5230. "psr-4": {
  5231. "Symfony\\Polyfill\\Mbstring\\": ""
  5232. }
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Nicolas Grekas",
  5241. "email": "p@tchwork.com"
  5242. },
  5243. {
  5244. "name": "Symfony Community",
  5245. "homepage": "https://symfony.com/contributors"
  5246. }
  5247. ],
  5248. "description": "Symfony polyfill for the Mbstring extension",
  5249. "homepage": "https://symfony.com",
  5250. "keywords": [
  5251. "compatibility",
  5252. "mbstring",
  5253. "polyfill",
  5254. "portable",
  5255. "shim"
  5256. ],
  5257. "support": {
  5258. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://symfony.com/sponsor",
  5263. "type": "custom"
  5264. },
  5265. {
  5266. "url": "https://github.com/fabpot",
  5267. "type": "github"
  5268. },
  5269. {
  5270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5271. "type": "tidelift"
  5272. }
  5273. ],
  5274. "time": "2024-09-09T11:45:10+00:00"
  5275. },
  5276. {
  5277. "name": "symfony/polyfill-php83",
  5278. "version": "v1.31.0",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/symfony/polyfill-php83.git",
  5282. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5287. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5288. "shasum": ""
  5289. },
  5290. "require": {
  5291. "php": ">=7.2"
  5292. },
  5293. "type": "library",
  5294. "extra": {
  5295. "thanks": {
  5296. "name": "symfony/polyfill",
  5297. "url": "https://github.com/symfony/polyfill"
  5298. }
  5299. },
  5300. "autoload": {
  5301. "files": [
  5302. "bootstrap.php"
  5303. ],
  5304. "psr-4": {
  5305. "Symfony\\Polyfill\\Php83\\": ""
  5306. },
  5307. "classmap": [
  5308. "Resources/stubs"
  5309. ]
  5310. },
  5311. "notification-url": "https://packagist.org/downloads/",
  5312. "license": [
  5313. "MIT"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Nicolas Grekas",
  5318. "email": "p@tchwork.com"
  5319. },
  5320. {
  5321. "name": "Symfony Community",
  5322. "homepage": "https://symfony.com/contributors"
  5323. }
  5324. ],
  5325. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5326. "homepage": "https://symfony.com",
  5327. "keywords": [
  5328. "compatibility",
  5329. "polyfill",
  5330. "portable",
  5331. "shim"
  5332. ],
  5333. "support": {
  5334. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5335. },
  5336. "funding": [
  5337. {
  5338. "url": "https://symfony.com/sponsor",
  5339. "type": "custom"
  5340. },
  5341. {
  5342. "url": "https://github.com/fabpot",
  5343. "type": "github"
  5344. },
  5345. {
  5346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5347. "type": "tidelift"
  5348. }
  5349. ],
  5350. "time": "2024-09-09T11:45:10+00:00"
  5351. },
  5352. {
  5353. "name": "symfony/process",
  5354. "version": "v7.1.5",
  5355. "source": {
  5356. "type": "git",
  5357. "url": "https://github.com/symfony/process.git",
  5358. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  5359. },
  5360. "dist": {
  5361. "type": "zip",
  5362. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  5363. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  5364. "shasum": ""
  5365. },
  5366. "require": {
  5367. "php": ">=8.2"
  5368. },
  5369. "type": "library",
  5370. "autoload": {
  5371. "psr-4": {
  5372. "Symfony\\Component\\Process\\": ""
  5373. },
  5374. "exclude-from-classmap": [
  5375. "/Tests/"
  5376. ]
  5377. },
  5378. "notification-url": "https://packagist.org/downloads/",
  5379. "license": [
  5380. "MIT"
  5381. ],
  5382. "authors": [
  5383. {
  5384. "name": "Fabien Potencier",
  5385. "email": "fabien@symfony.com"
  5386. },
  5387. {
  5388. "name": "Symfony Community",
  5389. "homepage": "https://symfony.com/contributors"
  5390. }
  5391. ],
  5392. "description": "Executes commands in sub-processes",
  5393. "homepage": "https://symfony.com",
  5394. "support": {
  5395. "source": "https://github.com/symfony/process/tree/v7.1.5"
  5396. },
  5397. "funding": [
  5398. {
  5399. "url": "https://symfony.com/sponsor",
  5400. "type": "custom"
  5401. },
  5402. {
  5403. "url": "https://github.com/fabpot",
  5404. "type": "github"
  5405. },
  5406. {
  5407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5408. "type": "tidelift"
  5409. }
  5410. ],
  5411. "time": "2024-09-19T21:48:23+00:00"
  5412. },
  5413. {
  5414. "name": "symfony/property-access",
  5415. "version": "v7.1.4",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/symfony/property-access.git",
  5419. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  5424. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  5425. "shasum": ""
  5426. },
  5427. "require": {
  5428. "php": ">=8.2",
  5429. "symfony/property-info": "^6.4|^7.0"
  5430. },
  5431. "require-dev": {
  5432. "symfony/cache": "^6.4|^7.0"
  5433. },
  5434. "type": "library",
  5435. "autoload": {
  5436. "psr-4": {
  5437. "Symfony\\Component\\PropertyAccess\\": ""
  5438. },
  5439. "exclude-from-classmap": [
  5440. "/Tests/"
  5441. ]
  5442. },
  5443. "notification-url": "https://packagist.org/downloads/",
  5444. "license": [
  5445. "MIT"
  5446. ],
  5447. "authors": [
  5448. {
  5449. "name": "Fabien Potencier",
  5450. "email": "fabien@symfony.com"
  5451. },
  5452. {
  5453. "name": "Symfony Community",
  5454. "homepage": "https://symfony.com/contributors"
  5455. }
  5456. ],
  5457. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5458. "homepage": "https://symfony.com",
  5459. "keywords": [
  5460. "access",
  5461. "array",
  5462. "extraction",
  5463. "index",
  5464. "injection",
  5465. "object",
  5466. "property",
  5467. "property-path",
  5468. "reflection"
  5469. ],
  5470. "support": {
  5471. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  5472. },
  5473. "funding": [
  5474. {
  5475. "url": "https://symfony.com/sponsor",
  5476. "type": "custom"
  5477. },
  5478. {
  5479. "url": "https://github.com/fabpot",
  5480. "type": "github"
  5481. },
  5482. {
  5483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5484. "type": "tidelift"
  5485. }
  5486. ],
  5487. "time": "2024-08-30T16:12:47+00:00"
  5488. },
  5489. {
  5490. "name": "symfony/property-info",
  5491. "version": "v7.1.3",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/symfony/property-info.git",
  5495. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5500. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "php": ">=8.2",
  5505. "symfony/string": "^6.4|^7.0",
  5506. "symfony/type-info": "^7.1"
  5507. },
  5508. "conflict": {
  5509. "phpdocumentor/reflection-docblock": "<5.2",
  5510. "phpdocumentor/type-resolver": "<1.5.1",
  5511. "symfony/dependency-injection": "<6.4",
  5512. "symfony/serializer": "<6.4"
  5513. },
  5514. "require-dev": {
  5515. "phpdocumentor/reflection-docblock": "^5.2",
  5516. "phpstan/phpdoc-parser": "^1.0",
  5517. "symfony/cache": "^6.4|^7.0",
  5518. "symfony/dependency-injection": "^6.4|^7.0",
  5519. "symfony/serializer": "^6.4|^7.0"
  5520. },
  5521. "type": "library",
  5522. "autoload": {
  5523. "psr-4": {
  5524. "Symfony\\Component\\PropertyInfo\\": ""
  5525. },
  5526. "exclude-from-classmap": [
  5527. "/Tests/"
  5528. ]
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "Kévin Dunglas",
  5537. "email": "dunglas@gmail.com"
  5538. },
  5539. {
  5540. "name": "Symfony Community",
  5541. "homepage": "https://symfony.com/contributors"
  5542. }
  5543. ],
  5544. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5545. "homepage": "https://symfony.com",
  5546. "keywords": [
  5547. "doctrine",
  5548. "phpdoc",
  5549. "property",
  5550. "symfony",
  5551. "type",
  5552. "validator"
  5553. ],
  5554. "support": {
  5555. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  5556. },
  5557. "funding": [
  5558. {
  5559. "url": "https://symfony.com/sponsor",
  5560. "type": "custom"
  5561. },
  5562. {
  5563. "url": "https://github.com/fabpot",
  5564. "type": "github"
  5565. },
  5566. {
  5567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5568. "type": "tidelift"
  5569. }
  5570. ],
  5571. "time": "2024-07-26T07:36:36+00:00"
  5572. },
  5573. {
  5574. "name": "symfony/routing",
  5575. "version": "v7.1.4",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/symfony/routing.git",
  5579. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5584. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=8.2",
  5589. "symfony/deprecation-contracts": "^2.5|^3"
  5590. },
  5591. "conflict": {
  5592. "symfony/config": "<6.4",
  5593. "symfony/dependency-injection": "<6.4",
  5594. "symfony/yaml": "<6.4"
  5595. },
  5596. "require-dev": {
  5597. "psr/log": "^1|^2|^3",
  5598. "symfony/config": "^6.4|^7.0",
  5599. "symfony/dependency-injection": "^6.4|^7.0",
  5600. "symfony/expression-language": "^6.4|^7.0",
  5601. "symfony/http-foundation": "^6.4|^7.0",
  5602. "symfony/yaml": "^6.4|^7.0"
  5603. },
  5604. "type": "library",
  5605. "autoload": {
  5606. "psr-4": {
  5607. "Symfony\\Component\\Routing\\": ""
  5608. },
  5609. "exclude-from-classmap": [
  5610. "/Tests/"
  5611. ]
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "MIT"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Fabien Potencier",
  5620. "email": "fabien@symfony.com"
  5621. },
  5622. {
  5623. "name": "Symfony Community",
  5624. "homepage": "https://symfony.com/contributors"
  5625. }
  5626. ],
  5627. "description": "Maps an HTTP request to a set of configuration variables",
  5628. "homepage": "https://symfony.com",
  5629. "keywords": [
  5630. "router",
  5631. "routing",
  5632. "uri",
  5633. "url"
  5634. ],
  5635. "support": {
  5636. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  5637. },
  5638. "funding": [
  5639. {
  5640. "url": "https://symfony.com/sponsor",
  5641. "type": "custom"
  5642. },
  5643. {
  5644. "url": "https://github.com/fabpot",
  5645. "type": "github"
  5646. },
  5647. {
  5648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5649. "type": "tidelift"
  5650. }
  5651. ],
  5652. "time": "2024-08-29T08:16:25+00:00"
  5653. },
  5654. {
  5655. "name": "symfony/runtime",
  5656. "version": "v7.1.1",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://github.com/symfony/runtime.git",
  5660. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  5665. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  5666. "shasum": ""
  5667. },
  5668. "require": {
  5669. "composer-plugin-api": "^1.0|^2.0",
  5670. "php": ">=8.2"
  5671. },
  5672. "conflict": {
  5673. "symfony/dotenv": "<6.4"
  5674. },
  5675. "require-dev": {
  5676. "composer/composer": "^2.6",
  5677. "symfony/console": "^6.4|^7.0",
  5678. "symfony/dotenv": "^6.4|^7.0",
  5679. "symfony/http-foundation": "^6.4|^7.0",
  5680. "symfony/http-kernel": "^6.4|^7.0"
  5681. },
  5682. "type": "composer-plugin",
  5683. "extra": {
  5684. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Component\\Runtime\\": "",
  5689. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5690. },
  5691. "exclude-from-classmap": [
  5692. "/Tests/"
  5693. ]
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Nicolas Grekas",
  5702. "email": "p@tchwork.com"
  5703. },
  5704. {
  5705. "name": "Symfony Community",
  5706. "homepage": "https://symfony.com/contributors"
  5707. }
  5708. ],
  5709. "description": "Enables decoupling PHP applications from global state",
  5710. "homepage": "https://symfony.com",
  5711. "keywords": [
  5712. "runtime"
  5713. ],
  5714. "support": {
  5715. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  5716. },
  5717. "funding": [
  5718. {
  5719. "url": "https://symfony.com/sponsor",
  5720. "type": "custom"
  5721. },
  5722. {
  5723. "url": "https://github.com/fabpot",
  5724. "type": "github"
  5725. },
  5726. {
  5727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5728. "type": "tidelift"
  5729. }
  5730. ],
  5731. "time": "2024-05-31T14:55:39+00:00"
  5732. },
  5733. {
  5734. "name": "symfony/security-bundle",
  5735. "version": "v7.1.4",
  5736. "source": {
  5737. "type": "git",
  5738. "url": "https://github.com/symfony/security-bundle.git",
  5739. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  5740. },
  5741. "dist": {
  5742. "type": "zip",
  5743. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  5744. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  5745. "shasum": ""
  5746. },
  5747. "require": {
  5748. "composer-runtime-api": ">=2.1",
  5749. "ext-xml": "*",
  5750. "php": ">=8.2",
  5751. "symfony/clock": "^6.4|^7.0",
  5752. "symfony/config": "^6.4|^7.0",
  5753. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  5754. "symfony/event-dispatcher": "^6.4|^7.0",
  5755. "symfony/http-foundation": "^6.4|^7.0",
  5756. "symfony/http-kernel": "^6.4|^7.0",
  5757. "symfony/password-hasher": "^6.4|^7.0",
  5758. "symfony/security-core": "^6.4|^7.0",
  5759. "symfony/security-csrf": "^6.4|^7.0",
  5760. "symfony/security-http": "^7.1",
  5761. "symfony/service-contracts": "^2.5|^3"
  5762. },
  5763. "conflict": {
  5764. "symfony/browser-kit": "<6.4",
  5765. "symfony/console": "<6.4",
  5766. "symfony/framework-bundle": "<6.4",
  5767. "symfony/http-client": "<6.4",
  5768. "symfony/ldap": "<6.4",
  5769. "symfony/serializer": "<6.4",
  5770. "symfony/twig-bundle": "<6.4",
  5771. "symfony/validator": "<6.4"
  5772. },
  5773. "require-dev": {
  5774. "symfony/asset": "^6.4|^7.0",
  5775. "symfony/browser-kit": "^6.4|^7.0",
  5776. "symfony/console": "^6.4|^7.0",
  5777. "symfony/css-selector": "^6.4|^7.0",
  5778. "symfony/dom-crawler": "^6.4|^7.0",
  5779. "symfony/expression-language": "^6.4|^7.0",
  5780. "symfony/form": "^6.4|^7.0",
  5781. "symfony/framework-bundle": "^6.4|^7.0",
  5782. "symfony/http-client": "^6.4|^7.0",
  5783. "symfony/ldap": "^6.4|^7.0",
  5784. "symfony/process": "^6.4|^7.0",
  5785. "symfony/rate-limiter": "^6.4|^7.0",
  5786. "symfony/serializer": "^6.4|^7.0",
  5787. "symfony/translation": "^6.4|^7.0",
  5788. "symfony/twig-bridge": "^6.4|^7.0",
  5789. "symfony/twig-bundle": "^6.4|^7.0",
  5790. "symfony/validator": "^6.4|^7.0",
  5791. "symfony/yaml": "^6.4|^7.0",
  5792. "twig/twig": "^3.0.4",
  5793. "web-token/jwt-library": "^3.3.2|^4.0"
  5794. },
  5795. "type": "symfony-bundle",
  5796. "autoload": {
  5797. "psr-4": {
  5798. "Symfony\\Bundle\\SecurityBundle\\": ""
  5799. },
  5800. "exclude-from-classmap": [
  5801. "/Tests/"
  5802. ]
  5803. },
  5804. "notification-url": "https://packagist.org/downloads/",
  5805. "license": [
  5806. "MIT"
  5807. ],
  5808. "authors": [
  5809. {
  5810. "name": "Fabien Potencier",
  5811. "email": "fabien@symfony.com"
  5812. },
  5813. {
  5814. "name": "Symfony Community",
  5815. "homepage": "https://symfony.com/contributors"
  5816. }
  5817. ],
  5818. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5819. "homepage": "https://symfony.com",
  5820. "support": {
  5821. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  5822. },
  5823. "funding": [
  5824. {
  5825. "url": "https://symfony.com/sponsor",
  5826. "type": "custom"
  5827. },
  5828. {
  5829. "url": "https://github.com/fabpot",
  5830. "type": "github"
  5831. },
  5832. {
  5833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5834. "type": "tidelift"
  5835. }
  5836. ],
  5837. "time": "2024-08-20T11:38:55+00:00"
  5838. },
  5839. {
  5840. "name": "symfony/security-core",
  5841. "version": "v7.1.5",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/symfony/security-core.git",
  5845. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  5850. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  5851. "shasum": ""
  5852. },
  5853. "require": {
  5854. "php": ">=8.2",
  5855. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5856. "symfony/password-hasher": "^6.4|^7.0",
  5857. "symfony/service-contracts": "^2.5|^3"
  5858. },
  5859. "conflict": {
  5860. "symfony/dependency-injection": "<6.4",
  5861. "symfony/event-dispatcher": "<6.4",
  5862. "symfony/http-foundation": "<6.4",
  5863. "symfony/ldap": "<6.4",
  5864. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5865. "symfony/validator": "<6.4"
  5866. },
  5867. "require-dev": {
  5868. "psr/cache": "^1.0|^2.0|^3.0",
  5869. "psr/container": "^1.1|^2.0",
  5870. "psr/log": "^1|^2|^3",
  5871. "symfony/cache": "^6.4|^7.0",
  5872. "symfony/dependency-injection": "^6.4|^7.0",
  5873. "symfony/event-dispatcher": "^6.4|^7.0",
  5874. "symfony/expression-language": "^6.4|^7.0",
  5875. "symfony/http-foundation": "^6.4|^7.0",
  5876. "symfony/ldap": "^6.4|^7.0",
  5877. "symfony/string": "^6.4|^7.0",
  5878. "symfony/translation": "^6.4.3|^7.0.3",
  5879. "symfony/validator": "^6.4|^7.0"
  5880. },
  5881. "type": "library",
  5882. "autoload": {
  5883. "psr-4": {
  5884. "Symfony\\Component\\Security\\Core\\": ""
  5885. },
  5886. "exclude-from-classmap": [
  5887. "/Tests/"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Fabien Potencier",
  5897. "email": "fabien@symfony.com"
  5898. },
  5899. {
  5900. "name": "Symfony Community",
  5901. "homepage": "https://symfony.com/contributors"
  5902. }
  5903. ],
  5904. "description": "Symfony Security Component - Core Library",
  5905. "homepage": "https://symfony.com",
  5906. "support": {
  5907. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  5908. },
  5909. "funding": [
  5910. {
  5911. "url": "https://symfony.com/sponsor",
  5912. "type": "custom"
  5913. },
  5914. {
  5915. "url": "https://github.com/fabpot",
  5916. "type": "github"
  5917. },
  5918. {
  5919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5920. "type": "tidelift"
  5921. }
  5922. ],
  5923. "time": "2024-09-20T13:35:23+00:00"
  5924. },
  5925. {
  5926. "name": "symfony/security-csrf",
  5927. "version": "v7.1.1",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/symfony/security-csrf.git",
  5931. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  5936. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  5937. "shasum": ""
  5938. },
  5939. "require": {
  5940. "php": ">=8.2",
  5941. "symfony/security-core": "^6.4|^7.0"
  5942. },
  5943. "conflict": {
  5944. "symfony/http-foundation": "<6.4"
  5945. },
  5946. "require-dev": {
  5947. "symfony/http-foundation": "^6.4|^7.0"
  5948. },
  5949. "type": "library",
  5950. "autoload": {
  5951. "psr-4": {
  5952. "Symfony\\Component\\Security\\Csrf\\": ""
  5953. },
  5954. "exclude-from-classmap": [
  5955. "/Tests/"
  5956. ]
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "MIT"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Fabien Potencier",
  5965. "email": "fabien@symfony.com"
  5966. },
  5967. {
  5968. "name": "Symfony Community",
  5969. "homepage": "https://symfony.com/contributors"
  5970. }
  5971. ],
  5972. "description": "Symfony Security Component - CSRF Library",
  5973. "homepage": "https://symfony.com",
  5974. "support": {
  5975. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  5976. },
  5977. "funding": [
  5978. {
  5979. "url": "https://symfony.com/sponsor",
  5980. "type": "custom"
  5981. },
  5982. {
  5983. "url": "https://github.com/fabpot",
  5984. "type": "github"
  5985. },
  5986. {
  5987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5988. "type": "tidelift"
  5989. }
  5990. ],
  5991. "time": "2024-05-31T14:57:53+00:00"
  5992. },
  5993. {
  5994. "name": "symfony/security-http",
  5995. "version": "v7.1.5",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/symfony/security-http.git",
  5999. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  6004. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "php": ">=8.2",
  6009. "symfony/deprecation-contracts": "^2.5|^3",
  6010. "symfony/http-foundation": "^6.4|^7.0",
  6011. "symfony/http-kernel": "^6.4|^7.0",
  6012. "symfony/polyfill-mbstring": "~1.0",
  6013. "symfony/property-access": "^6.4|^7.0",
  6014. "symfony/security-core": "^6.4|^7.0",
  6015. "symfony/service-contracts": "^2.5|^3"
  6016. },
  6017. "conflict": {
  6018. "symfony/clock": "<6.4",
  6019. "symfony/event-dispatcher": "<6.4",
  6020. "symfony/http-client-contracts": "<3.0",
  6021. "symfony/security-bundle": "<6.4",
  6022. "symfony/security-csrf": "<6.4"
  6023. },
  6024. "require-dev": {
  6025. "psr/log": "^1|^2|^3",
  6026. "symfony/cache": "^6.4|^7.0",
  6027. "symfony/clock": "^6.4|^7.0",
  6028. "symfony/expression-language": "^6.4|^7.0",
  6029. "symfony/http-client": "^6.4|^7.0",
  6030. "symfony/http-client-contracts": "^3.0",
  6031. "symfony/rate-limiter": "^6.4|^7.0",
  6032. "symfony/routing": "^6.4|^7.0",
  6033. "symfony/security-csrf": "^6.4|^7.0",
  6034. "symfony/translation": "^6.4|^7.0",
  6035. "web-token/jwt-library": "^3.3.2|^4.0"
  6036. },
  6037. "type": "library",
  6038. "autoload": {
  6039. "psr-4": {
  6040. "Symfony\\Component\\Security\\Http\\": ""
  6041. },
  6042. "exclude-from-classmap": [
  6043. "/Tests/"
  6044. ]
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "MIT"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Fabien Potencier",
  6053. "email": "fabien@symfony.com"
  6054. },
  6055. {
  6056. "name": "Symfony Community",
  6057. "homepage": "https://symfony.com/contributors"
  6058. }
  6059. ],
  6060. "description": "Symfony Security Component - HTTP Integration",
  6061. "homepage": "https://symfony.com",
  6062. "support": {
  6063. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  6064. },
  6065. "funding": [
  6066. {
  6067. "url": "https://symfony.com/sponsor",
  6068. "type": "custom"
  6069. },
  6070. {
  6071. "url": "https://github.com/fabpot",
  6072. "type": "github"
  6073. },
  6074. {
  6075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6076. "type": "tidelift"
  6077. }
  6078. ],
  6079. "time": "2024-09-20T08:28:38+00:00"
  6080. },
  6081. {
  6082. "name": "symfony/serializer",
  6083. "version": "v7.1.5",
  6084. "source": {
  6085. "type": "git",
  6086. "url": "https://github.com/symfony/serializer.git",
  6087. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  6088. },
  6089. "dist": {
  6090. "type": "zip",
  6091. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6092. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6093. "shasum": ""
  6094. },
  6095. "require": {
  6096. "php": ">=8.2",
  6097. "symfony/deprecation-contracts": "^2.5|^3",
  6098. "symfony/polyfill-ctype": "~1.8"
  6099. },
  6100. "conflict": {
  6101. "phpdocumentor/reflection-docblock": "<3.2.2",
  6102. "phpdocumentor/type-resolver": "<1.4.0",
  6103. "symfony/dependency-injection": "<6.4",
  6104. "symfony/property-access": "<6.4",
  6105. "symfony/property-info": "<6.4",
  6106. "symfony/type-info": "<7.1.5",
  6107. "symfony/uid": "<6.4",
  6108. "symfony/validator": "<6.4",
  6109. "symfony/yaml": "<6.4"
  6110. },
  6111. "require-dev": {
  6112. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6113. "phpstan/phpdoc-parser": "^1.0",
  6114. "seld/jsonlint": "^1.10",
  6115. "symfony/cache": "^6.4|^7.0",
  6116. "symfony/config": "^6.4|^7.0",
  6117. "symfony/console": "^6.4|^7.0",
  6118. "symfony/dependency-injection": "^6.4|^7.0",
  6119. "symfony/error-handler": "^6.4|^7.0",
  6120. "symfony/filesystem": "^6.4|^7.0",
  6121. "symfony/form": "^6.4|^7.0",
  6122. "symfony/http-foundation": "^6.4|^7.0",
  6123. "symfony/http-kernel": "^6.4|^7.0",
  6124. "symfony/messenger": "^6.4|^7.0",
  6125. "symfony/mime": "^6.4|^7.0",
  6126. "symfony/property-access": "^6.4|^7.0",
  6127. "symfony/property-info": "^6.4|^7.0",
  6128. "symfony/translation-contracts": "^2.5|^3",
  6129. "symfony/type-info": "^7.1.5",
  6130. "symfony/uid": "^6.4|^7.0",
  6131. "symfony/validator": "^6.4|^7.0",
  6132. "symfony/var-dumper": "^6.4|^7.0",
  6133. "symfony/var-exporter": "^6.4|^7.0",
  6134. "symfony/yaml": "^6.4|^7.0"
  6135. },
  6136. "type": "library",
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Symfony\\Component\\Serializer\\": ""
  6140. },
  6141. "exclude-from-classmap": [
  6142. "/Tests/"
  6143. ]
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Fabien Potencier",
  6152. "email": "fabien@symfony.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "https://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6160. "homepage": "https://symfony.com",
  6161. "support": {
  6162. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2024-09-20T12:13:15+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/service-contracts",
  6182. "version": "v3.5.0",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/service-contracts.git",
  6186. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6191. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=8.1",
  6196. "psr/container": "^1.1|^2.0",
  6197. "symfony/deprecation-contracts": "^2.5|^3"
  6198. },
  6199. "conflict": {
  6200. "ext-psr": "<1.1|>=2"
  6201. },
  6202. "type": "library",
  6203. "extra": {
  6204. "branch-alias": {
  6205. "dev-main": "3.5-dev"
  6206. },
  6207. "thanks": {
  6208. "name": "symfony/contracts",
  6209. "url": "https://github.com/symfony/contracts"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "psr-4": {
  6214. "Symfony\\Contracts\\Service\\": ""
  6215. },
  6216. "exclude-from-classmap": [
  6217. "/Test/"
  6218. ]
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Nicolas Grekas",
  6227. "email": "p@tchwork.com"
  6228. },
  6229. {
  6230. "name": "Symfony Community",
  6231. "homepage": "https://symfony.com/contributors"
  6232. }
  6233. ],
  6234. "description": "Generic abstractions related to writing services",
  6235. "homepage": "https://symfony.com",
  6236. "keywords": [
  6237. "abstractions",
  6238. "contracts",
  6239. "decoupling",
  6240. "interfaces",
  6241. "interoperability",
  6242. "standards"
  6243. ],
  6244. "support": {
  6245. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6246. },
  6247. "funding": [
  6248. {
  6249. "url": "https://symfony.com/sponsor",
  6250. "type": "custom"
  6251. },
  6252. {
  6253. "url": "https://github.com/fabpot",
  6254. "type": "github"
  6255. },
  6256. {
  6257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6258. "type": "tidelift"
  6259. }
  6260. ],
  6261. "time": "2024-04-18T09:32:20+00:00"
  6262. },
  6263. {
  6264. "name": "symfony/stimulus-bundle",
  6265. "version": "v2.21.0",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/symfony/stimulus-bundle.git",
  6269. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  6274. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "php": ">=8.1",
  6279. "symfony/config": "^5.4|^6.0|^7.0",
  6280. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6281. "symfony/deprecation-contracts": "^2.0|^3.0",
  6282. "symfony/finder": "^5.4|^6.0|^7.0",
  6283. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6284. "twig/twig": "^2.15.3|^3.8"
  6285. },
  6286. "require-dev": {
  6287. "symfony/asset-mapper": "^6.3|^7.0",
  6288. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6289. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6290. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6291. "zenstruck/browser": "^1.4"
  6292. },
  6293. "type": "symfony-bundle",
  6294. "autoload": {
  6295. "psr-4": {
  6296. "Symfony\\UX\\StimulusBundle\\": "src"
  6297. }
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Symfony Community",
  6306. "homepage": "https://symfony.com/contributors"
  6307. }
  6308. ],
  6309. "description": "Integration with your Symfony app & Stimulus!",
  6310. "keywords": [
  6311. "symfony-ux"
  6312. ],
  6313. "support": {
  6314. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  6315. },
  6316. "funding": [
  6317. {
  6318. "url": "https://symfony.com/sponsor",
  6319. "type": "custom"
  6320. },
  6321. {
  6322. "url": "https://github.com/fabpot",
  6323. "type": "github"
  6324. },
  6325. {
  6326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6327. "type": "tidelift"
  6328. }
  6329. ],
  6330. "time": "2024-10-05T22:11:16+00:00"
  6331. },
  6332. {
  6333. "name": "symfony/stopwatch",
  6334. "version": "v7.1.1",
  6335. "source": {
  6336. "type": "git",
  6337. "url": "https://github.com/symfony/stopwatch.git",
  6338. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6339. },
  6340. "dist": {
  6341. "type": "zip",
  6342. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6343. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6344. "shasum": ""
  6345. },
  6346. "require": {
  6347. "php": ">=8.2",
  6348. "symfony/service-contracts": "^2.5|^3"
  6349. },
  6350. "type": "library",
  6351. "autoload": {
  6352. "psr-4": {
  6353. "Symfony\\Component\\Stopwatch\\": ""
  6354. },
  6355. "exclude-from-classmap": [
  6356. "/Tests/"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Fabien Potencier",
  6366. "email": "fabien@symfony.com"
  6367. },
  6368. {
  6369. "name": "Symfony Community",
  6370. "homepage": "https://symfony.com/contributors"
  6371. }
  6372. ],
  6373. "description": "Provides a way to profile code",
  6374. "homepage": "https://symfony.com",
  6375. "support": {
  6376. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  6377. },
  6378. "funding": [
  6379. {
  6380. "url": "https://symfony.com/sponsor",
  6381. "type": "custom"
  6382. },
  6383. {
  6384. "url": "https://github.com/fabpot",
  6385. "type": "github"
  6386. },
  6387. {
  6388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6389. "type": "tidelift"
  6390. }
  6391. ],
  6392. "time": "2024-05-31T14:57:53+00:00"
  6393. },
  6394. {
  6395. "name": "symfony/string",
  6396. "version": "v7.1.5",
  6397. "source": {
  6398. "type": "git",
  6399. "url": "https://github.com/symfony/string.git",
  6400. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  6401. },
  6402. "dist": {
  6403. "type": "zip",
  6404. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  6405. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  6406. "shasum": ""
  6407. },
  6408. "require": {
  6409. "php": ">=8.2",
  6410. "symfony/polyfill-ctype": "~1.8",
  6411. "symfony/polyfill-intl-grapheme": "~1.0",
  6412. "symfony/polyfill-intl-normalizer": "~1.0",
  6413. "symfony/polyfill-mbstring": "~1.0"
  6414. },
  6415. "conflict": {
  6416. "symfony/translation-contracts": "<2.5"
  6417. },
  6418. "require-dev": {
  6419. "symfony/emoji": "^7.1",
  6420. "symfony/error-handler": "^6.4|^7.0",
  6421. "symfony/http-client": "^6.4|^7.0",
  6422. "symfony/intl": "^6.4|^7.0",
  6423. "symfony/translation-contracts": "^2.5|^3.0",
  6424. "symfony/var-exporter": "^6.4|^7.0"
  6425. },
  6426. "type": "library",
  6427. "autoload": {
  6428. "files": [
  6429. "Resources/functions.php"
  6430. ],
  6431. "psr-4": {
  6432. "Symfony\\Component\\String\\": ""
  6433. },
  6434. "exclude-from-classmap": [
  6435. "/Tests/"
  6436. ]
  6437. },
  6438. "notification-url": "https://packagist.org/downloads/",
  6439. "license": [
  6440. "MIT"
  6441. ],
  6442. "authors": [
  6443. {
  6444. "name": "Nicolas Grekas",
  6445. "email": "p@tchwork.com"
  6446. },
  6447. {
  6448. "name": "Symfony Community",
  6449. "homepage": "https://symfony.com/contributors"
  6450. }
  6451. ],
  6452. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6453. "homepage": "https://symfony.com",
  6454. "keywords": [
  6455. "grapheme",
  6456. "i18n",
  6457. "string",
  6458. "unicode",
  6459. "utf-8",
  6460. "utf8"
  6461. ],
  6462. "support": {
  6463. "source": "https://github.com/symfony/string/tree/v7.1.5"
  6464. },
  6465. "funding": [
  6466. {
  6467. "url": "https://symfony.com/sponsor",
  6468. "type": "custom"
  6469. },
  6470. {
  6471. "url": "https://github.com/fabpot",
  6472. "type": "github"
  6473. },
  6474. {
  6475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6476. "type": "tidelift"
  6477. }
  6478. ],
  6479. "time": "2024-09-20T08:28:38+00:00"
  6480. },
  6481. {
  6482. "name": "symfony/translation",
  6483. "version": "v7.1.5",
  6484. "source": {
  6485. "type": "git",
  6486. "url": "https://github.com/symfony/translation.git",
  6487. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  6488. },
  6489. "dist": {
  6490. "type": "zip",
  6491. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6492. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6493. "shasum": ""
  6494. },
  6495. "require": {
  6496. "php": ">=8.2",
  6497. "symfony/polyfill-mbstring": "~1.0",
  6498. "symfony/translation-contracts": "^2.5|^3.0"
  6499. },
  6500. "conflict": {
  6501. "symfony/config": "<6.4",
  6502. "symfony/console": "<6.4",
  6503. "symfony/dependency-injection": "<6.4",
  6504. "symfony/http-client-contracts": "<2.5",
  6505. "symfony/http-kernel": "<6.4",
  6506. "symfony/service-contracts": "<2.5",
  6507. "symfony/twig-bundle": "<6.4",
  6508. "symfony/yaml": "<6.4"
  6509. },
  6510. "provide": {
  6511. "symfony/translation-implementation": "2.3|3.0"
  6512. },
  6513. "require-dev": {
  6514. "nikic/php-parser": "^4.18|^5.0",
  6515. "psr/log": "^1|^2|^3",
  6516. "symfony/config": "^6.4|^7.0",
  6517. "symfony/console": "^6.4|^7.0",
  6518. "symfony/dependency-injection": "^6.4|^7.0",
  6519. "symfony/finder": "^6.4|^7.0",
  6520. "symfony/http-client-contracts": "^2.5|^3.0",
  6521. "symfony/http-kernel": "^6.4|^7.0",
  6522. "symfony/intl": "^6.4|^7.0",
  6523. "symfony/polyfill-intl-icu": "^1.21",
  6524. "symfony/routing": "^6.4|^7.0",
  6525. "symfony/service-contracts": "^2.5|^3",
  6526. "symfony/yaml": "^6.4|^7.0"
  6527. },
  6528. "type": "library",
  6529. "autoload": {
  6530. "files": [
  6531. "Resources/functions.php"
  6532. ],
  6533. "psr-4": {
  6534. "Symfony\\Component\\Translation\\": ""
  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": "Provides tools to internationalize your application",
  6555. "homepage": "https://symfony.com",
  6556. "support": {
  6557. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  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-09-16T06:30:38+00:00"
  6574. },
  6575. {
  6576. "name": "symfony/translation-contracts",
  6577. "version": "v3.5.0",
  6578. "source": {
  6579. "type": "git",
  6580. "url": "https://github.com/symfony/translation-contracts.git",
  6581. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6582. },
  6583. "dist": {
  6584. "type": "zip",
  6585. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6586. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6587. "shasum": ""
  6588. },
  6589. "require": {
  6590. "php": ">=8.1"
  6591. },
  6592. "type": "library",
  6593. "extra": {
  6594. "branch-alias": {
  6595. "dev-main": "3.5-dev"
  6596. },
  6597. "thanks": {
  6598. "name": "symfony/contracts",
  6599. "url": "https://github.com/symfony/contracts"
  6600. }
  6601. },
  6602. "autoload": {
  6603. "psr-4": {
  6604. "Symfony\\Contracts\\Translation\\": ""
  6605. },
  6606. "exclude-from-classmap": [
  6607. "/Test/"
  6608. ]
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "MIT"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Nicolas Grekas",
  6617. "email": "p@tchwork.com"
  6618. },
  6619. {
  6620. "name": "Symfony Community",
  6621. "homepage": "https://symfony.com/contributors"
  6622. }
  6623. ],
  6624. "description": "Generic abstractions related to translation",
  6625. "homepage": "https://symfony.com",
  6626. "keywords": [
  6627. "abstractions",
  6628. "contracts",
  6629. "decoupling",
  6630. "interfaces",
  6631. "interoperability",
  6632. "standards"
  6633. ],
  6634. "support": {
  6635. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6636. },
  6637. "funding": [
  6638. {
  6639. "url": "https://symfony.com/sponsor",
  6640. "type": "custom"
  6641. },
  6642. {
  6643. "url": "https://github.com/fabpot",
  6644. "type": "github"
  6645. },
  6646. {
  6647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6648. "type": "tidelift"
  6649. }
  6650. ],
  6651. "time": "2024-04-18T09:32:20+00:00"
  6652. },
  6653. {
  6654. "name": "symfony/twig-bridge",
  6655. "version": "v7.1.5",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/symfony/twig-bridge.git",
  6659. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  6664. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "php": ">=8.2",
  6669. "symfony/translation-contracts": "^2.5|^3",
  6670. "twig/twig": "^3.9"
  6671. },
  6672. "conflict": {
  6673. "phpdocumentor/reflection-docblock": "<3.2.2",
  6674. "phpdocumentor/type-resolver": "<1.4.0",
  6675. "symfony/console": "<6.4",
  6676. "symfony/form": "<6.4",
  6677. "symfony/http-foundation": "<6.4",
  6678. "symfony/http-kernel": "<6.4",
  6679. "symfony/mime": "<6.4",
  6680. "symfony/serializer": "<6.4",
  6681. "symfony/translation": "<6.4",
  6682. "symfony/workflow": "<6.4"
  6683. },
  6684. "require-dev": {
  6685. "egulias/email-validator": "^2.1.10|^3|^4",
  6686. "league/html-to-markdown": "^5.0",
  6687. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6688. "symfony/asset": "^6.4|^7.0",
  6689. "symfony/asset-mapper": "^6.4|^7.0",
  6690. "symfony/console": "^6.4|^7.0",
  6691. "symfony/dependency-injection": "^6.4|^7.0",
  6692. "symfony/emoji": "^7.1",
  6693. "symfony/expression-language": "^6.4|^7.0",
  6694. "symfony/finder": "^6.4|^7.0",
  6695. "symfony/form": "^6.4|^7.0",
  6696. "symfony/html-sanitizer": "^6.4|^7.0",
  6697. "symfony/http-foundation": "^6.4|^7.0",
  6698. "symfony/http-kernel": "^6.4|^7.0",
  6699. "symfony/intl": "^6.4|^7.0",
  6700. "symfony/mime": "^6.4|^7.0",
  6701. "symfony/polyfill-intl-icu": "~1.0",
  6702. "symfony/property-info": "^6.4|^7.0",
  6703. "symfony/routing": "^6.4|^7.0",
  6704. "symfony/security-acl": "^2.8|^3.0",
  6705. "symfony/security-core": "^6.4|^7.0",
  6706. "symfony/security-csrf": "^6.4|^7.0",
  6707. "symfony/security-http": "^6.4|^7.0",
  6708. "symfony/serializer": "^6.4.3|^7.0.3",
  6709. "symfony/stopwatch": "^6.4|^7.0",
  6710. "symfony/translation": "^6.4|^7.0",
  6711. "symfony/web-link": "^6.4|^7.0",
  6712. "symfony/workflow": "^6.4|^7.0",
  6713. "symfony/yaml": "^6.4|^7.0",
  6714. "twig/cssinliner-extra": "^2.12|^3",
  6715. "twig/inky-extra": "^2.12|^3",
  6716. "twig/markdown-extra": "^2.12|^3"
  6717. },
  6718. "type": "symfony-bridge",
  6719. "autoload": {
  6720. "psr-4": {
  6721. "Symfony\\Bridge\\Twig\\": ""
  6722. },
  6723. "exclude-from-classmap": [
  6724. "/Tests/"
  6725. ]
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Fabien Potencier",
  6734. "email": "fabien@symfony.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Provides integration for Twig with various Symfony components",
  6742. "homepage": "https://symfony.com",
  6743. "support": {
  6744. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://symfony.com/sponsor",
  6749. "type": "custom"
  6750. },
  6751. {
  6752. "url": "https://github.com/fabpot",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6757. "type": "tidelift"
  6758. }
  6759. ],
  6760. "time": "2024-09-15T06:48:17+00:00"
  6761. },
  6762. {
  6763. "name": "symfony/twig-bundle",
  6764. "version": "v7.1.5",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/symfony/twig-bundle.git",
  6768. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  6773. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "composer-runtime-api": ">=2.1",
  6778. "php": ">=8.2",
  6779. "symfony/config": "^6.4|^7.0",
  6780. "symfony/dependency-injection": "^6.4|^7.0",
  6781. "symfony/http-foundation": "^6.4|^7.0",
  6782. "symfony/http-kernel": "^6.4|^7.0",
  6783. "symfony/twig-bridge": "^6.4|^7.0",
  6784. "twig/twig": "^3.0.4"
  6785. },
  6786. "conflict": {
  6787. "symfony/framework-bundle": "<6.4",
  6788. "symfony/translation": "<6.4"
  6789. },
  6790. "require-dev": {
  6791. "symfony/asset": "^6.4|^7.0",
  6792. "symfony/expression-language": "^6.4|^7.0",
  6793. "symfony/finder": "^6.4|^7.0",
  6794. "symfony/form": "^6.4|^7.0",
  6795. "symfony/framework-bundle": "^6.4|^7.0",
  6796. "symfony/routing": "^6.4|^7.0",
  6797. "symfony/stopwatch": "^6.4|^7.0",
  6798. "symfony/translation": "^6.4|^7.0",
  6799. "symfony/web-link": "^6.4|^7.0",
  6800. "symfony/yaml": "^6.4|^7.0"
  6801. },
  6802. "type": "symfony-bundle",
  6803. "autoload": {
  6804. "psr-4": {
  6805. "Symfony\\Bundle\\TwigBundle\\": ""
  6806. },
  6807. "exclude-from-classmap": [
  6808. "/Tests/"
  6809. ]
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "Fabien Potencier",
  6818. "email": "fabien@symfony.com"
  6819. },
  6820. {
  6821. "name": "Symfony Community",
  6822. "homepage": "https://symfony.com/contributors"
  6823. }
  6824. ],
  6825. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6826. "homepage": "https://symfony.com",
  6827. "support": {
  6828. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  6829. },
  6830. "funding": [
  6831. {
  6832. "url": "https://symfony.com/sponsor",
  6833. "type": "custom"
  6834. },
  6835. {
  6836. "url": "https://github.com/fabpot",
  6837. "type": "github"
  6838. },
  6839. {
  6840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6841. "type": "tidelift"
  6842. }
  6843. ],
  6844. "time": "2024-09-08T12:32:26+00:00"
  6845. },
  6846. {
  6847. "name": "symfony/type-info",
  6848. "version": "v7.1.5",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/symfony/type-info.git",
  6852. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  6857. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  6858. "shasum": ""
  6859. },
  6860. "require": {
  6861. "php": ">=8.2",
  6862. "psr/container": "^1.1|^2.0"
  6863. },
  6864. "conflict": {
  6865. "phpstan/phpdoc-parser": "<1.0",
  6866. "symfony/dependency-injection": "<6.4",
  6867. "symfony/property-info": "<6.4"
  6868. },
  6869. "require-dev": {
  6870. "phpstan/phpdoc-parser": "^1.0",
  6871. "symfony/dependency-injection": "^6.4|^7.0",
  6872. "symfony/property-info": "^6.4|^7.0"
  6873. },
  6874. "type": "library",
  6875. "autoload": {
  6876. "psr-4": {
  6877. "Symfony\\Component\\TypeInfo\\": ""
  6878. },
  6879. "exclude-from-classmap": [
  6880. "/Tests/"
  6881. ]
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Mathias Arlaud",
  6890. "email": "mathias.arlaud@gmail.com"
  6891. },
  6892. {
  6893. "name": "Baptiste LEDUC",
  6894. "email": "baptiste.leduc@gmail.com"
  6895. },
  6896. {
  6897. "name": "Symfony Community",
  6898. "homepage": "https://symfony.com/contributors"
  6899. }
  6900. ],
  6901. "description": "Extracts PHP types information.",
  6902. "homepage": "https://symfony.com",
  6903. "keywords": [
  6904. "PHPStan",
  6905. "phpdoc",
  6906. "symfony",
  6907. "type"
  6908. ],
  6909. "support": {
  6910. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  6911. },
  6912. "funding": [
  6913. {
  6914. "url": "https://symfony.com/sponsor",
  6915. "type": "custom"
  6916. },
  6917. {
  6918. "url": "https://github.com/fabpot",
  6919. "type": "github"
  6920. },
  6921. {
  6922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6923. "type": "tidelift"
  6924. }
  6925. ],
  6926. "time": "2024-09-19T21:48:23+00:00"
  6927. },
  6928. {
  6929. "name": "symfony/ux-turbo",
  6930. "version": "v2.21.0",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/symfony/ux-turbo.git",
  6934. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  6939. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "php": ">=8.1",
  6944. "symfony/stimulus-bundle": "^2.9.1"
  6945. },
  6946. "conflict": {
  6947. "symfony/flex": "<1.13"
  6948. },
  6949. "require-dev": {
  6950. "dbrekelmans/bdi": "dev-main",
  6951. "doctrine/doctrine-bundle": "^2.4.3",
  6952. "doctrine/orm": "^2.8 | 3.0",
  6953. "phpstan/phpstan": "^1.10",
  6954. "symfony/asset-mapper": "^6.4|^7.0",
  6955. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  6956. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6957. "symfony/form": "^5.4|^6.0|^7.0",
  6958. "symfony/framework-bundle": "^6.4|^7.0",
  6959. "symfony/mercure-bundle": "^0.3.7",
  6960. "symfony/messenger": "^5.4|^6.0|^7.0",
  6961. "symfony/panther": "^2.1",
  6962. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6963. "symfony/process": "^5.4|6.3.*|^7.0",
  6964. "symfony/property-access": "^5.4|^6.0|^7.0",
  6965. "symfony/security-core": "^5.4|^6.0|^7.0",
  6966. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6967. "symfony/twig-bundle": "^6.4|^7.0",
  6968. "symfony/ux-twig-component": "^2.21",
  6969. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  6970. },
  6971. "type": "symfony-bundle",
  6972. "extra": {
  6973. "thanks": {
  6974. "name": "symfony/ux",
  6975. "url": "https://github.com/symfony/ux"
  6976. }
  6977. },
  6978. "autoload": {
  6979. "psr-4": {
  6980. "Symfony\\UX\\Turbo\\": "src/"
  6981. }
  6982. },
  6983. "notification-url": "https://packagist.org/downloads/",
  6984. "license": [
  6985. "MIT"
  6986. ],
  6987. "authors": [
  6988. {
  6989. "name": "Kévin Dunglas",
  6990. "email": "kevin@dunglas.fr"
  6991. },
  6992. {
  6993. "name": "Symfony Community",
  6994. "homepage": "https://symfony.com/contributors"
  6995. }
  6996. ],
  6997. "description": "Hotwire Turbo integration for Symfony",
  6998. "homepage": "https://symfony.com",
  6999. "keywords": [
  7000. "hotwire",
  7001. "javascript",
  7002. "mercure",
  7003. "symfony-ux",
  7004. "turbo",
  7005. "turbo-stream"
  7006. ],
  7007. "support": {
  7008. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  7009. },
  7010. "funding": [
  7011. {
  7012. "url": "https://symfony.com/sponsor",
  7013. "type": "custom"
  7014. },
  7015. {
  7016. "url": "https://github.com/fabpot",
  7017. "type": "github"
  7018. },
  7019. {
  7020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7021. "type": "tidelift"
  7022. }
  7023. ],
  7024. "time": "2024-10-21T19:07:02+00:00"
  7025. },
  7026. {
  7027. "name": "symfony/validator",
  7028. "version": "v7.1.5",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://github.com/symfony/validator.git",
  7032. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  7037. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  7038. "shasum": ""
  7039. },
  7040. "require": {
  7041. "php": ">=8.2",
  7042. "symfony/deprecation-contracts": "^2.5|^3",
  7043. "symfony/polyfill-ctype": "~1.8",
  7044. "symfony/polyfill-mbstring": "~1.0",
  7045. "symfony/polyfill-php83": "^1.27",
  7046. "symfony/translation-contracts": "^2.5|^3"
  7047. },
  7048. "conflict": {
  7049. "doctrine/lexer": "<1.1",
  7050. "symfony/dependency-injection": "<6.4",
  7051. "symfony/doctrine-bridge": "<7.0",
  7052. "symfony/expression-language": "<6.4",
  7053. "symfony/http-kernel": "<6.4",
  7054. "symfony/intl": "<6.4",
  7055. "symfony/property-info": "<6.4",
  7056. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7057. "symfony/yaml": "<6.4"
  7058. },
  7059. "require-dev": {
  7060. "egulias/email-validator": "^2.1.10|^3|^4",
  7061. "symfony/cache": "^6.4|^7.0",
  7062. "symfony/config": "^6.4|^7.0",
  7063. "symfony/console": "^6.4|^7.0",
  7064. "symfony/dependency-injection": "^6.4|^7.0",
  7065. "symfony/expression-language": "^6.4|^7.0",
  7066. "symfony/finder": "^6.4|^7.0",
  7067. "symfony/http-client": "^6.4|^7.0",
  7068. "symfony/http-foundation": "^6.4|^7.0",
  7069. "symfony/http-kernel": "^6.4|^7.0",
  7070. "symfony/intl": "^6.4|^7.0",
  7071. "symfony/mime": "^6.4|^7.0",
  7072. "symfony/property-access": "^6.4|^7.0",
  7073. "symfony/property-info": "^6.4|^7.0",
  7074. "symfony/translation": "^6.4.3|^7.0.3",
  7075. "symfony/type-info": "^7.1",
  7076. "symfony/yaml": "^6.4|^7.0"
  7077. },
  7078. "type": "library",
  7079. "autoload": {
  7080. "psr-4": {
  7081. "Symfony\\Component\\Validator\\": ""
  7082. },
  7083. "exclude-from-classmap": [
  7084. "/Tests/",
  7085. "/Resources/bin/"
  7086. ]
  7087. },
  7088. "notification-url": "https://packagist.org/downloads/",
  7089. "license": [
  7090. "MIT"
  7091. ],
  7092. "authors": [
  7093. {
  7094. "name": "Fabien Potencier",
  7095. "email": "fabien@symfony.com"
  7096. },
  7097. {
  7098. "name": "Symfony Community",
  7099. "homepage": "https://symfony.com/contributors"
  7100. }
  7101. ],
  7102. "description": "Provides tools to validate values",
  7103. "homepage": "https://symfony.com",
  7104. "support": {
  7105. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  7106. },
  7107. "funding": [
  7108. {
  7109. "url": "https://symfony.com/sponsor",
  7110. "type": "custom"
  7111. },
  7112. {
  7113. "url": "https://github.com/fabpot",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2024-09-20T08:28:38+00:00"
  7122. },
  7123. {
  7124. "name": "symfony/var-dumper",
  7125. "version": "v7.1.5",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/symfony/var-dumper.git",
  7129. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  7134. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": ">=8.2",
  7139. "symfony/polyfill-mbstring": "~1.0"
  7140. },
  7141. "conflict": {
  7142. "symfony/console": "<6.4"
  7143. },
  7144. "require-dev": {
  7145. "ext-iconv": "*",
  7146. "symfony/console": "^6.4|^7.0",
  7147. "symfony/http-kernel": "^6.4|^7.0",
  7148. "symfony/process": "^6.4|^7.0",
  7149. "symfony/uid": "^6.4|^7.0",
  7150. "twig/twig": "^3.0.4"
  7151. },
  7152. "bin": [
  7153. "Resources/bin/var-dump-server"
  7154. ],
  7155. "type": "library",
  7156. "autoload": {
  7157. "files": [
  7158. "Resources/functions/dump.php"
  7159. ],
  7160. "psr-4": {
  7161. "Symfony\\Component\\VarDumper\\": ""
  7162. },
  7163. "exclude-from-classmap": [
  7164. "/Tests/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Nicolas Grekas",
  7174. "email": "p@tchwork.com"
  7175. },
  7176. {
  7177. "name": "Symfony Community",
  7178. "homepage": "https://symfony.com/contributors"
  7179. }
  7180. ],
  7181. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7182. "homepage": "https://symfony.com",
  7183. "keywords": [
  7184. "debug",
  7185. "dump"
  7186. ],
  7187. "support": {
  7188. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  7189. },
  7190. "funding": [
  7191. {
  7192. "url": "https://symfony.com/sponsor",
  7193. "type": "custom"
  7194. },
  7195. {
  7196. "url": "https://github.com/fabpot",
  7197. "type": "github"
  7198. },
  7199. {
  7200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7201. "type": "tidelift"
  7202. }
  7203. ],
  7204. "time": "2024-09-16T10:07:02+00:00"
  7205. },
  7206. {
  7207. "name": "symfony/var-exporter",
  7208. "version": "v7.1.2",
  7209. "source": {
  7210. "type": "git",
  7211. "url": "https://github.com/symfony/var-exporter.git",
  7212. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7213. },
  7214. "dist": {
  7215. "type": "zip",
  7216. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7217. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7218. "shasum": ""
  7219. },
  7220. "require": {
  7221. "php": ">=8.2"
  7222. },
  7223. "require-dev": {
  7224. "symfony/property-access": "^6.4|^7.0",
  7225. "symfony/serializer": "^6.4|^7.0",
  7226. "symfony/var-dumper": "^6.4|^7.0"
  7227. },
  7228. "type": "library",
  7229. "autoload": {
  7230. "psr-4": {
  7231. "Symfony\\Component\\VarExporter\\": ""
  7232. },
  7233. "exclude-from-classmap": [
  7234. "/Tests/"
  7235. ]
  7236. },
  7237. "notification-url": "https://packagist.org/downloads/",
  7238. "license": [
  7239. "MIT"
  7240. ],
  7241. "authors": [
  7242. {
  7243. "name": "Nicolas Grekas",
  7244. "email": "p@tchwork.com"
  7245. },
  7246. {
  7247. "name": "Symfony Community",
  7248. "homepage": "https://symfony.com/contributors"
  7249. }
  7250. ],
  7251. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7252. "homepage": "https://symfony.com",
  7253. "keywords": [
  7254. "clone",
  7255. "construct",
  7256. "export",
  7257. "hydrate",
  7258. "instantiate",
  7259. "lazy-loading",
  7260. "proxy",
  7261. "serialize"
  7262. ],
  7263. "support": {
  7264. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://symfony.com/sponsor",
  7269. "type": "custom"
  7270. },
  7271. {
  7272. "url": "https://github.com/fabpot",
  7273. "type": "github"
  7274. },
  7275. {
  7276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7277. "type": "tidelift"
  7278. }
  7279. ],
  7280. "time": "2024-06-28T08:00:31+00:00"
  7281. },
  7282. {
  7283. "name": "symfony/web-link",
  7284. "version": "v7.1.1",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/symfony/web-link.git",
  7288. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7293. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": ">=8.2",
  7298. "psr/link": "^1.1|^2.0"
  7299. },
  7300. "conflict": {
  7301. "symfony/http-kernel": "<6.4"
  7302. },
  7303. "provide": {
  7304. "psr/link-implementation": "1.0|2.0"
  7305. },
  7306. "require-dev": {
  7307. "symfony/http-kernel": "^6.4|^7.0"
  7308. },
  7309. "type": "library",
  7310. "autoload": {
  7311. "psr-4": {
  7312. "Symfony\\Component\\WebLink\\": ""
  7313. },
  7314. "exclude-from-classmap": [
  7315. "/Tests/"
  7316. ]
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "MIT"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Kévin Dunglas",
  7325. "email": "dunglas@gmail.com"
  7326. },
  7327. {
  7328. "name": "Symfony Community",
  7329. "homepage": "https://symfony.com/contributors"
  7330. }
  7331. ],
  7332. "description": "Manages links between resources",
  7333. "homepage": "https://symfony.com",
  7334. "keywords": [
  7335. "dns-prefetch",
  7336. "http",
  7337. "http2",
  7338. "link",
  7339. "performance",
  7340. "prefetch",
  7341. "preload",
  7342. "prerender",
  7343. "psr13",
  7344. "push"
  7345. ],
  7346. "support": {
  7347. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://symfony.com/sponsor",
  7352. "type": "custom"
  7353. },
  7354. {
  7355. "url": "https://github.com/fabpot",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7360. "type": "tidelift"
  7361. }
  7362. ],
  7363. "time": "2024-05-31T14:57:53+00:00"
  7364. },
  7365. {
  7366. "name": "symfony/yaml",
  7367. "version": "v7.1.5",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/symfony/yaml.git",
  7371. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  7376. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=8.2",
  7381. "symfony/polyfill-ctype": "^1.8"
  7382. },
  7383. "conflict": {
  7384. "symfony/console": "<6.4"
  7385. },
  7386. "require-dev": {
  7387. "symfony/console": "^6.4|^7.0"
  7388. },
  7389. "bin": [
  7390. "Resources/bin/yaml-lint"
  7391. ],
  7392. "type": "library",
  7393. "autoload": {
  7394. "psr-4": {
  7395. "Symfony\\Component\\Yaml\\": ""
  7396. },
  7397. "exclude-from-classmap": [
  7398. "/Tests/"
  7399. ]
  7400. },
  7401. "notification-url": "https://packagist.org/downloads/",
  7402. "license": [
  7403. "MIT"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Fabien Potencier",
  7408. "email": "fabien@symfony.com"
  7409. },
  7410. {
  7411. "name": "Symfony Community",
  7412. "homepage": "https://symfony.com/contributors"
  7413. }
  7414. ],
  7415. "description": "Loads and dumps YAML files",
  7416. "homepage": "https://symfony.com",
  7417. "support": {
  7418. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  7419. },
  7420. "funding": [
  7421. {
  7422. "url": "https://symfony.com/sponsor",
  7423. "type": "custom"
  7424. },
  7425. {
  7426. "url": "https://github.com/fabpot",
  7427. "type": "github"
  7428. },
  7429. {
  7430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7431. "type": "tidelift"
  7432. }
  7433. ],
  7434. "time": "2024-09-17T12:49:58+00:00"
  7435. },
  7436. {
  7437. "name": "twig/extra-bundle",
  7438. "version": "v3.13.0",
  7439. "source": {
  7440. "type": "git",
  7441. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7442. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  7443. },
  7444. "dist": {
  7445. "type": "zip",
  7446. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7447. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7448. "shasum": ""
  7449. },
  7450. "require": {
  7451. "php": ">=8.0.2",
  7452. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7453. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7454. "twig/twig": "^3.0|^4.0"
  7455. },
  7456. "require-dev": {
  7457. "league/commonmark": "^1.0|^2.0",
  7458. "symfony/phpunit-bridge": "^6.4|^7.0",
  7459. "twig/cache-extra": "^3.0",
  7460. "twig/cssinliner-extra": "^3.0",
  7461. "twig/html-extra": "^3.0",
  7462. "twig/inky-extra": "^3.0",
  7463. "twig/intl-extra": "^3.0",
  7464. "twig/markdown-extra": "^3.0",
  7465. "twig/string-extra": "^3.0"
  7466. },
  7467. "type": "symfony-bundle",
  7468. "autoload": {
  7469. "psr-4": {
  7470. "Twig\\Extra\\TwigExtraBundle\\": ""
  7471. },
  7472. "exclude-from-classmap": [
  7473. "/Tests/"
  7474. ]
  7475. },
  7476. "notification-url": "https://packagist.org/downloads/",
  7477. "license": [
  7478. "MIT"
  7479. ],
  7480. "authors": [
  7481. {
  7482. "name": "Fabien Potencier",
  7483. "email": "fabien@symfony.com",
  7484. "homepage": "http://fabien.potencier.org",
  7485. "role": "Lead Developer"
  7486. }
  7487. ],
  7488. "description": "A Symfony bundle for extra Twig extensions",
  7489. "homepage": "https://twig.symfony.com",
  7490. "keywords": [
  7491. "bundle",
  7492. "extra",
  7493. "twig"
  7494. ],
  7495. "support": {
  7496. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  7497. },
  7498. "funding": [
  7499. {
  7500. "url": "https://github.com/fabpot",
  7501. "type": "github"
  7502. },
  7503. {
  7504. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7505. "type": "tidelift"
  7506. }
  7507. ],
  7508. "time": "2024-09-01T20:39:12+00:00"
  7509. },
  7510. {
  7511. "name": "twig/twig",
  7512. "version": "v3.14.0",
  7513. "source": {
  7514. "type": "git",
  7515. "url": "https://github.com/twigphp/Twig.git",
  7516. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  7517. },
  7518. "dist": {
  7519. "type": "zip",
  7520. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  7521. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  7522. "shasum": ""
  7523. },
  7524. "require": {
  7525. "php": ">=8.0.2",
  7526. "symfony/deprecation-contracts": "^2.5|^3",
  7527. "symfony/polyfill-ctype": "^1.8",
  7528. "symfony/polyfill-mbstring": "^1.3",
  7529. "symfony/polyfill-php81": "^1.29"
  7530. },
  7531. "require-dev": {
  7532. "psr/container": "^1.0|^2.0",
  7533. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  7534. },
  7535. "type": "library",
  7536. "autoload": {
  7537. "files": [
  7538. "src/Resources/core.php",
  7539. "src/Resources/debug.php",
  7540. "src/Resources/escaper.php",
  7541. "src/Resources/string_loader.php"
  7542. ],
  7543. "psr-4": {
  7544. "Twig\\": "src/"
  7545. }
  7546. },
  7547. "notification-url": "https://packagist.org/downloads/",
  7548. "license": [
  7549. "BSD-3-Clause"
  7550. ],
  7551. "authors": [
  7552. {
  7553. "name": "Fabien Potencier",
  7554. "email": "fabien@symfony.com",
  7555. "homepage": "http://fabien.potencier.org",
  7556. "role": "Lead Developer"
  7557. },
  7558. {
  7559. "name": "Twig Team",
  7560. "role": "Contributors"
  7561. },
  7562. {
  7563. "name": "Armin Ronacher",
  7564. "email": "armin.ronacher@active-4.com",
  7565. "role": "Project Founder"
  7566. }
  7567. ],
  7568. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7569. "homepage": "https://twig.symfony.com",
  7570. "keywords": [
  7571. "templating"
  7572. ],
  7573. "support": {
  7574. "issues": "https://github.com/twigphp/Twig/issues",
  7575. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://github.com/fabpot",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2024-09-09T17:55:12+00:00"
  7588. },
  7589. {
  7590. "name": "webmozart/assert",
  7591. "version": "1.11.0",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/webmozarts/assert.git",
  7595. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7600. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "ext-ctype": "*",
  7605. "php": "^7.2 || ^8.0"
  7606. },
  7607. "conflict": {
  7608. "phpstan/phpstan": "<0.12.20",
  7609. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7610. },
  7611. "require-dev": {
  7612. "phpunit/phpunit": "^8.5.13"
  7613. },
  7614. "type": "library",
  7615. "extra": {
  7616. "branch-alias": {
  7617. "dev-master": "1.10-dev"
  7618. }
  7619. },
  7620. "autoload": {
  7621. "psr-4": {
  7622. "Webmozart\\Assert\\": "src/"
  7623. }
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "MIT"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Bernhard Schussek",
  7632. "email": "bschussek@gmail.com"
  7633. }
  7634. ],
  7635. "description": "Assertions to validate method input/output with nice error messages.",
  7636. "keywords": [
  7637. "assert",
  7638. "check",
  7639. "validate"
  7640. ],
  7641. "support": {
  7642. "issues": "https://github.com/webmozarts/assert/issues",
  7643. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7644. },
  7645. "time": "2022-06-03T18:03:27+00:00"
  7646. }
  7647. ],
  7648. "packages-dev": [
  7649. {
  7650. "name": "fakerphp/faker",
  7651. "version": "v1.23.1",
  7652. "source": {
  7653. "type": "git",
  7654. "url": "https://github.com/FakerPHP/Faker.git",
  7655. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7656. },
  7657. "dist": {
  7658. "type": "zip",
  7659. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7660. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7661. "shasum": ""
  7662. },
  7663. "require": {
  7664. "php": "^7.4 || ^8.0",
  7665. "psr/container": "^1.0 || ^2.0",
  7666. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7667. },
  7668. "conflict": {
  7669. "fzaninotto/faker": "*"
  7670. },
  7671. "require-dev": {
  7672. "bamarni/composer-bin-plugin": "^1.4.1",
  7673. "doctrine/persistence": "^1.3 || ^2.0",
  7674. "ext-intl": "*",
  7675. "phpunit/phpunit": "^9.5.26",
  7676. "symfony/phpunit-bridge": "^5.4.16"
  7677. },
  7678. "suggest": {
  7679. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7680. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7681. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7682. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7683. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7684. },
  7685. "type": "library",
  7686. "autoload": {
  7687. "psr-4": {
  7688. "Faker\\": "src/Faker/"
  7689. }
  7690. },
  7691. "notification-url": "https://packagist.org/downloads/",
  7692. "license": [
  7693. "MIT"
  7694. ],
  7695. "authors": [
  7696. {
  7697. "name": "François Zaninotto"
  7698. }
  7699. ],
  7700. "description": "Faker is a PHP library that generates fake data for you.",
  7701. "keywords": [
  7702. "data",
  7703. "faker",
  7704. "fixtures"
  7705. ],
  7706. "support": {
  7707. "issues": "https://github.com/FakerPHP/Faker/issues",
  7708. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7709. },
  7710. "time": "2024-01-02T13:46:09+00:00"
  7711. },
  7712. {
  7713. "name": "masterminds/html5",
  7714. "version": "2.9.0",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/Masterminds/html5-php.git",
  7718. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7723. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7724. "shasum": ""
  7725. },
  7726. "require": {
  7727. "ext-dom": "*",
  7728. "php": ">=5.3.0"
  7729. },
  7730. "require-dev": {
  7731. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  7732. },
  7733. "type": "library",
  7734. "extra": {
  7735. "branch-alias": {
  7736. "dev-master": "2.7-dev"
  7737. }
  7738. },
  7739. "autoload": {
  7740. "psr-4": {
  7741. "Masterminds\\": "src"
  7742. }
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Matt Butcher",
  7751. "email": "technosophos@gmail.com"
  7752. },
  7753. {
  7754. "name": "Matt Farina",
  7755. "email": "matt@mattfarina.com"
  7756. },
  7757. {
  7758. "name": "Asmir Mustafic",
  7759. "email": "goetas@gmail.com"
  7760. }
  7761. ],
  7762. "description": "An HTML5 parser and serializer.",
  7763. "homepage": "http://masterminds.github.io/html5-php",
  7764. "keywords": [
  7765. "HTML5",
  7766. "dom",
  7767. "html",
  7768. "parser",
  7769. "querypath",
  7770. "serializer",
  7771. "xml"
  7772. ],
  7773. "support": {
  7774. "issues": "https://github.com/Masterminds/html5-php/issues",
  7775. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  7776. },
  7777. "time": "2024-03-31T07:05:07+00:00"
  7778. },
  7779. {
  7780. "name": "myclabs/deep-copy",
  7781. "version": "1.12.0",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/myclabs/DeepCopy.git",
  7785. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7790. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": "^7.1 || ^8.0"
  7795. },
  7796. "conflict": {
  7797. "doctrine/collections": "<1.6.8",
  7798. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7799. },
  7800. "require-dev": {
  7801. "doctrine/collections": "^1.6.8",
  7802. "doctrine/common": "^2.13.3 || ^3.2.2",
  7803. "phpspec/prophecy": "^1.10",
  7804. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7805. },
  7806. "type": "library",
  7807. "autoload": {
  7808. "files": [
  7809. "src/DeepCopy/deep_copy.php"
  7810. ],
  7811. "psr-4": {
  7812. "DeepCopy\\": "src/DeepCopy/"
  7813. }
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "MIT"
  7818. ],
  7819. "description": "Create deep copies (clones) of your objects",
  7820. "keywords": [
  7821. "clone",
  7822. "copy",
  7823. "duplicate",
  7824. "object",
  7825. "object graph"
  7826. ],
  7827. "support": {
  7828. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7829. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  7830. },
  7831. "funding": [
  7832. {
  7833. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7834. "type": "tidelift"
  7835. }
  7836. ],
  7837. "time": "2024-06-12T14:39:25+00:00"
  7838. },
  7839. {
  7840. "name": "nikic/php-parser",
  7841. "version": "v5.3.1",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://github.com/nikic/PHP-Parser.git",
  7845. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  7850. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  7851. "shasum": ""
  7852. },
  7853. "require": {
  7854. "ext-ctype": "*",
  7855. "ext-json": "*",
  7856. "ext-tokenizer": "*",
  7857. "php": ">=7.4"
  7858. },
  7859. "require-dev": {
  7860. "ircmaxell/php-yacc": "^0.0.7",
  7861. "phpunit/phpunit": "^9.0"
  7862. },
  7863. "bin": [
  7864. "bin/php-parse"
  7865. ],
  7866. "type": "library",
  7867. "extra": {
  7868. "branch-alias": {
  7869. "dev-master": "5.0-dev"
  7870. }
  7871. },
  7872. "autoload": {
  7873. "psr-4": {
  7874. "PhpParser\\": "lib/PhpParser"
  7875. }
  7876. },
  7877. "notification-url": "https://packagist.org/downloads/",
  7878. "license": [
  7879. "BSD-3-Clause"
  7880. ],
  7881. "authors": [
  7882. {
  7883. "name": "Nikita Popov"
  7884. }
  7885. ],
  7886. "description": "A PHP parser written in PHP",
  7887. "keywords": [
  7888. "parser",
  7889. "php"
  7890. ],
  7891. "support": {
  7892. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7893. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  7894. },
  7895. "time": "2024-10-08T18:51:32+00:00"
  7896. },
  7897. {
  7898. "name": "phar-io/manifest",
  7899. "version": "2.0.4",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/phar-io/manifest.git",
  7903. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7908. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "ext-dom": "*",
  7913. "ext-libxml": "*",
  7914. "ext-phar": "*",
  7915. "ext-xmlwriter": "*",
  7916. "phar-io/version": "^3.0.1",
  7917. "php": "^7.2 || ^8.0"
  7918. },
  7919. "type": "library",
  7920. "extra": {
  7921. "branch-alias": {
  7922. "dev-master": "2.0.x-dev"
  7923. }
  7924. },
  7925. "autoload": {
  7926. "classmap": [
  7927. "src/"
  7928. ]
  7929. },
  7930. "notification-url": "https://packagist.org/downloads/",
  7931. "license": [
  7932. "BSD-3-Clause"
  7933. ],
  7934. "authors": [
  7935. {
  7936. "name": "Arne Blankerts",
  7937. "email": "arne@blankerts.de",
  7938. "role": "Developer"
  7939. },
  7940. {
  7941. "name": "Sebastian Heuer",
  7942. "email": "sebastian@phpeople.de",
  7943. "role": "Developer"
  7944. },
  7945. {
  7946. "name": "Sebastian Bergmann",
  7947. "email": "sebastian@phpunit.de",
  7948. "role": "Developer"
  7949. }
  7950. ],
  7951. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7952. "support": {
  7953. "issues": "https://github.com/phar-io/manifest/issues",
  7954. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7955. },
  7956. "funding": [
  7957. {
  7958. "url": "https://github.com/theseer",
  7959. "type": "github"
  7960. }
  7961. ],
  7962. "time": "2024-03-03T12:33:53+00:00"
  7963. },
  7964. {
  7965. "name": "phar-io/version",
  7966. "version": "3.2.1",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/phar-io/version.git",
  7970. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7975. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "php": "^7.2 || ^8.0"
  7980. },
  7981. "type": "library",
  7982. "autoload": {
  7983. "classmap": [
  7984. "src/"
  7985. ]
  7986. },
  7987. "notification-url": "https://packagist.org/downloads/",
  7988. "license": [
  7989. "BSD-3-Clause"
  7990. ],
  7991. "authors": [
  7992. {
  7993. "name": "Arne Blankerts",
  7994. "email": "arne@blankerts.de",
  7995. "role": "Developer"
  7996. },
  7997. {
  7998. "name": "Sebastian Heuer",
  7999. "email": "sebastian@phpeople.de",
  8000. "role": "Developer"
  8001. },
  8002. {
  8003. "name": "Sebastian Bergmann",
  8004. "email": "sebastian@phpunit.de",
  8005. "role": "Developer"
  8006. }
  8007. ],
  8008. "description": "Library for handling version information and constraints",
  8009. "support": {
  8010. "issues": "https://github.com/phar-io/version/issues",
  8011. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8012. },
  8013. "time": "2022-02-21T01:04:05+00:00"
  8014. },
  8015. {
  8016. "name": "phpunit/php-code-coverage",
  8017. "version": "9.2.32",
  8018. "source": {
  8019. "type": "git",
  8020. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8021. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8022. },
  8023. "dist": {
  8024. "type": "zip",
  8025. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8026. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8027. "shasum": ""
  8028. },
  8029. "require": {
  8030. "ext-dom": "*",
  8031. "ext-libxml": "*",
  8032. "ext-xmlwriter": "*",
  8033. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8034. "php": ">=7.3",
  8035. "phpunit/php-file-iterator": "^3.0.6",
  8036. "phpunit/php-text-template": "^2.0.4",
  8037. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8038. "sebastian/complexity": "^2.0.3",
  8039. "sebastian/environment": "^5.1.5",
  8040. "sebastian/lines-of-code": "^1.0.4",
  8041. "sebastian/version": "^3.0.2",
  8042. "theseer/tokenizer": "^1.2.3"
  8043. },
  8044. "require-dev": {
  8045. "phpunit/phpunit": "^9.6"
  8046. },
  8047. "suggest": {
  8048. "ext-pcov": "PHP extension that provides line coverage",
  8049. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8050. },
  8051. "type": "library",
  8052. "extra": {
  8053. "branch-alias": {
  8054. "dev-main": "9.2.x-dev"
  8055. }
  8056. },
  8057. "autoload": {
  8058. "classmap": [
  8059. "src/"
  8060. ]
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "BSD-3-Clause"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Sebastian Bergmann",
  8069. "email": "sebastian@phpunit.de",
  8070. "role": "lead"
  8071. }
  8072. ],
  8073. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8074. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8075. "keywords": [
  8076. "coverage",
  8077. "testing",
  8078. "xunit"
  8079. ],
  8080. "support": {
  8081. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8082. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8083. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8084. },
  8085. "funding": [
  8086. {
  8087. "url": "https://github.com/sebastianbergmann",
  8088. "type": "github"
  8089. }
  8090. ],
  8091. "time": "2024-08-22T04:23:01+00:00"
  8092. },
  8093. {
  8094. "name": "phpunit/php-file-iterator",
  8095. "version": "3.0.6",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8099. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8104. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "php": ">=7.3"
  8109. },
  8110. "require-dev": {
  8111. "phpunit/phpunit": "^9.3"
  8112. },
  8113. "type": "library",
  8114. "extra": {
  8115. "branch-alias": {
  8116. "dev-master": "3.0-dev"
  8117. }
  8118. },
  8119. "autoload": {
  8120. "classmap": [
  8121. "src/"
  8122. ]
  8123. },
  8124. "notification-url": "https://packagist.org/downloads/",
  8125. "license": [
  8126. "BSD-3-Clause"
  8127. ],
  8128. "authors": [
  8129. {
  8130. "name": "Sebastian Bergmann",
  8131. "email": "sebastian@phpunit.de",
  8132. "role": "lead"
  8133. }
  8134. ],
  8135. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8136. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8137. "keywords": [
  8138. "filesystem",
  8139. "iterator"
  8140. ],
  8141. "support": {
  8142. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8143. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8144. },
  8145. "funding": [
  8146. {
  8147. "url": "https://github.com/sebastianbergmann",
  8148. "type": "github"
  8149. }
  8150. ],
  8151. "time": "2021-12-02T12:48:52+00:00"
  8152. },
  8153. {
  8154. "name": "phpunit/php-invoker",
  8155. "version": "3.1.1",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8159. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8164. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=7.3"
  8169. },
  8170. "require-dev": {
  8171. "ext-pcntl": "*",
  8172. "phpunit/phpunit": "^9.3"
  8173. },
  8174. "suggest": {
  8175. "ext-pcntl": "*"
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-master": "3.1-dev"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "classmap": [
  8185. "src/"
  8186. ]
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "BSD-3-Clause"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Sebastian Bergmann",
  8195. "email": "sebastian@phpunit.de",
  8196. "role": "lead"
  8197. }
  8198. ],
  8199. "description": "Invoke callables with a timeout",
  8200. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8201. "keywords": [
  8202. "process"
  8203. ],
  8204. "support": {
  8205. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8206. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8207. },
  8208. "funding": [
  8209. {
  8210. "url": "https://github.com/sebastianbergmann",
  8211. "type": "github"
  8212. }
  8213. ],
  8214. "time": "2020-09-28T05:58:55+00:00"
  8215. },
  8216. {
  8217. "name": "phpunit/php-text-template",
  8218. "version": "2.0.4",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8222. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8227. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "php": ">=7.3"
  8232. },
  8233. "require-dev": {
  8234. "phpunit/phpunit": "^9.3"
  8235. },
  8236. "type": "library",
  8237. "extra": {
  8238. "branch-alias": {
  8239. "dev-master": "2.0-dev"
  8240. }
  8241. },
  8242. "autoload": {
  8243. "classmap": [
  8244. "src/"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "BSD-3-Clause"
  8250. ],
  8251. "authors": [
  8252. {
  8253. "name": "Sebastian Bergmann",
  8254. "email": "sebastian@phpunit.de",
  8255. "role": "lead"
  8256. }
  8257. ],
  8258. "description": "Simple template engine.",
  8259. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8260. "keywords": [
  8261. "template"
  8262. ],
  8263. "support": {
  8264. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8265. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8266. },
  8267. "funding": [
  8268. {
  8269. "url": "https://github.com/sebastianbergmann",
  8270. "type": "github"
  8271. }
  8272. ],
  8273. "time": "2020-10-26T05:33:50+00:00"
  8274. },
  8275. {
  8276. "name": "phpunit/php-timer",
  8277. "version": "5.0.3",
  8278. "source": {
  8279. "type": "git",
  8280. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8281. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8282. },
  8283. "dist": {
  8284. "type": "zip",
  8285. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8286. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8287. "shasum": ""
  8288. },
  8289. "require": {
  8290. "php": ">=7.3"
  8291. },
  8292. "require-dev": {
  8293. "phpunit/phpunit": "^9.3"
  8294. },
  8295. "type": "library",
  8296. "extra": {
  8297. "branch-alias": {
  8298. "dev-master": "5.0-dev"
  8299. }
  8300. },
  8301. "autoload": {
  8302. "classmap": [
  8303. "src/"
  8304. ]
  8305. },
  8306. "notification-url": "https://packagist.org/downloads/",
  8307. "license": [
  8308. "BSD-3-Clause"
  8309. ],
  8310. "authors": [
  8311. {
  8312. "name": "Sebastian Bergmann",
  8313. "email": "sebastian@phpunit.de",
  8314. "role": "lead"
  8315. }
  8316. ],
  8317. "description": "Utility class for timing",
  8318. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8319. "keywords": [
  8320. "timer"
  8321. ],
  8322. "support": {
  8323. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8324. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8325. },
  8326. "funding": [
  8327. {
  8328. "url": "https://github.com/sebastianbergmann",
  8329. "type": "github"
  8330. }
  8331. ],
  8332. "time": "2020-10-26T13:16:10+00:00"
  8333. },
  8334. {
  8335. "name": "phpunit/phpunit",
  8336. "version": "9.6.21",
  8337. "source": {
  8338. "type": "git",
  8339. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8340. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  8341. },
  8342. "dist": {
  8343. "type": "zip",
  8344. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8345. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8346. "shasum": ""
  8347. },
  8348. "require": {
  8349. "doctrine/instantiator": "^1.5.0 || ^2",
  8350. "ext-dom": "*",
  8351. "ext-json": "*",
  8352. "ext-libxml": "*",
  8353. "ext-mbstring": "*",
  8354. "ext-xml": "*",
  8355. "ext-xmlwriter": "*",
  8356. "myclabs/deep-copy": "^1.12.0",
  8357. "phar-io/manifest": "^2.0.4",
  8358. "phar-io/version": "^3.2.1",
  8359. "php": ">=7.3",
  8360. "phpunit/php-code-coverage": "^9.2.32",
  8361. "phpunit/php-file-iterator": "^3.0.6",
  8362. "phpunit/php-invoker": "^3.1.1",
  8363. "phpunit/php-text-template": "^2.0.4",
  8364. "phpunit/php-timer": "^5.0.3",
  8365. "sebastian/cli-parser": "^1.0.2",
  8366. "sebastian/code-unit": "^1.0.8",
  8367. "sebastian/comparator": "^4.0.8",
  8368. "sebastian/diff": "^4.0.6",
  8369. "sebastian/environment": "^5.1.5",
  8370. "sebastian/exporter": "^4.0.6",
  8371. "sebastian/global-state": "^5.0.7",
  8372. "sebastian/object-enumerator": "^4.0.4",
  8373. "sebastian/resource-operations": "^3.0.4",
  8374. "sebastian/type": "^3.2.1",
  8375. "sebastian/version": "^3.0.2"
  8376. },
  8377. "suggest": {
  8378. "ext-soap": "To be able to generate mocks based on WSDL files",
  8379. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8380. },
  8381. "bin": [
  8382. "phpunit"
  8383. ],
  8384. "type": "library",
  8385. "extra": {
  8386. "branch-alias": {
  8387. "dev-master": "9.6-dev"
  8388. }
  8389. },
  8390. "autoload": {
  8391. "files": [
  8392. "src/Framework/Assert/Functions.php"
  8393. ],
  8394. "classmap": [
  8395. "src/"
  8396. ]
  8397. },
  8398. "notification-url": "https://packagist.org/downloads/",
  8399. "license": [
  8400. "BSD-3-Clause"
  8401. ],
  8402. "authors": [
  8403. {
  8404. "name": "Sebastian Bergmann",
  8405. "email": "sebastian@phpunit.de",
  8406. "role": "lead"
  8407. }
  8408. ],
  8409. "description": "The PHP Unit Testing framework.",
  8410. "homepage": "https://phpunit.de/",
  8411. "keywords": [
  8412. "phpunit",
  8413. "testing",
  8414. "xunit"
  8415. ],
  8416. "support": {
  8417. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8418. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8419. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  8420. },
  8421. "funding": [
  8422. {
  8423. "url": "https://phpunit.de/sponsors.html",
  8424. "type": "custom"
  8425. },
  8426. {
  8427. "url": "https://github.com/sebastianbergmann",
  8428. "type": "github"
  8429. },
  8430. {
  8431. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8432. "type": "tidelift"
  8433. }
  8434. ],
  8435. "time": "2024-09-19T10:50:18+00:00"
  8436. },
  8437. {
  8438. "name": "sebastian/cli-parser",
  8439. "version": "1.0.2",
  8440. "source": {
  8441. "type": "git",
  8442. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8443. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8444. },
  8445. "dist": {
  8446. "type": "zip",
  8447. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8448. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8449. "shasum": ""
  8450. },
  8451. "require": {
  8452. "php": ">=7.3"
  8453. },
  8454. "require-dev": {
  8455. "phpunit/phpunit": "^9.3"
  8456. },
  8457. "type": "library",
  8458. "extra": {
  8459. "branch-alias": {
  8460. "dev-master": "1.0-dev"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "classmap": [
  8465. "src/"
  8466. ]
  8467. },
  8468. "notification-url": "https://packagist.org/downloads/",
  8469. "license": [
  8470. "BSD-3-Clause"
  8471. ],
  8472. "authors": [
  8473. {
  8474. "name": "Sebastian Bergmann",
  8475. "email": "sebastian@phpunit.de",
  8476. "role": "lead"
  8477. }
  8478. ],
  8479. "description": "Library for parsing CLI options",
  8480. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8481. "support": {
  8482. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8483. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8484. },
  8485. "funding": [
  8486. {
  8487. "url": "https://github.com/sebastianbergmann",
  8488. "type": "github"
  8489. }
  8490. ],
  8491. "time": "2024-03-02T06:27:43+00:00"
  8492. },
  8493. {
  8494. "name": "sebastian/code-unit",
  8495. "version": "1.0.8",
  8496. "source": {
  8497. "type": "git",
  8498. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8499. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8500. },
  8501. "dist": {
  8502. "type": "zip",
  8503. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8504. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8505. "shasum": ""
  8506. },
  8507. "require": {
  8508. "php": ">=7.3"
  8509. },
  8510. "require-dev": {
  8511. "phpunit/phpunit": "^9.3"
  8512. },
  8513. "type": "library",
  8514. "extra": {
  8515. "branch-alias": {
  8516. "dev-master": "1.0-dev"
  8517. }
  8518. },
  8519. "autoload": {
  8520. "classmap": [
  8521. "src/"
  8522. ]
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "BSD-3-Clause"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Sebastian Bergmann",
  8531. "email": "sebastian@phpunit.de",
  8532. "role": "lead"
  8533. }
  8534. ],
  8535. "description": "Collection of value objects that represent the PHP code units",
  8536. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8537. "support": {
  8538. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8539. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8540. },
  8541. "funding": [
  8542. {
  8543. "url": "https://github.com/sebastianbergmann",
  8544. "type": "github"
  8545. }
  8546. ],
  8547. "time": "2020-10-26T13:08:54+00:00"
  8548. },
  8549. {
  8550. "name": "sebastian/code-unit-reverse-lookup",
  8551. "version": "2.0.3",
  8552. "source": {
  8553. "type": "git",
  8554. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8555. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8556. },
  8557. "dist": {
  8558. "type": "zip",
  8559. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8560. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8561. "shasum": ""
  8562. },
  8563. "require": {
  8564. "php": ">=7.3"
  8565. },
  8566. "require-dev": {
  8567. "phpunit/phpunit": "^9.3"
  8568. },
  8569. "type": "library",
  8570. "extra": {
  8571. "branch-alias": {
  8572. "dev-master": "2.0-dev"
  8573. }
  8574. },
  8575. "autoload": {
  8576. "classmap": [
  8577. "src/"
  8578. ]
  8579. },
  8580. "notification-url": "https://packagist.org/downloads/",
  8581. "license": [
  8582. "BSD-3-Clause"
  8583. ],
  8584. "authors": [
  8585. {
  8586. "name": "Sebastian Bergmann",
  8587. "email": "sebastian@phpunit.de"
  8588. }
  8589. ],
  8590. "description": "Looks up which function or method a line of code belongs to",
  8591. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8592. "support": {
  8593. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8594. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8595. },
  8596. "funding": [
  8597. {
  8598. "url": "https://github.com/sebastianbergmann",
  8599. "type": "github"
  8600. }
  8601. ],
  8602. "time": "2020-09-28T05:30:19+00:00"
  8603. },
  8604. {
  8605. "name": "sebastian/comparator",
  8606. "version": "4.0.8",
  8607. "source": {
  8608. "type": "git",
  8609. "url": "https://github.com/sebastianbergmann/comparator.git",
  8610. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8611. },
  8612. "dist": {
  8613. "type": "zip",
  8614. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8615. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8616. "shasum": ""
  8617. },
  8618. "require": {
  8619. "php": ">=7.3",
  8620. "sebastian/diff": "^4.0",
  8621. "sebastian/exporter": "^4.0"
  8622. },
  8623. "require-dev": {
  8624. "phpunit/phpunit": "^9.3"
  8625. },
  8626. "type": "library",
  8627. "extra": {
  8628. "branch-alias": {
  8629. "dev-master": "4.0-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. },
  8646. {
  8647. "name": "Jeff Welch",
  8648. "email": "whatthejeff@gmail.com"
  8649. },
  8650. {
  8651. "name": "Volker Dusch",
  8652. "email": "github@wallbash.com"
  8653. },
  8654. {
  8655. "name": "Bernhard Schussek",
  8656. "email": "bschussek@2bepublished.at"
  8657. }
  8658. ],
  8659. "description": "Provides the functionality to compare PHP values for equality",
  8660. "homepage": "https://github.com/sebastianbergmann/comparator",
  8661. "keywords": [
  8662. "comparator",
  8663. "compare",
  8664. "equality"
  8665. ],
  8666. "support": {
  8667. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8668. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8669. },
  8670. "funding": [
  8671. {
  8672. "url": "https://github.com/sebastianbergmann",
  8673. "type": "github"
  8674. }
  8675. ],
  8676. "time": "2022-09-14T12:41:17+00:00"
  8677. },
  8678. {
  8679. "name": "sebastian/complexity",
  8680. "version": "2.0.3",
  8681. "source": {
  8682. "type": "git",
  8683. "url": "https://github.com/sebastianbergmann/complexity.git",
  8684. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  8685. },
  8686. "dist": {
  8687. "type": "zip",
  8688. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  8689. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  8690. "shasum": ""
  8691. },
  8692. "require": {
  8693. "nikic/php-parser": "^4.18 || ^5.0",
  8694. "php": ">=7.3"
  8695. },
  8696. "require-dev": {
  8697. "phpunit/phpunit": "^9.3"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-master": "2.0-dev"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "classmap": [
  8707. "src/"
  8708. ]
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "BSD-3-Clause"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Sebastian Bergmann",
  8717. "email": "sebastian@phpunit.de",
  8718. "role": "lead"
  8719. }
  8720. ],
  8721. "description": "Library for calculating the complexity of PHP code units",
  8722. "homepage": "https://github.com/sebastianbergmann/complexity",
  8723. "support": {
  8724. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8725. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  8726. },
  8727. "funding": [
  8728. {
  8729. "url": "https://github.com/sebastianbergmann",
  8730. "type": "github"
  8731. }
  8732. ],
  8733. "time": "2023-12-22T06:19:30+00:00"
  8734. },
  8735. {
  8736. "name": "sebastian/diff",
  8737. "version": "4.0.6",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/sebastianbergmann/diff.git",
  8741. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8746. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "php": ">=7.3"
  8751. },
  8752. "require-dev": {
  8753. "phpunit/phpunit": "^9.3",
  8754. "symfony/process": "^4.2 || ^5"
  8755. },
  8756. "type": "library",
  8757. "extra": {
  8758. "branch-alias": {
  8759. "dev-master": "4.0-dev"
  8760. }
  8761. },
  8762. "autoload": {
  8763. "classmap": [
  8764. "src/"
  8765. ]
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "BSD-3-Clause"
  8770. ],
  8771. "authors": [
  8772. {
  8773. "name": "Sebastian Bergmann",
  8774. "email": "sebastian@phpunit.de"
  8775. },
  8776. {
  8777. "name": "Kore Nordmann",
  8778. "email": "mail@kore-nordmann.de"
  8779. }
  8780. ],
  8781. "description": "Diff implementation",
  8782. "homepage": "https://github.com/sebastianbergmann/diff",
  8783. "keywords": [
  8784. "diff",
  8785. "udiff",
  8786. "unidiff",
  8787. "unified diff"
  8788. ],
  8789. "support": {
  8790. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8791. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  8792. },
  8793. "funding": [
  8794. {
  8795. "url": "https://github.com/sebastianbergmann",
  8796. "type": "github"
  8797. }
  8798. ],
  8799. "time": "2024-03-02T06:30:58+00:00"
  8800. },
  8801. {
  8802. "name": "sebastian/environment",
  8803. "version": "5.1.5",
  8804. "source": {
  8805. "type": "git",
  8806. "url": "https://github.com/sebastianbergmann/environment.git",
  8807. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  8808. },
  8809. "dist": {
  8810. "type": "zip",
  8811. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8812. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8813. "shasum": ""
  8814. },
  8815. "require": {
  8816. "php": ">=7.3"
  8817. },
  8818. "require-dev": {
  8819. "phpunit/phpunit": "^9.3"
  8820. },
  8821. "suggest": {
  8822. "ext-posix": "*"
  8823. },
  8824. "type": "library",
  8825. "extra": {
  8826. "branch-alias": {
  8827. "dev-master": "5.1-dev"
  8828. }
  8829. },
  8830. "autoload": {
  8831. "classmap": [
  8832. "src/"
  8833. ]
  8834. },
  8835. "notification-url": "https://packagist.org/downloads/",
  8836. "license": [
  8837. "BSD-3-Clause"
  8838. ],
  8839. "authors": [
  8840. {
  8841. "name": "Sebastian Bergmann",
  8842. "email": "sebastian@phpunit.de"
  8843. }
  8844. ],
  8845. "description": "Provides functionality to handle HHVM/PHP environments",
  8846. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8847. "keywords": [
  8848. "Xdebug",
  8849. "environment",
  8850. "hhvm"
  8851. ],
  8852. "support": {
  8853. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8854. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  8855. },
  8856. "funding": [
  8857. {
  8858. "url": "https://github.com/sebastianbergmann",
  8859. "type": "github"
  8860. }
  8861. ],
  8862. "time": "2023-02-03T06:03:51+00:00"
  8863. },
  8864. {
  8865. "name": "sebastian/exporter",
  8866. "version": "4.0.6",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/sebastianbergmann/exporter.git",
  8870. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  8875. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": ">=7.3",
  8880. "sebastian/recursion-context": "^4.0"
  8881. },
  8882. "require-dev": {
  8883. "ext-mbstring": "*",
  8884. "phpunit/phpunit": "^9.3"
  8885. },
  8886. "type": "library",
  8887. "extra": {
  8888. "branch-alias": {
  8889. "dev-master": "4.0-dev"
  8890. }
  8891. },
  8892. "autoload": {
  8893. "classmap": [
  8894. "src/"
  8895. ]
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "BSD-3-Clause"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Sebastian Bergmann",
  8904. "email": "sebastian@phpunit.de"
  8905. },
  8906. {
  8907. "name": "Jeff Welch",
  8908. "email": "whatthejeff@gmail.com"
  8909. },
  8910. {
  8911. "name": "Volker Dusch",
  8912. "email": "github@wallbash.com"
  8913. },
  8914. {
  8915. "name": "Adam Harvey",
  8916. "email": "aharvey@php.net"
  8917. },
  8918. {
  8919. "name": "Bernhard Schussek",
  8920. "email": "bschussek@gmail.com"
  8921. }
  8922. ],
  8923. "description": "Provides the functionality to export PHP variables for visualization",
  8924. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8925. "keywords": [
  8926. "export",
  8927. "exporter"
  8928. ],
  8929. "support": {
  8930. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8931. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  8932. },
  8933. "funding": [
  8934. {
  8935. "url": "https://github.com/sebastianbergmann",
  8936. "type": "github"
  8937. }
  8938. ],
  8939. "time": "2024-03-02T06:33:00+00:00"
  8940. },
  8941. {
  8942. "name": "sebastian/global-state",
  8943. "version": "5.0.7",
  8944. "source": {
  8945. "type": "git",
  8946. "url": "https://github.com/sebastianbergmann/global-state.git",
  8947. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  8948. },
  8949. "dist": {
  8950. "type": "zip",
  8951. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8952. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8953. "shasum": ""
  8954. },
  8955. "require": {
  8956. "php": ">=7.3",
  8957. "sebastian/object-reflector": "^2.0",
  8958. "sebastian/recursion-context": "^4.0"
  8959. },
  8960. "require-dev": {
  8961. "ext-dom": "*",
  8962. "phpunit/phpunit": "^9.3"
  8963. },
  8964. "suggest": {
  8965. "ext-uopz": "*"
  8966. },
  8967. "type": "library",
  8968. "extra": {
  8969. "branch-alias": {
  8970. "dev-master": "5.0-dev"
  8971. }
  8972. },
  8973. "autoload": {
  8974. "classmap": [
  8975. "src/"
  8976. ]
  8977. },
  8978. "notification-url": "https://packagist.org/downloads/",
  8979. "license": [
  8980. "BSD-3-Clause"
  8981. ],
  8982. "authors": [
  8983. {
  8984. "name": "Sebastian Bergmann",
  8985. "email": "sebastian@phpunit.de"
  8986. }
  8987. ],
  8988. "description": "Snapshotting of global state",
  8989. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8990. "keywords": [
  8991. "global state"
  8992. ],
  8993. "support": {
  8994. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8995. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  8996. },
  8997. "funding": [
  8998. {
  8999. "url": "https://github.com/sebastianbergmann",
  9000. "type": "github"
  9001. }
  9002. ],
  9003. "time": "2024-03-02T06:35:11+00:00"
  9004. },
  9005. {
  9006. "name": "sebastian/lines-of-code",
  9007. "version": "1.0.4",
  9008. "source": {
  9009. "type": "git",
  9010. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9011. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9012. },
  9013. "dist": {
  9014. "type": "zip",
  9015. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9016. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9017. "shasum": ""
  9018. },
  9019. "require": {
  9020. "nikic/php-parser": "^4.18 || ^5.0",
  9021. "php": ">=7.3"
  9022. },
  9023. "require-dev": {
  9024. "phpunit/phpunit": "^9.3"
  9025. },
  9026. "type": "library",
  9027. "extra": {
  9028. "branch-alias": {
  9029. "dev-master": "1.0-dev"
  9030. }
  9031. },
  9032. "autoload": {
  9033. "classmap": [
  9034. "src/"
  9035. ]
  9036. },
  9037. "notification-url": "https://packagist.org/downloads/",
  9038. "license": [
  9039. "BSD-3-Clause"
  9040. ],
  9041. "authors": [
  9042. {
  9043. "name": "Sebastian Bergmann",
  9044. "email": "sebastian@phpunit.de",
  9045. "role": "lead"
  9046. }
  9047. ],
  9048. "description": "Library for counting the lines of code in PHP source code",
  9049. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9050. "support": {
  9051. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9052. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9053. },
  9054. "funding": [
  9055. {
  9056. "url": "https://github.com/sebastianbergmann",
  9057. "type": "github"
  9058. }
  9059. ],
  9060. "time": "2023-12-22T06:20:34+00:00"
  9061. },
  9062. {
  9063. "name": "sebastian/object-enumerator",
  9064. "version": "4.0.4",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9068. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9073. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9074. "shasum": ""
  9075. },
  9076. "require": {
  9077. "php": ">=7.3",
  9078. "sebastian/object-reflector": "^2.0",
  9079. "sebastian/recursion-context": "^4.0"
  9080. },
  9081. "require-dev": {
  9082. "phpunit/phpunit": "^9.3"
  9083. },
  9084. "type": "library",
  9085. "extra": {
  9086. "branch-alias": {
  9087. "dev-master": "4.0-dev"
  9088. }
  9089. },
  9090. "autoload": {
  9091. "classmap": [
  9092. "src/"
  9093. ]
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "BSD-3-Clause"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Sebastian Bergmann",
  9102. "email": "sebastian@phpunit.de"
  9103. }
  9104. ],
  9105. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9106. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9107. "support": {
  9108. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9109. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9110. },
  9111. "funding": [
  9112. {
  9113. "url": "https://github.com/sebastianbergmann",
  9114. "type": "github"
  9115. }
  9116. ],
  9117. "time": "2020-10-26T13:12:34+00:00"
  9118. },
  9119. {
  9120. "name": "sebastian/object-reflector",
  9121. "version": "2.0.4",
  9122. "source": {
  9123. "type": "git",
  9124. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9125. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9126. },
  9127. "dist": {
  9128. "type": "zip",
  9129. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9130. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9131. "shasum": ""
  9132. },
  9133. "require": {
  9134. "php": ">=7.3"
  9135. },
  9136. "require-dev": {
  9137. "phpunit/phpunit": "^9.3"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "branch-alias": {
  9142. "dev-master": "2.0-dev"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "classmap": [
  9147. "src/"
  9148. ]
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "BSD-3-Clause"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Sebastian Bergmann",
  9157. "email": "sebastian@phpunit.de"
  9158. }
  9159. ],
  9160. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9161. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9162. "support": {
  9163. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9164. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9165. },
  9166. "funding": [
  9167. {
  9168. "url": "https://github.com/sebastianbergmann",
  9169. "type": "github"
  9170. }
  9171. ],
  9172. "time": "2020-10-26T13:14:26+00:00"
  9173. },
  9174. {
  9175. "name": "sebastian/recursion-context",
  9176. "version": "4.0.5",
  9177. "source": {
  9178. "type": "git",
  9179. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9180. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9181. },
  9182. "dist": {
  9183. "type": "zip",
  9184. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9185. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9186. "shasum": ""
  9187. },
  9188. "require": {
  9189. "php": ">=7.3"
  9190. },
  9191. "require-dev": {
  9192. "phpunit/phpunit": "^9.3"
  9193. },
  9194. "type": "library",
  9195. "extra": {
  9196. "branch-alias": {
  9197. "dev-master": "4.0-dev"
  9198. }
  9199. },
  9200. "autoload": {
  9201. "classmap": [
  9202. "src/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Sebastian Bergmann",
  9212. "email": "sebastian@phpunit.de"
  9213. },
  9214. {
  9215. "name": "Jeff Welch",
  9216. "email": "whatthejeff@gmail.com"
  9217. },
  9218. {
  9219. "name": "Adam Harvey",
  9220. "email": "aharvey@php.net"
  9221. }
  9222. ],
  9223. "description": "Provides functionality to recursively process PHP variables",
  9224. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9225. "support": {
  9226. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9227. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9228. },
  9229. "funding": [
  9230. {
  9231. "url": "https://github.com/sebastianbergmann",
  9232. "type": "github"
  9233. }
  9234. ],
  9235. "time": "2023-02-03T06:07:39+00:00"
  9236. },
  9237. {
  9238. "name": "sebastian/resource-operations",
  9239. "version": "3.0.4",
  9240. "source": {
  9241. "type": "git",
  9242. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9243. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9244. },
  9245. "dist": {
  9246. "type": "zip",
  9247. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9248. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9249. "shasum": ""
  9250. },
  9251. "require": {
  9252. "php": ">=7.3"
  9253. },
  9254. "require-dev": {
  9255. "phpunit/phpunit": "^9.0"
  9256. },
  9257. "type": "library",
  9258. "extra": {
  9259. "branch-alias": {
  9260. "dev-main": "3.0-dev"
  9261. }
  9262. },
  9263. "autoload": {
  9264. "classmap": [
  9265. "src/"
  9266. ]
  9267. },
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "BSD-3-Clause"
  9271. ],
  9272. "authors": [
  9273. {
  9274. "name": "Sebastian Bergmann",
  9275. "email": "sebastian@phpunit.de"
  9276. }
  9277. ],
  9278. "description": "Provides a list of PHP built-in functions that operate on resources",
  9279. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9280. "support": {
  9281. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9282. },
  9283. "funding": [
  9284. {
  9285. "url": "https://github.com/sebastianbergmann",
  9286. "type": "github"
  9287. }
  9288. ],
  9289. "time": "2024-03-14T16:00:52+00:00"
  9290. },
  9291. {
  9292. "name": "sebastian/type",
  9293. "version": "3.2.1",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/sebastianbergmann/type.git",
  9297. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9302. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9303. "shasum": ""
  9304. },
  9305. "require": {
  9306. "php": ">=7.3"
  9307. },
  9308. "require-dev": {
  9309. "phpunit/phpunit": "^9.5"
  9310. },
  9311. "type": "library",
  9312. "extra": {
  9313. "branch-alias": {
  9314. "dev-master": "3.2-dev"
  9315. }
  9316. },
  9317. "autoload": {
  9318. "classmap": [
  9319. "src/"
  9320. ]
  9321. },
  9322. "notification-url": "https://packagist.org/downloads/",
  9323. "license": [
  9324. "BSD-3-Clause"
  9325. ],
  9326. "authors": [
  9327. {
  9328. "name": "Sebastian Bergmann",
  9329. "email": "sebastian@phpunit.de",
  9330. "role": "lead"
  9331. }
  9332. ],
  9333. "description": "Collection of value objects that represent the types of the PHP type system",
  9334. "homepage": "https://github.com/sebastianbergmann/type",
  9335. "support": {
  9336. "issues": "https://github.com/sebastianbergmann/type/issues",
  9337. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9338. },
  9339. "funding": [
  9340. {
  9341. "url": "https://github.com/sebastianbergmann",
  9342. "type": "github"
  9343. }
  9344. ],
  9345. "time": "2023-02-03T06:13:03+00:00"
  9346. },
  9347. {
  9348. "name": "sebastian/version",
  9349. "version": "3.0.2",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/sebastianbergmann/version.git",
  9353. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9358. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9359. "shasum": ""
  9360. },
  9361. "require": {
  9362. "php": ">=7.3"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-master": "3.0-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9387. "homepage": "https://github.com/sebastianbergmann/version",
  9388. "support": {
  9389. "issues": "https://github.com/sebastianbergmann/version/issues",
  9390. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9391. },
  9392. "funding": [
  9393. {
  9394. "url": "https://github.com/sebastianbergmann",
  9395. "type": "github"
  9396. }
  9397. ],
  9398. "time": "2020-09-28T06:39:44+00:00"
  9399. },
  9400. {
  9401. "name": "symfony/browser-kit",
  9402. "version": "v7.1.1",
  9403. "source": {
  9404. "type": "git",
  9405. "url": "https://github.com/symfony/browser-kit.git",
  9406. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  9407. },
  9408. "dist": {
  9409. "type": "zip",
  9410. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  9411. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  9412. "shasum": ""
  9413. },
  9414. "require": {
  9415. "php": ">=8.2",
  9416. "symfony/dom-crawler": "^6.4|^7.0"
  9417. },
  9418. "require-dev": {
  9419. "symfony/css-selector": "^6.4|^7.0",
  9420. "symfony/http-client": "^6.4|^7.0",
  9421. "symfony/mime": "^6.4|^7.0",
  9422. "symfony/process": "^6.4|^7.0"
  9423. },
  9424. "type": "library",
  9425. "autoload": {
  9426. "psr-4": {
  9427. "Symfony\\Component\\BrowserKit\\": ""
  9428. },
  9429. "exclude-from-classmap": [
  9430. "/Tests/"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "MIT"
  9436. ],
  9437. "authors": [
  9438. {
  9439. "name": "Fabien Potencier",
  9440. "email": "fabien@symfony.com"
  9441. },
  9442. {
  9443. "name": "Symfony Community",
  9444. "homepage": "https://symfony.com/contributors"
  9445. }
  9446. ],
  9447. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9448. "homepage": "https://symfony.com",
  9449. "support": {
  9450. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  9451. },
  9452. "funding": [
  9453. {
  9454. "url": "https://symfony.com/sponsor",
  9455. "type": "custom"
  9456. },
  9457. {
  9458. "url": "https://github.com/fabpot",
  9459. "type": "github"
  9460. },
  9461. {
  9462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9463. "type": "tidelift"
  9464. }
  9465. ],
  9466. "time": "2024-05-31T14:57:53+00:00"
  9467. },
  9468. {
  9469. "name": "symfony/css-selector",
  9470. "version": "v7.1.1",
  9471. "source": {
  9472. "type": "git",
  9473. "url": "https://github.com/symfony/css-selector.git",
  9474. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  9475. },
  9476. "dist": {
  9477. "type": "zip",
  9478. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9479. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9480. "shasum": ""
  9481. },
  9482. "require": {
  9483. "php": ">=8.2"
  9484. },
  9485. "type": "library",
  9486. "autoload": {
  9487. "psr-4": {
  9488. "Symfony\\Component\\CssSelector\\": ""
  9489. },
  9490. "exclude-from-classmap": [
  9491. "/Tests/"
  9492. ]
  9493. },
  9494. "notification-url": "https://packagist.org/downloads/",
  9495. "license": [
  9496. "MIT"
  9497. ],
  9498. "authors": [
  9499. {
  9500. "name": "Fabien Potencier",
  9501. "email": "fabien@symfony.com"
  9502. },
  9503. {
  9504. "name": "Jean-François Simon",
  9505. "email": "jeanfrancois.simon@sensiolabs.com"
  9506. },
  9507. {
  9508. "name": "Symfony Community",
  9509. "homepage": "https://symfony.com/contributors"
  9510. }
  9511. ],
  9512. "description": "Converts CSS selectors to XPath expressions",
  9513. "homepage": "https://symfony.com",
  9514. "support": {
  9515. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  9516. },
  9517. "funding": [
  9518. {
  9519. "url": "https://symfony.com/sponsor",
  9520. "type": "custom"
  9521. },
  9522. {
  9523. "url": "https://github.com/fabpot",
  9524. "type": "github"
  9525. },
  9526. {
  9527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9528. "type": "tidelift"
  9529. }
  9530. ],
  9531. "time": "2024-05-31T14:57:53+00:00"
  9532. },
  9533. {
  9534. "name": "symfony/debug-bundle",
  9535. "version": "v7.1.1",
  9536. "source": {
  9537. "type": "git",
  9538. "url": "https://github.com/symfony/debug-bundle.git",
  9539. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  9540. },
  9541. "dist": {
  9542. "type": "zip",
  9543. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  9544. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  9545. "shasum": ""
  9546. },
  9547. "require": {
  9548. "ext-xml": "*",
  9549. "php": ">=8.2",
  9550. "symfony/dependency-injection": "^6.4|^7.0",
  9551. "symfony/http-kernel": "^6.4|^7.0",
  9552. "symfony/twig-bridge": "^6.4|^7.0",
  9553. "symfony/var-dumper": "^6.4|^7.0"
  9554. },
  9555. "conflict": {
  9556. "symfony/config": "<6.4",
  9557. "symfony/dependency-injection": "<6.4"
  9558. },
  9559. "require-dev": {
  9560. "symfony/config": "^6.4|^7.0",
  9561. "symfony/web-profiler-bundle": "^6.4|^7.0"
  9562. },
  9563. "type": "symfony-bundle",
  9564. "autoload": {
  9565. "psr-4": {
  9566. "Symfony\\Bundle\\DebugBundle\\": ""
  9567. },
  9568. "exclude-from-classmap": [
  9569. "/Tests/"
  9570. ]
  9571. },
  9572. "notification-url": "https://packagist.org/downloads/",
  9573. "license": [
  9574. "MIT"
  9575. ],
  9576. "authors": [
  9577. {
  9578. "name": "Fabien Potencier",
  9579. "email": "fabien@symfony.com"
  9580. },
  9581. {
  9582. "name": "Symfony Community",
  9583. "homepage": "https://symfony.com/contributors"
  9584. }
  9585. ],
  9586. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9587. "homepage": "https://symfony.com",
  9588. "support": {
  9589. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  9590. },
  9591. "funding": [
  9592. {
  9593. "url": "https://symfony.com/sponsor",
  9594. "type": "custom"
  9595. },
  9596. {
  9597. "url": "https://github.com/fabpot",
  9598. "type": "github"
  9599. },
  9600. {
  9601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9602. "type": "tidelift"
  9603. }
  9604. ],
  9605. "time": "2024-05-31T14:55:39+00:00"
  9606. },
  9607. {
  9608. "name": "symfony/dom-crawler",
  9609. "version": "v7.1.5",
  9610. "source": {
  9611. "type": "git",
  9612. "url": "https://github.com/symfony/dom-crawler.git",
  9613. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  9614. },
  9615. "dist": {
  9616. "type": "zip",
  9617. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  9618. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  9619. "shasum": ""
  9620. },
  9621. "require": {
  9622. "masterminds/html5": "^2.6",
  9623. "php": ">=8.2",
  9624. "symfony/polyfill-ctype": "~1.8",
  9625. "symfony/polyfill-mbstring": "~1.0"
  9626. },
  9627. "require-dev": {
  9628. "symfony/css-selector": "^6.4|^7.0"
  9629. },
  9630. "type": "library",
  9631. "autoload": {
  9632. "psr-4": {
  9633. "Symfony\\Component\\DomCrawler\\": ""
  9634. },
  9635. "exclude-from-classmap": [
  9636. "/Tests/"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "MIT"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Fabien Potencier",
  9646. "email": "fabien@symfony.com"
  9647. },
  9648. {
  9649. "name": "Symfony Community",
  9650. "homepage": "https://symfony.com/contributors"
  9651. }
  9652. ],
  9653. "description": "Eases DOM navigation for HTML and XML documents",
  9654. "homepage": "https://symfony.com",
  9655. "support": {
  9656. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  9657. },
  9658. "funding": [
  9659. {
  9660. "url": "https://symfony.com/sponsor",
  9661. "type": "custom"
  9662. },
  9663. {
  9664. "url": "https://github.com/fabpot",
  9665. "type": "github"
  9666. },
  9667. {
  9668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9669. "type": "tidelift"
  9670. }
  9671. ],
  9672. "time": "2024-09-15T06:48:17+00:00"
  9673. },
  9674. {
  9675. "name": "symfony/maker-bundle",
  9676. "version": "v1.61.0",
  9677. "source": {
  9678. "type": "git",
  9679. "url": "https://github.com/symfony/maker-bundle.git",
  9680. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  9681. },
  9682. "dist": {
  9683. "type": "zip",
  9684. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9685. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9686. "shasum": ""
  9687. },
  9688. "require": {
  9689. "doctrine/inflector": "^2.0",
  9690. "nikic/php-parser": "^4.18|^5.0",
  9691. "php": ">=8.1",
  9692. "symfony/config": "^6.4|^7.0",
  9693. "symfony/console": "^6.4|^7.0",
  9694. "symfony/dependency-injection": "^6.4|^7.0",
  9695. "symfony/deprecation-contracts": "^2.2|^3",
  9696. "symfony/filesystem": "^6.4|^7.0",
  9697. "symfony/finder": "^6.4|^7.0",
  9698. "symfony/framework-bundle": "^6.4|^7.0",
  9699. "symfony/http-kernel": "^6.4|^7.0",
  9700. "symfony/process": "^6.4|^7.0"
  9701. },
  9702. "conflict": {
  9703. "doctrine/doctrine-bundle": "<2.10",
  9704. "doctrine/orm": "<2.15"
  9705. },
  9706. "require-dev": {
  9707. "composer/semver": "^3.0",
  9708. "doctrine/doctrine-bundle": "^2.5.0",
  9709. "doctrine/orm": "^2.15|^3",
  9710. "symfony/http-client": "^6.4|^7.0",
  9711. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  9712. "symfony/security-core": "^6.4|^7.0",
  9713. "symfony/yaml": "^6.4|^7.0",
  9714. "twig/twig": "^3.0|^4.x-dev"
  9715. },
  9716. "type": "symfony-bundle",
  9717. "extra": {
  9718. "branch-alias": {
  9719. "dev-main": "1.x-dev"
  9720. }
  9721. },
  9722. "autoload": {
  9723. "psr-4": {
  9724. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9725. }
  9726. },
  9727. "notification-url": "https://packagist.org/downloads/",
  9728. "license": [
  9729. "MIT"
  9730. ],
  9731. "authors": [
  9732. {
  9733. "name": "Symfony Community",
  9734. "homepage": "https://symfony.com/contributors"
  9735. }
  9736. ],
  9737. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9738. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9739. "keywords": [
  9740. "code generator",
  9741. "dev",
  9742. "generator",
  9743. "scaffold",
  9744. "scaffolding"
  9745. ],
  9746. "support": {
  9747. "issues": "https://github.com/symfony/maker-bundle/issues",
  9748. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  9749. },
  9750. "funding": [
  9751. {
  9752. "url": "https://symfony.com/sponsor",
  9753. "type": "custom"
  9754. },
  9755. {
  9756. "url": "https://github.com/fabpot",
  9757. "type": "github"
  9758. },
  9759. {
  9760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9761. "type": "tidelift"
  9762. }
  9763. ],
  9764. "time": "2024-08-29T22:50:23+00:00"
  9765. },
  9766. {
  9767. "name": "symfony/phpunit-bridge",
  9768. "version": "v7.1.4",
  9769. "source": {
  9770. "type": "git",
  9771. "url": "https://github.com/symfony/phpunit-bridge.git",
  9772. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  9773. },
  9774. "dist": {
  9775. "type": "zip",
  9776. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  9777. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  9778. "shasum": ""
  9779. },
  9780. "require": {
  9781. "php": ">=7.2.5"
  9782. },
  9783. "conflict": {
  9784. "phpunit/phpunit": "<7.5|9.1.2"
  9785. },
  9786. "require-dev": {
  9787. "symfony/deprecation-contracts": "^2.5|^3.0",
  9788. "symfony/error-handler": "^5.4|^6.4|^7.0",
  9789. "symfony/polyfill-php81": "^1.27"
  9790. },
  9791. "bin": [
  9792. "bin/simple-phpunit"
  9793. ],
  9794. "type": "symfony-bridge",
  9795. "extra": {
  9796. "thanks": {
  9797. "name": "phpunit/phpunit",
  9798. "url": "https://github.com/sebastianbergmann/phpunit"
  9799. }
  9800. },
  9801. "autoload": {
  9802. "files": [
  9803. "bootstrap.php"
  9804. ],
  9805. "psr-4": {
  9806. "Symfony\\Bridge\\PhpUnit\\": ""
  9807. },
  9808. "exclude-from-classmap": [
  9809. "/Tests/",
  9810. "/bin/"
  9811. ]
  9812. },
  9813. "notification-url": "https://packagist.org/downloads/",
  9814. "license": [
  9815. "MIT"
  9816. ],
  9817. "authors": [
  9818. {
  9819. "name": "Nicolas Grekas",
  9820. "email": "p@tchwork.com"
  9821. },
  9822. {
  9823. "name": "Symfony Community",
  9824. "homepage": "https://symfony.com/contributors"
  9825. }
  9826. ],
  9827. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9828. "homepage": "https://symfony.com",
  9829. "support": {
  9830. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  9831. },
  9832. "funding": [
  9833. {
  9834. "url": "https://symfony.com/sponsor",
  9835. "type": "custom"
  9836. },
  9837. {
  9838. "url": "https://github.com/fabpot",
  9839. "type": "github"
  9840. },
  9841. {
  9842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9843. "type": "tidelift"
  9844. }
  9845. ],
  9846. "time": "2024-08-13T14:28:19+00:00"
  9847. },
  9848. {
  9849. "name": "symfony/web-profiler-bundle",
  9850. "version": "v7.1.4",
  9851. "source": {
  9852. "type": "git",
  9853. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9854. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  9855. },
  9856. "dist": {
  9857. "type": "zip",
  9858. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  9859. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  9860. "shasum": ""
  9861. },
  9862. "require": {
  9863. "php": ">=8.2",
  9864. "symfony/config": "^6.4|^7.0",
  9865. "symfony/framework-bundle": "^6.4|^7.0",
  9866. "symfony/http-kernel": "^6.4|^7.0",
  9867. "symfony/routing": "^6.4|^7.0",
  9868. "symfony/twig-bundle": "^6.4|^7.0",
  9869. "twig/twig": "^3.10"
  9870. },
  9871. "conflict": {
  9872. "symfony/form": "<6.4",
  9873. "symfony/mailer": "<6.4",
  9874. "symfony/messenger": "<6.4"
  9875. },
  9876. "require-dev": {
  9877. "symfony/browser-kit": "^6.4|^7.0",
  9878. "symfony/console": "^6.4|^7.0",
  9879. "symfony/css-selector": "^6.4|^7.0",
  9880. "symfony/stopwatch": "^6.4|^7.0"
  9881. },
  9882. "type": "symfony-bundle",
  9883. "autoload": {
  9884. "psr-4": {
  9885. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9886. },
  9887. "exclude-from-classmap": [
  9888. "/Tests/"
  9889. ]
  9890. },
  9891. "notification-url": "https://packagist.org/downloads/",
  9892. "license": [
  9893. "MIT"
  9894. ],
  9895. "authors": [
  9896. {
  9897. "name": "Fabien Potencier",
  9898. "email": "fabien@symfony.com"
  9899. },
  9900. {
  9901. "name": "Symfony Community",
  9902. "homepage": "https://symfony.com/contributors"
  9903. }
  9904. ],
  9905. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9906. "homepage": "https://symfony.com",
  9907. "keywords": [
  9908. "dev"
  9909. ],
  9910. "support": {
  9911. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  9912. },
  9913. "funding": [
  9914. {
  9915. "url": "https://symfony.com/sponsor",
  9916. "type": "custom"
  9917. },
  9918. {
  9919. "url": "https://github.com/fabpot",
  9920. "type": "github"
  9921. },
  9922. {
  9923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9924. "type": "tidelift"
  9925. }
  9926. ],
  9927. "time": "2024-08-12T09:59:40+00:00"
  9928. },
  9929. {
  9930. "name": "theseer/tokenizer",
  9931. "version": "1.2.3",
  9932. "source": {
  9933. "type": "git",
  9934. "url": "https://github.com/theseer/tokenizer.git",
  9935. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9936. },
  9937. "dist": {
  9938. "type": "zip",
  9939. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9940. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9941. "shasum": ""
  9942. },
  9943. "require": {
  9944. "ext-dom": "*",
  9945. "ext-tokenizer": "*",
  9946. "ext-xmlwriter": "*",
  9947. "php": "^7.2 || ^8.0"
  9948. },
  9949. "type": "library",
  9950. "autoload": {
  9951. "classmap": [
  9952. "src/"
  9953. ]
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "BSD-3-Clause"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Arne Blankerts",
  9962. "email": "arne@blankerts.de",
  9963. "role": "Developer"
  9964. }
  9965. ],
  9966. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9967. "support": {
  9968. "issues": "https://github.com/theseer/tokenizer/issues",
  9969. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9970. },
  9971. "funding": [
  9972. {
  9973. "url": "https://github.com/theseer",
  9974. "type": "github"
  9975. }
  9976. ],
  9977. "time": "2024-03-03T12:36:25+00:00"
  9978. }
  9979. ],
  9980. "aliases": [],
  9981. "minimum-stability": "stable",
  9982. "stability-flags": [],
  9983. "prefer-stable": true,
  9984. "prefer-lowest": false,
  9985. "platform": {
  9986. "php": ">=8.2",
  9987. "ext-ctype": "*",
  9988. "ext-iconv": "*"
  9989. },
  9990. "platform-dev": [],
  9991. "plugin-api-version": "2.6.0"
  9992. }