composer.lock 365 KB

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