composer.lock 356 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884
  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": "1a55c4031f0c3aa168a7f35b90cedc9c",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  20. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.4",
  28. "symfony/phpunit-bridge": "^4.2 || ^5"
  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.0"
  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": "2023-08-31T09:50:34+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.1",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/doctrine/collections.git",
  189. "reference": "420480fc085bc65f3c956af13abe8e7546f94813"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/doctrine/collections/zipball/420480fc085bc65f3c956af13abe8e7546f94813",
  194. "reference": "420480fc085bc65f3c956af13abe8e7546f94813",
  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.1"
  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-03-05T22:28:45+00:00"
  268. },
  269. {
  270. "name": "doctrine/dbal",
  271. "version": "3.8.3",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/doctrine/dbal.git",
  275. "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/doctrine/dbal/zipball/db922ba9436b7b18a23d1653a0b41ff2369ca41c",
  280. "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c",
  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.10.58",
  297. "phpstan/phpstan-strict-rules": "^1.5",
  298. "phpunit/phpunit": "9.6.16",
  299. "psalm/plugin-phpunit": "0.18.4",
  300. "slevomat/coding-standard": "8.13.1",
  301. "squizlabs/php_codesniffer": "3.9.0",
  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.8.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-03-03T15:55:06+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.12.0",
  432. "source": {
  433. "type": "git",
  434. "url": "https://github.com/doctrine/DoctrineBundle.git",
  435. "reference": "5418e811a14724068e95e0ba43353b903ada530f"
  436. },
  437. "dist": {
  438. "type": "zip",
  439. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/5418e811a14724068e95e0ba43353b903ada530f",
  440. "reference": "5418e811a14724068e95e0ba43353b903ada530f",
  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.12.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-03-19T07:20:37+00:00"
  548. },
  549. {
  550. "name": "doctrine/doctrine-migrations-bundle",
  551. "version": "3.3.0",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  555. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1dd42906a5fb9c5960723e2ebb45c68006493835",
  560. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835",
  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. "doctrine/coding-standard": "^12",
  572. "doctrine/orm": "^2.6 || ^3",
  573. "doctrine/persistence": "^2.0 || ^3 ",
  574. "phpstan/phpstan": "^1.4",
  575. "phpstan/phpstan-deprecation-rules": "^1",
  576. "phpstan/phpstan-phpunit": "^1",
  577. "phpstan/phpstan-strict-rules": "^1.1",
  578. "phpstan/phpstan-symfony": "^1.3",
  579. "phpunit/phpunit": "^8.5|^9.5",
  580. "psalm/plugin-phpunit": "^0.18.4",
  581. "psalm/plugin-symfony": "^3 || ^5",
  582. "symfony/phpunit-bridge": "^6.3 || ^7",
  583. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  584. "vimeo/psalm": "^4.30 || ^5.15"
  585. },
  586. "type": "symfony-bundle",
  587. "autoload": {
  588. "psr-4": {
  589. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  590. },
  591. "exclude-from-classmap": [
  592. "/Tests/"
  593. ]
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Fabien Potencier",
  602. "email": "fabien@symfony.com"
  603. },
  604. {
  605. "name": "Doctrine Project",
  606. "homepage": "https://www.doctrine-project.org"
  607. },
  608. {
  609. "name": "Symfony Community",
  610. "homepage": "https://symfony.com/contributors"
  611. }
  612. ],
  613. "description": "Symfony DoctrineMigrationsBundle",
  614. "homepage": "https://www.doctrine-project.org",
  615. "keywords": [
  616. "dbal",
  617. "migrations",
  618. "schema"
  619. ],
  620. "support": {
  621. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  622. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.0"
  623. },
  624. "funding": [
  625. {
  626. "url": "https://www.doctrine-project.org/sponsorship.html",
  627. "type": "custom"
  628. },
  629. {
  630. "url": "https://www.patreon.com/phpdoctrine",
  631. "type": "patreon"
  632. },
  633. {
  634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  635. "type": "tidelift"
  636. }
  637. ],
  638. "time": "2023-11-13T19:44:41+00:00"
  639. },
  640. {
  641. "name": "doctrine/event-manager",
  642. "version": "2.0.0",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/doctrine/event-manager.git",
  646. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  651. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^8.1"
  656. },
  657. "conflict": {
  658. "doctrine/common": "<2.9"
  659. },
  660. "require-dev": {
  661. "doctrine/coding-standard": "^10",
  662. "phpstan/phpstan": "^1.8.8",
  663. "phpunit/phpunit": "^9.5",
  664. "vimeo/psalm": "^4.28"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "Doctrine\\Common\\": "src"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Guilherme Blanco",
  679. "email": "guilhermeblanco@gmail.com"
  680. },
  681. {
  682. "name": "Roman Borschel",
  683. "email": "roman@code-factory.org"
  684. },
  685. {
  686. "name": "Benjamin Eberlei",
  687. "email": "kontakt@beberlei.de"
  688. },
  689. {
  690. "name": "Jonathan Wage",
  691. "email": "jonwage@gmail.com"
  692. },
  693. {
  694. "name": "Johannes Schmitt",
  695. "email": "schmittjoh@gmail.com"
  696. },
  697. {
  698. "name": "Marco Pivetta",
  699. "email": "ocramius@gmail.com"
  700. }
  701. ],
  702. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  703. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  704. "keywords": [
  705. "event",
  706. "event dispatcher",
  707. "event manager",
  708. "event system",
  709. "events"
  710. ],
  711. "support": {
  712. "issues": "https://github.com/doctrine/event-manager/issues",
  713. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  714. },
  715. "funding": [
  716. {
  717. "url": "https://www.doctrine-project.org/sponsorship.html",
  718. "type": "custom"
  719. },
  720. {
  721. "url": "https://www.patreon.com/phpdoctrine",
  722. "type": "patreon"
  723. },
  724. {
  725. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  726. "type": "tidelift"
  727. }
  728. ],
  729. "time": "2022-10-12T20:59:15+00:00"
  730. },
  731. {
  732. "name": "doctrine/inflector",
  733. "version": "2.0.10",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/doctrine/inflector.git",
  737. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  742. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  743. "shasum": ""
  744. },
  745. "require": {
  746. "php": "^7.2 || ^8.0"
  747. },
  748. "require-dev": {
  749. "doctrine/coding-standard": "^11.0",
  750. "phpstan/phpstan": "^1.8",
  751. "phpstan/phpstan-phpunit": "^1.1",
  752. "phpstan/phpstan-strict-rules": "^1.3",
  753. "phpunit/phpunit": "^8.5 || ^9.5",
  754. "vimeo/psalm": "^4.25 || ^5.4"
  755. },
  756. "type": "library",
  757. "autoload": {
  758. "psr-4": {
  759. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  760. }
  761. },
  762. "notification-url": "https://packagist.org/downloads/",
  763. "license": [
  764. "MIT"
  765. ],
  766. "authors": [
  767. {
  768. "name": "Guilherme Blanco",
  769. "email": "guilhermeblanco@gmail.com"
  770. },
  771. {
  772. "name": "Roman Borschel",
  773. "email": "roman@code-factory.org"
  774. },
  775. {
  776. "name": "Benjamin Eberlei",
  777. "email": "kontakt@beberlei.de"
  778. },
  779. {
  780. "name": "Jonathan Wage",
  781. "email": "jonwage@gmail.com"
  782. },
  783. {
  784. "name": "Johannes Schmitt",
  785. "email": "schmittjoh@gmail.com"
  786. }
  787. ],
  788. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  789. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  790. "keywords": [
  791. "inflection",
  792. "inflector",
  793. "lowercase",
  794. "manipulation",
  795. "php",
  796. "plural",
  797. "singular",
  798. "strings",
  799. "uppercase",
  800. "words"
  801. ],
  802. "support": {
  803. "issues": "https://github.com/doctrine/inflector/issues",
  804. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  805. },
  806. "funding": [
  807. {
  808. "url": "https://www.doctrine-project.org/sponsorship.html",
  809. "type": "custom"
  810. },
  811. {
  812. "url": "https://www.patreon.com/phpdoctrine",
  813. "type": "patreon"
  814. },
  815. {
  816. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  817. "type": "tidelift"
  818. }
  819. ],
  820. "time": "2024-02-18T20:23:39+00:00"
  821. },
  822. {
  823. "name": "doctrine/instantiator",
  824. "version": "2.0.0",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/doctrine/instantiator.git",
  828. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  833. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": "^8.1"
  838. },
  839. "require-dev": {
  840. "doctrine/coding-standard": "^11",
  841. "ext-pdo": "*",
  842. "ext-phar": "*",
  843. "phpbench/phpbench": "^1.2",
  844. "phpstan/phpstan": "^1.9.4",
  845. "phpstan/phpstan-phpunit": "^1.3",
  846. "phpunit/phpunit": "^9.5.27",
  847. "vimeo/psalm": "^5.4"
  848. },
  849. "type": "library",
  850. "autoload": {
  851. "psr-4": {
  852. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  853. }
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "authors": [
  860. {
  861. "name": "Marco Pivetta",
  862. "email": "ocramius@gmail.com",
  863. "homepage": "https://ocramius.github.io/"
  864. }
  865. ],
  866. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  867. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  868. "keywords": [
  869. "constructor",
  870. "instantiate"
  871. ],
  872. "support": {
  873. "issues": "https://github.com/doctrine/instantiator/issues",
  874. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  875. },
  876. "funding": [
  877. {
  878. "url": "https://www.doctrine-project.org/sponsorship.html",
  879. "type": "custom"
  880. },
  881. {
  882. "url": "https://www.patreon.com/phpdoctrine",
  883. "type": "patreon"
  884. },
  885. {
  886. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  887. "type": "tidelift"
  888. }
  889. ],
  890. "time": "2022-12-30T00:23:10+00:00"
  891. },
  892. {
  893. "name": "doctrine/lexer",
  894. "version": "3.0.1",
  895. "source": {
  896. "type": "git",
  897. "url": "https://github.com/doctrine/lexer.git",
  898. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  899. },
  900. "dist": {
  901. "type": "zip",
  902. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  903. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  904. "shasum": ""
  905. },
  906. "require": {
  907. "php": "^8.1"
  908. },
  909. "require-dev": {
  910. "doctrine/coding-standard": "^12",
  911. "phpstan/phpstan": "^1.10",
  912. "phpunit/phpunit": "^10.5",
  913. "psalm/plugin-phpunit": "^0.18.3",
  914. "vimeo/psalm": "^5.21"
  915. },
  916. "type": "library",
  917. "autoload": {
  918. "psr-4": {
  919. "Doctrine\\Common\\Lexer\\": "src"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "Guilherme Blanco",
  929. "email": "guilhermeblanco@gmail.com"
  930. },
  931. {
  932. "name": "Roman Borschel",
  933. "email": "roman@code-factory.org"
  934. },
  935. {
  936. "name": "Johannes Schmitt",
  937. "email": "schmittjoh@gmail.com"
  938. }
  939. ],
  940. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  941. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  942. "keywords": [
  943. "annotations",
  944. "docblock",
  945. "lexer",
  946. "parser",
  947. "php"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/doctrine/lexer/issues",
  951. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://www.doctrine-project.org/sponsorship.html",
  956. "type": "custom"
  957. },
  958. {
  959. "url": "https://www.patreon.com/phpdoctrine",
  960. "type": "patreon"
  961. },
  962. {
  963. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  964. "type": "tidelift"
  965. }
  966. ],
  967. "time": "2024-02-05T11:56:58+00:00"
  968. },
  969. {
  970. "name": "doctrine/migrations",
  971. "version": "3.7.4",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/doctrine/migrations.git",
  975. "reference": "954e0a314c2f0eb9fb418210445111747de254a6"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/doctrine/migrations/zipball/954e0a314c2f0eb9fb418210445111747de254a6",
  980. "reference": "954e0a314c2f0eb9fb418210445111747de254a6",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "composer-runtime-api": "^2",
  985. "doctrine/dbal": "^3.5.1 || ^4",
  986. "doctrine/deprecations": "^0.5.3 || ^1",
  987. "doctrine/event-manager": "^1.2 || ^2.0",
  988. "php": "^8.1",
  989. "psr/log": "^1.1.3 || ^2 || ^3",
  990. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  991. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  992. "symfony/var-exporter": "^6.2 || ^7.0"
  993. },
  994. "conflict": {
  995. "doctrine/orm": "<2.12 || >=4"
  996. },
  997. "require-dev": {
  998. "doctrine/coding-standard": "^12",
  999. "doctrine/orm": "^2.13 || ^3",
  1000. "doctrine/persistence": "^2 || ^3",
  1001. "doctrine/sql-formatter": "^1.0",
  1002. "ext-pdo_sqlite": "*",
  1003. "phpstan/phpstan": "^1.10",
  1004. "phpstan/phpstan-deprecation-rules": "^1.1",
  1005. "phpstan/phpstan-phpunit": "^1.3",
  1006. "phpstan/phpstan-strict-rules": "^1.4",
  1007. "phpstan/phpstan-symfony": "^1.3",
  1008. "phpunit/phpunit": "^10.3",
  1009. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1010. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1011. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1012. },
  1013. "suggest": {
  1014. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1015. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1016. },
  1017. "bin": [
  1018. "bin/doctrine-migrations"
  1019. ],
  1020. "type": "library",
  1021. "autoload": {
  1022. "psr-4": {
  1023. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "MIT"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Benjamin Eberlei",
  1033. "email": "kontakt@beberlei.de"
  1034. },
  1035. {
  1036. "name": "Jonathan Wage",
  1037. "email": "jonwage@gmail.com"
  1038. },
  1039. {
  1040. "name": "Michael Simonson",
  1041. "email": "contact@mikesimonson.com"
  1042. }
  1043. ],
  1044. "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.",
  1045. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1046. "keywords": [
  1047. "database",
  1048. "dbal",
  1049. "migrations"
  1050. ],
  1051. "support": {
  1052. "issues": "https://github.com/doctrine/migrations/issues",
  1053. "source": "https://github.com/doctrine/migrations/tree/3.7.4"
  1054. },
  1055. "funding": [
  1056. {
  1057. "url": "https://www.doctrine-project.org/sponsorship.html",
  1058. "type": "custom"
  1059. },
  1060. {
  1061. "url": "https://www.patreon.com/phpdoctrine",
  1062. "type": "patreon"
  1063. },
  1064. {
  1065. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1066. "type": "tidelift"
  1067. }
  1068. ],
  1069. "time": "2024-03-06T13:41:11+00:00"
  1070. },
  1071. {
  1072. "name": "doctrine/orm",
  1073. "version": "3.1.0",
  1074. "source": {
  1075. "type": "git",
  1076. "url": "https://github.com/doctrine/orm.git",
  1077. "reference": "716fc97b70cf8116f74eaa0588eef51420874bf9"
  1078. },
  1079. "dist": {
  1080. "type": "zip",
  1081. "url": "https://api.github.com/repos/doctrine/orm/zipball/716fc97b70cf8116f74eaa0588eef51420874bf9",
  1082. "reference": "716fc97b70cf8116f74eaa0588eef51420874bf9",
  1083. "shasum": ""
  1084. },
  1085. "require": {
  1086. "composer-runtime-api": "^2",
  1087. "doctrine/collections": "^2.2",
  1088. "doctrine/dbal": "^3.8.2 || ^4",
  1089. "doctrine/deprecations": "^0.5.3 || ^1",
  1090. "doctrine/event-manager": "^1.2 || ^2",
  1091. "doctrine/inflector": "^1.4 || ^2.0",
  1092. "doctrine/instantiator": "^1.3 || ^2",
  1093. "doctrine/lexer": "^3",
  1094. "doctrine/persistence": "^3.3.1",
  1095. "ext-ctype": "*",
  1096. "php": "^8.1",
  1097. "psr/cache": "^1 || ^2 || ^3",
  1098. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1099. "symfony/var-exporter": "~6.2.13 || ^6.3.2 || ^7.0"
  1100. },
  1101. "require-dev": {
  1102. "doctrine/coding-standard": "^12.0",
  1103. "phpbench/phpbench": "^1.0",
  1104. "phpstan/phpstan": "1.10.59",
  1105. "phpunit/phpunit": "^10.4.0",
  1106. "psr/log": "^1 || ^2 || ^3",
  1107. "squizlabs/php_codesniffer": "3.7.2",
  1108. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1109. "vimeo/psalm": "5.22.2"
  1110. },
  1111. "suggest": {
  1112. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1113. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1114. },
  1115. "type": "library",
  1116. "autoload": {
  1117. "psr-4": {
  1118. "Doctrine\\ORM\\": "src"
  1119. }
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "MIT"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "Guilherme Blanco",
  1128. "email": "guilhermeblanco@gmail.com"
  1129. },
  1130. {
  1131. "name": "Roman Borschel",
  1132. "email": "roman@code-factory.org"
  1133. },
  1134. {
  1135. "name": "Benjamin Eberlei",
  1136. "email": "kontakt@beberlei.de"
  1137. },
  1138. {
  1139. "name": "Jonathan Wage",
  1140. "email": "jonwage@gmail.com"
  1141. },
  1142. {
  1143. "name": "Marco Pivetta",
  1144. "email": "ocramius@gmail.com"
  1145. }
  1146. ],
  1147. "description": "Object-Relational-Mapper for PHP",
  1148. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1149. "keywords": [
  1150. "database",
  1151. "orm"
  1152. ],
  1153. "support": {
  1154. "issues": "https://github.com/doctrine/orm/issues",
  1155. "source": "https://github.com/doctrine/orm/tree/3.1.0"
  1156. },
  1157. "time": "2024-03-03T17:45:20+00:00"
  1158. },
  1159. {
  1160. "name": "doctrine/persistence",
  1161. "version": "3.3.2",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/doctrine/persistence.git",
  1165. "reference": "477da35bd0255e032826f440b94b3e37f2d56f42"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42",
  1170. "reference": "477da35bd0255e032826f440b94b3e37f2d56f42",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "doctrine/event-manager": "^1 || ^2",
  1175. "php": "^7.2 || ^8.0",
  1176. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1177. },
  1178. "conflict": {
  1179. "doctrine/common": "<2.10"
  1180. },
  1181. "require-dev": {
  1182. "composer/package-versions-deprecated": "^1.11",
  1183. "doctrine/coding-standard": "^11",
  1184. "doctrine/common": "^3.0",
  1185. "phpstan/phpstan": "1.9.4",
  1186. "phpstan/phpstan-phpunit": "^1",
  1187. "phpstan/phpstan-strict-rules": "^1.1",
  1188. "phpunit/phpunit": "^8.5 || ^9.5",
  1189. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1190. "vimeo/psalm": "4.30.0 || 5.3.0"
  1191. },
  1192. "type": "library",
  1193. "autoload": {
  1194. "psr-4": {
  1195. "Doctrine\\Persistence\\": "src/Persistence"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Guilherme Blanco",
  1205. "email": "guilhermeblanco@gmail.com"
  1206. },
  1207. {
  1208. "name": "Roman Borschel",
  1209. "email": "roman@code-factory.org"
  1210. },
  1211. {
  1212. "name": "Benjamin Eberlei",
  1213. "email": "kontakt@beberlei.de"
  1214. },
  1215. {
  1216. "name": "Jonathan Wage",
  1217. "email": "jonwage@gmail.com"
  1218. },
  1219. {
  1220. "name": "Johannes Schmitt",
  1221. "email": "schmittjoh@gmail.com"
  1222. },
  1223. {
  1224. "name": "Marco Pivetta",
  1225. "email": "ocramius@gmail.com"
  1226. }
  1227. ],
  1228. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1229. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1230. "keywords": [
  1231. "mapper",
  1232. "object",
  1233. "odm",
  1234. "orm",
  1235. "persistence"
  1236. ],
  1237. "support": {
  1238. "issues": "https://github.com/doctrine/persistence/issues",
  1239. "source": "https://github.com/doctrine/persistence/tree/3.3.2"
  1240. },
  1241. "funding": [
  1242. {
  1243. "url": "https://www.doctrine-project.org/sponsorship.html",
  1244. "type": "custom"
  1245. },
  1246. {
  1247. "url": "https://www.patreon.com/phpdoctrine",
  1248. "type": "patreon"
  1249. },
  1250. {
  1251. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1252. "type": "tidelift"
  1253. }
  1254. ],
  1255. "time": "2024-03-12T14:54:36+00:00"
  1256. },
  1257. {
  1258. "name": "doctrine/sql-formatter",
  1259. "version": "1.2.0",
  1260. "source": {
  1261. "type": "git",
  1262. "url": "https://github.com/doctrine/sql-formatter.git",
  1263. "reference": "a321d114e0a18e6497f8a2cd6f890e000cc17ecc"
  1264. },
  1265. "dist": {
  1266. "type": "zip",
  1267. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/a321d114e0a18e6497f8a2cd6f890e000cc17ecc",
  1268. "reference": "a321d114e0a18e6497f8a2cd6f890e000cc17ecc",
  1269. "shasum": ""
  1270. },
  1271. "require": {
  1272. "php": "^7.1 || ^8.0"
  1273. },
  1274. "require-dev": {
  1275. "bamarni/composer-bin-plugin": "^1.4"
  1276. },
  1277. "bin": [
  1278. "bin/sql-formatter"
  1279. ],
  1280. "type": "library",
  1281. "autoload": {
  1282. "psr-4": {
  1283. "Doctrine\\SqlFormatter\\": "src"
  1284. }
  1285. },
  1286. "notification-url": "https://packagist.org/downloads/",
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Jeremy Dorn",
  1293. "email": "jeremy@jeremydorn.com",
  1294. "homepage": "https://jeremydorn.com/"
  1295. }
  1296. ],
  1297. "description": "a PHP SQL highlighting library",
  1298. "homepage": "https://github.com/doctrine/sql-formatter/",
  1299. "keywords": [
  1300. "highlight",
  1301. "sql"
  1302. ],
  1303. "support": {
  1304. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1305. "source": "https://github.com/doctrine/sql-formatter/tree/1.2.0"
  1306. },
  1307. "time": "2023-08-16T21:49:04+00:00"
  1308. },
  1309. {
  1310. "name": "egulias/email-validator",
  1311. "version": "4.0.2",
  1312. "source": {
  1313. "type": "git",
  1314. "url": "https://github.com/egulias/EmailValidator.git",
  1315. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1316. },
  1317. "dist": {
  1318. "type": "zip",
  1319. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1320. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1321. "shasum": ""
  1322. },
  1323. "require": {
  1324. "doctrine/lexer": "^2.0 || ^3.0",
  1325. "php": ">=8.1",
  1326. "symfony/polyfill-intl-idn": "^1.26"
  1327. },
  1328. "require-dev": {
  1329. "phpunit/phpunit": "^10.2",
  1330. "vimeo/psalm": "^5.12"
  1331. },
  1332. "suggest": {
  1333. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1334. },
  1335. "type": "library",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "4.0.x-dev"
  1339. }
  1340. },
  1341. "autoload": {
  1342. "psr-4": {
  1343. "Egulias\\EmailValidator\\": "src"
  1344. }
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "MIT"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Eduardo Gulias Davis"
  1353. }
  1354. ],
  1355. "description": "A library for validating emails against several RFCs",
  1356. "homepage": "https://github.com/egulias/EmailValidator",
  1357. "keywords": [
  1358. "email",
  1359. "emailvalidation",
  1360. "emailvalidator",
  1361. "validation",
  1362. "validator"
  1363. ],
  1364. "support": {
  1365. "issues": "https://github.com/egulias/EmailValidator/issues",
  1366. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1367. },
  1368. "funding": [
  1369. {
  1370. "url": "https://github.com/egulias",
  1371. "type": "github"
  1372. }
  1373. ],
  1374. "time": "2023-10-06T06:47:41+00:00"
  1375. },
  1376. {
  1377. "name": "monolog/monolog",
  1378. "version": "3.5.0",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/Seldaek/monolog.git",
  1382. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  1387. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  1388. "shasum": ""
  1389. },
  1390. "require": {
  1391. "php": ">=8.1",
  1392. "psr/log": "^2.0 || ^3.0"
  1393. },
  1394. "provide": {
  1395. "psr/log-implementation": "3.0.0"
  1396. },
  1397. "require-dev": {
  1398. "aws/aws-sdk-php": "^3.0",
  1399. "doctrine/couchdb": "~1.0@dev",
  1400. "elasticsearch/elasticsearch": "^7 || ^8",
  1401. "ext-json": "*",
  1402. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1403. "guzzlehttp/guzzle": "^7.4.5",
  1404. "guzzlehttp/psr7": "^2.2",
  1405. "mongodb/mongodb": "^1.8",
  1406. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1407. "phpstan/phpstan": "^1.9",
  1408. "phpstan/phpstan-deprecation-rules": "^1.0",
  1409. "phpstan/phpstan-strict-rules": "^1.4",
  1410. "phpunit/phpunit": "^10.1",
  1411. "predis/predis": "^1.1 || ^2",
  1412. "ruflin/elastica": "^7",
  1413. "symfony/mailer": "^5.4 || ^6",
  1414. "symfony/mime": "^5.4 || ^6"
  1415. },
  1416. "suggest": {
  1417. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1418. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1419. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1420. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1421. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1422. "ext-mbstring": "Allow to work properly with unicode symbols",
  1423. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1424. "ext-openssl": "Required to send log messages using SSL",
  1425. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1426. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1427. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1428. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1429. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1430. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "branch-alias": {
  1435. "dev-main": "3.x-dev"
  1436. }
  1437. },
  1438. "autoload": {
  1439. "psr-4": {
  1440. "Monolog\\": "src/Monolog"
  1441. }
  1442. },
  1443. "notification-url": "https://packagist.org/downloads/",
  1444. "license": [
  1445. "MIT"
  1446. ],
  1447. "authors": [
  1448. {
  1449. "name": "Jordi Boggiano",
  1450. "email": "j.boggiano@seld.be",
  1451. "homepage": "https://seld.be"
  1452. }
  1453. ],
  1454. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1455. "homepage": "https://github.com/Seldaek/monolog",
  1456. "keywords": [
  1457. "log",
  1458. "logging",
  1459. "psr-3"
  1460. ],
  1461. "support": {
  1462. "issues": "https://github.com/Seldaek/monolog/issues",
  1463. "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
  1464. },
  1465. "funding": [
  1466. {
  1467. "url": "https://github.com/Seldaek",
  1468. "type": "github"
  1469. },
  1470. {
  1471. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1472. "type": "tidelift"
  1473. }
  1474. ],
  1475. "time": "2023-10-27T15:32:31+00:00"
  1476. },
  1477. {
  1478. "name": "nelmio/cors-bundle",
  1479. "version": "2.4.0",
  1480. "source": {
  1481. "type": "git",
  1482. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  1483. "reference": "78fcdb91f76b080a1008133def9c7f613833933d"
  1484. },
  1485. "dist": {
  1486. "type": "zip",
  1487. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/78fcdb91f76b080a1008133def9c7f613833933d",
  1488. "reference": "78fcdb91f76b080a1008133def9c7f613833933d",
  1489. "shasum": ""
  1490. },
  1491. "require": {
  1492. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1493. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  1494. },
  1495. "require-dev": {
  1496. "mockery/mockery": "^1.3.6",
  1497. "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
  1498. },
  1499. "type": "symfony-bundle",
  1500. "extra": {
  1501. "branch-alias": {
  1502. "dev-master": "2.x-dev"
  1503. }
  1504. },
  1505. "autoload": {
  1506. "psr-4": {
  1507. "Nelmio\\CorsBundle\\": ""
  1508. },
  1509. "exclude-from-classmap": [
  1510. "/Tests/"
  1511. ]
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Nelmio",
  1520. "homepage": "http://nelm.io"
  1521. },
  1522. {
  1523. "name": "Symfony Community",
  1524. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  1525. }
  1526. ],
  1527. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony application",
  1528. "keywords": [
  1529. "api",
  1530. "cors",
  1531. "crossdomain"
  1532. ],
  1533. "support": {
  1534. "issues": "https://github.com/nelmio/NelmioCorsBundle/issues",
  1535. "source": "https://github.com/nelmio/NelmioCorsBundle/tree/2.4.0"
  1536. },
  1537. "time": "2023-11-30T16:41:19+00:00"
  1538. },
  1539. {
  1540. "name": "phpdocumentor/reflection-common",
  1541. "version": "2.2.0",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1545. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1550. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1551. "shasum": ""
  1552. },
  1553. "require": {
  1554. "php": "^7.2 || ^8.0"
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "branch-alias": {
  1559. "dev-2.x": "2.x-dev"
  1560. }
  1561. },
  1562. "autoload": {
  1563. "psr-4": {
  1564. "phpDocumentor\\Reflection\\": "src/"
  1565. }
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "MIT"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "Jaap van Otterdijk",
  1574. "email": "opensource@ijaap.nl"
  1575. }
  1576. ],
  1577. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1578. "homepage": "http://www.phpdoc.org",
  1579. "keywords": [
  1580. "FQSEN",
  1581. "phpDocumentor",
  1582. "phpdoc",
  1583. "reflection",
  1584. "static analysis"
  1585. ],
  1586. "support": {
  1587. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1588. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1589. },
  1590. "time": "2020-06-27T09:03:43+00:00"
  1591. },
  1592. {
  1593. "name": "phpdocumentor/reflection-docblock",
  1594. "version": "5.3.0",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1598. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1603. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "ext-filter": "*",
  1608. "php": "^7.2 || ^8.0",
  1609. "phpdocumentor/reflection-common": "^2.2",
  1610. "phpdocumentor/type-resolver": "^1.3",
  1611. "webmozart/assert": "^1.9.1"
  1612. },
  1613. "require-dev": {
  1614. "mockery/mockery": "~1.3.2",
  1615. "psalm/phar": "^4.8"
  1616. },
  1617. "type": "library",
  1618. "extra": {
  1619. "branch-alias": {
  1620. "dev-master": "5.x-dev"
  1621. }
  1622. },
  1623. "autoload": {
  1624. "psr-4": {
  1625. "phpDocumentor\\Reflection\\": "src"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Mike van Riel",
  1635. "email": "me@mikevanriel.com"
  1636. },
  1637. {
  1638. "name": "Jaap van Otterdijk",
  1639. "email": "account@ijaap.nl"
  1640. }
  1641. ],
  1642. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1643. "support": {
  1644. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1645. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  1646. },
  1647. "time": "2021-10-19T17:43:47+00:00"
  1648. },
  1649. {
  1650. "name": "phpdocumentor/type-resolver",
  1651. "version": "1.8.2",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1655. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  1660. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "doctrine/deprecations": "^1.0",
  1665. "php": "^7.3 || ^8.0",
  1666. "phpdocumentor/reflection-common": "^2.0",
  1667. "phpstan/phpdoc-parser": "^1.13"
  1668. },
  1669. "require-dev": {
  1670. "ext-tokenizer": "*",
  1671. "phpbench/phpbench": "^1.2",
  1672. "phpstan/extension-installer": "^1.1",
  1673. "phpstan/phpstan": "^1.8",
  1674. "phpstan/phpstan-phpunit": "^1.1",
  1675. "phpunit/phpunit": "^9.5",
  1676. "rector/rector": "^0.13.9",
  1677. "vimeo/psalm": "^4.25"
  1678. },
  1679. "type": "library",
  1680. "extra": {
  1681. "branch-alias": {
  1682. "dev-1.x": "1.x-dev"
  1683. }
  1684. },
  1685. "autoload": {
  1686. "psr-4": {
  1687. "phpDocumentor\\Reflection\\": "src"
  1688. }
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Mike van Riel",
  1697. "email": "me@mikevanriel.com"
  1698. }
  1699. ],
  1700. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1701. "support": {
  1702. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1703. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  1704. },
  1705. "time": "2024-02-23T11:10:43+00:00"
  1706. },
  1707. {
  1708. "name": "phpstan/phpdoc-parser",
  1709. "version": "1.27.0",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1713. "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/86e4d5a4b036f8f0be1464522f4c6b584c452757",
  1718. "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "^7.2 || ^8.0"
  1723. },
  1724. "require-dev": {
  1725. "doctrine/annotations": "^2.0",
  1726. "nikic/php-parser": "^4.15",
  1727. "php-parallel-lint/php-parallel-lint": "^1.2",
  1728. "phpstan/extension-installer": "^1.0",
  1729. "phpstan/phpstan": "^1.5",
  1730. "phpstan/phpstan-phpunit": "^1.1",
  1731. "phpstan/phpstan-strict-rules": "^1.0",
  1732. "phpunit/phpunit": "^9.5",
  1733. "symfony/process": "^5.2"
  1734. },
  1735. "type": "library",
  1736. "autoload": {
  1737. "psr-4": {
  1738. "PHPStan\\PhpDocParser\\": [
  1739. "src/"
  1740. ]
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1748. "support": {
  1749. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1750. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.27.0"
  1751. },
  1752. "time": "2024-03-21T13:14:53+00:00"
  1753. },
  1754. {
  1755. "name": "psr/cache",
  1756. "version": "3.0.0",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/php-fig/cache.git",
  1760. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1765. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "php": ">=8.0.0"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-master": "1.0.x-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "psr-4": {
  1779. "Psr\\Cache\\": "src/"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "PHP-FIG",
  1789. "homepage": "https://www.php-fig.org/"
  1790. }
  1791. ],
  1792. "description": "Common interface for caching libraries",
  1793. "keywords": [
  1794. "cache",
  1795. "psr",
  1796. "psr-6"
  1797. ],
  1798. "support": {
  1799. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1800. },
  1801. "time": "2021-02-03T23:26:27+00:00"
  1802. },
  1803. {
  1804. "name": "psr/clock",
  1805. "version": "1.0.0",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/php-fig/clock.git",
  1809. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1814. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "php": "^7.0 || ^8.0"
  1819. },
  1820. "type": "library",
  1821. "autoload": {
  1822. "psr-4": {
  1823. "Psr\\Clock\\": "src/"
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "MIT"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "PHP-FIG",
  1833. "homepage": "https://www.php-fig.org/"
  1834. }
  1835. ],
  1836. "description": "Common interface for reading the clock.",
  1837. "homepage": "https://github.com/php-fig/clock",
  1838. "keywords": [
  1839. "clock",
  1840. "now",
  1841. "psr",
  1842. "psr-20",
  1843. "time"
  1844. ],
  1845. "support": {
  1846. "issues": "https://github.com/php-fig/clock/issues",
  1847. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1848. },
  1849. "time": "2022-11-25T14:36:26+00:00"
  1850. },
  1851. {
  1852. "name": "psr/container",
  1853. "version": "2.0.2",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/php-fig/container.git",
  1857. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1862. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1863. "shasum": ""
  1864. },
  1865. "require": {
  1866. "php": ">=7.4.0"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "branch-alias": {
  1871. "dev-master": "2.0.x-dev"
  1872. }
  1873. },
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Psr\\Container\\": "src/"
  1877. }
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "PHP-FIG",
  1886. "homepage": "https://www.php-fig.org/"
  1887. }
  1888. ],
  1889. "description": "Common Container Interface (PHP FIG PSR-11)",
  1890. "homepage": "https://github.com/php-fig/container",
  1891. "keywords": [
  1892. "PSR-11",
  1893. "container",
  1894. "container-interface",
  1895. "container-interop",
  1896. "psr"
  1897. ],
  1898. "support": {
  1899. "issues": "https://github.com/php-fig/container/issues",
  1900. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1901. },
  1902. "time": "2021-11-05T16:47:00+00:00"
  1903. },
  1904. {
  1905. "name": "psr/event-dispatcher",
  1906. "version": "1.0.0",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/php-fig/event-dispatcher.git",
  1910. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1915. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "php": ">=7.2.0"
  1920. },
  1921. "type": "library",
  1922. "extra": {
  1923. "branch-alias": {
  1924. "dev-master": "1.0.x-dev"
  1925. }
  1926. },
  1927. "autoload": {
  1928. "psr-4": {
  1929. "Psr\\EventDispatcher\\": "src/"
  1930. }
  1931. },
  1932. "notification-url": "https://packagist.org/downloads/",
  1933. "license": [
  1934. "MIT"
  1935. ],
  1936. "authors": [
  1937. {
  1938. "name": "PHP-FIG",
  1939. "homepage": "http://www.php-fig.org/"
  1940. }
  1941. ],
  1942. "description": "Standard interfaces for event handling.",
  1943. "keywords": [
  1944. "events",
  1945. "psr",
  1946. "psr-14"
  1947. ],
  1948. "support": {
  1949. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1950. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1951. },
  1952. "time": "2019-01-08T18:20:26+00:00"
  1953. },
  1954. {
  1955. "name": "psr/link",
  1956. "version": "2.0.1",
  1957. "source": {
  1958. "type": "git",
  1959. "url": "https://github.com/php-fig/link.git",
  1960. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1961. },
  1962. "dist": {
  1963. "type": "zip",
  1964. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1965. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  1966. "shasum": ""
  1967. },
  1968. "require": {
  1969. "php": ">=8.0.0"
  1970. },
  1971. "suggest": {
  1972. "fig/link-util": "Provides some useful PSR-13 utilities"
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "branch-alias": {
  1977. "dev-master": "2.0.x-dev"
  1978. }
  1979. },
  1980. "autoload": {
  1981. "psr-4": {
  1982. "Psr\\Link\\": "src/"
  1983. }
  1984. },
  1985. "notification-url": "https://packagist.org/downloads/",
  1986. "license": [
  1987. "MIT"
  1988. ],
  1989. "authors": [
  1990. {
  1991. "name": "PHP-FIG",
  1992. "homepage": "http://www.php-fig.org/"
  1993. }
  1994. ],
  1995. "description": "Common interfaces for HTTP links",
  1996. "homepage": "https://github.com/php-fig/link",
  1997. "keywords": [
  1998. "http",
  1999. "http-link",
  2000. "link",
  2001. "psr",
  2002. "psr-13",
  2003. "rest"
  2004. ],
  2005. "support": {
  2006. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2007. },
  2008. "time": "2021-03-11T23:00:27+00:00"
  2009. },
  2010. {
  2011. "name": "psr/log",
  2012. "version": "3.0.0",
  2013. "source": {
  2014. "type": "git",
  2015. "url": "https://github.com/php-fig/log.git",
  2016. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2017. },
  2018. "dist": {
  2019. "type": "zip",
  2020. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2021. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2022. "shasum": ""
  2023. },
  2024. "require": {
  2025. "php": ">=8.0.0"
  2026. },
  2027. "type": "library",
  2028. "extra": {
  2029. "branch-alias": {
  2030. "dev-master": "3.x-dev"
  2031. }
  2032. },
  2033. "autoload": {
  2034. "psr-4": {
  2035. "Psr\\Log\\": "src"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "PHP-FIG",
  2045. "homepage": "https://www.php-fig.org/"
  2046. }
  2047. ],
  2048. "description": "Common interface for logging libraries",
  2049. "homepage": "https://github.com/php-fig/log",
  2050. "keywords": [
  2051. "log",
  2052. "psr",
  2053. "psr-3"
  2054. ],
  2055. "support": {
  2056. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2057. },
  2058. "time": "2021-07-14T16:46:02+00:00"
  2059. },
  2060. {
  2061. "name": "symfony/apache-pack",
  2062. "version": "v1.0.1",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/symfony/apache-pack.git",
  2066. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2071. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2072. "shasum": ""
  2073. },
  2074. "type": "symfony-pack",
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "description": "A pack for Apache support in Symfony",
  2080. "support": {
  2081. "issues": "https://github.com/symfony/apache-pack/issues",
  2082. "source": "https://github.com/symfony/apache-pack/tree/master"
  2083. },
  2084. "time": "2017-12-12T01:46:35+00:00"
  2085. },
  2086. {
  2087. "name": "symfony/asset",
  2088. "version": "v7.0.3",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/symfony/asset.git",
  2092. "reference": "3ae493792fc17cc31b84e231f30f2d154575f171"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/symfony/asset/zipball/3ae493792fc17cc31b84e231f30f2d154575f171",
  2097. "reference": "3ae493792fc17cc31b84e231f30f2d154575f171",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "php": ">=8.2"
  2102. },
  2103. "conflict": {
  2104. "symfony/http-foundation": "<6.4"
  2105. },
  2106. "require-dev": {
  2107. "symfony/http-client": "^6.4|^7.0",
  2108. "symfony/http-foundation": "^6.4|^7.0",
  2109. "symfony/http-kernel": "^6.4|^7.0"
  2110. },
  2111. "type": "library",
  2112. "autoload": {
  2113. "psr-4": {
  2114. "Symfony\\Component\\Asset\\": ""
  2115. },
  2116. "exclude-from-classmap": [
  2117. "/Tests/"
  2118. ]
  2119. },
  2120. "notification-url": "https://packagist.org/downloads/",
  2121. "license": [
  2122. "MIT"
  2123. ],
  2124. "authors": [
  2125. {
  2126. "name": "Fabien Potencier",
  2127. "email": "fabien@symfony.com"
  2128. },
  2129. {
  2130. "name": "Symfony Community",
  2131. "homepage": "https://symfony.com/contributors"
  2132. }
  2133. ],
  2134. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2135. "homepage": "https://symfony.com",
  2136. "support": {
  2137. "source": "https://github.com/symfony/asset/tree/v7.0.3"
  2138. },
  2139. "funding": [
  2140. {
  2141. "url": "https://symfony.com/sponsor",
  2142. "type": "custom"
  2143. },
  2144. {
  2145. "url": "https://github.com/fabpot",
  2146. "type": "github"
  2147. },
  2148. {
  2149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2150. "type": "tidelift"
  2151. }
  2152. ],
  2153. "time": "2024-01-23T15:02:46+00:00"
  2154. },
  2155. {
  2156. "name": "symfony/asset-mapper",
  2157. "version": "v7.0.5",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/symfony/asset-mapper.git",
  2161. "reference": "07133d369eb9f644985584d0877d294c8847a4f0"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/07133d369eb9f644985584d0877d294c8847a4f0",
  2166. "reference": "07133d369eb9f644985584d0877d294c8847a4f0",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "composer/semver": "^3.0",
  2171. "php": ">=8.2",
  2172. "symfony/filesystem": "^6.4|^7.0",
  2173. "symfony/http-client": "^6.4|^7.0"
  2174. },
  2175. "conflict": {
  2176. "symfony/framework-bundle": "<6.4"
  2177. },
  2178. "require-dev": {
  2179. "symfony/asset": "^6.4|^7.0",
  2180. "symfony/browser-kit": "^6.4|^7.0",
  2181. "symfony/console": "^6.4|^7.0",
  2182. "symfony/event-dispatcher-contracts": "^3.0",
  2183. "symfony/finder": "^6.4|^7.0",
  2184. "symfony/framework-bundle": "^6.4|^7.0",
  2185. "symfony/http-foundation": "^6.4|^7.0",
  2186. "symfony/http-kernel": "^6.4|^7.0",
  2187. "symfony/web-link": "^6.4|^7.0"
  2188. },
  2189. "type": "library",
  2190. "autoload": {
  2191. "psr-4": {
  2192. "Symfony\\Component\\AssetMapper\\": ""
  2193. },
  2194. "exclude-from-classmap": [
  2195. "/Tests/"
  2196. ]
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Fabien Potencier",
  2205. "email": "fabien@symfony.com"
  2206. },
  2207. {
  2208. "name": "Symfony Community",
  2209. "homepage": "https://symfony.com/contributors"
  2210. }
  2211. ],
  2212. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2213. "homepage": "https://symfony.com",
  2214. "support": {
  2215. "source": "https://github.com/symfony/asset-mapper/tree/v7.0.5"
  2216. },
  2217. "funding": [
  2218. {
  2219. "url": "https://symfony.com/sponsor",
  2220. "type": "custom"
  2221. },
  2222. {
  2223. "url": "https://github.com/fabpot",
  2224. "type": "github"
  2225. },
  2226. {
  2227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2228. "type": "tidelift"
  2229. }
  2230. ],
  2231. "time": "2024-03-04T12:47:58+00:00"
  2232. },
  2233. {
  2234. "name": "symfony/cache",
  2235. "version": "v7.0.4",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://github.com/symfony/cache.git",
  2239. "reference": "fc822951dd360a593224bb2cef90a087d0dff60f"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://api.github.com/repos/symfony/cache/zipball/fc822951dd360a593224bb2cef90a087d0dff60f",
  2244. "reference": "fc822951dd360a593224bb2cef90a087d0dff60f",
  2245. "shasum": ""
  2246. },
  2247. "require": {
  2248. "php": ">=8.2",
  2249. "psr/cache": "^2.0|^3.0",
  2250. "psr/log": "^1.1|^2|^3",
  2251. "symfony/cache-contracts": "^2.5|^3",
  2252. "symfony/service-contracts": "^2.5|^3",
  2253. "symfony/var-exporter": "^6.4|^7.0"
  2254. },
  2255. "conflict": {
  2256. "doctrine/dbal": "<3.6",
  2257. "symfony/dependency-injection": "<6.4",
  2258. "symfony/http-kernel": "<6.4",
  2259. "symfony/var-dumper": "<6.4"
  2260. },
  2261. "provide": {
  2262. "psr/cache-implementation": "2.0|3.0",
  2263. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2264. "symfony/cache-implementation": "1.1|2.0|3.0"
  2265. },
  2266. "require-dev": {
  2267. "cache/integration-tests": "dev-master",
  2268. "doctrine/dbal": "^3.6|^4",
  2269. "predis/predis": "^1.1|^2.0",
  2270. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2271. "symfony/config": "^6.4|^7.0",
  2272. "symfony/dependency-injection": "^6.4|^7.0",
  2273. "symfony/filesystem": "^6.4|^7.0",
  2274. "symfony/http-kernel": "^6.4|^7.0",
  2275. "symfony/messenger": "^6.4|^7.0",
  2276. "symfony/var-dumper": "^6.4|^7.0"
  2277. },
  2278. "type": "library",
  2279. "autoload": {
  2280. "psr-4": {
  2281. "Symfony\\Component\\Cache\\": ""
  2282. },
  2283. "classmap": [
  2284. "Traits/ValueWrapper.php"
  2285. ],
  2286. "exclude-from-classmap": [
  2287. "/Tests/"
  2288. ]
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Nicolas Grekas",
  2297. "email": "p@tchwork.com"
  2298. },
  2299. {
  2300. "name": "Symfony Community",
  2301. "homepage": "https://symfony.com/contributors"
  2302. }
  2303. ],
  2304. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2305. "homepage": "https://symfony.com",
  2306. "keywords": [
  2307. "caching",
  2308. "psr6"
  2309. ],
  2310. "support": {
  2311. "source": "https://github.com/symfony/cache/tree/v7.0.4"
  2312. },
  2313. "funding": [
  2314. {
  2315. "url": "https://symfony.com/sponsor",
  2316. "type": "custom"
  2317. },
  2318. {
  2319. "url": "https://github.com/fabpot",
  2320. "type": "github"
  2321. },
  2322. {
  2323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2324. "type": "tidelift"
  2325. }
  2326. ],
  2327. "time": "2024-02-22T20:27:20+00:00"
  2328. },
  2329. {
  2330. "name": "symfony/cache-contracts",
  2331. "version": "v3.4.0",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://github.com/symfony/cache-contracts.git",
  2335. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  2340. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  2341. "shasum": ""
  2342. },
  2343. "require": {
  2344. "php": ">=8.1",
  2345. "psr/cache": "^3.0"
  2346. },
  2347. "type": "library",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-main": "3.4-dev"
  2351. },
  2352. "thanks": {
  2353. "name": "symfony/contracts",
  2354. "url": "https://github.com/symfony/contracts"
  2355. }
  2356. },
  2357. "autoload": {
  2358. "psr-4": {
  2359. "Symfony\\Contracts\\Cache\\": ""
  2360. }
  2361. },
  2362. "notification-url": "https://packagist.org/downloads/",
  2363. "license": [
  2364. "MIT"
  2365. ],
  2366. "authors": [
  2367. {
  2368. "name": "Nicolas Grekas",
  2369. "email": "p@tchwork.com"
  2370. },
  2371. {
  2372. "name": "Symfony Community",
  2373. "homepage": "https://symfony.com/contributors"
  2374. }
  2375. ],
  2376. "description": "Generic abstractions related to caching",
  2377. "homepage": "https://symfony.com",
  2378. "keywords": [
  2379. "abstractions",
  2380. "contracts",
  2381. "decoupling",
  2382. "interfaces",
  2383. "interoperability",
  2384. "standards"
  2385. ],
  2386. "support": {
  2387. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  2388. },
  2389. "funding": [
  2390. {
  2391. "url": "https://symfony.com/sponsor",
  2392. "type": "custom"
  2393. },
  2394. {
  2395. "url": "https://github.com/fabpot",
  2396. "type": "github"
  2397. },
  2398. {
  2399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2400. "type": "tidelift"
  2401. }
  2402. ],
  2403. "time": "2023-09-25T12:52:38+00:00"
  2404. },
  2405. {
  2406. "name": "symfony/clock",
  2407. "version": "v7.0.5",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/symfony/clock.git",
  2411. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2",
  2416. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": ">=8.2",
  2421. "psr/clock": "^1.0",
  2422. "symfony/polyfill-php83": "^1.28"
  2423. },
  2424. "provide": {
  2425. "psr/clock-implementation": "1.0"
  2426. },
  2427. "type": "library",
  2428. "autoload": {
  2429. "files": [
  2430. "Resources/now.php"
  2431. ],
  2432. "psr-4": {
  2433. "Symfony\\Component\\Clock\\": ""
  2434. },
  2435. "exclude-from-classmap": [
  2436. "/Tests/"
  2437. ]
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "MIT"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "Nicolas Grekas",
  2446. "email": "p@tchwork.com"
  2447. },
  2448. {
  2449. "name": "Symfony Community",
  2450. "homepage": "https://symfony.com/contributors"
  2451. }
  2452. ],
  2453. "description": "Decouples applications from the system clock",
  2454. "homepage": "https://symfony.com",
  2455. "keywords": [
  2456. "clock",
  2457. "psr20",
  2458. "time"
  2459. ],
  2460. "support": {
  2461. "source": "https://github.com/symfony/clock/tree/v7.0.5"
  2462. },
  2463. "funding": [
  2464. {
  2465. "url": "https://symfony.com/sponsor",
  2466. "type": "custom"
  2467. },
  2468. {
  2469. "url": "https://github.com/fabpot",
  2470. "type": "github"
  2471. },
  2472. {
  2473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2474. "type": "tidelift"
  2475. }
  2476. ],
  2477. "time": "2024-03-02T12:46:12+00:00"
  2478. },
  2479. {
  2480. "name": "symfony/config",
  2481. "version": "v7.0.4",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/symfony/config.git",
  2485. "reference": "44deeba7233f08f383185ffa37dace3b3bc87364"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/symfony/config/zipball/44deeba7233f08f383185ffa37dace3b3bc87364",
  2490. "reference": "44deeba7233f08f383185ffa37dace3b3bc87364",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "php": ">=8.2",
  2495. "symfony/deprecation-contracts": "^2.5|^3",
  2496. "symfony/filesystem": "^6.4|^7.0",
  2497. "symfony/polyfill-ctype": "~1.8"
  2498. },
  2499. "conflict": {
  2500. "symfony/finder": "<6.4",
  2501. "symfony/service-contracts": "<2.5"
  2502. },
  2503. "require-dev": {
  2504. "symfony/event-dispatcher": "^6.4|^7.0",
  2505. "symfony/finder": "^6.4|^7.0",
  2506. "symfony/messenger": "^6.4|^7.0",
  2507. "symfony/service-contracts": "^2.5|^3",
  2508. "symfony/yaml": "^6.4|^7.0"
  2509. },
  2510. "type": "library",
  2511. "autoload": {
  2512. "psr-4": {
  2513. "Symfony\\Component\\Config\\": ""
  2514. },
  2515. "exclude-from-classmap": [
  2516. "/Tests/"
  2517. ]
  2518. },
  2519. "notification-url": "https://packagist.org/downloads/",
  2520. "license": [
  2521. "MIT"
  2522. ],
  2523. "authors": [
  2524. {
  2525. "name": "Fabien Potencier",
  2526. "email": "fabien@symfony.com"
  2527. },
  2528. {
  2529. "name": "Symfony Community",
  2530. "homepage": "https://symfony.com/contributors"
  2531. }
  2532. ],
  2533. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2534. "homepage": "https://symfony.com",
  2535. "support": {
  2536. "source": "https://github.com/symfony/config/tree/v7.0.4"
  2537. },
  2538. "funding": [
  2539. {
  2540. "url": "https://symfony.com/sponsor",
  2541. "type": "custom"
  2542. },
  2543. {
  2544. "url": "https://github.com/fabpot",
  2545. "type": "github"
  2546. },
  2547. {
  2548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2549. "type": "tidelift"
  2550. }
  2551. ],
  2552. "time": "2024-02-26T07:52:39+00:00"
  2553. },
  2554. {
  2555. "name": "symfony/console",
  2556. "version": "v7.0.4",
  2557. "source": {
  2558. "type": "git",
  2559. "url": "https://github.com/symfony/console.git",
  2560. "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f"
  2561. },
  2562. "dist": {
  2563. "type": "zip",
  2564. "url": "https://api.github.com/repos/symfony/console/zipball/6b099f3306f7c9c2d2786ed736d0026b2903205f",
  2565. "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f",
  2566. "shasum": ""
  2567. },
  2568. "require": {
  2569. "php": ">=8.2",
  2570. "symfony/polyfill-mbstring": "~1.0",
  2571. "symfony/service-contracts": "^2.5|^3",
  2572. "symfony/string": "^6.4|^7.0"
  2573. },
  2574. "conflict": {
  2575. "symfony/dependency-injection": "<6.4",
  2576. "symfony/dotenv": "<6.4",
  2577. "symfony/event-dispatcher": "<6.4",
  2578. "symfony/lock": "<6.4",
  2579. "symfony/process": "<6.4"
  2580. },
  2581. "provide": {
  2582. "psr/log-implementation": "1.0|2.0|3.0"
  2583. },
  2584. "require-dev": {
  2585. "psr/log": "^1|^2|^3",
  2586. "symfony/config": "^6.4|^7.0",
  2587. "symfony/dependency-injection": "^6.4|^7.0",
  2588. "symfony/event-dispatcher": "^6.4|^7.0",
  2589. "symfony/http-foundation": "^6.4|^7.0",
  2590. "symfony/http-kernel": "^6.4|^7.0",
  2591. "symfony/lock": "^6.4|^7.0",
  2592. "symfony/messenger": "^6.4|^7.0",
  2593. "symfony/process": "^6.4|^7.0",
  2594. "symfony/stopwatch": "^6.4|^7.0",
  2595. "symfony/var-dumper": "^6.4|^7.0"
  2596. },
  2597. "type": "library",
  2598. "autoload": {
  2599. "psr-4": {
  2600. "Symfony\\Component\\Console\\": ""
  2601. },
  2602. "exclude-from-classmap": [
  2603. "/Tests/"
  2604. ]
  2605. },
  2606. "notification-url": "https://packagist.org/downloads/",
  2607. "license": [
  2608. "MIT"
  2609. ],
  2610. "authors": [
  2611. {
  2612. "name": "Fabien Potencier",
  2613. "email": "fabien@symfony.com"
  2614. },
  2615. {
  2616. "name": "Symfony Community",
  2617. "homepage": "https://symfony.com/contributors"
  2618. }
  2619. ],
  2620. "description": "Eases the creation of beautiful and testable command line interfaces",
  2621. "homepage": "https://symfony.com",
  2622. "keywords": [
  2623. "cli",
  2624. "command-line",
  2625. "console",
  2626. "terminal"
  2627. ],
  2628. "support": {
  2629. "source": "https://github.com/symfony/console/tree/v7.0.4"
  2630. },
  2631. "funding": [
  2632. {
  2633. "url": "https://symfony.com/sponsor",
  2634. "type": "custom"
  2635. },
  2636. {
  2637. "url": "https://github.com/fabpot",
  2638. "type": "github"
  2639. },
  2640. {
  2641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2642. "type": "tidelift"
  2643. }
  2644. ],
  2645. "time": "2024-02-22T20:27:20+00:00"
  2646. },
  2647. {
  2648. "name": "symfony/dependency-injection",
  2649. "version": "v7.0.4",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/symfony/dependency-injection.git",
  2653. "reference": "47f37af245df8457ea63409fc242b3cc825ce5eb"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/47f37af245df8457ea63409fc242b3cc825ce5eb",
  2658. "reference": "47f37af245df8457ea63409fc242b3cc825ce5eb",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "php": ">=8.2",
  2663. "psr/container": "^1.1|^2.0",
  2664. "symfony/deprecation-contracts": "^2.5|^3",
  2665. "symfony/service-contracts": "^3.3",
  2666. "symfony/var-exporter": "^6.4|^7.0"
  2667. },
  2668. "conflict": {
  2669. "ext-psr": "<1.1|>=2",
  2670. "symfony/config": "<6.4",
  2671. "symfony/finder": "<6.4",
  2672. "symfony/yaml": "<6.4"
  2673. },
  2674. "provide": {
  2675. "psr/container-implementation": "1.1|2.0",
  2676. "symfony/service-implementation": "1.1|2.0|3.0"
  2677. },
  2678. "require-dev": {
  2679. "symfony/config": "^6.4|^7.0",
  2680. "symfony/expression-language": "^6.4|^7.0",
  2681. "symfony/yaml": "^6.4|^7.0"
  2682. },
  2683. "type": "library",
  2684. "autoload": {
  2685. "psr-4": {
  2686. "Symfony\\Component\\DependencyInjection\\": ""
  2687. },
  2688. "exclude-from-classmap": [
  2689. "/Tests/"
  2690. ]
  2691. },
  2692. "notification-url": "https://packagist.org/downloads/",
  2693. "license": [
  2694. "MIT"
  2695. ],
  2696. "authors": [
  2697. {
  2698. "name": "Fabien Potencier",
  2699. "email": "fabien@symfony.com"
  2700. },
  2701. {
  2702. "name": "Symfony Community",
  2703. "homepage": "https://symfony.com/contributors"
  2704. }
  2705. ],
  2706. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2707. "homepage": "https://symfony.com",
  2708. "support": {
  2709. "source": "https://github.com/symfony/dependency-injection/tree/v7.0.4"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://symfony.com/sponsor",
  2714. "type": "custom"
  2715. },
  2716. {
  2717. "url": "https://github.com/fabpot",
  2718. "type": "github"
  2719. },
  2720. {
  2721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2722. "type": "tidelift"
  2723. }
  2724. ],
  2725. "time": "2024-02-22T20:27:20+00:00"
  2726. },
  2727. {
  2728. "name": "symfony/deprecation-contracts",
  2729. "version": "v3.4.0",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/symfony/deprecation-contracts.git",
  2733. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  2738. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  2739. "shasum": ""
  2740. },
  2741. "require": {
  2742. "php": ">=8.1"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "branch-alias": {
  2747. "dev-main": "3.4-dev"
  2748. },
  2749. "thanks": {
  2750. "name": "symfony/contracts",
  2751. "url": "https://github.com/symfony/contracts"
  2752. }
  2753. },
  2754. "autoload": {
  2755. "files": [
  2756. "function.php"
  2757. ]
  2758. },
  2759. "notification-url": "https://packagist.org/downloads/",
  2760. "license": [
  2761. "MIT"
  2762. ],
  2763. "authors": [
  2764. {
  2765. "name": "Nicolas Grekas",
  2766. "email": "p@tchwork.com"
  2767. },
  2768. {
  2769. "name": "Symfony Community",
  2770. "homepage": "https://symfony.com/contributors"
  2771. }
  2772. ],
  2773. "description": "A generic function and convention to trigger deprecation notices",
  2774. "homepage": "https://symfony.com",
  2775. "support": {
  2776. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  2777. },
  2778. "funding": [
  2779. {
  2780. "url": "https://symfony.com/sponsor",
  2781. "type": "custom"
  2782. },
  2783. {
  2784. "url": "https://github.com/fabpot",
  2785. "type": "github"
  2786. },
  2787. {
  2788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2789. "type": "tidelift"
  2790. }
  2791. ],
  2792. "time": "2023-05-23T14:45:45+00:00"
  2793. },
  2794. {
  2795. "name": "symfony/doctrine-bridge",
  2796. "version": "v7.0.5",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/symfony/doctrine-bridge.git",
  2800. "reference": "e3cf34996df541c62acc1bd5f187aacc18a204d2"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/e3cf34996df541c62acc1bd5f187aacc18a204d2",
  2805. "reference": "e3cf34996df541c62acc1bd5f187aacc18a204d2",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "doctrine/event-manager": "^2",
  2810. "doctrine/persistence": "^3.1",
  2811. "php": ">=8.2",
  2812. "symfony/polyfill-ctype": "~1.8",
  2813. "symfony/polyfill-mbstring": "~1.0",
  2814. "symfony/service-contracts": "^2.5|^3"
  2815. },
  2816. "conflict": {
  2817. "doctrine/dbal": "<3.6",
  2818. "doctrine/lexer": "<1.1",
  2819. "doctrine/orm": "<2.15",
  2820. "symfony/cache": "<6.4",
  2821. "symfony/dependency-injection": "<6.4",
  2822. "symfony/form": "<6.4",
  2823. "symfony/http-foundation": "<6.4",
  2824. "symfony/http-kernel": "<6.4",
  2825. "symfony/lock": "<6.4",
  2826. "symfony/messenger": "<6.4",
  2827. "symfony/property-info": "<6.4",
  2828. "symfony/security-bundle": "<6.4",
  2829. "symfony/security-core": "<6.4",
  2830. "symfony/validator": "<6.4"
  2831. },
  2832. "require-dev": {
  2833. "doctrine/collections": "^1.0|^2.0",
  2834. "doctrine/data-fixtures": "^1.1",
  2835. "doctrine/dbal": "^3.6|^4",
  2836. "doctrine/orm": "^2.15|^3",
  2837. "psr/log": "^1|^2|^3",
  2838. "symfony/cache": "^6.4|^7.0",
  2839. "symfony/config": "^6.4|^7.0",
  2840. "symfony/dependency-injection": "^6.4|^7.0",
  2841. "symfony/doctrine-messenger": "^6.4|^7.0",
  2842. "symfony/expression-language": "^6.4|^7.0",
  2843. "symfony/form": "^6.4|^7.0",
  2844. "symfony/http-kernel": "^6.4|^7.0",
  2845. "symfony/lock": "^6.4|^7.0",
  2846. "symfony/messenger": "^6.4|^7.0",
  2847. "symfony/property-access": "^6.4|^7.0",
  2848. "symfony/property-info": "^6.4|^7.0",
  2849. "symfony/security-core": "^6.4|^7.0",
  2850. "symfony/stopwatch": "^6.4|^7.0",
  2851. "symfony/translation": "^6.4|^7.0",
  2852. "symfony/uid": "^6.4|^7.0",
  2853. "symfony/validator": "^6.4|^7.0",
  2854. "symfony/var-dumper": "^6.4|^7.0"
  2855. },
  2856. "type": "symfony-bridge",
  2857. "autoload": {
  2858. "psr-4": {
  2859. "Symfony\\Bridge\\Doctrine\\": ""
  2860. },
  2861. "exclude-from-classmap": [
  2862. "/Tests/"
  2863. ]
  2864. },
  2865. "notification-url": "https://packagist.org/downloads/",
  2866. "license": [
  2867. "MIT"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "Fabien Potencier",
  2872. "email": "fabien@symfony.com"
  2873. },
  2874. {
  2875. "name": "Symfony Community",
  2876. "homepage": "https://symfony.com/contributors"
  2877. }
  2878. ],
  2879. "description": "Provides integration for Doctrine with various Symfony components",
  2880. "homepage": "https://symfony.com",
  2881. "support": {
  2882. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.0.5"
  2883. },
  2884. "funding": [
  2885. {
  2886. "url": "https://symfony.com/sponsor",
  2887. "type": "custom"
  2888. },
  2889. {
  2890. "url": "https://github.com/fabpot",
  2891. "type": "github"
  2892. },
  2893. {
  2894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2895. "type": "tidelift"
  2896. }
  2897. ],
  2898. "time": "2024-02-27T12:34:35+00:00"
  2899. },
  2900. {
  2901. "name": "symfony/doctrine-messenger",
  2902. "version": "v7.0.4",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://github.com/symfony/doctrine-messenger.git",
  2906. "reference": "5a9ebba1b0be17af7b1e6b6433ad2cb6e35e97ca"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/5a9ebba1b0be17af7b1e6b6433ad2cb6e35e97ca",
  2911. "reference": "5a9ebba1b0be17af7b1e6b6433ad2cb6e35e97ca",
  2912. "shasum": ""
  2913. },
  2914. "require": {
  2915. "doctrine/dbal": "^3.6|^4",
  2916. "php": ">=8.2",
  2917. "symfony/messenger": "^6.4|^7.0",
  2918. "symfony/service-contracts": "^2.5|^3"
  2919. },
  2920. "conflict": {
  2921. "doctrine/persistence": "<1.3"
  2922. },
  2923. "require-dev": {
  2924. "doctrine/persistence": "^1.3|^2|^3",
  2925. "symfony/property-access": "^6.4|^7.0",
  2926. "symfony/serializer": "^6.4|^7.0"
  2927. },
  2928. "type": "symfony-messenger-bridge",
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2932. },
  2933. "exclude-from-classmap": [
  2934. "/Tests/"
  2935. ]
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Fabien Potencier",
  2944. "email": "fabien@symfony.com"
  2945. },
  2946. {
  2947. "name": "Symfony Community",
  2948. "homepage": "https://symfony.com/contributors"
  2949. }
  2950. ],
  2951. "description": "Symfony Doctrine Messenger Bridge",
  2952. "homepage": "https://symfony.com",
  2953. "support": {
  2954. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.0.4"
  2955. },
  2956. "funding": [
  2957. {
  2958. "url": "https://symfony.com/sponsor",
  2959. "type": "custom"
  2960. },
  2961. {
  2962. "url": "https://github.com/fabpot",
  2963. "type": "github"
  2964. },
  2965. {
  2966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2967. "type": "tidelift"
  2968. }
  2969. ],
  2970. "time": "2024-02-22T20:27:20+00:00"
  2971. },
  2972. {
  2973. "name": "symfony/dotenv",
  2974. "version": "v7.0.4",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://github.com/symfony/dotenv.git",
  2978. "reference": "8017ea2f0ff4fbda6ae1bf3f5409d5ecff982067"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://api.github.com/repos/symfony/dotenv/zipball/8017ea2f0ff4fbda6ae1bf3f5409d5ecff982067",
  2983. "reference": "8017ea2f0ff4fbda6ae1bf3f5409d5ecff982067",
  2984. "shasum": ""
  2985. },
  2986. "require": {
  2987. "php": ">=8.2"
  2988. },
  2989. "conflict": {
  2990. "symfony/console": "<6.4",
  2991. "symfony/process": "<6.4"
  2992. },
  2993. "require-dev": {
  2994. "symfony/console": "^6.4|^7.0",
  2995. "symfony/process": "^6.4|^7.0"
  2996. },
  2997. "type": "library",
  2998. "autoload": {
  2999. "psr-4": {
  3000. "Symfony\\Component\\Dotenv\\": ""
  3001. },
  3002. "exclude-from-classmap": [
  3003. "/Tests/"
  3004. ]
  3005. },
  3006. "notification-url": "https://packagist.org/downloads/",
  3007. "license": [
  3008. "MIT"
  3009. ],
  3010. "authors": [
  3011. {
  3012. "name": "Fabien Potencier",
  3013. "email": "fabien@symfony.com"
  3014. },
  3015. {
  3016. "name": "Symfony Community",
  3017. "homepage": "https://symfony.com/contributors"
  3018. }
  3019. ],
  3020. "description": "Registers environment variables from a .env file",
  3021. "homepage": "https://symfony.com",
  3022. "keywords": [
  3023. "dotenv",
  3024. "env",
  3025. "environment"
  3026. ],
  3027. "support": {
  3028. "source": "https://github.com/symfony/dotenv/tree/v7.0.4"
  3029. },
  3030. "funding": [
  3031. {
  3032. "url": "https://symfony.com/sponsor",
  3033. "type": "custom"
  3034. },
  3035. {
  3036. "url": "https://github.com/fabpot",
  3037. "type": "github"
  3038. },
  3039. {
  3040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3041. "type": "tidelift"
  3042. }
  3043. ],
  3044. "time": "2024-02-09T10:53:15+00:00"
  3045. },
  3046. {
  3047. "name": "symfony/error-handler",
  3048. "version": "v7.0.4",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/symfony/error-handler.git",
  3052. "reference": "677b24759decff69e65b1e9d1471d90f95ced880"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/symfony/error-handler/zipball/677b24759decff69e65b1e9d1471d90f95ced880",
  3057. "reference": "677b24759decff69e65b1e9d1471d90f95ced880",
  3058. "shasum": ""
  3059. },
  3060. "require": {
  3061. "php": ">=8.2",
  3062. "psr/log": "^1|^2|^3",
  3063. "symfony/var-dumper": "^6.4|^7.0"
  3064. },
  3065. "conflict": {
  3066. "symfony/deprecation-contracts": "<2.5",
  3067. "symfony/http-kernel": "<6.4"
  3068. },
  3069. "require-dev": {
  3070. "symfony/deprecation-contracts": "^2.5|^3",
  3071. "symfony/http-kernel": "^6.4|^7.0",
  3072. "symfony/serializer": "^6.4|^7.0"
  3073. },
  3074. "bin": [
  3075. "Resources/bin/patch-type-declarations"
  3076. ],
  3077. "type": "library",
  3078. "autoload": {
  3079. "psr-4": {
  3080. "Symfony\\Component\\ErrorHandler\\": ""
  3081. },
  3082. "exclude-from-classmap": [
  3083. "/Tests/"
  3084. ]
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "authors": [
  3091. {
  3092. "name": "Fabien Potencier",
  3093. "email": "fabien@symfony.com"
  3094. },
  3095. {
  3096. "name": "Symfony Community",
  3097. "homepage": "https://symfony.com/contributors"
  3098. }
  3099. ],
  3100. "description": "Provides tools to manage errors and ease debugging PHP code",
  3101. "homepage": "https://symfony.com",
  3102. "support": {
  3103. "source": "https://github.com/symfony/error-handler/tree/v7.0.4"
  3104. },
  3105. "funding": [
  3106. {
  3107. "url": "https://symfony.com/sponsor",
  3108. "type": "custom"
  3109. },
  3110. {
  3111. "url": "https://github.com/fabpot",
  3112. "type": "github"
  3113. },
  3114. {
  3115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3116. "type": "tidelift"
  3117. }
  3118. ],
  3119. "time": "2024-02-22T20:27:20+00:00"
  3120. },
  3121. {
  3122. "name": "symfony/event-dispatcher",
  3123. "version": "v7.0.3",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/symfony/event-dispatcher.git",
  3127. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  3132. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "php": ">=8.2",
  3137. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3138. },
  3139. "conflict": {
  3140. "symfony/dependency-injection": "<6.4",
  3141. "symfony/service-contracts": "<2.5"
  3142. },
  3143. "provide": {
  3144. "psr/event-dispatcher-implementation": "1.0",
  3145. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3146. },
  3147. "require-dev": {
  3148. "psr/log": "^1|^2|^3",
  3149. "symfony/config": "^6.4|^7.0",
  3150. "symfony/dependency-injection": "^6.4|^7.0",
  3151. "symfony/error-handler": "^6.4|^7.0",
  3152. "symfony/expression-language": "^6.4|^7.0",
  3153. "symfony/http-foundation": "^6.4|^7.0",
  3154. "symfony/service-contracts": "^2.5|^3",
  3155. "symfony/stopwatch": "^6.4|^7.0"
  3156. },
  3157. "type": "library",
  3158. "autoload": {
  3159. "psr-4": {
  3160. "Symfony\\Component\\EventDispatcher\\": ""
  3161. },
  3162. "exclude-from-classmap": [
  3163. "/Tests/"
  3164. ]
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Fabien Potencier",
  3173. "email": "fabien@symfony.com"
  3174. },
  3175. {
  3176. "name": "Symfony Community",
  3177. "homepage": "https://symfony.com/contributors"
  3178. }
  3179. ],
  3180. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3181. "homepage": "https://symfony.com",
  3182. "support": {
  3183. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  3184. },
  3185. "funding": [
  3186. {
  3187. "url": "https://symfony.com/sponsor",
  3188. "type": "custom"
  3189. },
  3190. {
  3191. "url": "https://github.com/fabpot",
  3192. "type": "github"
  3193. },
  3194. {
  3195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3196. "type": "tidelift"
  3197. }
  3198. ],
  3199. "time": "2024-01-23T15:02:46+00:00"
  3200. },
  3201. {
  3202. "name": "symfony/event-dispatcher-contracts",
  3203. "version": "v3.4.0",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3207. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  3212. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "php": ">=8.1",
  3217. "psr/event-dispatcher": "^1"
  3218. },
  3219. "type": "library",
  3220. "extra": {
  3221. "branch-alias": {
  3222. "dev-main": "3.4-dev"
  3223. },
  3224. "thanks": {
  3225. "name": "symfony/contracts",
  3226. "url": "https://github.com/symfony/contracts"
  3227. }
  3228. },
  3229. "autoload": {
  3230. "psr-4": {
  3231. "Symfony\\Contracts\\EventDispatcher\\": ""
  3232. }
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Nicolas Grekas",
  3241. "email": "p@tchwork.com"
  3242. },
  3243. {
  3244. "name": "Symfony Community",
  3245. "homepage": "https://symfony.com/contributors"
  3246. }
  3247. ],
  3248. "description": "Generic abstractions related to dispatching event",
  3249. "homepage": "https://symfony.com",
  3250. "keywords": [
  3251. "abstractions",
  3252. "contracts",
  3253. "decoupling",
  3254. "interfaces",
  3255. "interoperability",
  3256. "standards"
  3257. ],
  3258. "support": {
  3259. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  3260. },
  3261. "funding": [
  3262. {
  3263. "url": "https://symfony.com/sponsor",
  3264. "type": "custom"
  3265. },
  3266. {
  3267. "url": "https://github.com/fabpot",
  3268. "type": "github"
  3269. },
  3270. {
  3271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3272. "type": "tidelift"
  3273. }
  3274. ],
  3275. "time": "2023-05-23T14:45:45+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/expression-language",
  3279. "version": "v7.0.3",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/expression-language.git",
  3283. "reference": "0877c599cb260c9614f9229c0a2090d6919fd621"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/expression-language/zipball/0877c599cb260c9614f9229c0a2090d6919fd621",
  3288. "reference": "0877c599cb260c9614f9229c0a2090d6919fd621",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "php": ">=8.2",
  3293. "symfony/cache": "^6.4|^7.0",
  3294. "symfony/service-contracts": "^2.5|^3"
  3295. },
  3296. "type": "library",
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Symfony\\Component\\ExpressionLanguage\\": ""
  3300. },
  3301. "exclude-from-classmap": [
  3302. "/Tests/"
  3303. ]
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Fabien Potencier",
  3312. "email": "fabien@symfony.com"
  3313. },
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. }
  3318. ],
  3319. "description": "Provides an engine that can compile and evaluate expressions",
  3320. "homepage": "https://symfony.com",
  3321. "support": {
  3322. "source": "https://github.com/symfony/expression-language/tree/v7.0.3"
  3323. },
  3324. "funding": [
  3325. {
  3326. "url": "https://symfony.com/sponsor",
  3327. "type": "custom"
  3328. },
  3329. {
  3330. "url": "https://github.com/fabpot",
  3331. "type": "github"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "time": "2024-01-23T15:02:46+00:00"
  3339. },
  3340. {
  3341. "name": "symfony/filesystem",
  3342. "version": "v7.0.3",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/symfony/filesystem.git",
  3346. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12",
  3351. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=8.2",
  3356. "symfony/polyfill-ctype": "~1.8",
  3357. "symfony/polyfill-mbstring": "~1.8"
  3358. },
  3359. "type": "library",
  3360. "autoload": {
  3361. "psr-4": {
  3362. "Symfony\\Component\\Filesystem\\": ""
  3363. },
  3364. "exclude-from-classmap": [
  3365. "/Tests/"
  3366. ]
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Fabien Potencier",
  3375. "email": "fabien@symfony.com"
  3376. },
  3377. {
  3378. "name": "Symfony Community",
  3379. "homepage": "https://symfony.com/contributors"
  3380. }
  3381. ],
  3382. "description": "Provides basic utilities for the filesystem",
  3383. "homepage": "https://symfony.com",
  3384. "support": {
  3385. "source": "https://github.com/symfony/filesystem/tree/v7.0.3"
  3386. },
  3387. "funding": [
  3388. {
  3389. "url": "https://symfony.com/sponsor",
  3390. "type": "custom"
  3391. },
  3392. {
  3393. "url": "https://github.com/fabpot",
  3394. "type": "github"
  3395. },
  3396. {
  3397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3398. "type": "tidelift"
  3399. }
  3400. ],
  3401. "time": "2024-01-23T15:02:46+00:00"
  3402. },
  3403. {
  3404. "name": "symfony/finder",
  3405. "version": "v7.0.0",
  3406. "source": {
  3407. "type": "git",
  3408. "url": "https://github.com/symfony/finder.git",
  3409. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  3410. },
  3411. "dist": {
  3412. "type": "zip",
  3413. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  3414. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  3415. "shasum": ""
  3416. },
  3417. "require": {
  3418. "php": ">=8.2"
  3419. },
  3420. "require-dev": {
  3421. "symfony/filesystem": "^6.4|^7.0"
  3422. },
  3423. "type": "library",
  3424. "autoload": {
  3425. "psr-4": {
  3426. "Symfony\\Component\\Finder\\": ""
  3427. },
  3428. "exclude-from-classmap": [
  3429. "/Tests/"
  3430. ]
  3431. },
  3432. "notification-url": "https://packagist.org/downloads/",
  3433. "license": [
  3434. "MIT"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "Fabien Potencier",
  3439. "email": "fabien@symfony.com"
  3440. },
  3441. {
  3442. "name": "Symfony Community",
  3443. "homepage": "https://symfony.com/contributors"
  3444. }
  3445. ],
  3446. "description": "Finds files and directories via an intuitive fluent interface",
  3447. "homepage": "https://symfony.com",
  3448. "support": {
  3449. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  3450. },
  3451. "funding": [
  3452. {
  3453. "url": "https://symfony.com/sponsor",
  3454. "type": "custom"
  3455. },
  3456. {
  3457. "url": "https://github.com/fabpot",
  3458. "type": "github"
  3459. },
  3460. {
  3461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3462. "type": "tidelift"
  3463. }
  3464. ],
  3465. "time": "2023-10-31T17:59:56+00:00"
  3466. },
  3467. {
  3468. "name": "symfony/flex",
  3469. "version": "v2.4.5",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/symfony/flex.git",
  3473. "reference": "b0a405f40614c9f584b489d54f91091817b0e26e"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/symfony/flex/zipball/b0a405f40614c9f584b489d54f91091817b0e26e",
  3478. "reference": "b0a405f40614c9f584b489d54f91091817b0e26e",
  3479. "shasum": ""
  3480. },
  3481. "require": {
  3482. "composer-plugin-api": "^2.1",
  3483. "php": ">=8.0"
  3484. },
  3485. "require-dev": {
  3486. "composer/composer": "^2.1",
  3487. "symfony/dotenv": "^5.4|^6.0",
  3488. "symfony/filesystem": "^5.4|^6.0",
  3489. "symfony/phpunit-bridge": "^5.4|^6.0",
  3490. "symfony/process": "^5.4|^6.0"
  3491. },
  3492. "type": "composer-plugin",
  3493. "extra": {
  3494. "class": "Symfony\\Flex\\Flex"
  3495. },
  3496. "autoload": {
  3497. "psr-4": {
  3498. "Symfony\\Flex\\": "src"
  3499. }
  3500. },
  3501. "notification-url": "https://packagist.org/downloads/",
  3502. "license": [
  3503. "MIT"
  3504. ],
  3505. "authors": [
  3506. {
  3507. "name": "Fabien Potencier",
  3508. "email": "fabien.potencier@gmail.com"
  3509. }
  3510. ],
  3511. "description": "Composer plugin for Symfony",
  3512. "support": {
  3513. "issues": "https://github.com/symfony/flex/issues",
  3514. "source": "https://github.com/symfony/flex/tree/v2.4.5"
  3515. },
  3516. "funding": [
  3517. {
  3518. "url": "https://symfony.com/sponsor",
  3519. "type": "custom"
  3520. },
  3521. {
  3522. "url": "https://github.com/fabpot",
  3523. "type": "github"
  3524. },
  3525. {
  3526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3527. "type": "tidelift"
  3528. }
  3529. ],
  3530. "time": "2024-03-02T08:16:47+00:00"
  3531. },
  3532. {
  3533. "name": "symfony/form",
  3534. "version": "v7.0.4",
  3535. "source": {
  3536. "type": "git",
  3537. "url": "https://github.com/symfony/form.git",
  3538. "reference": "5cfe85c74caf924c7cec2134e169320b464ede84"
  3539. },
  3540. "dist": {
  3541. "type": "zip",
  3542. "url": "https://api.github.com/repos/symfony/form/zipball/5cfe85c74caf924c7cec2134e169320b464ede84",
  3543. "reference": "5cfe85c74caf924c7cec2134e169320b464ede84",
  3544. "shasum": ""
  3545. },
  3546. "require": {
  3547. "php": ">=8.2",
  3548. "symfony/event-dispatcher": "^6.4|^7.0",
  3549. "symfony/options-resolver": "^6.4|^7.0",
  3550. "symfony/polyfill-ctype": "~1.8",
  3551. "symfony/polyfill-intl-icu": "^1.21",
  3552. "symfony/polyfill-mbstring": "~1.0",
  3553. "symfony/property-access": "^6.4|^7.0",
  3554. "symfony/service-contracts": "^2.5|^3"
  3555. },
  3556. "conflict": {
  3557. "symfony/console": "<6.4",
  3558. "symfony/dependency-injection": "<6.4",
  3559. "symfony/doctrine-bridge": "<6.4",
  3560. "symfony/error-handler": "<6.4",
  3561. "symfony/framework-bundle": "<6.4",
  3562. "symfony/http-kernel": "<6.4",
  3563. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3564. "symfony/translation-contracts": "<2.5",
  3565. "symfony/twig-bridge": "<6.4"
  3566. },
  3567. "require-dev": {
  3568. "doctrine/collections": "^1.0|^2.0",
  3569. "symfony/config": "^6.4|^7.0",
  3570. "symfony/console": "^6.4|^7.0",
  3571. "symfony/dependency-injection": "^6.4|^7.0",
  3572. "symfony/expression-language": "^6.4|^7.0",
  3573. "symfony/html-sanitizer": "^6.4|^7.0",
  3574. "symfony/http-foundation": "^6.4|^7.0",
  3575. "symfony/http-kernel": "^6.4|^7.0",
  3576. "symfony/intl": "^6.4|^7.0",
  3577. "symfony/security-core": "^6.4|^7.0",
  3578. "symfony/security-csrf": "^6.4|^7.0",
  3579. "symfony/translation": "^6.4.3|^7.0.3",
  3580. "symfony/uid": "^6.4|^7.0",
  3581. "symfony/validator": "^6.4|^7.0",
  3582. "symfony/var-dumper": "^6.4|^7.0"
  3583. },
  3584. "type": "library",
  3585. "autoload": {
  3586. "psr-4": {
  3587. "Symfony\\Component\\Form\\": ""
  3588. },
  3589. "exclude-from-classmap": [
  3590. "/Tests/"
  3591. ]
  3592. },
  3593. "notification-url": "https://packagist.org/downloads/",
  3594. "license": [
  3595. "MIT"
  3596. ],
  3597. "authors": [
  3598. {
  3599. "name": "Fabien Potencier",
  3600. "email": "fabien@symfony.com"
  3601. },
  3602. {
  3603. "name": "Symfony Community",
  3604. "homepage": "https://symfony.com/contributors"
  3605. }
  3606. ],
  3607. "description": "Allows to easily create, process and reuse HTML forms",
  3608. "homepage": "https://symfony.com",
  3609. "support": {
  3610. "source": "https://github.com/symfony/form/tree/v7.0.4"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://symfony.com/sponsor",
  3615. "type": "custom"
  3616. },
  3617. {
  3618. "url": "https://github.com/fabpot",
  3619. "type": "github"
  3620. },
  3621. {
  3622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3623. "type": "tidelift"
  3624. }
  3625. ],
  3626. "time": "2024-02-12T11:15:03+00:00"
  3627. },
  3628. {
  3629. "name": "symfony/framework-bundle",
  3630. "version": "v7.0.4",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://github.com/symfony/framework-bundle.git",
  3634. "reference": "b58bcb2f9c32405b8fbaa24a1e38c8a10bad7b21"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b58bcb2f9c32405b8fbaa24a1e38c8a10bad7b21",
  3639. "reference": "b58bcb2f9c32405b8fbaa24a1e38c8a10bad7b21",
  3640. "shasum": ""
  3641. },
  3642. "require": {
  3643. "composer-runtime-api": ">=2.1",
  3644. "ext-xml": "*",
  3645. "php": ">=8.2",
  3646. "symfony/cache": "^6.4|^7.0",
  3647. "symfony/config": "^6.4|^7.0",
  3648. "symfony/dependency-injection": "^6.4|^7.0",
  3649. "symfony/deprecation-contracts": "^2.5|^3",
  3650. "symfony/error-handler": "^6.4|^7.0",
  3651. "symfony/event-dispatcher": "^6.4|^7.0",
  3652. "symfony/filesystem": "^6.4|^7.0",
  3653. "symfony/finder": "^6.4|^7.0",
  3654. "symfony/http-foundation": "^6.4|^7.0",
  3655. "symfony/http-kernel": "^6.4|^7.0",
  3656. "symfony/polyfill-mbstring": "~1.0",
  3657. "symfony/routing": "^6.4|^7.0"
  3658. },
  3659. "conflict": {
  3660. "doctrine/persistence": "<1.3",
  3661. "phpdocumentor/reflection-docblock": "<3.2.2",
  3662. "phpdocumentor/type-resolver": "<1.4.0",
  3663. "symfony/asset": "<6.4",
  3664. "symfony/asset-mapper": "<6.4",
  3665. "symfony/clock": "<6.4",
  3666. "symfony/console": "<6.4",
  3667. "symfony/dom-crawler": "<6.4",
  3668. "symfony/dotenv": "<6.4",
  3669. "symfony/form": "<6.4",
  3670. "symfony/http-client": "<6.4",
  3671. "symfony/lock": "<6.4",
  3672. "symfony/mailer": "<6.4",
  3673. "symfony/messenger": "<6.4",
  3674. "symfony/mime": "<6.4",
  3675. "symfony/property-access": "<6.4",
  3676. "symfony/property-info": "<6.4",
  3677. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3678. "symfony/security-core": "<6.4",
  3679. "symfony/security-csrf": "<6.4",
  3680. "symfony/serializer": "<6.4",
  3681. "symfony/stopwatch": "<6.4",
  3682. "symfony/translation": "<6.4",
  3683. "symfony/twig-bridge": "<6.4",
  3684. "symfony/twig-bundle": "<6.4",
  3685. "symfony/validator": "<6.4",
  3686. "symfony/web-profiler-bundle": "<6.4",
  3687. "symfony/workflow": "<6.4"
  3688. },
  3689. "require-dev": {
  3690. "doctrine/persistence": "^1.3|^2|^3",
  3691. "dragonmantank/cron-expression": "^3.1",
  3692. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3693. "seld/jsonlint": "^1.10",
  3694. "symfony/asset": "^6.4|^7.0",
  3695. "symfony/asset-mapper": "^6.4|^7.0",
  3696. "symfony/browser-kit": "^6.4|^7.0",
  3697. "symfony/clock": "^6.4|^7.0",
  3698. "symfony/console": "^6.4|^7.0",
  3699. "symfony/css-selector": "^6.4|^7.0",
  3700. "symfony/dom-crawler": "^6.4|^7.0",
  3701. "symfony/dotenv": "^6.4|^7.0",
  3702. "symfony/expression-language": "^6.4|^7.0",
  3703. "symfony/form": "^6.4|^7.0",
  3704. "symfony/html-sanitizer": "^6.4|^7.0",
  3705. "symfony/http-client": "^6.4|^7.0",
  3706. "symfony/lock": "^6.4|^7.0",
  3707. "symfony/mailer": "^6.4|^7.0",
  3708. "symfony/messenger": "^6.4|^7.0",
  3709. "symfony/mime": "^6.4|^7.0",
  3710. "symfony/notifier": "^6.4|^7.0",
  3711. "symfony/polyfill-intl-icu": "~1.0",
  3712. "symfony/process": "^6.4|^7.0",
  3713. "symfony/property-info": "^6.4|^7.0",
  3714. "symfony/rate-limiter": "^6.4|^7.0",
  3715. "symfony/scheduler": "^6.4.4|^7.0.4",
  3716. "symfony/security-bundle": "^6.4|^7.0",
  3717. "symfony/semaphore": "^6.4|^7.0",
  3718. "symfony/serializer": "^6.4|^7.0",
  3719. "symfony/stopwatch": "^6.4|^7.0",
  3720. "symfony/string": "^6.4|^7.0",
  3721. "symfony/translation": "^6.4|^7.0",
  3722. "symfony/twig-bundle": "^6.4|^7.0",
  3723. "symfony/uid": "^6.4|^7.0",
  3724. "symfony/validator": "^6.4|^7.0",
  3725. "symfony/web-link": "^6.4|^7.0",
  3726. "symfony/workflow": "^6.4|^7.0",
  3727. "symfony/yaml": "^6.4|^7.0",
  3728. "twig/twig": "^3.0.4"
  3729. },
  3730. "type": "symfony-bundle",
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3734. },
  3735. "exclude-from-classmap": [
  3736. "/Tests/"
  3737. ]
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "authors": [
  3744. {
  3745. "name": "Fabien Potencier",
  3746. "email": "fabien@symfony.com"
  3747. },
  3748. {
  3749. "name": "Symfony Community",
  3750. "homepage": "https://symfony.com/contributors"
  3751. }
  3752. ],
  3753. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3754. "homepage": "https://symfony.com",
  3755. "support": {
  3756. "source": "https://github.com/symfony/framework-bundle/tree/v7.0.4"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://symfony.com/sponsor",
  3761. "type": "custom"
  3762. },
  3763. {
  3764. "url": "https://github.com/fabpot",
  3765. "type": "github"
  3766. },
  3767. {
  3768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3769. "type": "tidelift"
  3770. }
  3771. ],
  3772. "time": "2024-02-26T07:52:39+00:00"
  3773. },
  3774. {
  3775. "name": "symfony/http-client",
  3776. "version": "v7.0.5",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/symfony/http-client.git",
  3780. "reference": "425f462a59d8030703ee04a9e1c666575ed5db3b"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/symfony/http-client/zipball/425f462a59d8030703ee04a9e1c666575ed5db3b",
  3785. "reference": "425f462a59d8030703ee04a9e1c666575ed5db3b",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": ">=8.2",
  3790. "psr/log": "^1|^2|^3",
  3791. "symfony/http-client-contracts": "^3",
  3792. "symfony/service-contracts": "^2.5|^3"
  3793. },
  3794. "conflict": {
  3795. "php-http/discovery": "<1.15",
  3796. "symfony/http-foundation": "<6.4"
  3797. },
  3798. "provide": {
  3799. "php-http/async-client-implementation": "*",
  3800. "php-http/client-implementation": "*",
  3801. "psr/http-client-implementation": "1.0",
  3802. "symfony/http-client-implementation": "3.0"
  3803. },
  3804. "require-dev": {
  3805. "amphp/amp": "^2.5",
  3806. "amphp/http-client": "^4.2.1",
  3807. "amphp/http-tunnel": "^1.0",
  3808. "amphp/socket": "^1.1",
  3809. "guzzlehttp/promises": "^1.4",
  3810. "nyholm/psr7": "^1.0",
  3811. "php-http/httplug": "^1.0|^2.0",
  3812. "psr/http-client": "^1.0",
  3813. "symfony/dependency-injection": "^6.4|^7.0",
  3814. "symfony/http-kernel": "^6.4|^7.0",
  3815. "symfony/messenger": "^6.4|^7.0",
  3816. "symfony/process": "^6.4|^7.0",
  3817. "symfony/stopwatch": "^6.4|^7.0"
  3818. },
  3819. "type": "library",
  3820. "autoload": {
  3821. "psr-4": {
  3822. "Symfony\\Component\\HttpClient\\": ""
  3823. },
  3824. "exclude-from-classmap": [
  3825. "/Tests/"
  3826. ]
  3827. },
  3828. "notification-url": "https://packagist.org/downloads/",
  3829. "license": [
  3830. "MIT"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "Nicolas Grekas",
  3835. "email": "p@tchwork.com"
  3836. },
  3837. {
  3838. "name": "Symfony Community",
  3839. "homepage": "https://symfony.com/contributors"
  3840. }
  3841. ],
  3842. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3843. "homepage": "https://symfony.com",
  3844. "keywords": [
  3845. "http"
  3846. ],
  3847. "support": {
  3848. "source": "https://github.com/symfony/http-client/tree/v7.0.5"
  3849. },
  3850. "funding": [
  3851. {
  3852. "url": "https://symfony.com/sponsor",
  3853. "type": "custom"
  3854. },
  3855. {
  3856. "url": "https://github.com/fabpot",
  3857. "type": "github"
  3858. },
  3859. {
  3860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3861. "type": "tidelift"
  3862. }
  3863. ],
  3864. "time": "2024-03-02T12:46:12+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/http-client-contracts",
  3868. "version": "v3.4.0",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/http-client-contracts.git",
  3872. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  3877. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "php": ">=8.1"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-main": "3.4-dev"
  3887. },
  3888. "thanks": {
  3889. "name": "symfony/contracts",
  3890. "url": "https://github.com/symfony/contracts"
  3891. }
  3892. },
  3893. "autoload": {
  3894. "psr-4": {
  3895. "Symfony\\Contracts\\HttpClient\\": ""
  3896. },
  3897. "exclude-from-classmap": [
  3898. "/Test/"
  3899. ]
  3900. },
  3901. "notification-url": "https://packagist.org/downloads/",
  3902. "license": [
  3903. "MIT"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Nicolas Grekas",
  3908. "email": "p@tchwork.com"
  3909. },
  3910. {
  3911. "name": "Symfony Community",
  3912. "homepage": "https://symfony.com/contributors"
  3913. }
  3914. ],
  3915. "description": "Generic abstractions related to HTTP clients",
  3916. "homepage": "https://symfony.com",
  3917. "keywords": [
  3918. "abstractions",
  3919. "contracts",
  3920. "decoupling",
  3921. "interfaces",
  3922. "interoperability",
  3923. "standards"
  3924. ],
  3925. "support": {
  3926. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  3927. },
  3928. "funding": [
  3929. {
  3930. "url": "https://symfony.com/sponsor",
  3931. "type": "custom"
  3932. },
  3933. {
  3934. "url": "https://github.com/fabpot",
  3935. "type": "github"
  3936. },
  3937. {
  3938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3939. "type": "tidelift"
  3940. }
  3941. ],
  3942. "time": "2023-07-30T20:28:31+00:00"
  3943. },
  3944. {
  3945. "name": "symfony/http-foundation",
  3946. "version": "v7.0.4",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://github.com/symfony/http-foundation.git",
  3950. "reference": "439fdfdd344943254b1ef6278613e79040548045"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/439fdfdd344943254b1ef6278613e79040548045",
  3955. "reference": "439fdfdd344943254b1ef6278613e79040548045",
  3956. "shasum": ""
  3957. },
  3958. "require": {
  3959. "php": ">=8.2",
  3960. "symfony/polyfill-mbstring": "~1.1",
  3961. "symfony/polyfill-php83": "^1.27"
  3962. },
  3963. "conflict": {
  3964. "doctrine/dbal": "<3.6",
  3965. "symfony/cache": "<6.4"
  3966. },
  3967. "require-dev": {
  3968. "doctrine/dbal": "^3.6|^4",
  3969. "predis/predis": "^1.1|^2.0",
  3970. "symfony/cache": "^6.4|^7.0",
  3971. "symfony/dependency-injection": "^6.4|^7.0",
  3972. "symfony/expression-language": "^6.4|^7.0",
  3973. "symfony/http-kernel": "^6.4|^7.0",
  3974. "symfony/mime": "^6.4|^7.0",
  3975. "symfony/rate-limiter": "^6.4|^7.0"
  3976. },
  3977. "type": "library",
  3978. "autoload": {
  3979. "psr-4": {
  3980. "Symfony\\Component\\HttpFoundation\\": ""
  3981. },
  3982. "exclude-from-classmap": [
  3983. "/Tests/"
  3984. ]
  3985. },
  3986. "notification-url": "https://packagist.org/downloads/",
  3987. "license": [
  3988. "MIT"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "Fabien Potencier",
  3993. "email": "fabien@symfony.com"
  3994. },
  3995. {
  3996. "name": "Symfony Community",
  3997. "homepage": "https://symfony.com/contributors"
  3998. }
  3999. ],
  4000. "description": "Defines an object-oriented layer for the HTTP specification",
  4001. "homepage": "https://symfony.com",
  4002. "support": {
  4003. "source": "https://github.com/symfony/http-foundation/tree/v7.0.4"
  4004. },
  4005. "funding": [
  4006. {
  4007. "url": "https://symfony.com/sponsor",
  4008. "type": "custom"
  4009. },
  4010. {
  4011. "url": "https://github.com/fabpot",
  4012. "type": "github"
  4013. },
  4014. {
  4015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4016. "type": "tidelift"
  4017. }
  4018. ],
  4019. "time": "2024-02-08T19:22:56+00:00"
  4020. },
  4021. {
  4022. "name": "symfony/http-kernel",
  4023. "version": "v7.0.5",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/symfony/http-kernel.git",
  4027. "reference": "37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72",
  4032. "reference": "37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "php": ">=8.2",
  4037. "psr/log": "^1|^2|^3",
  4038. "symfony/error-handler": "^6.4|^7.0",
  4039. "symfony/event-dispatcher": "^6.4|^7.0",
  4040. "symfony/http-foundation": "^6.4|^7.0",
  4041. "symfony/polyfill-ctype": "^1.8"
  4042. },
  4043. "conflict": {
  4044. "symfony/browser-kit": "<6.4",
  4045. "symfony/cache": "<6.4",
  4046. "symfony/config": "<6.4",
  4047. "symfony/console": "<6.4",
  4048. "symfony/dependency-injection": "<6.4",
  4049. "symfony/doctrine-bridge": "<6.4",
  4050. "symfony/form": "<6.4",
  4051. "symfony/http-client": "<6.4",
  4052. "symfony/http-client-contracts": "<2.5",
  4053. "symfony/mailer": "<6.4",
  4054. "symfony/messenger": "<6.4",
  4055. "symfony/translation": "<6.4",
  4056. "symfony/translation-contracts": "<2.5",
  4057. "symfony/twig-bridge": "<6.4",
  4058. "symfony/validator": "<6.4",
  4059. "symfony/var-dumper": "<6.4",
  4060. "twig/twig": "<3.0.4"
  4061. },
  4062. "provide": {
  4063. "psr/log-implementation": "1.0|2.0|3.0"
  4064. },
  4065. "require-dev": {
  4066. "psr/cache": "^1.0|^2.0|^3.0",
  4067. "symfony/browser-kit": "^6.4|^7.0",
  4068. "symfony/clock": "^6.4|^7.0",
  4069. "symfony/config": "^6.4|^7.0",
  4070. "symfony/console": "^6.4|^7.0",
  4071. "symfony/css-selector": "^6.4|^7.0",
  4072. "symfony/dependency-injection": "^6.4|^7.0",
  4073. "symfony/dom-crawler": "^6.4|^7.0",
  4074. "symfony/expression-language": "^6.4|^7.0",
  4075. "symfony/finder": "^6.4|^7.0",
  4076. "symfony/http-client-contracts": "^2.5|^3",
  4077. "symfony/process": "^6.4|^7.0",
  4078. "symfony/property-access": "^6.4|^7.0",
  4079. "symfony/routing": "^6.4|^7.0",
  4080. "symfony/serializer": "^6.4.4|^7.0.4",
  4081. "symfony/stopwatch": "^6.4|^7.0",
  4082. "symfony/translation": "^6.4|^7.0",
  4083. "symfony/translation-contracts": "^2.5|^3",
  4084. "symfony/uid": "^6.4|^7.0",
  4085. "symfony/validator": "^6.4|^7.0",
  4086. "symfony/var-exporter": "^6.4|^7.0",
  4087. "twig/twig": "^3.0.4"
  4088. },
  4089. "type": "library",
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Symfony\\Component\\HttpKernel\\": ""
  4093. },
  4094. "exclude-from-classmap": [
  4095. "/Tests/"
  4096. ]
  4097. },
  4098. "notification-url": "https://packagist.org/downloads/",
  4099. "license": [
  4100. "MIT"
  4101. ],
  4102. "authors": [
  4103. {
  4104. "name": "Fabien Potencier",
  4105. "email": "fabien@symfony.com"
  4106. },
  4107. {
  4108. "name": "Symfony Community",
  4109. "homepage": "https://symfony.com/contributors"
  4110. }
  4111. ],
  4112. "description": "Provides a structured process for converting a Request into a Response",
  4113. "homepage": "https://symfony.com",
  4114. "support": {
  4115. "source": "https://github.com/symfony/http-kernel/tree/v7.0.5"
  4116. },
  4117. "funding": [
  4118. {
  4119. "url": "https://symfony.com/sponsor",
  4120. "type": "custom"
  4121. },
  4122. {
  4123. "url": "https://github.com/fabpot",
  4124. "type": "github"
  4125. },
  4126. {
  4127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4128. "type": "tidelift"
  4129. }
  4130. ],
  4131. "time": "2024-03-04T21:05:24+00:00"
  4132. },
  4133. {
  4134. "name": "symfony/intl",
  4135. "version": "v7.0.3",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://github.com/symfony/intl.git",
  4139. "reference": "295995df4acf6790a35b9ce6ec32b313efb11ff8"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://api.github.com/repos/symfony/intl/zipball/295995df4acf6790a35b9ce6ec32b313efb11ff8",
  4144. "reference": "295995df4acf6790a35b9ce6ec32b313efb11ff8",
  4145. "shasum": ""
  4146. },
  4147. "require": {
  4148. "php": ">=8.2"
  4149. },
  4150. "require-dev": {
  4151. "symfony/filesystem": "^6.4|^7.0",
  4152. "symfony/finder": "^6.4|^7.0",
  4153. "symfony/var-exporter": "^6.4|^7.0"
  4154. },
  4155. "type": "library",
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Symfony\\Component\\Intl\\": ""
  4159. },
  4160. "exclude-from-classmap": [
  4161. "/Tests/"
  4162. ]
  4163. },
  4164. "notification-url": "https://packagist.org/downloads/",
  4165. "license": [
  4166. "MIT"
  4167. ],
  4168. "authors": [
  4169. {
  4170. "name": "Bernhard Schussek",
  4171. "email": "bschussek@gmail.com"
  4172. },
  4173. {
  4174. "name": "Eriksen Costa",
  4175. "email": "eriksen.costa@infranology.com.br"
  4176. },
  4177. {
  4178. "name": "Igor Wiedler",
  4179. "email": "igor@wiedler.ch"
  4180. },
  4181. {
  4182. "name": "Symfony Community",
  4183. "homepage": "https://symfony.com/contributors"
  4184. }
  4185. ],
  4186. "description": "Provides access to the localization data of the ICU library",
  4187. "homepage": "https://symfony.com",
  4188. "keywords": [
  4189. "i18n",
  4190. "icu",
  4191. "internationalization",
  4192. "intl",
  4193. "l10n",
  4194. "localization"
  4195. ],
  4196. "support": {
  4197. "source": "https://github.com/symfony/intl/tree/v7.0.3"
  4198. },
  4199. "funding": [
  4200. {
  4201. "url": "https://symfony.com/sponsor",
  4202. "type": "custom"
  4203. },
  4204. {
  4205. "url": "https://github.com/fabpot",
  4206. "type": "github"
  4207. },
  4208. {
  4209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4210. "type": "tidelift"
  4211. }
  4212. ],
  4213. "time": "2024-01-23T15:02:46+00:00"
  4214. },
  4215. {
  4216. "name": "symfony/mailer",
  4217. "version": "v7.0.4",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/symfony/mailer.git",
  4221. "reference": "72e16d87bf50a3ce195b9470c06bb9d7b816ea85"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/symfony/mailer/zipball/72e16d87bf50a3ce195b9470c06bb9d7b816ea85",
  4226. "reference": "72e16d87bf50a3ce195b9470c06bb9d7b816ea85",
  4227. "shasum": ""
  4228. },
  4229. "require": {
  4230. "egulias/email-validator": "^2.1.10|^3|^4",
  4231. "php": ">=8.2",
  4232. "psr/event-dispatcher": "^1",
  4233. "psr/log": "^1|^2|^3",
  4234. "symfony/event-dispatcher": "^6.4|^7.0",
  4235. "symfony/mime": "^6.4|^7.0",
  4236. "symfony/service-contracts": "^2.5|^3"
  4237. },
  4238. "conflict": {
  4239. "symfony/http-client-contracts": "<2.5",
  4240. "symfony/http-kernel": "<6.4",
  4241. "symfony/messenger": "<6.4",
  4242. "symfony/mime": "<6.4",
  4243. "symfony/twig-bridge": "<6.4"
  4244. },
  4245. "require-dev": {
  4246. "symfony/console": "^6.4|^7.0",
  4247. "symfony/http-client": "^6.4|^7.0",
  4248. "symfony/messenger": "^6.4|^7.0",
  4249. "symfony/twig-bridge": "^6.4|^7.0"
  4250. },
  4251. "type": "library",
  4252. "autoload": {
  4253. "psr-4": {
  4254. "Symfony\\Component\\Mailer\\": ""
  4255. },
  4256. "exclude-from-classmap": [
  4257. "/Tests/"
  4258. ]
  4259. },
  4260. "notification-url": "https://packagist.org/downloads/",
  4261. "license": [
  4262. "MIT"
  4263. ],
  4264. "authors": [
  4265. {
  4266. "name": "Fabien Potencier",
  4267. "email": "fabien@symfony.com"
  4268. },
  4269. {
  4270. "name": "Symfony Community",
  4271. "homepage": "https://symfony.com/contributors"
  4272. }
  4273. ],
  4274. "description": "Helps sending emails",
  4275. "homepage": "https://symfony.com",
  4276. "support": {
  4277. "source": "https://github.com/symfony/mailer/tree/v7.0.4"
  4278. },
  4279. "funding": [
  4280. {
  4281. "url": "https://symfony.com/sponsor",
  4282. "type": "custom"
  4283. },
  4284. {
  4285. "url": "https://github.com/fabpot",
  4286. "type": "github"
  4287. },
  4288. {
  4289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4290. "type": "tidelift"
  4291. }
  4292. ],
  4293. "time": "2024-02-03T21:34:19+00:00"
  4294. },
  4295. {
  4296. "name": "symfony/messenger",
  4297. "version": "v7.0.4",
  4298. "source": {
  4299. "type": "git",
  4300. "url": "https://github.com/symfony/messenger.git",
  4301. "reference": "804a8997f93313a8f7ed19e8cca3b44fdd18bdec"
  4302. },
  4303. "dist": {
  4304. "type": "zip",
  4305. "url": "https://api.github.com/repos/symfony/messenger/zipball/804a8997f93313a8f7ed19e8cca3b44fdd18bdec",
  4306. "reference": "804a8997f93313a8f7ed19e8cca3b44fdd18bdec",
  4307. "shasum": ""
  4308. },
  4309. "require": {
  4310. "php": ">=8.2",
  4311. "psr/log": "^1|^2|^3",
  4312. "symfony/clock": "^6.4|^7.0"
  4313. },
  4314. "conflict": {
  4315. "symfony/console": "<6.4",
  4316. "symfony/event-dispatcher": "<6.4",
  4317. "symfony/event-dispatcher-contracts": "<2.5",
  4318. "symfony/framework-bundle": "<6.4",
  4319. "symfony/http-kernel": "<6.4",
  4320. "symfony/serializer": "<6.4"
  4321. },
  4322. "require-dev": {
  4323. "psr/cache": "^1.0|^2.0|^3.0",
  4324. "symfony/console": "^6.4|^7.0",
  4325. "symfony/dependency-injection": "^6.4|^7.0",
  4326. "symfony/event-dispatcher": "^6.4|^7.0",
  4327. "symfony/http-kernel": "^6.4|^7.0",
  4328. "symfony/process": "^6.4|^7.0",
  4329. "symfony/property-access": "^6.4|^7.0",
  4330. "symfony/rate-limiter": "^6.4|^7.0",
  4331. "symfony/routing": "^6.4|^7.0",
  4332. "symfony/serializer": "^6.4|^7.0",
  4333. "symfony/service-contracts": "^2.5|^3",
  4334. "symfony/stopwatch": "^6.4|^7.0",
  4335. "symfony/validator": "^6.4|^7.0"
  4336. },
  4337. "type": "library",
  4338. "autoload": {
  4339. "psr-4": {
  4340. "Symfony\\Component\\Messenger\\": ""
  4341. },
  4342. "exclude-from-classmap": [
  4343. "/Tests/"
  4344. ]
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "MIT"
  4349. ],
  4350. "authors": [
  4351. {
  4352. "name": "Samuel Roze",
  4353. "email": "samuel.roze@gmail.com"
  4354. },
  4355. {
  4356. "name": "Symfony Community",
  4357. "homepage": "https://symfony.com/contributors"
  4358. }
  4359. ],
  4360. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4361. "homepage": "https://symfony.com",
  4362. "support": {
  4363. "source": "https://github.com/symfony/messenger/tree/v7.0.4"
  4364. },
  4365. "funding": [
  4366. {
  4367. "url": "https://symfony.com/sponsor",
  4368. "type": "custom"
  4369. },
  4370. {
  4371. "url": "https://github.com/fabpot",
  4372. "type": "github"
  4373. },
  4374. {
  4375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4376. "type": "tidelift"
  4377. }
  4378. ],
  4379. "time": "2024-02-26T07:52:39+00:00"
  4380. },
  4381. {
  4382. "name": "symfony/mime",
  4383. "version": "v7.0.3",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://github.com/symfony/mime.git",
  4387. "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://api.github.com/repos/symfony/mime/zipball/c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716",
  4392. "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716",
  4393. "shasum": ""
  4394. },
  4395. "require": {
  4396. "php": ">=8.2",
  4397. "symfony/polyfill-intl-idn": "^1.10",
  4398. "symfony/polyfill-mbstring": "^1.0"
  4399. },
  4400. "conflict": {
  4401. "egulias/email-validator": "~3.0.0",
  4402. "phpdocumentor/reflection-docblock": "<3.2.2",
  4403. "phpdocumentor/type-resolver": "<1.4.0",
  4404. "symfony/mailer": "<6.4",
  4405. "symfony/serializer": "<6.4"
  4406. },
  4407. "require-dev": {
  4408. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4409. "league/html-to-markdown": "^5.0",
  4410. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4411. "symfony/dependency-injection": "^6.4|^7.0",
  4412. "symfony/property-access": "^6.4|^7.0",
  4413. "symfony/property-info": "^6.4|^7.0",
  4414. "symfony/serializer": "^6.4|^7.0"
  4415. },
  4416. "type": "library",
  4417. "autoload": {
  4418. "psr-4": {
  4419. "Symfony\\Component\\Mime\\": ""
  4420. },
  4421. "exclude-from-classmap": [
  4422. "/Tests/"
  4423. ]
  4424. },
  4425. "notification-url": "https://packagist.org/downloads/",
  4426. "license": [
  4427. "MIT"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "Fabien Potencier",
  4432. "email": "fabien@symfony.com"
  4433. },
  4434. {
  4435. "name": "Symfony Community",
  4436. "homepage": "https://symfony.com/contributors"
  4437. }
  4438. ],
  4439. "description": "Allows manipulating MIME messages",
  4440. "homepage": "https://symfony.com",
  4441. "keywords": [
  4442. "mime",
  4443. "mime-type"
  4444. ],
  4445. "support": {
  4446. "source": "https://github.com/symfony/mime/tree/v7.0.3"
  4447. },
  4448. "funding": [
  4449. {
  4450. "url": "https://symfony.com/sponsor",
  4451. "type": "custom"
  4452. },
  4453. {
  4454. "url": "https://github.com/fabpot",
  4455. "type": "github"
  4456. },
  4457. {
  4458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4459. "type": "tidelift"
  4460. }
  4461. ],
  4462. "time": "2024-01-30T08:34:29+00:00"
  4463. },
  4464. {
  4465. "name": "symfony/monolog-bridge",
  4466. "version": "v7.0.3",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://github.com/symfony/monolog-bridge.git",
  4470. "reference": "5d4f188e60d1e38a1d9d4bb6fbbbc13111dff2b1"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/5d4f188e60d1e38a1d9d4bb6fbbbc13111dff2b1",
  4475. "reference": "5d4f188e60d1e38a1d9d4bb6fbbbc13111dff2b1",
  4476. "shasum": ""
  4477. },
  4478. "require": {
  4479. "monolog/monolog": "^3",
  4480. "php": ">=8.2",
  4481. "symfony/http-kernel": "^6.4|^7.0",
  4482. "symfony/service-contracts": "^2.5|^3"
  4483. },
  4484. "conflict": {
  4485. "symfony/console": "<6.4",
  4486. "symfony/http-foundation": "<6.4",
  4487. "symfony/security-core": "<6.4"
  4488. },
  4489. "require-dev": {
  4490. "symfony/console": "^6.4|^7.0",
  4491. "symfony/http-client": "^6.4|^7.0",
  4492. "symfony/mailer": "^6.4|^7.0",
  4493. "symfony/messenger": "^6.4|^7.0",
  4494. "symfony/mime": "^6.4|^7.0",
  4495. "symfony/security-core": "^6.4|^7.0",
  4496. "symfony/var-dumper": "^6.4|^7.0"
  4497. },
  4498. "type": "symfony-bridge",
  4499. "autoload": {
  4500. "psr-4": {
  4501. "Symfony\\Bridge\\Monolog\\": ""
  4502. },
  4503. "exclude-from-classmap": [
  4504. "/Tests/"
  4505. ]
  4506. },
  4507. "notification-url": "https://packagist.org/downloads/",
  4508. "license": [
  4509. "MIT"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "Fabien Potencier",
  4514. "email": "fabien@symfony.com"
  4515. },
  4516. {
  4517. "name": "Symfony Community",
  4518. "homepage": "https://symfony.com/contributors"
  4519. }
  4520. ],
  4521. "description": "Provides integration for Monolog with various Symfony components",
  4522. "homepage": "https://symfony.com",
  4523. "support": {
  4524. "source": "https://github.com/symfony/monolog-bridge/tree/v7.0.3"
  4525. },
  4526. "funding": [
  4527. {
  4528. "url": "https://symfony.com/sponsor",
  4529. "type": "custom"
  4530. },
  4531. {
  4532. "url": "https://github.com/fabpot",
  4533. "type": "github"
  4534. },
  4535. {
  4536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4537. "type": "tidelift"
  4538. }
  4539. ],
  4540. "time": "2024-01-23T15:02:46+00:00"
  4541. },
  4542. {
  4543. "name": "symfony/monolog-bundle",
  4544. "version": "v3.10.0",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/symfony/monolog-bundle.git",
  4548. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4553. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4558. "php": ">=7.2.5",
  4559. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4560. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4561. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4562. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4563. },
  4564. "require-dev": {
  4565. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4566. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4567. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4568. },
  4569. "type": "symfony-bundle",
  4570. "extra": {
  4571. "branch-alias": {
  4572. "dev-master": "3.x-dev"
  4573. }
  4574. },
  4575. "autoload": {
  4576. "psr-4": {
  4577. "Symfony\\Bundle\\MonologBundle\\": ""
  4578. },
  4579. "exclude-from-classmap": [
  4580. "/Tests/"
  4581. ]
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "Fabien Potencier",
  4590. "email": "fabien@symfony.com"
  4591. },
  4592. {
  4593. "name": "Symfony Community",
  4594. "homepage": "https://symfony.com/contributors"
  4595. }
  4596. ],
  4597. "description": "Symfony MonologBundle",
  4598. "homepage": "https://symfony.com",
  4599. "keywords": [
  4600. "log",
  4601. "logging"
  4602. ],
  4603. "support": {
  4604. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4605. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4606. },
  4607. "funding": [
  4608. {
  4609. "url": "https://symfony.com/sponsor",
  4610. "type": "custom"
  4611. },
  4612. {
  4613. "url": "https://github.com/fabpot",
  4614. "type": "github"
  4615. },
  4616. {
  4617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4618. "type": "tidelift"
  4619. }
  4620. ],
  4621. "time": "2023-11-06T17:08:13+00:00"
  4622. },
  4623. {
  4624. "name": "symfony/notifier",
  4625. "version": "v7.0.3",
  4626. "source": {
  4627. "type": "git",
  4628. "url": "https://github.com/symfony/notifier.git",
  4629. "reference": "515326dab227ecd3198b04df50edf949f7767a9a"
  4630. },
  4631. "dist": {
  4632. "type": "zip",
  4633. "url": "https://api.github.com/repos/symfony/notifier/zipball/515326dab227ecd3198b04df50edf949f7767a9a",
  4634. "reference": "515326dab227ecd3198b04df50edf949f7767a9a",
  4635. "shasum": ""
  4636. },
  4637. "require": {
  4638. "php": ">=8.2",
  4639. "psr/log": "^1|^2|^3"
  4640. },
  4641. "conflict": {
  4642. "symfony/event-dispatcher": "<6.4",
  4643. "symfony/event-dispatcher-contracts": "<2.5",
  4644. "symfony/http-client-contracts": "<2.5",
  4645. "symfony/http-kernel": "<6.4"
  4646. },
  4647. "require-dev": {
  4648. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4649. "symfony/http-client-contracts": "^2.5|^3",
  4650. "symfony/http-foundation": "^6.4|^7.0",
  4651. "symfony/messenger": "^6.4|^7.0"
  4652. },
  4653. "type": "library",
  4654. "autoload": {
  4655. "psr-4": {
  4656. "Symfony\\Component\\Notifier\\": ""
  4657. },
  4658. "exclude-from-classmap": [
  4659. "/Tests/"
  4660. ]
  4661. },
  4662. "notification-url": "https://packagist.org/downloads/",
  4663. "license": [
  4664. "MIT"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "Fabien Potencier",
  4669. "email": "fabien@symfony.com"
  4670. },
  4671. {
  4672. "name": "Symfony Community",
  4673. "homepage": "https://symfony.com/contributors"
  4674. }
  4675. ],
  4676. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4677. "homepage": "https://symfony.com",
  4678. "keywords": [
  4679. "notification",
  4680. "notifier"
  4681. ],
  4682. "support": {
  4683. "source": "https://github.com/symfony/notifier/tree/v7.0.3"
  4684. },
  4685. "funding": [
  4686. {
  4687. "url": "https://symfony.com/sponsor",
  4688. "type": "custom"
  4689. },
  4690. {
  4691. "url": "https://github.com/fabpot",
  4692. "type": "github"
  4693. },
  4694. {
  4695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4696. "type": "tidelift"
  4697. }
  4698. ],
  4699. "time": "2024-01-23T15:02:46+00:00"
  4700. },
  4701. {
  4702. "name": "symfony/options-resolver",
  4703. "version": "v7.0.0",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/symfony/options-resolver.git",
  4707. "reference": "700ff4096e346f54cb628ea650767c8130f1001f"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f",
  4712. "reference": "700ff4096e346f54cb628ea650767c8130f1001f",
  4713. "shasum": ""
  4714. },
  4715. "require": {
  4716. "php": ">=8.2",
  4717. "symfony/deprecation-contracts": "^2.5|^3"
  4718. },
  4719. "type": "library",
  4720. "autoload": {
  4721. "psr-4": {
  4722. "Symfony\\Component\\OptionsResolver\\": ""
  4723. },
  4724. "exclude-from-classmap": [
  4725. "/Tests/"
  4726. ]
  4727. },
  4728. "notification-url": "https://packagist.org/downloads/",
  4729. "license": [
  4730. "MIT"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "Fabien Potencier",
  4735. "email": "fabien@symfony.com"
  4736. },
  4737. {
  4738. "name": "Symfony Community",
  4739. "homepage": "https://symfony.com/contributors"
  4740. }
  4741. ],
  4742. "description": "Provides an improved replacement for the array_replace PHP function",
  4743. "homepage": "https://symfony.com",
  4744. "keywords": [
  4745. "config",
  4746. "configuration",
  4747. "options"
  4748. ],
  4749. "support": {
  4750. "source": "https://github.com/symfony/options-resolver/tree/v7.0.0"
  4751. },
  4752. "funding": [
  4753. {
  4754. "url": "https://symfony.com/sponsor",
  4755. "type": "custom"
  4756. },
  4757. {
  4758. "url": "https://github.com/fabpot",
  4759. "type": "github"
  4760. },
  4761. {
  4762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4763. "type": "tidelift"
  4764. }
  4765. ],
  4766. "time": "2023-08-08T10:20:21+00:00"
  4767. },
  4768. {
  4769. "name": "symfony/password-hasher",
  4770. "version": "v7.0.4",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/symfony/password-hasher.git",
  4774. "reference": "0eba656c16ecdf5588b3ddd2b2337b06173d839f"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/0eba656c16ecdf5588b3ddd2b2337b06173d839f",
  4779. "reference": "0eba656c16ecdf5588b3ddd2b2337b06173d839f",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "php": ">=8.2"
  4784. },
  4785. "conflict": {
  4786. "symfony/security-core": "<6.4"
  4787. },
  4788. "require-dev": {
  4789. "symfony/console": "^6.4|^7.0",
  4790. "symfony/security-core": "^6.4|^7.0"
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Symfony\\Component\\PasswordHasher\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Robin Chalas",
  4808. "email": "robin.chalas@gmail.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Provides password hashing utilities",
  4816. "homepage": "https://symfony.com",
  4817. "keywords": [
  4818. "hashing",
  4819. "password"
  4820. ],
  4821. "support": {
  4822. "source": "https://github.com/symfony/password-hasher/tree/v7.0.4"
  4823. },
  4824. "funding": [
  4825. {
  4826. "url": "https://symfony.com/sponsor",
  4827. "type": "custom"
  4828. },
  4829. {
  4830. "url": "https://github.com/fabpot",
  4831. "type": "github"
  4832. },
  4833. {
  4834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4835. "type": "tidelift"
  4836. }
  4837. ],
  4838. "time": "2024-02-12T11:15:03+00:00"
  4839. },
  4840. {
  4841. "name": "symfony/polyfill-intl-grapheme",
  4842. "version": "v1.29.0",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4846. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  4851. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  4852. "shasum": ""
  4853. },
  4854. "require": {
  4855. "php": ">=7.1"
  4856. },
  4857. "suggest": {
  4858. "ext-intl": "For best performance"
  4859. },
  4860. "type": "library",
  4861. "extra": {
  4862. "thanks": {
  4863. "name": "symfony/polyfill",
  4864. "url": "https://github.com/symfony/polyfill"
  4865. }
  4866. },
  4867. "autoload": {
  4868. "files": [
  4869. "bootstrap.php"
  4870. ],
  4871. "psr-4": {
  4872. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4873. }
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "MIT"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Nicolas Grekas",
  4882. "email": "p@tchwork.com"
  4883. },
  4884. {
  4885. "name": "Symfony Community",
  4886. "homepage": "https://symfony.com/contributors"
  4887. }
  4888. ],
  4889. "description": "Symfony polyfill for intl's grapheme_* functions",
  4890. "homepage": "https://symfony.com",
  4891. "keywords": [
  4892. "compatibility",
  4893. "grapheme",
  4894. "intl",
  4895. "polyfill",
  4896. "portable",
  4897. "shim"
  4898. ],
  4899. "support": {
  4900. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  4901. },
  4902. "funding": [
  4903. {
  4904. "url": "https://symfony.com/sponsor",
  4905. "type": "custom"
  4906. },
  4907. {
  4908. "url": "https://github.com/fabpot",
  4909. "type": "github"
  4910. },
  4911. {
  4912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4913. "type": "tidelift"
  4914. }
  4915. ],
  4916. "time": "2024-01-29T20:11:03+00:00"
  4917. },
  4918. {
  4919. "name": "symfony/polyfill-intl-icu",
  4920. "version": "v1.29.0",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4924. "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/07094a28851a49107f3ab4f9120ca2975a64b6e1",
  4929. "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1",
  4930. "shasum": ""
  4931. },
  4932. "require": {
  4933. "php": ">=7.1"
  4934. },
  4935. "suggest": {
  4936. "ext-intl": "For best performance and support of other locales than \"en\""
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "thanks": {
  4941. "name": "symfony/polyfill",
  4942. "url": "https://github.com/symfony/polyfill"
  4943. }
  4944. },
  4945. "autoload": {
  4946. "files": [
  4947. "bootstrap.php"
  4948. ],
  4949. "psr-4": {
  4950. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4951. },
  4952. "classmap": [
  4953. "Resources/stubs"
  4954. ],
  4955. "exclude-from-classmap": [
  4956. "/Tests/"
  4957. ]
  4958. },
  4959. "notification-url": "https://packagist.org/downloads/",
  4960. "license": [
  4961. "MIT"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Nicolas Grekas",
  4966. "email": "p@tchwork.com"
  4967. },
  4968. {
  4969. "name": "Symfony Community",
  4970. "homepage": "https://symfony.com/contributors"
  4971. }
  4972. ],
  4973. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4974. "homepage": "https://symfony.com",
  4975. "keywords": [
  4976. "compatibility",
  4977. "icu",
  4978. "intl",
  4979. "polyfill",
  4980. "portable",
  4981. "shim"
  4982. ],
  4983. "support": {
  4984. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.29.0"
  4985. },
  4986. "funding": [
  4987. {
  4988. "url": "https://symfony.com/sponsor",
  4989. "type": "custom"
  4990. },
  4991. {
  4992. "url": "https://github.com/fabpot",
  4993. "type": "github"
  4994. },
  4995. {
  4996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4997. "type": "tidelift"
  4998. }
  4999. ],
  5000. "time": "2024-01-29T20:12:16+00:00"
  5001. },
  5002. {
  5003. "name": "symfony/polyfill-intl-idn",
  5004. "version": "v1.29.0",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5008. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  5013. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  5014. "shasum": ""
  5015. },
  5016. "require": {
  5017. "php": ">=7.1",
  5018. "symfony/polyfill-intl-normalizer": "^1.10",
  5019. "symfony/polyfill-php72": "^1.10"
  5020. },
  5021. "suggest": {
  5022. "ext-intl": "For best performance"
  5023. },
  5024. "type": "library",
  5025. "extra": {
  5026. "thanks": {
  5027. "name": "symfony/polyfill",
  5028. "url": "https://github.com/symfony/polyfill"
  5029. }
  5030. },
  5031. "autoload": {
  5032. "files": [
  5033. "bootstrap.php"
  5034. ],
  5035. "psr-4": {
  5036. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5037. }
  5038. },
  5039. "notification-url": "https://packagist.org/downloads/",
  5040. "license": [
  5041. "MIT"
  5042. ],
  5043. "authors": [
  5044. {
  5045. "name": "Laurent Bassin",
  5046. "email": "laurent@bassin.info"
  5047. },
  5048. {
  5049. "name": "Trevor Rowbotham",
  5050. "email": "trevor.rowbotham@pm.me"
  5051. },
  5052. {
  5053. "name": "Symfony Community",
  5054. "homepage": "https://symfony.com/contributors"
  5055. }
  5056. ],
  5057. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5058. "homepage": "https://symfony.com",
  5059. "keywords": [
  5060. "compatibility",
  5061. "idn",
  5062. "intl",
  5063. "polyfill",
  5064. "portable",
  5065. "shim"
  5066. ],
  5067. "support": {
  5068. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://symfony.com/sponsor",
  5073. "type": "custom"
  5074. },
  5075. {
  5076. "url": "https://github.com/fabpot",
  5077. "type": "github"
  5078. },
  5079. {
  5080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5081. "type": "tidelift"
  5082. }
  5083. ],
  5084. "time": "2024-01-29T20:11:03+00:00"
  5085. },
  5086. {
  5087. "name": "symfony/polyfill-intl-normalizer",
  5088. "version": "v1.29.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5092. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5097. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": ">=7.1"
  5102. },
  5103. "suggest": {
  5104. "ext-intl": "For best performance"
  5105. },
  5106. "type": "library",
  5107. "extra": {
  5108. "thanks": {
  5109. "name": "symfony/polyfill",
  5110. "url": "https://github.com/symfony/polyfill"
  5111. }
  5112. },
  5113. "autoload": {
  5114. "files": [
  5115. "bootstrap.php"
  5116. ],
  5117. "psr-4": {
  5118. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5119. },
  5120. "classmap": [
  5121. "Resources/stubs"
  5122. ]
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Nicolas Grekas",
  5131. "email": "p@tchwork.com"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5139. "homepage": "https://symfony.com",
  5140. "keywords": [
  5141. "compatibility",
  5142. "intl",
  5143. "normalizer",
  5144. "polyfill",
  5145. "portable",
  5146. "shim"
  5147. ],
  5148. "support": {
  5149. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5150. },
  5151. "funding": [
  5152. {
  5153. "url": "https://symfony.com/sponsor",
  5154. "type": "custom"
  5155. },
  5156. {
  5157. "url": "https://github.com/fabpot",
  5158. "type": "github"
  5159. },
  5160. {
  5161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5162. "type": "tidelift"
  5163. }
  5164. ],
  5165. "time": "2024-01-29T20:11:03+00:00"
  5166. },
  5167. {
  5168. "name": "symfony/polyfill-mbstring",
  5169. "version": "v1.29.0",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5173. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5178. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5179. "shasum": ""
  5180. },
  5181. "require": {
  5182. "php": ">=7.1"
  5183. },
  5184. "provide": {
  5185. "ext-mbstring": "*"
  5186. },
  5187. "suggest": {
  5188. "ext-mbstring": "For best performance"
  5189. },
  5190. "type": "library",
  5191. "extra": {
  5192. "thanks": {
  5193. "name": "symfony/polyfill",
  5194. "url": "https://github.com/symfony/polyfill"
  5195. }
  5196. },
  5197. "autoload": {
  5198. "files": [
  5199. "bootstrap.php"
  5200. ],
  5201. "psr-4": {
  5202. "Symfony\\Polyfill\\Mbstring\\": ""
  5203. }
  5204. },
  5205. "notification-url": "https://packagist.org/downloads/",
  5206. "license": [
  5207. "MIT"
  5208. ],
  5209. "authors": [
  5210. {
  5211. "name": "Nicolas Grekas",
  5212. "email": "p@tchwork.com"
  5213. },
  5214. {
  5215. "name": "Symfony Community",
  5216. "homepage": "https://symfony.com/contributors"
  5217. }
  5218. ],
  5219. "description": "Symfony polyfill for the Mbstring extension",
  5220. "homepage": "https://symfony.com",
  5221. "keywords": [
  5222. "compatibility",
  5223. "mbstring",
  5224. "polyfill",
  5225. "portable",
  5226. "shim"
  5227. ],
  5228. "support": {
  5229. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  5230. },
  5231. "funding": [
  5232. {
  5233. "url": "https://symfony.com/sponsor",
  5234. "type": "custom"
  5235. },
  5236. {
  5237. "url": "https://github.com/fabpot",
  5238. "type": "github"
  5239. },
  5240. {
  5241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5242. "type": "tidelift"
  5243. }
  5244. ],
  5245. "time": "2024-01-29T20:11:03+00:00"
  5246. },
  5247. {
  5248. "name": "symfony/polyfill-php83",
  5249. "version": "v1.29.0",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://github.com/symfony/polyfill-php83.git",
  5253. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  5258. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  5259. "shasum": ""
  5260. },
  5261. "require": {
  5262. "php": ">=7.1",
  5263. "symfony/polyfill-php80": "^1.14"
  5264. },
  5265. "type": "library",
  5266. "extra": {
  5267. "thanks": {
  5268. "name": "symfony/polyfill",
  5269. "url": "https://github.com/symfony/polyfill"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "files": [
  5274. "bootstrap.php"
  5275. ],
  5276. "psr-4": {
  5277. "Symfony\\Polyfill\\Php83\\": ""
  5278. },
  5279. "classmap": [
  5280. "Resources/stubs"
  5281. ]
  5282. },
  5283. "notification-url": "https://packagist.org/downloads/",
  5284. "license": [
  5285. "MIT"
  5286. ],
  5287. "authors": [
  5288. {
  5289. "name": "Nicolas Grekas",
  5290. "email": "p@tchwork.com"
  5291. },
  5292. {
  5293. "name": "Symfony Community",
  5294. "homepage": "https://symfony.com/contributors"
  5295. }
  5296. ],
  5297. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5298. "homepage": "https://symfony.com",
  5299. "keywords": [
  5300. "compatibility",
  5301. "polyfill",
  5302. "portable",
  5303. "shim"
  5304. ],
  5305. "support": {
  5306. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  5307. },
  5308. "funding": [
  5309. {
  5310. "url": "https://symfony.com/sponsor",
  5311. "type": "custom"
  5312. },
  5313. {
  5314. "url": "https://github.com/fabpot",
  5315. "type": "github"
  5316. },
  5317. {
  5318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5319. "type": "tidelift"
  5320. }
  5321. ],
  5322. "time": "2024-01-29T20:11:03+00:00"
  5323. },
  5324. {
  5325. "name": "symfony/process",
  5326. "version": "v7.0.4",
  5327. "source": {
  5328. "type": "git",
  5329. "url": "https://github.com/symfony/process.git",
  5330. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9"
  5331. },
  5332. "dist": {
  5333. "type": "zip",
  5334. "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  5335. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  5336. "shasum": ""
  5337. },
  5338. "require": {
  5339. "php": ">=8.2"
  5340. },
  5341. "type": "library",
  5342. "autoload": {
  5343. "psr-4": {
  5344. "Symfony\\Component\\Process\\": ""
  5345. },
  5346. "exclude-from-classmap": [
  5347. "/Tests/"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Fabien Potencier",
  5357. "email": "fabien@symfony.com"
  5358. },
  5359. {
  5360. "name": "Symfony Community",
  5361. "homepage": "https://symfony.com/contributors"
  5362. }
  5363. ],
  5364. "description": "Executes commands in sub-processes",
  5365. "homepage": "https://symfony.com",
  5366. "support": {
  5367. "source": "https://github.com/symfony/process/tree/v7.0.4"
  5368. },
  5369. "funding": [
  5370. {
  5371. "url": "https://symfony.com/sponsor",
  5372. "type": "custom"
  5373. },
  5374. {
  5375. "url": "https://github.com/fabpot",
  5376. "type": "github"
  5377. },
  5378. {
  5379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5380. "type": "tidelift"
  5381. }
  5382. ],
  5383. "time": "2024-02-22T20:27:20+00:00"
  5384. },
  5385. {
  5386. "name": "symfony/property-access",
  5387. "version": "v7.0.4",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://github.com/symfony/property-access.git",
  5391. "reference": "44e3746d4de8d0961a44ee332c74dd0918266127"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://api.github.com/repos/symfony/property-access/zipball/44e3746d4de8d0961a44ee332c74dd0918266127",
  5396. "reference": "44e3746d4de8d0961a44ee332c74dd0918266127",
  5397. "shasum": ""
  5398. },
  5399. "require": {
  5400. "php": ">=8.2",
  5401. "symfony/property-info": "^6.4|^7.0"
  5402. },
  5403. "require-dev": {
  5404. "symfony/cache": "^6.4|^7.0"
  5405. },
  5406. "type": "library",
  5407. "autoload": {
  5408. "psr-4": {
  5409. "Symfony\\Component\\PropertyAccess\\": ""
  5410. },
  5411. "exclude-from-classmap": [
  5412. "/Tests/"
  5413. ]
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "MIT"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Fabien Potencier",
  5422. "email": "fabien@symfony.com"
  5423. },
  5424. {
  5425. "name": "Symfony Community",
  5426. "homepage": "https://symfony.com/contributors"
  5427. }
  5428. ],
  5429. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5430. "homepage": "https://symfony.com",
  5431. "keywords": [
  5432. "access",
  5433. "array",
  5434. "extraction",
  5435. "index",
  5436. "injection",
  5437. "object",
  5438. "property",
  5439. "property-path",
  5440. "reflection"
  5441. ],
  5442. "support": {
  5443. "source": "https://github.com/symfony/property-access/tree/v7.0.4"
  5444. },
  5445. "funding": [
  5446. {
  5447. "url": "https://symfony.com/sponsor",
  5448. "type": "custom"
  5449. },
  5450. {
  5451. "url": "https://github.com/fabpot",
  5452. "type": "github"
  5453. },
  5454. {
  5455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5456. "type": "tidelift"
  5457. }
  5458. ],
  5459. "time": "2024-02-16T13:44:10+00:00"
  5460. },
  5461. {
  5462. "name": "symfony/property-info",
  5463. "version": "v7.0.3",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/symfony/property-info.git",
  5467. "reference": "e160f92ea827243abf2dbf36b8460b1377194406"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/symfony/property-info/zipball/e160f92ea827243abf2dbf36b8460b1377194406",
  5472. "reference": "e160f92ea827243abf2dbf36b8460b1377194406",
  5473. "shasum": ""
  5474. },
  5475. "require": {
  5476. "php": ">=8.2",
  5477. "symfony/string": "^6.4|^7.0"
  5478. },
  5479. "conflict": {
  5480. "phpdocumentor/reflection-docblock": "<5.2",
  5481. "phpdocumentor/type-resolver": "<1.5.1",
  5482. "symfony/dependency-injection": "<6.4",
  5483. "symfony/serializer": "<6.4"
  5484. },
  5485. "require-dev": {
  5486. "phpdocumentor/reflection-docblock": "^5.2",
  5487. "phpstan/phpdoc-parser": "^1.0",
  5488. "symfony/cache": "^6.4|^7.0",
  5489. "symfony/dependency-injection": "^6.4|^7.0",
  5490. "symfony/serializer": "^6.4|^7.0"
  5491. },
  5492. "type": "library",
  5493. "autoload": {
  5494. "psr-4": {
  5495. "Symfony\\Component\\PropertyInfo\\": ""
  5496. },
  5497. "exclude-from-classmap": [
  5498. "/Tests/"
  5499. ]
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Kévin Dunglas",
  5508. "email": "dunglas@gmail.com"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "doctrine",
  5519. "phpdoc",
  5520. "property",
  5521. "symfony",
  5522. "type",
  5523. "validator"
  5524. ],
  5525. "support": {
  5526. "source": "https://github.com/symfony/property-info/tree/v7.0.3"
  5527. },
  5528. "funding": [
  5529. {
  5530. "url": "https://symfony.com/sponsor",
  5531. "type": "custom"
  5532. },
  5533. {
  5534. "url": "https://github.com/fabpot",
  5535. "type": "github"
  5536. },
  5537. {
  5538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5539. "type": "tidelift"
  5540. }
  5541. ],
  5542. "time": "2024-01-23T15:02:46+00:00"
  5543. },
  5544. {
  5545. "name": "symfony/routing",
  5546. "version": "v7.0.5",
  5547. "source": {
  5548. "type": "git",
  5549. "url": "https://github.com/symfony/routing.git",
  5550. "reference": "ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19"
  5551. },
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://api.github.com/repos/symfony/routing/zipball/ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19",
  5555. "reference": "ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "php": ">=8.2",
  5560. "symfony/deprecation-contracts": "^2.5|^3"
  5561. },
  5562. "conflict": {
  5563. "symfony/config": "<6.4",
  5564. "symfony/dependency-injection": "<6.4",
  5565. "symfony/yaml": "<6.4"
  5566. },
  5567. "require-dev": {
  5568. "psr/log": "^1|^2|^3",
  5569. "symfony/config": "^6.4|^7.0",
  5570. "symfony/dependency-injection": "^6.4|^7.0",
  5571. "symfony/expression-language": "^6.4|^7.0",
  5572. "symfony/http-foundation": "^6.4|^7.0",
  5573. "symfony/yaml": "^6.4|^7.0"
  5574. },
  5575. "type": "library",
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Symfony\\Component\\Routing\\": ""
  5579. },
  5580. "exclude-from-classmap": [
  5581. "/Tests/"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Fabien Potencier",
  5591. "email": "fabien@symfony.com"
  5592. },
  5593. {
  5594. "name": "Symfony Community",
  5595. "homepage": "https://symfony.com/contributors"
  5596. }
  5597. ],
  5598. "description": "Maps an HTTP request to a set of configuration variables",
  5599. "homepage": "https://symfony.com",
  5600. "keywords": [
  5601. "router",
  5602. "routing",
  5603. "uri",
  5604. "url"
  5605. ],
  5606. "support": {
  5607. "source": "https://github.com/symfony/routing/tree/v7.0.5"
  5608. },
  5609. "funding": [
  5610. {
  5611. "url": "https://symfony.com/sponsor",
  5612. "type": "custom"
  5613. },
  5614. {
  5615. "url": "https://github.com/fabpot",
  5616. "type": "github"
  5617. },
  5618. {
  5619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5620. "type": "tidelift"
  5621. }
  5622. ],
  5623. "time": "2024-02-27T12:34:35+00:00"
  5624. },
  5625. {
  5626. "name": "symfony/runtime",
  5627. "version": "v7.0.3",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/symfony/runtime.git",
  5631. "reference": "ef2c2fd4b40fb8cd22221154399ad8888e81cdb5"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/symfony/runtime/zipball/ef2c2fd4b40fb8cd22221154399ad8888e81cdb5",
  5636. "reference": "ef2c2fd4b40fb8cd22221154399ad8888e81cdb5",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "composer-plugin-api": "^1.0|^2.0",
  5641. "php": ">=8.2"
  5642. },
  5643. "conflict": {
  5644. "symfony/dotenv": "<6.4"
  5645. },
  5646. "require-dev": {
  5647. "composer/composer": "^2.6",
  5648. "symfony/console": "^6.4|^7.0",
  5649. "symfony/dotenv": "^6.4|^7.0",
  5650. "symfony/http-foundation": "^6.4|^7.0",
  5651. "symfony/http-kernel": "^6.4|^7.0"
  5652. },
  5653. "type": "composer-plugin",
  5654. "extra": {
  5655. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5656. },
  5657. "autoload": {
  5658. "psr-4": {
  5659. "Symfony\\Component\\Runtime\\": "",
  5660. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5661. },
  5662. "exclude-from-classmap": [
  5663. "/Tests/"
  5664. ]
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "Nicolas Grekas",
  5673. "email": "p@tchwork.com"
  5674. },
  5675. {
  5676. "name": "Symfony Community",
  5677. "homepage": "https://symfony.com/contributors"
  5678. }
  5679. ],
  5680. "description": "Enables decoupling PHP applications from global state",
  5681. "homepage": "https://symfony.com",
  5682. "keywords": [
  5683. "runtime"
  5684. ],
  5685. "support": {
  5686. "source": "https://github.com/symfony/runtime/tree/v7.0.3"
  5687. },
  5688. "funding": [
  5689. {
  5690. "url": "https://symfony.com/sponsor",
  5691. "type": "custom"
  5692. },
  5693. {
  5694. "url": "https://github.com/fabpot",
  5695. "type": "github"
  5696. },
  5697. {
  5698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5699. "type": "tidelift"
  5700. }
  5701. ],
  5702. "time": "2024-01-23T15:02:46+00:00"
  5703. },
  5704. {
  5705. "name": "symfony/security-bundle",
  5706. "version": "v7.0.5",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://github.com/symfony/security-bundle.git",
  5710. "reference": "5d620bd5493d62d8016b2383d8690fade66163c1"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5d620bd5493d62d8016b2383d8690fade66163c1",
  5715. "reference": "5d620bd5493d62d8016b2383d8690fade66163c1",
  5716. "shasum": ""
  5717. },
  5718. "require": {
  5719. "composer-runtime-api": ">=2.1",
  5720. "ext-xml": "*",
  5721. "php": ">=8.2",
  5722. "symfony/clock": "^6.4|^7.0",
  5723. "symfony/config": "^6.4|^7.0",
  5724. "symfony/dependency-injection": "^6.4|^7.0",
  5725. "symfony/event-dispatcher": "^6.4|^7.0",
  5726. "symfony/http-foundation": "^6.4|^7.0",
  5727. "symfony/http-kernel": "^6.4|^7.0",
  5728. "symfony/password-hasher": "^6.4|^7.0",
  5729. "symfony/security-core": "^6.4|^7.0",
  5730. "symfony/security-csrf": "^6.4|^7.0",
  5731. "symfony/security-http": "^6.4|^7.0",
  5732. "symfony/service-contracts": "^2.5|^3"
  5733. },
  5734. "conflict": {
  5735. "symfony/browser-kit": "<6.4",
  5736. "symfony/console": "<6.4",
  5737. "symfony/framework-bundle": "<6.4",
  5738. "symfony/http-client": "<6.4",
  5739. "symfony/ldap": "<6.4",
  5740. "symfony/serializer": "<6.4",
  5741. "symfony/twig-bundle": "<6.4",
  5742. "symfony/validator": "<6.4"
  5743. },
  5744. "require-dev": {
  5745. "symfony/asset": "^6.4|^7.0",
  5746. "symfony/browser-kit": "^6.4|^7.0",
  5747. "symfony/console": "^6.4|^7.0",
  5748. "symfony/css-selector": "^6.4|^7.0",
  5749. "symfony/dom-crawler": "^6.4|^7.0",
  5750. "symfony/expression-language": "^6.4|^7.0",
  5751. "symfony/form": "^6.4|^7.0",
  5752. "symfony/framework-bundle": "^6.4|^7.0",
  5753. "symfony/http-client": "^6.4|^7.0",
  5754. "symfony/ldap": "^6.4|^7.0",
  5755. "symfony/process": "^6.4|^7.0",
  5756. "symfony/rate-limiter": "^6.4|^7.0",
  5757. "symfony/serializer": "^6.4|^7.0",
  5758. "symfony/translation": "^6.4|^7.0",
  5759. "symfony/twig-bridge": "^6.4|^7.0",
  5760. "symfony/twig-bundle": "^6.4|^7.0",
  5761. "symfony/validator": "^6.4|^7.0",
  5762. "symfony/yaml": "^6.4|^7.0",
  5763. "twig/twig": "^3.0.4",
  5764. "web-token/jwt-checker": "^3.1",
  5765. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  5766. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  5767. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  5768. "web-token/jwt-signature-algorithm-none": "^3.1",
  5769. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  5770. },
  5771. "type": "symfony-bundle",
  5772. "autoload": {
  5773. "psr-4": {
  5774. "Symfony\\Bundle\\SecurityBundle\\": ""
  5775. },
  5776. "exclude-from-classmap": [
  5777. "/Tests/"
  5778. ]
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "MIT"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "Fabien Potencier",
  5787. "email": "fabien@symfony.com"
  5788. },
  5789. {
  5790. "name": "Symfony Community",
  5791. "homepage": "https://symfony.com/contributors"
  5792. }
  5793. ],
  5794. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5795. "homepage": "https://symfony.com",
  5796. "support": {
  5797. "source": "https://github.com/symfony/security-bundle/tree/v7.0.5"
  5798. },
  5799. "funding": [
  5800. {
  5801. "url": "https://symfony.com/sponsor",
  5802. "type": "custom"
  5803. },
  5804. {
  5805. "url": "https://github.com/fabpot",
  5806. "type": "github"
  5807. },
  5808. {
  5809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5810. "type": "tidelift"
  5811. }
  5812. ],
  5813. "time": "2024-03-02T12:46:12+00:00"
  5814. },
  5815. {
  5816. "name": "symfony/security-core",
  5817. "version": "v7.0.3",
  5818. "source": {
  5819. "type": "git",
  5820. "url": "https://github.com/symfony/security-core.git",
  5821. "reference": "72b9d961a5dcd21e6bc29b99df51a9000a15dde0"
  5822. },
  5823. "dist": {
  5824. "type": "zip",
  5825. "url": "https://api.github.com/repos/symfony/security-core/zipball/72b9d961a5dcd21e6bc29b99df51a9000a15dde0",
  5826. "reference": "72b9d961a5dcd21e6bc29b99df51a9000a15dde0",
  5827. "shasum": ""
  5828. },
  5829. "require": {
  5830. "php": ">=8.2",
  5831. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5832. "symfony/password-hasher": "^6.4|^7.0",
  5833. "symfony/service-contracts": "^2.5|^3"
  5834. },
  5835. "conflict": {
  5836. "symfony/event-dispatcher": "<6.4",
  5837. "symfony/http-foundation": "<6.4",
  5838. "symfony/ldap": "<6.4",
  5839. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5840. "symfony/validator": "<6.4"
  5841. },
  5842. "require-dev": {
  5843. "psr/cache": "^1.0|^2.0|^3.0",
  5844. "psr/container": "^1.1|^2.0",
  5845. "psr/log": "^1|^2|^3",
  5846. "symfony/cache": "^6.4|^7.0",
  5847. "symfony/event-dispatcher": "^6.4|^7.0",
  5848. "symfony/expression-language": "^6.4|^7.0",
  5849. "symfony/http-foundation": "^6.4|^7.0",
  5850. "symfony/ldap": "^6.4|^7.0",
  5851. "symfony/string": "^6.4|^7.0",
  5852. "symfony/translation": "^6.4.3|^7.0.3",
  5853. "symfony/validator": "^6.4|^7.0"
  5854. },
  5855. "type": "library",
  5856. "autoload": {
  5857. "psr-4": {
  5858. "Symfony\\Component\\Security\\Core\\": ""
  5859. },
  5860. "exclude-from-classmap": [
  5861. "/Tests/"
  5862. ]
  5863. },
  5864. "notification-url": "https://packagist.org/downloads/",
  5865. "license": [
  5866. "MIT"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "Fabien Potencier",
  5871. "email": "fabien@symfony.com"
  5872. },
  5873. {
  5874. "name": "Symfony Community",
  5875. "homepage": "https://symfony.com/contributors"
  5876. }
  5877. ],
  5878. "description": "Symfony Security Component - Core Library",
  5879. "homepage": "https://symfony.com",
  5880. "support": {
  5881. "source": "https://github.com/symfony/security-core/tree/v7.0.3"
  5882. },
  5883. "funding": [
  5884. {
  5885. "url": "https://symfony.com/sponsor",
  5886. "type": "custom"
  5887. },
  5888. {
  5889. "url": "https://github.com/fabpot",
  5890. "type": "github"
  5891. },
  5892. {
  5893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5894. "type": "tidelift"
  5895. }
  5896. ],
  5897. "time": "2024-01-23T15:02:46+00:00"
  5898. },
  5899. {
  5900. "name": "symfony/security-csrf",
  5901. "version": "v7.0.3",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/symfony/security-csrf.git",
  5905. "reference": "f0f724e599f069b768e335e4bdf795726c7dfe8e"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/f0f724e599f069b768e335e4bdf795726c7dfe8e",
  5910. "reference": "f0f724e599f069b768e335e4bdf795726c7dfe8e",
  5911. "shasum": ""
  5912. },
  5913. "require": {
  5914. "php": ">=8.2",
  5915. "symfony/security-core": "^6.4|^7.0"
  5916. },
  5917. "conflict": {
  5918. "symfony/http-foundation": "<6.4"
  5919. },
  5920. "require-dev": {
  5921. "symfony/http-foundation": "^6.4|^7.0"
  5922. },
  5923. "type": "library",
  5924. "autoload": {
  5925. "psr-4": {
  5926. "Symfony\\Component\\Security\\Csrf\\": ""
  5927. },
  5928. "exclude-from-classmap": [
  5929. "/Tests/"
  5930. ]
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "Fabien Potencier",
  5939. "email": "fabien@symfony.com"
  5940. },
  5941. {
  5942. "name": "Symfony Community",
  5943. "homepage": "https://symfony.com/contributors"
  5944. }
  5945. ],
  5946. "description": "Symfony Security Component - CSRF Library",
  5947. "homepage": "https://symfony.com",
  5948. "support": {
  5949. "source": "https://github.com/symfony/security-csrf/tree/v7.0.3"
  5950. },
  5951. "funding": [
  5952. {
  5953. "url": "https://symfony.com/sponsor",
  5954. "type": "custom"
  5955. },
  5956. {
  5957. "url": "https://github.com/fabpot",
  5958. "type": "github"
  5959. },
  5960. {
  5961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5962. "type": "tidelift"
  5963. }
  5964. ],
  5965. "time": "2024-01-23T15:02:46+00:00"
  5966. },
  5967. {
  5968. "name": "symfony/security-http",
  5969. "version": "v7.0.4",
  5970. "source": {
  5971. "type": "git",
  5972. "url": "https://github.com/symfony/security-http.git",
  5973. "reference": "f3a70a937128f47366821a9f4b5dbfaa0ba9c862"
  5974. },
  5975. "dist": {
  5976. "type": "zip",
  5977. "url": "https://api.github.com/repos/symfony/security-http/zipball/f3a70a937128f47366821a9f4b5dbfaa0ba9c862",
  5978. "reference": "f3a70a937128f47366821a9f4b5dbfaa0ba9c862",
  5979. "shasum": ""
  5980. },
  5981. "require": {
  5982. "php": ">=8.2",
  5983. "symfony/http-foundation": "^6.4|^7.0",
  5984. "symfony/http-kernel": "^6.4|^7.0",
  5985. "symfony/polyfill-mbstring": "~1.0",
  5986. "symfony/property-access": "^6.4|^7.0",
  5987. "symfony/security-core": "^6.4|^7.0",
  5988. "symfony/service-contracts": "^2.5|^3"
  5989. },
  5990. "conflict": {
  5991. "symfony/clock": "<6.4",
  5992. "symfony/event-dispatcher": "<6.4",
  5993. "symfony/http-client-contracts": "<3.0",
  5994. "symfony/security-bundle": "<6.4",
  5995. "symfony/security-csrf": "<6.4"
  5996. },
  5997. "require-dev": {
  5998. "psr/log": "^1|^2|^3",
  5999. "symfony/cache": "^6.4|^7.0",
  6000. "symfony/clock": "^6.4|^7.0",
  6001. "symfony/expression-language": "^6.4|^7.0",
  6002. "symfony/http-client-contracts": "^3.0",
  6003. "symfony/rate-limiter": "^6.4|^7.0",
  6004. "symfony/routing": "^6.4|^7.0",
  6005. "symfony/security-csrf": "^6.4|^7.0",
  6006. "symfony/translation": "^6.4|^7.0",
  6007. "web-token/jwt-checker": "^3.1",
  6008. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6009. },
  6010. "type": "library",
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Symfony\\Component\\Security\\Http\\": ""
  6014. },
  6015. "exclude-from-classmap": [
  6016. "/Tests/"
  6017. ]
  6018. },
  6019. "notification-url": "https://packagist.org/downloads/",
  6020. "license": [
  6021. "MIT"
  6022. ],
  6023. "authors": [
  6024. {
  6025. "name": "Fabien Potencier",
  6026. "email": "fabien@symfony.com"
  6027. },
  6028. {
  6029. "name": "Symfony Community",
  6030. "homepage": "https://symfony.com/contributors"
  6031. }
  6032. ],
  6033. "description": "Symfony Security Component - HTTP Integration",
  6034. "homepage": "https://symfony.com",
  6035. "support": {
  6036. "source": "https://github.com/symfony/security-http/tree/v7.0.4"
  6037. },
  6038. "funding": [
  6039. {
  6040. "url": "https://symfony.com/sponsor",
  6041. "type": "custom"
  6042. },
  6043. {
  6044. "url": "https://github.com/fabpot",
  6045. "type": "github"
  6046. },
  6047. {
  6048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6049. "type": "tidelift"
  6050. }
  6051. ],
  6052. "time": "2024-02-26T07:52:39+00:00"
  6053. },
  6054. {
  6055. "name": "symfony/serializer",
  6056. "version": "v7.0.4",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://github.com/symfony/serializer.git",
  6060. "reference": "c71d61c6c37804e10981960e5f5ebc2c8f0a4fbb"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://api.github.com/repos/symfony/serializer/zipball/c71d61c6c37804e10981960e5f5ebc2c8f0a4fbb",
  6065. "reference": "c71d61c6c37804e10981960e5f5ebc2c8f0a4fbb",
  6066. "shasum": ""
  6067. },
  6068. "require": {
  6069. "php": ">=8.2",
  6070. "symfony/polyfill-ctype": "~1.8"
  6071. },
  6072. "conflict": {
  6073. "phpdocumentor/reflection-docblock": "<3.2.2",
  6074. "phpdocumentor/type-resolver": "<1.4.0",
  6075. "symfony/dependency-injection": "<6.4",
  6076. "symfony/property-access": "<6.4",
  6077. "symfony/property-info": "<6.4",
  6078. "symfony/uid": "<6.4",
  6079. "symfony/validator": "<6.4",
  6080. "symfony/yaml": "<6.4"
  6081. },
  6082. "require-dev": {
  6083. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6084. "seld/jsonlint": "^1.10",
  6085. "symfony/cache": "^6.4|^7.0",
  6086. "symfony/config": "^6.4|^7.0",
  6087. "symfony/console": "^6.4|^7.0",
  6088. "symfony/dependency-injection": "^6.4|^7.0",
  6089. "symfony/error-handler": "^6.4|^7.0",
  6090. "symfony/filesystem": "^6.4|^7.0",
  6091. "symfony/form": "^6.4|^7.0",
  6092. "symfony/http-foundation": "^6.4|^7.0",
  6093. "symfony/http-kernel": "^6.4|^7.0",
  6094. "symfony/messenger": "^6.4|^7.0",
  6095. "symfony/mime": "^6.4|^7.0",
  6096. "symfony/property-access": "^6.4|^7.0",
  6097. "symfony/property-info": "^6.4|^7.0",
  6098. "symfony/translation-contracts": "^2.5|^3",
  6099. "symfony/uid": "^6.4|^7.0",
  6100. "symfony/validator": "^6.4|^7.0",
  6101. "symfony/var-dumper": "^6.4|^7.0",
  6102. "symfony/var-exporter": "^6.4|^7.0",
  6103. "symfony/yaml": "^6.4|^7.0"
  6104. },
  6105. "type": "library",
  6106. "autoload": {
  6107. "psr-4": {
  6108. "Symfony\\Component\\Serializer\\": ""
  6109. },
  6110. "exclude-from-classmap": [
  6111. "/Tests/"
  6112. ]
  6113. },
  6114. "notification-url": "https://packagist.org/downloads/",
  6115. "license": [
  6116. "MIT"
  6117. ],
  6118. "authors": [
  6119. {
  6120. "name": "Fabien Potencier",
  6121. "email": "fabien@symfony.com"
  6122. },
  6123. {
  6124. "name": "Symfony Community",
  6125. "homepage": "https://symfony.com/contributors"
  6126. }
  6127. ],
  6128. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6129. "homepage": "https://symfony.com",
  6130. "support": {
  6131. "source": "https://github.com/symfony/serializer/tree/v7.0.4"
  6132. },
  6133. "funding": [
  6134. {
  6135. "url": "https://symfony.com/sponsor",
  6136. "type": "custom"
  6137. },
  6138. {
  6139. "url": "https://github.com/fabpot",
  6140. "type": "github"
  6141. },
  6142. {
  6143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6144. "type": "tidelift"
  6145. }
  6146. ],
  6147. "time": "2024-02-22T20:27:20+00:00"
  6148. },
  6149. {
  6150. "name": "symfony/service-contracts",
  6151. "version": "v3.4.1",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://github.com/symfony/service-contracts.git",
  6155. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  6160. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  6161. "shasum": ""
  6162. },
  6163. "require": {
  6164. "php": ">=8.1",
  6165. "psr/container": "^1.1|^2.0"
  6166. },
  6167. "conflict": {
  6168. "ext-psr": "<1.1|>=2"
  6169. },
  6170. "type": "library",
  6171. "extra": {
  6172. "branch-alias": {
  6173. "dev-main": "3.4-dev"
  6174. },
  6175. "thanks": {
  6176. "name": "symfony/contracts",
  6177. "url": "https://github.com/symfony/contracts"
  6178. }
  6179. },
  6180. "autoload": {
  6181. "psr-4": {
  6182. "Symfony\\Contracts\\Service\\": ""
  6183. },
  6184. "exclude-from-classmap": [
  6185. "/Test/"
  6186. ]
  6187. },
  6188. "notification-url": "https://packagist.org/downloads/",
  6189. "license": [
  6190. "MIT"
  6191. ],
  6192. "authors": [
  6193. {
  6194. "name": "Nicolas Grekas",
  6195. "email": "p@tchwork.com"
  6196. },
  6197. {
  6198. "name": "Symfony Community",
  6199. "homepage": "https://symfony.com/contributors"
  6200. }
  6201. ],
  6202. "description": "Generic abstractions related to writing services",
  6203. "homepage": "https://symfony.com",
  6204. "keywords": [
  6205. "abstractions",
  6206. "contracts",
  6207. "decoupling",
  6208. "interfaces",
  6209. "interoperability",
  6210. "standards"
  6211. ],
  6212. "support": {
  6213. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  6214. },
  6215. "funding": [
  6216. {
  6217. "url": "https://symfony.com/sponsor",
  6218. "type": "custom"
  6219. },
  6220. {
  6221. "url": "https://github.com/fabpot",
  6222. "type": "github"
  6223. },
  6224. {
  6225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6226. "type": "tidelift"
  6227. }
  6228. ],
  6229. "time": "2023-12-26T14:02:43+00:00"
  6230. },
  6231. {
  6232. "name": "symfony/stimulus-bundle",
  6233. "version": "v2.16.0",
  6234. "source": {
  6235. "type": "git",
  6236. "url": "https://github.com/symfony/stimulus-bundle.git",
  6237. "reference": "6add4bdab1b9df4f2b2532a9dcb7b2f26dbba634"
  6238. },
  6239. "dist": {
  6240. "type": "zip",
  6241. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/6add4bdab1b9df4f2b2532a9dcb7b2f26dbba634",
  6242. "reference": "6add4bdab1b9df4f2b2532a9dcb7b2f26dbba634",
  6243. "shasum": ""
  6244. },
  6245. "require": {
  6246. "php": ">=8.1",
  6247. "symfony/config": "^5.4|^6.0|^7.0",
  6248. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6249. "symfony/deprecation-contracts": "^2.0|^3.0",
  6250. "symfony/finder": "^5.4|^6.0|^7.0",
  6251. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6252. "twig/twig": "^2.15.3|~3.8.0"
  6253. },
  6254. "require-dev": {
  6255. "symfony/asset-mapper": "^6.3|^7.0",
  6256. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6257. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6258. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6259. "zenstruck/browser": "^1.4"
  6260. },
  6261. "type": "symfony-bundle",
  6262. "autoload": {
  6263. "psr-4": {
  6264. "Symfony\\UX\\StimulusBundle\\": "src"
  6265. }
  6266. },
  6267. "notification-url": "https://packagist.org/downloads/",
  6268. "license": [
  6269. "MIT"
  6270. ],
  6271. "authors": [
  6272. {
  6273. "name": "Symfony Community",
  6274. "homepage": "https://symfony.com/contributors"
  6275. }
  6276. ],
  6277. "description": "Integration with your Symfony app & Stimulus!",
  6278. "keywords": [
  6279. "symfony-ux"
  6280. ],
  6281. "support": {
  6282. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.16.0"
  6283. },
  6284. "funding": [
  6285. {
  6286. "url": "https://symfony.com/sponsor",
  6287. "type": "custom"
  6288. },
  6289. {
  6290. "url": "https://github.com/fabpot",
  6291. "type": "github"
  6292. },
  6293. {
  6294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6295. "type": "tidelift"
  6296. }
  6297. ],
  6298. "time": "2024-02-29T16:20:46+00:00"
  6299. },
  6300. {
  6301. "name": "symfony/stopwatch",
  6302. "version": "v7.0.3",
  6303. "source": {
  6304. "type": "git",
  6305. "url": "https://github.com/symfony/stopwatch.git",
  6306. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112"
  6307. },
  6308. "dist": {
  6309. "type": "zip",
  6310. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112",
  6311. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112",
  6312. "shasum": ""
  6313. },
  6314. "require": {
  6315. "php": ">=8.2",
  6316. "symfony/service-contracts": "^2.5|^3"
  6317. },
  6318. "type": "library",
  6319. "autoload": {
  6320. "psr-4": {
  6321. "Symfony\\Component\\Stopwatch\\": ""
  6322. },
  6323. "exclude-from-classmap": [
  6324. "/Tests/"
  6325. ]
  6326. },
  6327. "notification-url": "https://packagist.org/downloads/",
  6328. "license": [
  6329. "MIT"
  6330. ],
  6331. "authors": [
  6332. {
  6333. "name": "Fabien Potencier",
  6334. "email": "fabien@symfony.com"
  6335. },
  6336. {
  6337. "name": "Symfony Community",
  6338. "homepage": "https://symfony.com/contributors"
  6339. }
  6340. ],
  6341. "description": "Provides a way to profile code",
  6342. "homepage": "https://symfony.com",
  6343. "support": {
  6344. "source": "https://github.com/symfony/stopwatch/tree/v7.0.3"
  6345. },
  6346. "funding": [
  6347. {
  6348. "url": "https://symfony.com/sponsor",
  6349. "type": "custom"
  6350. },
  6351. {
  6352. "url": "https://github.com/fabpot",
  6353. "type": "github"
  6354. },
  6355. {
  6356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6357. "type": "tidelift"
  6358. }
  6359. ],
  6360. "time": "2024-01-23T15:02:46+00:00"
  6361. },
  6362. {
  6363. "name": "symfony/string",
  6364. "version": "v7.0.4",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/symfony/string.git",
  6368. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  6373. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  6374. "shasum": ""
  6375. },
  6376. "require": {
  6377. "php": ">=8.2",
  6378. "symfony/polyfill-ctype": "~1.8",
  6379. "symfony/polyfill-intl-grapheme": "~1.0",
  6380. "symfony/polyfill-intl-normalizer": "~1.0",
  6381. "symfony/polyfill-mbstring": "~1.0"
  6382. },
  6383. "conflict": {
  6384. "symfony/translation-contracts": "<2.5"
  6385. },
  6386. "require-dev": {
  6387. "symfony/error-handler": "^6.4|^7.0",
  6388. "symfony/http-client": "^6.4|^7.0",
  6389. "symfony/intl": "^6.4|^7.0",
  6390. "symfony/translation-contracts": "^2.5|^3.0",
  6391. "symfony/var-exporter": "^6.4|^7.0"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "files": [
  6396. "Resources/functions.php"
  6397. ],
  6398. "psr-4": {
  6399. "Symfony\\Component\\String\\": ""
  6400. },
  6401. "exclude-from-classmap": [
  6402. "/Tests/"
  6403. ]
  6404. },
  6405. "notification-url": "https://packagist.org/downloads/",
  6406. "license": [
  6407. "MIT"
  6408. ],
  6409. "authors": [
  6410. {
  6411. "name": "Nicolas Grekas",
  6412. "email": "p@tchwork.com"
  6413. },
  6414. {
  6415. "name": "Symfony Community",
  6416. "homepage": "https://symfony.com/contributors"
  6417. }
  6418. ],
  6419. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6420. "homepage": "https://symfony.com",
  6421. "keywords": [
  6422. "grapheme",
  6423. "i18n",
  6424. "string",
  6425. "unicode",
  6426. "utf-8",
  6427. "utf8"
  6428. ],
  6429. "support": {
  6430. "source": "https://github.com/symfony/string/tree/v7.0.4"
  6431. },
  6432. "funding": [
  6433. {
  6434. "url": "https://symfony.com/sponsor",
  6435. "type": "custom"
  6436. },
  6437. {
  6438. "url": "https://github.com/fabpot",
  6439. "type": "github"
  6440. },
  6441. {
  6442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6443. "type": "tidelift"
  6444. }
  6445. ],
  6446. "time": "2024-02-01T13:17:36+00:00"
  6447. },
  6448. {
  6449. "name": "symfony/translation",
  6450. "version": "v7.0.4",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/symfony/translation.git",
  6454. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  6459. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  6460. "shasum": ""
  6461. },
  6462. "require": {
  6463. "php": ">=8.2",
  6464. "symfony/polyfill-mbstring": "~1.0",
  6465. "symfony/translation-contracts": "^2.5|^3.0"
  6466. },
  6467. "conflict": {
  6468. "symfony/config": "<6.4",
  6469. "symfony/console": "<6.4",
  6470. "symfony/dependency-injection": "<6.4",
  6471. "symfony/http-client-contracts": "<2.5",
  6472. "symfony/http-kernel": "<6.4",
  6473. "symfony/service-contracts": "<2.5",
  6474. "symfony/twig-bundle": "<6.4",
  6475. "symfony/yaml": "<6.4"
  6476. },
  6477. "provide": {
  6478. "symfony/translation-implementation": "2.3|3.0"
  6479. },
  6480. "require-dev": {
  6481. "nikic/php-parser": "^4.18|^5.0",
  6482. "psr/log": "^1|^2|^3",
  6483. "symfony/config": "^6.4|^7.0",
  6484. "symfony/console": "^6.4|^7.0",
  6485. "symfony/dependency-injection": "^6.4|^7.0",
  6486. "symfony/finder": "^6.4|^7.0",
  6487. "symfony/http-client-contracts": "^2.5|^3.0",
  6488. "symfony/http-kernel": "^6.4|^7.0",
  6489. "symfony/intl": "^6.4|^7.0",
  6490. "symfony/polyfill-intl-icu": "^1.21",
  6491. "symfony/routing": "^6.4|^7.0",
  6492. "symfony/service-contracts": "^2.5|^3",
  6493. "symfony/yaml": "^6.4|^7.0"
  6494. },
  6495. "type": "library",
  6496. "autoload": {
  6497. "files": [
  6498. "Resources/functions.php"
  6499. ],
  6500. "psr-4": {
  6501. "Symfony\\Component\\Translation\\": ""
  6502. },
  6503. "exclude-from-classmap": [
  6504. "/Tests/"
  6505. ]
  6506. },
  6507. "notification-url": "https://packagist.org/downloads/",
  6508. "license": [
  6509. "MIT"
  6510. ],
  6511. "authors": [
  6512. {
  6513. "name": "Fabien Potencier",
  6514. "email": "fabien@symfony.com"
  6515. },
  6516. {
  6517. "name": "Symfony Community",
  6518. "homepage": "https://symfony.com/contributors"
  6519. }
  6520. ],
  6521. "description": "Provides tools to internationalize your application",
  6522. "homepage": "https://symfony.com",
  6523. "support": {
  6524. "source": "https://github.com/symfony/translation/tree/v7.0.4"
  6525. },
  6526. "funding": [
  6527. {
  6528. "url": "https://symfony.com/sponsor",
  6529. "type": "custom"
  6530. },
  6531. {
  6532. "url": "https://github.com/fabpot",
  6533. "type": "github"
  6534. },
  6535. {
  6536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6537. "type": "tidelift"
  6538. }
  6539. ],
  6540. "time": "2024-02-22T20:27:20+00:00"
  6541. },
  6542. {
  6543. "name": "symfony/translation-contracts",
  6544. "version": "v3.4.1",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://github.com/symfony/translation-contracts.git",
  6548. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  6553. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  6554. "shasum": ""
  6555. },
  6556. "require": {
  6557. "php": ">=8.1"
  6558. },
  6559. "type": "library",
  6560. "extra": {
  6561. "branch-alias": {
  6562. "dev-main": "3.4-dev"
  6563. },
  6564. "thanks": {
  6565. "name": "symfony/contracts",
  6566. "url": "https://github.com/symfony/contracts"
  6567. }
  6568. },
  6569. "autoload": {
  6570. "psr-4": {
  6571. "Symfony\\Contracts\\Translation\\": ""
  6572. },
  6573. "exclude-from-classmap": [
  6574. "/Test/"
  6575. ]
  6576. },
  6577. "notification-url": "https://packagist.org/downloads/",
  6578. "license": [
  6579. "MIT"
  6580. ],
  6581. "authors": [
  6582. {
  6583. "name": "Nicolas Grekas",
  6584. "email": "p@tchwork.com"
  6585. },
  6586. {
  6587. "name": "Symfony Community",
  6588. "homepage": "https://symfony.com/contributors"
  6589. }
  6590. ],
  6591. "description": "Generic abstractions related to translation",
  6592. "homepage": "https://symfony.com",
  6593. "keywords": [
  6594. "abstractions",
  6595. "contracts",
  6596. "decoupling",
  6597. "interfaces",
  6598. "interoperability",
  6599. "standards"
  6600. ],
  6601. "support": {
  6602. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  6603. },
  6604. "funding": [
  6605. {
  6606. "url": "https://symfony.com/sponsor",
  6607. "type": "custom"
  6608. },
  6609. {
  6610. "url": "https://github.com/fabpot",
  6611. "type": "github"
  6612. },
  6613. {
  6614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6615. "type": "tidelift"
  6616. }
  6617. ],
  6618. "time": "2023-12-26T14:02:43+00:00"
  6619. },
  6620. {
  6621. "name": "symfony/twig-bridge",
  6622. "version": "v7.0.4",
  6623. "source": {
  6624. "type": "git",
  6625. "url": "https://github.com/symfony/twig-bridge.git",
  6626. "reference": "d16aa4eb5bdaeb6e7407782431dc70530f3b1df5"
  6627. },
  6628. "dist": {
  6629. "type": "zip",
  6630. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/d16aa4eb5bdaeb6e7407782431dc70530f3b1df5",
  6631. "reference": "d16aa4eb5bdaeb6e7407782431dc70530f3b1df5",
  6632. "shasum": ""
  6633. },
  6634. "require": {
  6635. "php": ">=8.2",
  6636. "symfony/translation-contracts": "^2.5|^3",
  6637. "twig/twig": "^3.0.4"
  6638. },
  6639. "conflict": {
  6640. "phpdocumentor/reflection-docblock": "<3.2.2",
  6641. "phpdocumentor/type-resolver": "<1.4.0",
  6642. "symfony/console": "<6.4",
  6643. "symfony/form": "<6.4",
  6644. "symfony/http-foundation": "<6.4",
  6645. "symfony/http-kernel": "<6.4",
  6646. "symfony/mime": "<6.4",
  6647. "symfony/serializer": "<6.4",
  6648. "symfony/translation": "<6.4",
  6649. "symfony/workflow": "<6.4"
  6650. },
  6651. "require-dev": {
  6652. "egulias/email-validator": "^2.1.10|^3|^4",
  6653. "league/html-to-markdown": "^5.0",
  6654. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6655. "symfony/asset": "^6.4|^7.0",
  6656. "symfony/asset-mapper": "^6.4|^7.0",
  6657. "symfony/console": "^6.4|^7.0",
  6658. "symfony/dependency-injection": "^6.4|^7.0",
  6659. "symfony/expression-language": "^6.4|^7.0",
  6660. "symfony/finder": "^6.4|^7.0",
  6661. "symfony/form": "^6.4|^7.0",
  6662. "symfony/html-sanitizer": "^6.4|^7.0",
  6663. "symfony/http-foundation": "^6.4|^7.0",
  6664. "symfony/http-kernel": "^6.4|^7.0",
  6665. "symfony/intl": "^6.4|^7.0",
  6666. "symfony/mime": "^6.4|^7.0",
  6667. "symfony/polyfill-intl-icu": "~1.0",
  6668. "symfony/property-info": "^6.4|^7.0",
  6669. "symfony/routing": "^6.4|^7.0",
  6670. "symfony/security-acl": "^2.8|^3.0",
  6671. "symfony/security-core": "^6.4|^7.0",
  6672. "symfony/security-csrf": "^6.4|^7.0",
  6673. "symfony/security-http": "^6.4|^7.0",
  6674. "symfony/serializer": "^6.4.3|^7.0.3",
  6675. "symfony/stopwatch": "^6.4|^7.0",
  6676. "symfony/translation": "^6.4|^7.0",
  6677. "symfony/web-link": "^6.4|^7.0",
  6678. "symfony/workflow": "^6.4|^7.0",
  6679. "symfony/yaml": "^6.4|^7.0",
  6680. "twig/cssinliner-extra": "^2.12|^3",
  6681. "twig/inky-extra": "^2.12|^3",
  6682. "twig/markdown-extra": "^2.12|^3"
  6683. },
  6684. "type": "symfony-bridge",
  6685. "autoload": {
  6686. "psr-4": {
  6687. "Symfony\\Bridge\\Twig\\": ""
  6688. },
  6689. "exclude-from-classmap": [
  6690. "/Tests/"
  6691. ]
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "MIT"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Fabien Potencier",
  6700. "email": "fabien@symfony.com"
  6701. },
  6702. {
  6703. "name": "Symfony Community",
  6704. "homepage": "https://symfony.com/contributors"
  6705. }
  6706. ],
  6707. "description": "Provides integration for Twig with various Symfony components",
  6708. "homepage": "https://symfony.com",
  6709. "support": {
  6710. "source": "https://github.com/symfony/twig-bridge/tree/v7.0.4"
  6711. },
  6712. "funding": [
  6713. {
  6714. "url": "https://symfony.com/sponsor",
  6715. "type": "custom"
  6716. },
  6717. {
  6718. "url": "https://github.com/fabpot",
  6719. "type": "github"
  6720. },
  6721. {
  6722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6723. "type": "tidelift"
  6724. }
  6725. ],
  6726. "time": "2024-02-15T11:33:06+00:00"
  6727. },
  6728. {
  6729. "name": "symfony/twig-bundle",
  6730. "version": "v7.0.4",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/symfony/twig-bundle.git",
  6734. "reference": "acab2368f53491e018bf31ef48b39df55a6812ef"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/acab2368f53491e018bf31ef48b39df55a6812ef",
  6739. "reference": "acab2368f53491e018bf31ef48b39df55a6812ef",
  6740. "shasum": ""
  6741. },
  6742. "require": {
  6743. "composer-runtime-api": ">=2.1",
  6744. "php": ">=8.2",
  6745. "symfony/config": "^6.4|^7.0",
  6746. "symfony/dependency-injection": "^6.4|^7.0",
  6747. "symfony/http-foundation": "^6.4|^7.0",
  6748. "symfony/http-kernel": "^6.4|^7.0",
  6749. "symfony/twig-bridge": "^6.4|^7.0",
  6750. "twig/twig": "^3.0.4"
  6751. },
  6752. "conflict": {
  6753. "symfony/framework-bundle": "<6.4",
  6754. "symfony/translation": "<6.4"
  6755. },
  6756. "require-dev": {
  6757. "symfony/asset": "^6.4|^7.0",
  6758. "symfony/expression-language": "^6.4|^7.0",
  6759. "symfony/finder": "^6.4|^7.0",
  6760. "symfony/form": "^6.4|^7.0",
  6761. "symfony/framework-bundle": "^6.4|^7.0",
  6762. "symfony/routing": "^6.4|^7.0",
  6763. "symfony/stopwatch": "^6.4|^7.0",
  6764. "symfony/translation": "^6.4|^7.0",
  6765. "symfony/web-link": "^6.4|^7.0",
  6766. "symfony/yaml": "^6.4|^7.0"
  6767. },
  6768. "type": "symfony-bundle",
  6769. "autoload": {
  6770. "psr-4": {
  6771. "Symfony\\Bundle\\TwigBundle\\": ""
  6772. },
  6773. "exclude-from-classmap": [
  6774. "/Tests/"
  6775. ]
  6776. },
  6777. "notification-url": "https://packagist.org/downloads/",
  6778. "license": [
  6779. "MIT"
  6780. ],
  6781. "authors": [
  6782. {
  6783. "name": "Fabien Potencier",
  6784. "email": "fabien@symfony.com"
  6785. },
  6786. {
  6787. "name": "Symfony Community",
  6788. "homepage": "https://symfony.com/contributors"
  6789. }
  6790. ],
  6791. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6792. "homepage": "https://symfony.com",
  6793. "support": {
  6794. "source": "https://github.com/symfony/twig-bundle/tree/v7.0.4"
  6795. },
  6796. "funding": [
  6797. {
  6798. "url": "https://symfony.com/sponsor",
  6799. "type": "custom"
  6800. },
  6801. {
  6802. "url": "https://github.com/fabpot",
  6803. "type": "github"
  6804. },
  6805. {
  6806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6807. "type": "tidelift"
  6808. }
  6809. ],
  6810. "time": "2024-02-15T11:33:06+00:00"
  6811. },
  6812. {
  6813. "name": "symfony/ux-turbo",
  6814. "version": "v2.16.0",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/symfony/ux-turbo.git",
  6818. "reference": "d3590a43fee73304855dfc8022ccb57b0df9f03d"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/d3590a43fee73304855dfc8022ccb57b0df9f03d",
  6823. "reference": "d3590a43fee73304855dfc8022ccb57b0df9f03d",
  6824. "shasum": ""
  6825. },
  6826. "require": {
  6827. "php": ">=8.1",
  6828. "symfony/stimulus-bundle": "^2.9.1"
  6829. },
  6830. "conflict": {
  6831. "symfony/flex": "<1.13"
  6832. },
  6833. "require-dev": {
  6834. "doctrine/doctrine-bundle": "^2.4.3",
  6835. "doctrine/orm": "^2.8 | 3.0",
  6836. "phpstan/phpstan": "^1.10",
  6837. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  6838. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6839. "symfony/form": "^5.4|^6.0|^7.0",
  6840. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6841. "symfony/mercure-bundle": "^0.3.7",
  6842. "symfony/messenger": "^5.4|^6.0|^7.0",
  6843. "symfony/panther": "^1.0|^2.0",
  6844. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6845. "symfony/process": "^5.4|6.3.*|^7.0",
  6846. "symfony/property-access": "^5.4|^6.0|^7.0",
  6847. "symfony/security-core": "^5.4|^6.0|^7.0",
  6848. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6849. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6850. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0",
  6851. "symfony/webpack-encore-bundle": "^2.1.1"
  6852. },
  6853. "type": "symfony-bundle",
  6854. "extra": {
  6855. "thanks": {
  6856. "name": "symfony/ux",
  6857. "url": "https://github.com/symfony/ux"
  6858. }
  6859. },
  6860. "autoload": {
  6861. "psr-4": {
  6862. "Symfony\\UX\\Turbo\\": "src/"
  6863. }
  6864. },
  6865. "notification-url": "https://packagist.org/downloads/",
  6866. "license": [
  6867. "MIT"
  6868. ],
  6869. "authors": [
  6870. {
  6871. "name": "Kévin Dunglas",
  6872. "email": "kevin@dunglas.fr"
  6873. },
  6874. {
  6875. "name": "Symfony Community",
  6876. "homepage": "https://symfony.com/contributors"
  6877. }
  6878. ],
  6879. "description": "Hotwire Turbo integration for Symfony",
  6880. "homepage": "https://symfony.com",
  6881. "keywords": [
  6882. "hotwire",
  6883. "javascript",
  6884. "mercure",
  6885. "symfony-ux",
  6886. "turbo",
  6887. "turbo-stream"
  6888. ],
  6889. "support": {
  6890. "source": "https://github.com/symfony/ux-turbo/tree/v2.16.0"
  6891. },
  6892. "funding": [
  6893. {
  6894. "url": "https://symfony.com/sponsor",
  6895. "type": "custom"
  6896. },
  6897. {
  6898. "url": "https://github.com/fabpot",
  6899. "type": "github"
  6900. },
  6901. {
  6902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6903. "type": "tidelift"
  6904. }
  6905. ],
  6906. "time": "2024-02-20T16:11:17+00:00"
  6907. },
  6908. {
  6909. "name": "symfony/validator",
  6910. "version": "v7.0.5",
  6911. "source": {
  6912. "type": "git",
  6913. "url": "https://github.com/symfony/validator.git",
  6914. "reference": "6a73d479191a0bbbd9ffa3886af6e6ff6e79fb86"
  6915. },
  6916. "dist": {
  6917. "type": "zip",
  6918. "url": "https://api.github.com/repos/symfony/validator/zipball/6a73d479191a0bbbd9ffa3886af6e6ff6e79fb86",
  6919. "reference": "6a73d479191a0bbbd9ffa3886af6e6ff6e79fb86",
  6920. "shasum": ""
  6921. },
  6922. "require": {
  6923. "php": ">=8.2",
  6924. "symfony/polyfill-ctype": "~1.8",
  6925. "symfony/polyfill-mbstring": "~1.0",
  6926. "symfony/polyfill-php83": "^1.27",
  6927. "symfony/translation-contracts": "^2.5|^3"
  6928. },
  6929. "conflict": {
  6930. "doctrine/lexer": "<1.1",
  6931. "symfony/dependency-injection": "<6.4",
  6932. "symfony/doctrine-bridge": "<7.0",
  6933. "symfony/expression-language": "<6.4",
  6934. "symfony/http-kernel": "<6.4",
  6935. "symfony/intl": "<6.4",
  6936. "symfony/property-info": "<6.4",
  6937. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6938. "symfony/yaml": "<6.4"
  6939. },
  6940. "require-dev": {
  6941. "egulias/email-validator": "^2.1.10|^3|^4",
  6942. "symfony/cache": "^6.4|^7.0",
  6943. "symfony/config": "^6.4|^7.0",
  6944. "symfony/console": "^6.4|^7.0",
  6945. "symfony/dependency-injection": "^6.4|^7.0",
  6946. "symfony/expression-language": "^6.4|^7.0",
  6947. "symfony/finder": "^6.4|^7.0",
  6948. "symfony/http-client": "^6.4|^7.0",
  6949. "symfony/http-foundation": "^6.4|^7.0",
  6950. "symfony/http-kernel": "^6.4|^7.0",
  6951. "symfony/intl": "^6.4|^7.0",
  6952. "symfony/mime": "^6.4|^7.0",
  6953. "symfony/property-access": "^6.4|^7.0",
  6954. "symfony/property-info": "^6.4|^7.0",
  6955. "symfony/translation": "^6.4.3|^7.0.3",
  6956. "symfony/yaml": "^6.4|^7.0"
  6957. },
  6958. "type": "library",
  6959. "autoload": {
  6960. "psr-4": {
  6961. "Symfony\\Component\\Validator\\": ""
  6962. },
  6963. "exclude-from-classmap": [
  6964. "/Tests/"
  6965. ]
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "Fabien Potencier",
  6974. "email": "fabien@symfony.com"
  6975. },
  6976. {
  6977. "name": "Symfony Community",
  6978. "homepage": "https://symfony.com/contributors"
  6979. }
  6980. ],
  6981. "description": "Provides tools to validate values",
  6982. "homepage": "https://symfony.com",
  6983. "support": {
  6984. "source": "https://github.com/symfony/validator/tree/v7.0.5"
  6985. },
  6986. "funding": [
  6987. {
  6988. "url": "https://symfony.com/sponsor",
  6989. "type": "custom"
  6990. },
  6991. {
  6992. "url": "https://github.com/fabpot",
  6993. "type": "github"
  6994. },
  6995. {
  6996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6997. "type": "tidelift"
  6998. }
  6999. ],
  7000. "time": "2024-02-27T12:53:56+00:00"
  7001. },
  7002. {
  7003. "name": "symfony/var-dumper",
  7004. "version": "v7.0.4",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/symfony/var-dumper.git",
  7008. "reference": "e03ad7c1535e623edbb94c22cc42353e488c6670"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e03ad7c1535e623edbb94c22cc42353e488c6670",
  7013. "reference": "e03ad7c1535e623edbb94c22cc42353e488c6670",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "php": ">=8.2",
  7018. "symfony/polyfill-mbstring": "~1.0"
  7019. },
  7020. "conflict": {
  7021. "symfony/console": "<6.4"
  7022. },
  7023. "require-dev": {
  7024. "ext-iconv": "*",
  7025. "symfony/console": "^6.4|^7.0",
  7026. "symfony/http-kernel": "^6.4|^7.0",
  7027. "symfony/process": "^6.4|^7.0",
  7028. "symfony/uid": "^6.4|^7.0",
  7029. "twig/twig": "^3.0.4"
  7030. },
  7031. "bin": [
  7032. "Resources/bin/var-dump-server"
  7033. ],
  7034. "type": "library",
  7035. "autoload": {
  7036. "files": [
  7037. "Resources/functions/dump.php"
  7038. ],
  7039. "psr-4": {
  7040. "Symfony\\Component\\VarDumper\\": ""
  7041. },
  7042. "exclude-from-classmap": [
  7043. "/Tests/"
  7044. ]
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Nicolas Grekas",
  7053. "email": "p@tchwork.com"
  7054. },
  7055. {
  7056. "name": "Symfony Community",
  7057. "homepage": "https://symfony.com/contributors"
  7058. }
  7059. ],
  7060. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7061. "homepage": "https://symfony.com",
  7062. "keywords": [
  7063. "debug",
  7064. "dump"
  7065. ],
  7066. "support": {
  7067. "source": "https://github.com/symfony/var-dumper/tree/v7.0.4"
  7068. },
  7069. "funding": [
  7070. {
  7071. "url": "https://symfony.com/sponsor",
  7072. "type": "custom"
  7073. },
  7074. {
  7075. "url": "https://github.com/fabpot",
  7076. "type": "github"
  7077. },
  7078. {
  7079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7080. "type": "tidelift"
  7081. }
  7082. ],
  7083. "time": "2024-02-15T11:33:06+00:00"
  7084. },
  7085. {
  7086. "name": "symfony/var-exporter",
  7087. "version": "v7.0.4",
  7088. "source": {
  7089. "type": "git",
  7090. "url": "https://github.com/symfony/var-exporter.git",
  7091. "reference": "dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41"
  7092. },
  7093. "dist": {
  7094. "type": "zip",
  7095. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41",
  7096. "reference": "dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41",
  7097. "shasum": ""
  7098. },
  7099. "require": {
  7100. "php": ">=8.2"
  7101. },
  7102. "require-dev": {
  7103. "symfony/var-dumper": "^6.4|^7.0"
  7104. },
  7105. "type": "library",
  7106. "autoload": {
  7107. "psr-4": {
  7108. "Symfony\\Component\\VarExporter\\": ""
  7109. },
  7110. "exclude-from-classmap": [
  7111. "/Tests/"
  7112. ]
  7113. },
  7114. "notification-url": "https://packagist.org/downloads/",
  7115. "license": [
  7116. "MIT"
  7117. ],
  7118. "authors": [
  7119. {
  7120. "name": "Nicolas Grekas",
  7121. "email": "p@tchwork.com"
  7122. },
  7123. {
  7124. "name": "Symfony Community",
  7125. "homepage": "https://symfony.com/contributors"
  7126. }
  7127. ],
  7128. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7129. "homepage": "https://symfony.com",
  7130. "keywords": [
  7131. "clone",
  7132. "construct",
  7133. "export",
  7134. "hydrate",
  7135. "instantiate",
  7136. "lazy-loading",
  7137. "proxy",
  7138. "serialize"
  7139. ],
  7140. "support": {
  7141. "source": "https://github.com/symfony/var-exporter/tree/v7.0.4"
  7142. },
  7143. "funding": [
  7144. {
  7145. "url": "https://symfony.com/sponsor",
  7146. "type": "custom"
  7147. },
  7148. {
  7149. "url": "https://github.com/fabpot",
  7150. "type": "github"
  7151. },
  7152. {
  7153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7154. "type": "tidelift"
  7155. }
  7156. ],
  7157. "time": "2024-02-26T10:35:24+00:00"
  7158. },
  7159. {
  7160. "name": "symfony/web-link",
  7161. "version": "v7.0.3",
  7162. "source": {
  7163. "type": "git",
  7164. "url": "https://github.com/symfony/web-link.git",
  7165. "reference": "855a347feb2ecfc1d1a379c739aff956d4cbec00"
  7166. },
  7167. "dist": {
  7168. "type": "zip",
  7169. "url": "https://api.github.com/repos/symfony/web-link/zipball/855a347feb2ecfc1d1a379c739aff956d4cbec00",
  7170. "reference": "855a347feb2ecfc1d1a379c739aff956d4cbec00",
  7171. "shasum": ""
  7172. },
  7173. "require": {
  7174. "php": ">=8.2",
  7175. "psr/link": "^1.1|^2.0"
  7176. },
  7177. "conflict": {
  7178. "symfony/http-kernel": "<6.4"
  7179. },
  7180. "provide": {
  7181. "psr/link-implementation": "1.0|2.0"
  7182. },
  7183. "require-dev": {
  7184. "symfony/http-kernel": "^6.4|^7.0"
  7185. },
  7186. "type": "library",
  7187. "autoload": {
  7188. "psr-4": {
  7189. "Symfony\\Component\\WebLink\\": ""
  7190. },
  7191. "exclude-from-classmap": [
  7192. "/Tests/"
  7193. ]
  7194. },
  7195. "notification-url": "https://packagist.org/downloads/",
  7196. "license": [
  7197. "MIT"
  7198. ],
  7199. "authors": [
  7200. {
  7201. "name": "Kévin Dunglas",
  7202. "email": "dunglas@gmail.com"
  7203. },
  7204. {
  7205. "name": "Symfony Community",
  7206. "homepage": "https://symfony.com/contributors"
  7207. }
  7208. ],
  7209. "description": "Manages links between resources",
  7210. "homepage": "https://symfony.com",
  7211. "keywords": [
  7212. "dns-prefetch",
  7213. "http",
  7214. "http2",
  7215. "link",
  7216. "performance",
  7217. "prefetch",
  7218. "preload",
  7219. "prerender",
  7220. "psr13",
  7221. "push"
  7222. ],
  7223. "support": {
  7224. "source": "https://github.com/symfony/web-link/tree/v7.0.3"
  7225. },
  7226. "funding": [
  7227. {
  7228. "url": "https://symfony.com/sponsor",
  7229. "type": "custom"
  7230. },
  7231. {
  7232. "url": "https://github.com/fabpot",
  7233. "type": "github"
  7234. },
  7235. {
  7236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7237. "type": "tidelift"
  7238. }
  7239. ],
  7240. "time": "2024-01-23T15:02:46+00:00"
  7241. },
  7242. {
  7243. "name": "symfony/workflow",
  7244. "version": "v7.0.3",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/symfony/workflow.git",
  7248. "reference": "e62e4241f93aa34f2da4497817f71c7c0d6c64b9"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/symfony/workflow/zipball/e62e4241f93aa34f2da4497817f71c7c0d6c64b9",
  7253. "reference": "e62e4241f93aa34f2da4497817f71c7c0d6c64b9",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "php": ">=8.2"
  7258. },
  7259. "conflict": {
  7260. "symfony/event-dispatcher": "<6.4"
  7261. },
  7262. "require-dev": {
  7263. "psr/log": "^1|^2|^3",
  7264. "symfony/dependency-injection": "^6.4|^7.0",
  7265. "symfony/error-handler": "^6.4|^7.0",
  7266. "symfony/event-dispatcher": "^6.4|^7.0",
  7267. "symfony/expression-language": "^6.4|^7.0",
  7268. "symfony/http-kernel": "^6.4|^7.0",
  7269. "symfony/security-core": "^6.4|^7.0",
  7270. "symfony/stopwatch": "^6.4|^7.0",
  7271. "symfony/validator": "^6.4|^7.0"
  7272. },
  7273. "type": "library",
  7274. "autoload": {
  7275. "psr-4": {
  7276. "Symfony\\Component\\Workflow\\": ""
  7277. },
  7278. "exclude-from-classmap": [
  7279. "/Tests/"
  7280. ]
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "MIT"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Fabien Potencier",
  7289. "email": "fabien@symfony.com"
  7290. },
  7291. {
  7292. "name": "Grégoire Pineau",
  7293. "email": "lyrixx@lyrixx.info"
  7294. },
  7295. {
  7296. "name": "Symfony Community",
  7297. "homepage": "https://symfony.com/contributors"
  7298. }
  7299. ],
  7300. "description": "Provides tools for managing a workflow or finite state machine",
  7301. "homepage": "https://symfony.com",
  7302. "keywords": [
  7303. "petrinet",
  7304. "place",
  7305. "state",
  7306. "statemachine",
  7307. "transition",
  7308. "workflow"
  7309. ],
  7310. "support": {
  7311. "source": "https://github.com/symfony/workflow/tree/v7.0.3"
  7312. },
  7313. "funding": [
  7314. {
  7315. "url": "https://symfony.com/sponsor",
  7316. "type": "custom"
  7317. },
  7318. {
  7319. "url": "https://github.com/fabpot",
  7320. "type": "github"
  7321. },
  7322. {
  7323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7324. "type": "tidelift"
  7325. }
  7326. ],
  7327. "time": "2024-01-23T15:02:46+00:00"
  7328. },
  7329. {
  7330. "name": "symfony/yaml",
  7331. "version": "v7.0.3",
  7332. "source": {
  7333. "type": "git",
  7334. "url": "https://github.com/symfony/yaml.git",
  7335. "reference": "2d4fca631c00700597e9442a0b2451ce234513d3"
  7336. },
  7337. "dist": {
  7338. "type": "zip",
  7339. "url": "https://api.github.com/repos/symfony/yaml/zipball/2d4fca631c00700597e9442a0b2451ce234513d3",
  7340. "reference": "2d4fca631c00700597e9442a0b2451ce234513d3",
  7341. "shasum": ""
  7342. },
  7343. "require": {
  7344. "php": ">=8.2",
  7345. "symfony/polyfill-ctype": "^1.8"
  7346. },
  7347. "conflict": {
  7348. "symfony/console": "<6.4"
  7349. },
  7350. "require-dev": {
  7351. "symfony/console": "^6.4|^7.0"
  7352. },
  7353. "bin": [
  7354. "Resources/bin/yaml-lint"
  7355. ],
  7356. "type": "library",
  7357. "autoload": {
  7358. "psr-4": {
  7359. "Symfony\\Component\\Yaml\\": ""
  7360. },
  7361. "exclude-from-classmap": [
  7362. "/Tests/"
  7363. ]
  7364. },
  7365. "notification-url": "https://packagist.org/downloads/",
  7366. "license": [
  7367. "MIT"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "Fabien Potencier",
  7372. "email": "fabien@symfony.com"
  7373. },
  7374. {
  7375. "name": "Symfony Community",
  7376. "homepage": "https://symfony.com/contributors"
  7377. }
  7378. ],
  7379. "description": "Loads and dumps YAML files",
  7380. "homepage": "https://symfony.com",
  7381. "support": {
  7382. "source": "https://github.com/symfony/yaml/tree/v7.0.3"
  7383. },
  7384. "funding": [
  7385. {
  7386. "url": "https://symfony.com/sponsor",
  7387. "type": "custom"
  7388. },
  7389. {
  7390. "url": "https://github.com/fabpot",
  7391. "type": "github"
  7392. },
  7393. {
  7394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7395. "type": "tidelift"
  7396. }
  7397. ],
  7398. "time": "2024-01-23T15:02:46+00:00"
  7399. },
  7400. {
  7401. "name": "twig/extra-bundle",
  7402. "version": "v3.8.0",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7406. "reference": "32807183753de0388c8e59f7ac2d13bb47311140"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/32807183753de0388c8e59f7ac2d13bb47311140",
  7411. "reference": "32807183753de0388c8e59f7ac2d13bb47311140",
  7412. "shasum": ""
  7413. },
  7414. "require": {
  7415. "php": ">=7.2.5",
  7416. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7417. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7418. "twig/twig": "^3.0"
  7419. },
  7420. "require-dev": {
  7421. "league/commonmark": "^1.0|^2.0",
  7422. "symfony/phpunit-bridge": "^6.4|^7.0",
  7423. "twig/cache-extra": "^3.0",
  7424. "twig/cssinliner-extra": "^2.12|^3.0",
  7425. "twig/html-extra": "^2.12|^3.0",
  7426. "twig/inky-extra": "^2.12|^3.0",
  7427. "twig/intl-extra": "^2.12|^3.0",
  7428. "twig/markdown-extra": "^2.12|^3.0",
  7429. "twig/string-extra": "^2.12|^3.0"
  7430. },
  7431. "type": "symfony-bundle",
  7432. "autoload": {
  7433. "psr-4": {
  7434. "Twig\\Extra\\TwigExtraBundle\\": ""
  7435. },
  7436. "exclude-from-classmap": [
  7437. "/Tests/"
  7438. ]
  7439. },
  7440. "notification-url": "https://packagist.org/downloads/",
  7441. "license": [
  7442. "MIT"
  7443. ],
  7444. "authors": [
  7445. {
  7446. "name": "Fabien Potencier",
  7447. "email": "fabien@symfony.com",
  7448. "homepage": "http://fabien.potencier.org",
  7449. "role": "Lead Developer"
  7450. }
  7451. ],
  7452. "description": "A Symfony bundle for extra Twig extensions",
  7453. "homepage": "https://twig.symfony.com",
  7454. "keywords": [
  7455. "bundle",
  7456. "extra",
  7457. "twig"
  7458. ],
  7459. "support": {
  7460. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.8.0"
  7461. },
  7462. "funding": [
  7463. {
  7464. "url": "https://github.com/fabpot",
  7465. "type": "github"
  7466. },
  7467. {
  7468. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7469. "type": "tidelift"
  7470. }
  7471. ],
  7472. "time": "2023-11-21T14:02:01+00:00"
  7473. },
  7474. {
  7475. "name": "twig/twig",
  7476. "version": "v3.8.0",
  7477. "source": {
  7478. "type": "git",
  7479. "url": "https://github.com/twigphp/Twig.git",
  7480. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  7481. },
  7482. "dist": {
  7483. "type": "zip",
  7484. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  7485. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  7486. "shasum": ""
  7487. },
  7488. "require": {
  7489. "php": ">=7.2.5",
  7490. "symfony/polyfill-ctype": "^1.8",
  7491. "symfony/polyfill-mbstring": "^1.3",
  7492. "symfony/polyfill-php80": "^1.22"
  7493. },
  7494. "require-dev": {
  7495. "psr/container": "^1.0|^2.0",
  7496. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  7497. },
  7498. "type": "library",
  7499. "autoload": {
  7500. "psr-4": {
  7501. "Twig\\": "src/"
  7502. }
  7503. },
  7504. "notification-url": "https://packagist.org/downloads/",
  7505. "license": [
  7506. "BSD-3-Clause"
  7507. ],
  7508. "authors": [
  7509. {
  7510. "name": "Fabien Potencier",
  7511. "email": "fabien@symfony.com",
  7512. "homepage": "http://fabien.potencier.org",
  7513. "role": "Lead Developer"
  7514. },
  7515. {
  7516. "name": "Twig Team",
  7517. "role": "Contributors"
  7518. },
  7519. {
  7520. "name": "Armin Ronacher",
  7521. "email": "armin.ronacher@active-4.com",
  7522. "role": "Project Founder"
  7523. }
  7524. ],
  7525. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7526. "homepage": "https://twig.symfony.com",
  7527. "keywords": [
  7528. "templating"
  7529. ],
  7530. "support": {
  7531. "issues": "https://github.com/twigphp/Twig/issues",
  7532. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  7533. },
  7534. "funding": [
  7535. {
  7536. "url": "https://github.com/fabpot",
  7537. "type": "github"
  7538. },
  7539. {
  7540. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7541. "type": "tidelift"
  7542. }
  7543. ],
  7544. "time": "2023-11-21T18:54:41+00:00"
  7545. },
  7546. {
  7547. "name": "webmozart/assert",
  7548. "version": "1.11.0",
  7549. "source": {
  7550. "type": "git",
  7551. "url": "https://github.com/webmozarts/assert.git",
  7552. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7553. },
  7554. "dist": {
  7555. "type": "zip",
  7556. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7557. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7558. "shasum": ""
  7559. },
  7560. "require": {
  7561. "ext-ctype": "*",
  7562. "php": "^7.2 || ^8.0"
  7563. },
  7564. "conflict": {
  7565. "phpstan/phpstan": "<0.12.20",
  7566. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7567. },
  7568. "require-dev": {
  7569. "phpunit/phpunit": "^8.5.13"
  7570. },
  7571. "type": "library",
  7572. "extra": {
  7573. "branch-alias": {
  7574. "dev-master": "1.10-dev"
  7575. }
  7576. },
  7577. "autoload": {
  7578. "psr-4": {
  7579. "Webmozart\\Assert\\": "src/"
  7580. }
  7581. },
  7582. "notification-url": "https://packagist.org/downloads/",
  7583. "license": [
  7584. "MIT"
  7585. ],
  7586. "authors": [
  7587. {
  7588. "name": "Bernhard Schussek",
  7589. "email": "bschussek@gmail.com"
  7590. }
  7591. ],
  7592. "description": "Assertions to validate method input/output with nice error messages.",
  7593. "keywords": [
  7594. "assert",
  7595. "check",
  7596. "validate"
  7597. ],
  7598. "support": {
  7599. "issues": "https://github.com/webmozarts/assert/issues",
  7600. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7601. },
  7602. "time": "2022-06-03T18:03:27+00:00"
  7603. }
  7604. ],
  7605. "packages-dev": [
  7606. {
  7607. "name": "masterminds/html5",
  7608. "version": "2.8.1",
  7609. "source": {
  7610. "type": "git",
  7611. "url": "https://github.com/Masterminds/html5-php.git",
  7612. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  7613. },
  7614. "dist": {
  7615. "type": "zip",
  7616. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7617. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7618. "shasum": ""
  7619. },
  7620. "require": {
  7621. "ext-dom": "*",
  7622. "php": ">=5.3.0"
  7623. },
  7624. "require-dev": {
  7625. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  7626. },
  7627. "type": "library",
  7628. "extra": {
  7629. "branch-alias": {
  7630. "dev-master": "2.7-dev"
  7631. }
  7632. },
  7633. "autoload": {
  7634. "psr-4": {
  7635. "Masterminds\\": "src"
  7636. }
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Matt Butcher",
  7645. "email": "technosophos@gmail.com"
  7646. },
  7647. {
  7648. "name": "Matt Farina",
  7649. "email": "matt@mattfarina.com"
  7650. },
  7651. {
  7652. "name": "Asmir Mustafic",
  7653. "email": "goetas@gmail.com"
  7654. }
  7655. ],
  7656. "description": "An HTML5 parser and serializer.",
  7657. "homepage": "http://masterminds.github.io/html5-php",
  7658. "keywords": [
  7659. "HTML5",
  7660. "dom",
  7661. "html",
  7662. "parser",
  7663. "querypath",
  7664. "serializer",
  7665. "xml"
  7666. ],
  7667. "support": {
  7668. "issues": "https://github.com/Masterminds/html5-php/issues",
  7669. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  7670. },
  7671. "time": "2023-05-10T11:58:31+00:00"
  7672. },
  7673. {
  7674. "name": "myclabs/deep-copy",
  7675. "version": "1.11.1",
  7676. "source": {
  7677. "type": "git",
  7678. "url": "https://github.com/myclabs/DeepCopy.git",
  7679. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7680. },
  7681. "dist": {
  7682. "type": "zip",
  7683. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7684. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7685. "shasum": ""
  7686. },
  7687. "require": {
  7688. "php": "^7.1 || ^8.0"
  7689. },
  7690. "conflict": {
  7691. "doctrine/collections": "<1.6.8",
  7692. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7693. },
  7694. "require-dev": {
  7695. "doctrine/collections": "^1.6.8",
  7696. "doctrine/common": "^2.13.3 || ^3.2.2",
  7697. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7698. },
  7699. "type": "library",
  7700. "autoload": {
  7701. "files": [
  7702. "src/DeepCopy/deep_copy.php"
  7703. ],
  7704. "psr-4": {
  7705. "DeepCopy\\": "src/DeepCopy/"
  7706. }
  7707. },
  7708. "notification-url": "https://packagist.org/downloads/",
  7709. "license": [
  7710. "MIT"
  7711. ],
  7712. "description": "Create deep copies (clones) of your objects",
  7713. "keywords": [
  7714. "clone",
  7715. "copy",
  7716. "duplicate",
  7717. "object",
  7718. "object graph"
  7719. ],
  7720. "support": {
  7721. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7722. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7723. },
  7724. "funding": [
  7725. {
  7726. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7727. "type": "tidelift"
  7728. }
  7729. ],
  7730. "time": "2023-03-08T13:26:56+00:00"
  7731. },
  7732. {
  7733. "name": "nikic/php-parser",
  7734. "version": "v5.0.2",
  7735. "source": {
  7736. "type": "git",
  7737. "url": "https://github.com/nikic/PHP-Parser.git",
  7738. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  7739. },
  7740. "dist": {
  7741. "type": "zip",
  7742. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7743. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7744. "shasum": ""
  7745. },
  7746. "require": {
  7747. "ext-ctype": "*",
  7748. "ext-json": "*",
  7749. "ext-tokenizer": "*",
  7750. "php": ">=7.4"
  7751. },
  7752. "require-dev": {
  7753. "ircmaxell/php-yacc": "^0.0.7",
  7754. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7755. },
  7756. "bin": [
  7757. "bin/php-parse"
  7758. ],
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-master": "5.0-dev"
  7763. }
  7764. },
  7765. "autoload": {
  7766. "psr-4": {
  7767. "PhpParser\\": "lib/PhpParser"
  7768. }
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "BSD-3-Clause"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "Nikita Popov"
  7777. }
  7778. ],
  7779. "description": "A PHP parser written in PHP",
  7780. "keywords": [
  7781. "parser",
  7782. "php"
  7783. ],
  7784. "support": {
  7785. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7786. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  7787. },
  7788. "time": "2024-03-05T20:51:40+00:00"
  7789. },
  7790. {
  7791. "name": "phar-io/manifest",
  7792. "version": "2.0.4",
  7793. "source": {
  7794. "type": "git",
  7795. "url": "https://github.com/phar-io/manifest.git",
  7796. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7797. },
  7798. "dist": {
  7799. "type": "zip",
  7800. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7801. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7802. "shasum": ""
  7803. },
  7804. "require": {
  7805. "ext-dom": "*",
  7806. "ext-libxml": "*",
  7807. "ext-phar": "*",
  7808. "ext-xmlwriter": "*",
  7809. "phar-io/version": "^3.0.1",
  7810. "php": "^7.2 || ^8.0"
  7811. },
  7812. "type": "library",
  7813. "extra": {
  7814. "branch-alias": {
  7815. "dev-master": "2.0.x-dev"
  7816. }
  7817. },
  7818. "autoload": {
  7819. "classmap": [
  7820. "src/"
  7821. ]
  7822. },
  7823. "notification-url": "https://packagist.org/downloads/",
  7824. "license": [
  7825. "BSD-3-Clause"
  7826. ],
  7827. "authors": [
  7828. {
  7829. "name": "Arne Blankerts",
  7830. "email": "arne@blankerts.de",
  7831. "role": "Developer"
  7832. },
  7833. {
  7834. "name": "Sebastian Heuer",
  7835. "email": "sebastian@phpeople.de",
  7836. "role": "Developer"
  7837. },
  7838. {
  7839. "name": "Sebastian Bergmann",
  7840. "email": "sebastian@phpunit.de",
  7841. "role": "Developer"
  7842. }
  7843. ],
  7844. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7845. "support": {
  7846. "issues": "https://github.com/phar-io/manifest/issues",
  7847. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7848. },
  7849. "funding": [
  7850. {
  7851. "url": "https://github.com/theseer",
  7852. "type": "github"
  7853. }
  7854. ],
  7855. "time": "2024-03-03T12:33:53+00:00"
  7856. },
  7857. {
  7858. "name": "phar-io/version",
  7859. "version": "3.2.1",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/phar-io/version.git",
  7863. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7868. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7869. "shasum": ""
  7870. },
  7871. "require": {
  7872. "php": "^7.2 || ^8.0"
  7873. },
  7874. "type": "library",
  7875. "autoload": {
  7876. "classmap": [
  7877. "src/"
  7878. ]
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "BSD-3-Clause"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Arne Blankerts",
  7887. "email": "arne@blankerts.de",
  7888. "role": "Developer"
  7889. },
  7890. {
  7891. "name": "Sebastian Heuer",
  7892. "email": "sebastian@phpeople.de",
  7893. "role": "Developer"
  7894. },
  7895. {
  7896. "name": "Sebastian Bergmann",
  7897. "email": "sebastian@phpunit.de",
  7898. "role": "Developer"
  7899. }
  7900. ],
  7901. "description": "Library for handling version information and constraints",
  7902. "support": {
  7903. "issues": "https://github.com/phar-io/version/issues",
  7904. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7905. },
  7906. "time": "2022-02-21T01:04:05+00:00"
  7907. },
  7908. {
  7909. "name": "phpunit/php-code-coverage",
  7910. "version": "9.2.31",
  7911. "source": {
  7912. "type": "git",
  7913. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7914. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  7915. },
  7916. "dist": {
  7917. "type": "zip",
  7918. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  7919. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  7920. "shasum": ""
  7921. },
  7922. "require": {
  7923. "ext-dom": "*",
  7924. "ext-libxml": "*",
  7925. "ext-xmlwriter": "*",
  7926. "nikic/php-parser": "^4.18 || ^5.0",
  7927. "php": ">=7.3",
  7928. "phpunit/php-file-iterator": "^3.0.3",
  7929. "phpunit/php-text-template": "^2.0.2",
  7930. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7931. "sebastian/complexity": "^2.0",
  7932. "sebastian/environment": "^5.1.2",
  7933. "sebastian/lines-of-code": "^1.0.3",
  7934. "sebastian/version": "^3.0.1",
  7935. "theseer/tokenizer": "^1.2.0"
  7936. },
  7937. "require-dev": {
  7938. "phpunit/phpunit": "^9.3"
  7939. },
  7940. "suggest": {
  7941. "ext-pcov": "PHP extension that provides line coverage",
  7942. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7943. },
  7944. "type": "library",
  7945. "extra": {
  7946. "branch-alias": {
  7947. "dev-master": "9.2-dev"
  7948. }
  7949. },
  7950. "autoload": {
  7951. "classmap": [
  7952. "src/"
  7953. ]
  7954. },
  7955. "notification-url": "https://packagist.org/downloads/",
  7956. "license": [
  7957. "BSD-3-Clause"
  7958. ],
  7959. "authors": [
  7960. {
  7961. "name": "Sebastian Bergmann",
  7962. "email": "sebastian@phpunit.de",
  7963. "role": "lead"
  7964. }
  7965. ],
  7966. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7967. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7968. "keywords": [
  7969. "coverage",
  7970. "testing",
  7971. "xunit"
  7972. ],
  7973. "support": {
  7974. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7975. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7976. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  7977. },
  7978. "funding": [
  7979. {
  7980. "url": "https://github.com/sebastianbergmann",
  7981. "type": "github"
  7982. }
  7983. ],
  7984. "time": "2024-03-02T06:37:42+00:00"
  7985. },
  7986. {
  7987. "name": "phpunit/php-file-iterator",
  7988. "version": "3.0.6",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7992. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7997. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7998. "shasum": ""
  7999. },
  8000. "require": {
  8001. "php": ">=7.3"
  8002. },
  8003. "require-dev": {
  8004. "phpunit/phpunit": "^9.3"
  8005. },
  8006. "type": "library",
  8007. "extra": {
  8008. "branch-alias": {
  8009. "dev-master": "3.0-dev"
  8010. }
  8011. },
  8012. "autoload": {
  8013. "classmap": [
  8014. "src/"
  8015. ]
  8016. },
  8017. "notification-url": "https://packagist.org/downloads/",
  8018. "license": [
  8019. "BSD-3-Clause"
  8020. ],
  8021. "authors": [
  8022. {
  8023. "name": "Sebastian Bergmann",
  8024. "email": "sebastian@phpunit.de",
  8025. "role": "lead"
  8026. }
  8027. ],
  8028. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8029. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8030. "keywords": [
  8031. "filesystem",
  8032. "iterator"
  8033. ],
  8034. "support": {
  8035. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8036. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8037. },
  8038. "funding": [
  8039. {
  8040. "url": "https://github.com/sebastianbergmann",
  8041. "type": "github"
  8042. }
  8043. ],
  8044. "time": "2021-12-02T12:48:52+00:00"
  8045. },
  8046. {
  8047. "name": "phpunit/php-invoker",
  8048. "version": "3.1.1",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8052. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8057. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "php": ">=7.3"
  8062. },
  8063. "require-dev": {
  8064. "ext-pcntl": "*",
  8065. "phpunit/phpunit": "^9.3"
  8066. },
  8067. "suggest": {
  8068. "ext-pcntl": "*"
  8069. },
  8070. "type": "library",
  8071. "extra": {
  8072. "branch-alias": {
  8073. "dev-master": "3.1-dev"
  8074. }
  8075. },
  8076. "autoload": {
  8077. "classmap": [
  8078. "src/"
  8079. ]
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "BSD-3-Clause"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Sebastian Bergmann",
  8088. "email": "sebastian@phpunit.de",
  8089. "role": "lead"
  8090. }
  8091. ],
  8092. "description": "Invoke callables with a timeout",
  8093. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8094. "keywords": [
  8095. "process"
  8096. ],
  8097. "support": {
  8098. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8099. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8100. },
  8101. "funding": [
  8102. {
  8103. "url": "https://github.com/sebastianbergmann",
  8104. "type": "github"
  8105. }
  8106. ],
  8107. "time": "2020-09-28T05:58:55+00:00"
  8108. },
  8109. {
  8110. "name": "phpunit/php-text-template",
  8111. "version": "2.0.4",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8115. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8120. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8121. "shasum": ""
  8122. },
  8123. "require": {
  8124. "php": ">=7.3"
  8125. },
  8126. "require-dev": {
  8127. "phpunit/phpunit": "^9.3"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-master": "2.0-dev"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "classmap": [
  8137. "src/"
  8138. ]
  8139. },
  8140. "notification-url": "https://packagist.org/downloads/",
  8141. "license": [
  8142. "BSD-3-Clause"
  8143. ],
  8144. "authors": [
  8145. {
  8146. "name": "Sebastian Bergmann",
  8147. "email": "sebastian@phpunit.de",
  8148. "role": "lead"
  8149. }
  8150. ],
  8151. "description": "Simple template engine.",
  8152. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8153. "keywords": [
  8154. "template"
  8155. ],
  8156. "support": {
  8157. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8158. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8159. },
  8160. "funding": [
  8161. {
  8162. "url": "https://github.com/sebastianbergmann",
  8163. "type": "github"
  8164. }
  8165. ],
  8166. "time": "2020-10-26T05:33:50+00:00"
  8167. },
  8168. {
  8169. "name": "phpunit/php-timer",
  8170. "version": "5.0.3",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8174. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8179. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "php": ">=7.3"
  8184. },
  8185. "require-dev": {
  8186. "phpunit/phpunit": "^9.3"
  8187. },
  8188. "type": "library",
  8189. "extra": {
  8190. "branch-alias": {
  8191. "dev-master": "5.0-dev"
  8192. }
  8193. },
  8194. "autoload": {
  8195. "classmap": [
  8196. "src/"
  8197. ]
  8198. },
  8199. "notification-url": "https://packagist.org/downloads/",
  8200. "license": [
  8201. "BSD-3-Clause"
  8202. ],
  8203. "authors": [
  8204. {
  8205. "name": "Sebastian Bergmann",
  8206. "email": "sebastian@phpunit.de",
  8207. "role": "lead"
  8208. }
  8209. ],
  8210. "description": "Utility class for timing",
  8211. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8212. "keywords": [
  8213. "timer"
  8214. ],
  8215. "support": {
  8216. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8217. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8218. },
  8219. "funding": [
  8220. {
  8221. "url": "https://github.com/sebastianbergmann",
  8222. "type": "github"
  8223. }
  8224. ],
  8225. "time": "2020-10-26T13:16:10+00:00"
  8226. },
  8227. {
  8228. "name": "phpunit/phpunit",
  8229. "version": "9.6.18",
  8230. "source": {
  8231. "type": "git",
  8232. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8233. "reference": "32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04"
  8234. },
  8235. "dist": {
  8236. "type": "zip",
  8237. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04",
  8238. "reference": "32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04",
  8239. "shasum": ""
  8240. },
  8241. "require": {
  8242. "doctrine/instantiator": "^1.3.1 || ^2",
  8243. "ext-dom": "*",
  8244. "ext-json": "*",
  8245. "ext-libxml": "*",
  8246. "ext-mbstring": "*",
  8247. "ext-xml": "*",
  8248. "ext-xmlwriter": "*",
  8249. "myclabs/deep-copy": "^1.10.1",
  8250. "phar-io/manifest": "^2.0.3",
  8251. "phar-io/version": "^3.0.2",
  8252. "php": ">=7.3",
  8253. "phpunit/php-code-coverage": "^9.2.28",
  8254. "phpunit/php-file-iterator": "^3.0.5",
  8255. "phpunit/php-invoker": "^3.1.1",
  8256. "phpunit/php-text-template": "^2.0.3",
  8257. "phpunit/php-timer": "^5.0.2",
  8258. "sebastian/cli-parser": "^1.0.1",
  8259. "sebastian/code-unit": "^1.0.6",
  8260. "sebastian/comparator": "^4.0.8",
  8261. "sebastian/diff": "^4.0.3",
  8262. "sebastian/environment": "^5.1.3",
  8263. "sebastian/exporter": "^4.0.5",
  8264. "sebastian/global-state": "^5.0.1",
  8265. "sebastian/object-enumerator": "^4.0.3",
  8266. "sebastian/resource-operations": "^3.0.3",
  8267. "sebastian/type": "^3.2",
  8268. "sebastian/version": "^3.0.2"
  8269. },
  8270. "suggest": {
  8271. "ext-soap": "To be able to generate mocks based on WSDL files",
  8272. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8273. },
  8274. "bin": [
  8275. "phpunit"
  8276. ],
  8277. "type": "library",
  8278. "extra": {
  8279. "branch-alias": {
  8280. "dev-master": "9.6-dev"
  8281. }
  8282. },
  8283. "autoload": {
  8284. "files": [
  8285. "src/Framework/Assert/Functions.php"
  8286. ],
  8287. "classmap": [
  8288. "src/"
  8289. ]
  8290. },
  8291. "notification-url": "https://packagist.org/downloads/",
  8292. "license": [
  8293. "BSD-3-Clause"
  8294. ],
  8295. "authors": [
  8296. {
  8297. "name": "Sebastian Bergmann",
  8298. "email": "sebastian@phpunit.de",
  8299. "role": "lead"
  8300. }
  8301. ],
  8302. "description": "The PHP Unit Testing framework.",
  8303. "homepage": "https://phpunit.de/",
  8304. "keywords": [
  8305. "phpunit",
  8306. "testing",
  8307. "xunit"
  8308. ],
  8309. "support": {
  8310. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8311. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8312. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.18"
  8313. },
  8314. "funding": [
  8315. {
  8316. "url": "https://phpunit.de/sponsors.html",
  8317. "type": "custom"
  8318. },
  8319. {
  8320. "url": "https://github.com/sebastianbergmann",
  8321. "type": "github"
  8322. },
  8323. {
  8324. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8325. "type": "tidelift"
  8326. }
  8327. ],
  8328. "time": "2024-03-21T12:07:32+00:00"
  8329. },
  8330. {
  8331. "name": "sebastian/cli-parser",
  8332. "version": "1.0.2",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8336. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8341. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8342. "shasum": ""
  8343. },
  8344. "require": {
  8345. "php": ">=7.3"
  8346. },
  8347. "require-dev": {
  8348. "phpunit/phpunit": "^9.3"
  8349. },
  8350. "type": "library",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-master": "1.0-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "classmap": [
  8358. "src/"
  8359. ]
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "BSD-3-Clause"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Sebastian Bergmann",
  8368. "email": "sebastian@phpunit.de",
  8369. "role": "lead"
  8370. }
  8371. ],
  8372. "description": "Library for parsing CLI options",
  8373. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8374. "support": {
  8375. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8376. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8377. },
  8378. "funding": [
  8379. {
  8380. "url": "https://github.com/sebastianbergmann",
  8381. "type": "github"
  8382. }
  8383. ],
  8384. "time": "2024-03-02T06:27:43+00:00"
  8385. },
  8386. {
  8387. "name": "sebastian/code-unit",
  8388. "version": "1.0.8",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8392. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8397. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8398. "shasum": ""
  8399. },
  8400. "require": {
  8401. "php": ">=7.3"
  8402. },
  8403. "require-dev": {
  8404. "phpunit/phpunit": "^9.3"
  8405. },
  8406. "type": "library",
  8407. "extra": {
  8408. "branch-alias": {
  8409. "dev-master": "1.0-dev"
  8410. }
  8411. },
  8412. "autoload": {
  8413. "classmap": [
  8414. "src/"
  8415. ]
  8416. },
  8417. "notification-url": "https://packagist.org/downloads/",
  8418. "license": [
  8419. "BSD-3-Clause"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Sebastian Bergmann",
  8424. "email": "sebastian@phpunit.de",
  8425. "role": "lead"
  8426. }
  8427. ],
  8428. "description": "Collection of value objects that represent the PHP code units",
  8429. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8430. "support": {
  8431. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8432. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8433. },
  8434. "funding": [
  8435. {
  8436. "url": "https://github.com/sebastianbergmann",
  8437. "type": "github"
  8438. }
  8439. ],
  8440. "time": "2020-10-26T13:08:54+00:00"
  8441. },
  8442. {
  8443. "name": "sebastian/code-unit-reverse-lookup",
  8444. "version": "2.0.3",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8448. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8453. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8454. "shasum": ""
  8455. },
  8456. "require": {
  8457. "php": ">=7.3"
  8458. },
  8459. "require-dev": {
  8460. "phpunit/phpunit": "^9.3"
  8461. },
  8462. "type": "library",
  8463. "extra": {
  8464. "branch-alias": {
  8465. "dev-master": "2.0-dev"
  8466. }
  8467. },
  8468. "autoload": {
  8469. "classmap": [
  8470. "src/"
  8471. ]
  8472. },
  8473. "notification-url": "https://packagist.org/downloads/",
  8474. "license": [
  8475. "BSD-3-Clause"
  8476. ],
  8477. "authors": [
  8478. {
  8479. "name": "Sebastian Bergmann",
  8480. "email": "sebastian@phpunit.de"
  8481. }
  8482. ],
  8483. "description": "Looks up which function or method a line of code belongs to",
  8484. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8485. "support": {
  8486. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8487. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8488. },
  8489. "funding": [
  8490. {
  8491. "url": "https://github.com/sebastianbergmann",
  8492. "type": "github"
  8493. }
  8494. ],
  8495. "time": "2020-09-28T05:30:19+00:00"
  8496. },
  8497. {
  8498. "name": "sebastian/comparator",
  8499. "version": "4.0.8",
  8500. "source": {
  8501. "type": "git",
  8502. "url": "https://github.com/sebastianbergmann/comparator.git",
  8503. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8504. },
  8505. "dist": {
  8506. "type": "zip",
  8507. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8508. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8509. "shasum": ""
  8510. },
  8511. "require": {
  8512. "php": ">=7.3",
  8513. "sebastian/diff": "^4.0",
  8514. "sebastian/exporter": "^4.0"
  8515. },
  8516. "require-dev": {
  8517. "phpunit/phpunit": "^9.3"
  8518. },
  8519. "type": "library",
  8520. "extra": {
  8521. "branch-alias": {
  8522. "dev-master": "4.0-dev"
  8523. }
  8524. },
  8525. "autoload": {
  8526. "classmap": [
  8527. "src/"
  8528. ]
  8529. },
  8530. "notification-url": "https://packagist.org/downloads/",
  8531. "license": [
  8532. "BSD-3-Clause"
  8533. ],
  8534. "authors": [
  8535. {
  8536. "name": "Sebastian Bergmann",
  8537. "email": "sebastian@phpunit.de"
  8538. },
  8539. {
  8540. "name": "Jeff Welch",
  8541. "email": "whatthejeff@gmail.com"
  8542. },
  8543. {
  8544. "name": "Volker Dusch",
  8545. "email": "github@wallbash.com"
  8546. },
  8547. {
  8548. "name": "Bernhard Schussek",
  8549. "email": "bschussek@2bepublished.at"
  8550. }
  8551. ],
  8552. "description": "Provides the functionality to compare PHP values for equality",
  8553. "homepage": "https://github.com/sebastianbergmann/comparator",
  8554. "keywords": [
  8555. "comparator",
  8556. "compare",
  8557. "equality"
  8558. ],
  8559. "support": {
  8560. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8561. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8562. },
  8563. "funding": [
  8564. {
  8565. "url": "https://github.com/sebastianbergmann",
  8566. "type": "github"
  8567. }
  8568. ],
  8569. "time": "2022-09-14T12:41:17+00:00"
  8570. },
  8571. {
  8572. "name": "sebastian/complexity",
  8573. "version": "2.0.3",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/sebastianbergmann/complexity.git",
  8577. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  8582. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "nikic/php-parser": "^4.18 || ^5.0",
  8587. "php": ">=7.3"
  8588. },
  8589. "require-dev": {
  8590. "phpunit/phpunit": "^9.3"
  8591. },
  8592. "type": "library",
  8593. "extra": {
  8594. "branch-alias": {
  8595. "dev-master": "2.0-dev"
  8596. }
  8597. },
  8598. "autoload": {
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Sebastian Bergmann",
  8610. "email": "sebastian@phpunit.de",
  8611. "role": "lead"
  8612. }
  8613. ],
  8614. "description": "Library for calculating the complexity of PHP code units",
  8615. "homepage": "https://github.com/sebastianbergmann/complexity",
  8616. "support": {
  8617. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8618. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  8619. },
  8620. "funding": [
  8621. {
  8622. "url": "https://github.com/sebastianbergmann",
  8623. "type": "github"
  8624. }
  8625. ],
  8626. "time": "2023-12-22T06:19:30+00:00"
  8627. },
  8628. {
  8629. "name": "sebastian/diff",
  8630. "version": "4.0.6",
  8631. "source": {
  8632. "type": "git",
  8633. "url": "https://github.com/sebastianbergmann/diff.git",
  8634. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  8635. },
  8636. "dist": {
  8637. "type": "zip",
  8638. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8639. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8640. "shasum": ""
  8641. },
  8642. "require": {
  8643. "php": ">=7.3"
  8644. },
  8645. "require-dev": {
  8646. "phpunit/phpunit": "^9.3",
  8647. "symfony/process": "^4.2 || ^5"
  8648. },
  8649. "type": "library",
  8650. "extra": {
  8651. "branch-alias": {
  8652. "dev-master": "4.0-dev"
  8653. }
  8654. },
  8655. "autoload": {
  8656. "classmap": [
  8657. "src/"
  8658. ]
  8659. },
  8660. "notification-url": "https://packagist.org/downloads/",
  8661. "license": [
  8662. "BSD-3-Clause"
  8663. ],
  8664. "authors": [
  8665. {
  8666. "name": "Sebastian Bergmann",
  8667. "email": "sebastian@phpunit.de"
  8668. },
  8669. {
  8670. "name": "Kore Nordmann",
  8671. "email": "mail@kore-nordmann.de"
  8672. }
  8673. ],
  8674. "description": "Diff implementation",
  8675. "homepage": "https://github.com/sebastianbergmann/diff",
  8676. "keywords": [
  8677. "diff",
  8678. "udiff",
  8679. "unidiff",
  8680. "unified diff"
  8681. ],
  8682. "support": {
  8683. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8684. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  8685. },
  8686. "funding": [
  8687. {
  8688. "url": "https://github.com/sebastianbergmann",
  8689. "type": "github"
  8690. }
  8691. ],
  8692. "time": "2024-03-02T06:30:58+00:00"
  8693. },
  8694. {
  8695. "name": "sebastian/environment",
  8696. "version": "5.1.5",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/sebastianbergmann/environment.git",
  8700. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8705. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8706. "shasum": ""
  8707. },
  8708. "require": {
  8709. "php": ">=7.3"
  8710. },
  8711. "require-dev": {
  8712. "phpunit/phpunit": "^9.3"
  8713. },
  8714. "suggest": {
  8715. "ext-posix": "*"
  8716. },
  8717. "type": "library",
  8718. "extra": {
  8719. "branch-alias": {
  8720. "dev-master": "5.1-dev"
  8721. }
  8722. },
  8723. "autoload": {
  8724. "classmap": [
  8725. "src/"
  8726. ]
  8727. },
  8728. "notification-url": "https://packagist.org/downloads/",
  8729. "license": [
  8730. "BSD-3-Clause"
  8731. ],
  8732. "authors": [
  8733. {
  8734. "name": "Sebastian Bergmann",
  8735. "email": "sebastian@phpunit.de"
  8736. }
  8737. ],
  8738. "description": "Provides functionality to handle HHVM/PHP environments",
  8739. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8740. "keywords": [
  8741. "Xdebug",
  8742. "environment",
  8743. "hhvm"
  8744. ],
  8745. "support": {
  8746. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8747. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  8748. },
  8749. "funding": [
  8750. {
  8751. "url": "https://github.com/sebastianbergmann",
  8752. "type": "github"
  8753. }
  8754. ],
  8755. "time": "2023-02-03T06:03:51+00:00"
  8756. },
  8757. {
  8758. "name": "sebastian/exporter",
  8759. "version": "4.0.6",
  8760. "source": {
  8761. "type": "git",
  8762. "url": "https://github.com/sebastianbergmann/exporter.git",
  8763. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  8764. },
  8765. "dist": {
  8766. "type": "zip",
  8767. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  8768. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  8769. "shasum": ""
  8770. },
  8771. "require": {
  8772. "php": ">=7.3",
  8773. "sebastian/recursion-context": "^4.0"
  8774. },
  8775. "require-dev": {
  8776. "ext-mbstring": "*",
  8777. "phpunit/phpunit": "^9.3"
  8778. },
  8779. "type": "library",
  8780. "extra": {
  8781. "branch-alias": {
  8782. "dev-master": "4.0-dev"
  8783. }
  8784. },
  8785. "autoload": {
  8786. "classmap": [
  8787. "src/"
  8788. ]
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "BSD-3-Clause"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Sebastian Bergmann",
  8797. "email": "sebastian@phpunit.de"
  8798. },
  8799. {
  8800. "name": "Jeff Welch",
  8801. "email": "whatthejeff@gmail.com"
  8802. },
  8803. {
  8804. "name": "Volker Dusch",
  8805. "email": "github@wallbash.com"
  8806. },
  8807. {
  8808. "name": "Adam Harvey",
  8809. "email": "aharvey@php.net"
  8810. },
  8811. {
  8812. "name": "Bernhard Schussek",
  8813. "email": "bschussek@gmail.com"
  8814. }
  8815. ],
  8816. "description": "Provides the functionality to export PHP variables for visualization",
  8817. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8818. "keywords": [
  8819. "export",
  8820. "exporter"
  8821. ],
  8822. "support": {
  8823. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8824. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  8825. },
  8826. "funding": [
  8827. {
  8828. "url": "https://github.com/sebastianbergmann",
  8829. "type": "github"
  8830. }
  8831. ],
  8832. "time": "2024-03-02T06:33:00+00:00"
  8833. },
  8834. {
  8835. "name": "sebastian/global-state",
  8836. "version": "5.0.7",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/sebastianbergmann/global-state.git",
  8840. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8845. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8846. "shasum": ""
  8847. },
  8848. "require": {
  8849. "php": ">=7.3",
  8850. "sebastian/object-reflector": "^2.0",
  8851. "sebastian/recursion-context": "^4.0"
  8852. },
  8853. "require-dev": {
  8854. "ext-dom": "*",
  8855. "phpunit/phpunit": "^9.3"
  8856. },
  8857. "suggest": {
  8858. "ext-uopz": "*"
  8859. },
  8860. "type": "library",
  8861. "extra": {
  8862. "branch-alias": {
  8863. "dev-master": "5.0-dev"
  8864. }
  8865. },
  8866. "autoload": {
  8867. "classmap": [
  8868. "src/"
  8869. ]
  8870. },
  8871. "notification-url": "https://packagist.org/downloads/",
  8872. "license": [
  8873. "BSD-3-Clause"
  8874. ],
  8875. "authors": [
  8876. {
  8877. "name": "Sebastian Bergmann",
  8878. "email": "sebastian@phpunit.de"
  8879. }
  8880. ],
  8881. "description": "Snapshotting of global state",
  8882. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8883. "keywords": [
  8884. "global state"
  8885. ],
  8886. "support": {
  8887. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8888. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  8889. },
  8890. "funding": [
  8891. {
  8892. "url": "https://github.com/sebastianbergmann",
  8893. "type": "github"
  8894. }
  8895. ],
  8896. "time": "2024-03-02T06:35:11+00:00"
  8897. },
  8898. {
  8899. "name": "sebastian/lines-of-code",
  8900. "version": "1.0.4",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8904. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8909. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8910. "shasum": ""
  8911. },
  8912. "require": {
  8913. "nikic/php-parser": "^4.18 || ^5.0",
  8914. "php": ">=7.3"
  8915. },
  8916. "require-dev": {
  8917. "phpunit/phpunit": "^9.3"
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "branch-alias": {
  8922. "dev-master": "1.0-dev"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "classmap": [
  8927. "src/"
  8928. ]
  8929. },
  8930. "notification-url": "https://packagist.org/downloads/",
  8931. "license": [
  8932. "BSD-3-Clause"
  8933. ],
  8934. "authors": [
  8935. {
  8936. "name": "Sebastian Bergmann",
  8937. "email": "sebastian@phpunit.de",
  8938. "role": "lead"
  8939. }
  8940. ],
  8941. "description": "Library for counting the lines of code in PHP source code",
  8942. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8943. "support": {
  8944. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8945. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  8946. },
  8947. "funding": [
  8948. {
  8949. "url": "https://github.com/sebastianbergmann",
  8950. "type": "github"
  8951. }
  8952. ],
  8953. "time": "2023-12-22T06:20:34+00:00"
  8954. },
  8955. {
  8956. "name": "sebastian/object-enumerator",
  8957. "version": "4.0.4",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8961. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8966. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "php": ">=7.3",
  8971. "sebastian/object-reflector": "^2.0",
  8972. "sebastian/recursion-context": "^4.0"
  8973. },
  8974. "require-dev": {
  8975. "phpunit/phpunit": "^9.3"
  8976. },
  8977. "type": "library",
  8978. "extra": {
  8979. "branch-alias": {
  8980. "dev-master": "4.0-dev"
  8981. }
  8982. },
  8983. "autoload": {
  8984. "classmap": [
  8985. "src/"
  8986. ]
  8987. },
  8988. "notification-url": "https://packagist.org/downloads/",
  8989. "license": [
  8990. "BSD-3-Clause"
  8991. ],
  8992. "authors": [
  8993. {
  8994. "name": "Sebastian Bergmann",
  8995. "email": "sebastian@phpunit.de"
  8996. }
  8997. ],
  8998. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8999. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9000. "support": {
  9001. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9002. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9003. },
  9004. "funding": [
  9005. {
  9006. "url": "https://github.com/sebastianbergmann",
  9007. "type": "github"
  9008. }
  9009. ],
  9010. "time": "2020-10-26T13:12:34+00:00"
  9011. },
  9012. {
  9013. "name": "sebastian/object-reflector",
  9014. "version": "2.0.4",
  9015. "source": {
  9016. "type": "git",
  9017. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9018. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9019. },
  9020. "dist": {
  9021. "type": "zip",
  9022. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9023. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9024. "shasum": ""
  9025. },
  9026. "require": {
  9027. "php": ">=7.3"
  9028. },
  9029. "require-dev": {
  9030. "phpunit/phpunit": "^9.3"
  9031. },
  9032. "type": "library",
  9033. "extra": {
  9034. "branch-alias": {
  9035. "dev-master": "2.0-dev"
  9036. }
  9037. },
  9038. "autoload": {
  9039. "classmap": [
  9040. "src/"
  9041. ]
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "BSD-3-Clause"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Sebastian Bergmann",
  9050. "email": "sebastian@phpunit.de"
  9051. }
  9052. ],
  9053. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9054. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9055. "support": {
  9056. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9057. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9058. },
  9059. "funding": [
  9060. {
  9061. "url": "https://github.com/sebastianbergmann",
  9062. "type": "github"
  9063. }
  9064. ],
  9065. "time": "2020-10-26T13:14:26+00:00"
  9066. },
  9067. {
  9068. "name": "sebastian/recursion-context",
  9069. "version": "4.0.5",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9073. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9078. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "php": ">=7.3"
  9083. },
  9084. "require-dev": {
  9085. "phpunit/phpunit": "^9.3"
  9086. },
  9087. "type": "library",
  9088. "extra": {
  9089. "branch-alias": {
  9090. "dev-master": "4.0-dev"
  9091. }
  9092. },
  9093. "autoload": {
  9094. "classmap": [
  9095. "src/"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "BSD-3-Clause"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Sebastian Bergmann",
  9105. "email": "sebastian@phpunit.de"
  9106. },
  9107. {
  9108. "name": "Jeff Welch",
  9109. "email": "whatthejeff@gmail.com"
  9110. },
  9111. {
  9112. "name": "Adam Harvey",
  9113. "email": "aharvey@php.net"
  9114. }
  9115. ],
  9116. "description": "Provides functionality to recursively process PHP variables",
  9117. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9118. "support": {
  9119. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9120. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9121. },
  9122. "funding": [
  9123. {
  9124. "url": "https://github.com/sebastianbergmann",
  9125. "type": "github"
  9126. }
  9127. ],
  9128. "time": "2023-02-03T06:07:39+00:00"
  9129. },
  9130. {
  9131. "name": "sebastian/resource-operations",
  9132. "version": "3.0.4",
  9133. "source": {
  9134. "type": "git",
  9135. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9136. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9137. },
  9138. "dist": {
  9139. "type": "zip",
  9140. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9141. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9142. "shasum": ""
  9143. },
  9144. "require": {
  9145. "php": ">=7.3"
  9146. },
  9147. "require-dev": {
  9148. "phpunit/phpunit": "^9.0"
  9149. },
  9150. "type": "library",
  9151. "extra": {
  9152. "branch-alias": {
  9153. "dev-main": "3.0-dev"
  9154. }
  9155. },
  9156. "autoload": {
  9157. "classmap": [
  9158. "src/"
  9159. ]
  9160. },
  9161. "notification-url": "https://packagist.org/downloads/",
  9162. "license": [
  9163. "BSD-3-Clause"
  9164. ],
  9165. "authors": [
  9166. {
  9167. "name": "Sebastian Bergmann",
  9168. "email": "sebastian@phpunit.de"
  9169. }
  9170. ],
  9171. "description": "Provides a list of PHP built-in functions that operate on resources",
  9172. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9173. "support": {
  9174. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9175. },
  9176. "funding": [
  9177. {
  9178. "url": "https://github.com/sebastianbergmann",
  9179. "type": "github"
  9180. }
  9181. ],
  9182. "time": "2024-03-14T16:00:52+00:00"
  9183. },
  9184. {
  9185. "name": "sebastian/type",
  9186. "version": "3.2.1",
  9187. "source": {
  9188. "type": "git",
  9189. "url": "https://github.com/sebastianbergmann/type.git",
  9190. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9191. },
  9192. "dist": {
  9193. "type": "zip",
  9194. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9195. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9196. "shasum": ""
  9197. },
  9198. "require": {
  9199. "php": ">=7.3"
  9200. },
  9201. "require-dev": {
  9202. "phpunit/phpunit": "^9.5"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-master": "3.2-dev"
  9208. }
  9209. },
  9210. "autoload": {
  9211. "classmap": [
  9212. "src/"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "BSD-3-Clause"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Sebastian Bergmann",
  9222. "email": "sebastian@phpunit.de",
  9223. "role": "lead"
  9224. }
  9225. ],
  9226. "description": "Collection of value objects that represent the types of the PHP type system",
  9227. "homepage": "https://github.com/sebastianbergmann/type",
  9228. "support": {
  9229. "issues": "https://github.com/sebastianbergmann/type/issues",
  9230. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9231. },
  9232. "funding": [
  9233. {
  9234. "url": "https://github.com/sebastianbergmann",
  9235. "type": "github"
  9236. }
  9237. ],
  9238. "time": "2023-02-03T06:13:03+00:00"
  9239. },
  9240. {
  9241. "name": "sebastian/version",
  9242. "version": "3.0.2",
  9243. "source": {
  9244. "type": "git",
  9245. "url": "https://github.com/sebastianbergmann/version.git",
  9246. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9247. },
  9248. "dist": {
  9249. "type": "zip",
  9250. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9251. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9252. "shasum": ""
  9253. },
  9254. "require": {
  9255. "php": ">=7.3"
  9256. },
  9257. "type": "library",
  9258. "extra": {
  9259. "branch-alias": {
  9260. "dev-master": "3.0-dev"
  9261. }
  9262. },
  9263. "autoload": {
  9264. "classmap": [
  9265. "src/"
  9266. ]
  9267. },
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "BSD-3-Clause"
  9271. ],
  9272. "authors": [
  9273. {
  9274. "name": "Sebastian Bergmann",
  9275. "email": "sebastian@phpunit.de",
  9276. "role": "lead"
  9277. }
  9278. ],
  9279. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9280. "homepage": "https://github.com/sebastianbergmann/version",
  9281. "support": {
  9282. "issues": "https://github.com/sebastianbergmann/version/issues",
  9283. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9284. },
  9285. "funding": [
  9286. {
  9287. "url": "https://github.com/sebastianbergmann",
  9288. "type": "github"
  9289. }
  9290. ],
  9291. "time": "2020-09-28T06:39:44+00:00"
  9292. },
  9293. {
  9294. "name": "symfony/browser-kit",
  9295. "version": "v7.0.3",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/symfony/browser-kit.git",
  9299. "reference": "725d5b15681685ac17b20b575254c75639722488"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/725d5b15681685ac17b20b575254c75639722488",
  9304. "reference": "725d5b15681685ac17b20b575254c75639722488",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "php": ">=8.2",
  9309. "symfony/dom-crawler": "^6.4|^7.0"
  9310. },
  9311. "require-dev": {
  9312. "symfony/css-selector": "^6.4|^7.0",
  9313. "symfony/http-client": "^6.4|^7.0",
  9314. "symfony/mime": "^6.4|^7.0",
  9315. "symfony/process": "^6.4|^7.0"
  9316. },
  9317. "type": "library",
  9318. "autoload": {
  9319. "psr-4": {
  9320. "Symfony\\Component\\BrowserKit\\": ""
  9321. },
  9322. "exclude-from-classmap": [
  9323. "/Tests/"
  9324. ]
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "MIT"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Fabien Potencier",
  9333. "email": "fabien@symfony.com"
  9334. },
  9335. {
  9336. "name": "Symfony Community",
  9337. "homepage": "https://symfony.com/contributors"
  9338. }
  9339. ],
  9340. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9341. "homepage": "https://symfony.com",
  9342. "support": {
  9343. "source": "https://github.com/symfony/browser-kit/tree/v7.0.3"
  9344. },
  9345. "funding": [
  9346. {
  9347. "url": "https://symfony.com/sponsor",
  9348. "type": "custom"
  9349. },
  9350. {
  9351. "url": "https://github.com/fabpot",
  9352. "type": "github"
  9353. },
  9354. {
  9355. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9356. "type": "tidelift"
  9357. }
  9358. ],
  9359. "time": "2024-01-23T15:02:46+00:00"
  9360. },
  9361. {
  9362. "name": "symfony/css-selector",
  9363. "version": "v7.0.3",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/symfony/css-selector.git",
  9367. "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be",
  9372. "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be",
  9373. "shasum": ""
  9374. },
  9375. "require": {
  9376. "php": ">=8.2"
  9377. },
  9378. "type": "library",
  9379. "autoload": {
  9380. "psr-4": {
  9381. "Symfony\\Component\\CssSelector\\": ""
  9382. },
  9383. "exclude-from-classmap": [
  9384. "/Tests/"
  9385. ]
  9386. },
  9387. "notification-url": "https://packagist.org/downloads/",
  9388. "license": [
  9389. "MIT"
  9390. ],
  9391. "authors": [
  9392. {
  9393. "name": "Fabien Potencier",
  9394. "email": "fabien@symfony.com"
  9395. },
  9396. {
  9397. "name": "Jean-François Simon",
  9398. "email": "jeanfrancois.simon@sensiolabs.com"
  9399. },
  9400. {
  9401. "name": "Symfony Community",
  9402. "homepage": "https://symfony.com/contributors"
  9403. }
  9404. ],
  9405. "description": "Converts CSS selectors to XPath expressions",
  9406. "homepage": "https://symfony.com",
  9407. "support": {
  9408. "source": "https://github.com/symfony/css-selector/tree/v7.0.3"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://symfony.com/sponsor",
  9413. "type": "custom"
  9414. },
  9415. {
  9416. "url": "https://github.com/fabpot",
  9417. "type": "github"
  9418. },
  9419. {
  9420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9421. "type": "tidelift"
  9422. }
  9423. ],
  9424. "time": "2024-01-23T15:02:46+00:00"
  9425. },
  9426. {
  9427. "name": "symfony/debug-bundle",
  9428. "version": "v7.0.3",
  9429. "source": {
  9430. "type": "git",
  9431. "url": "https://github.com/symfony/debug-bundle.git",
  9432. "reference": "b0db5c443883ce5c10c2265c77feb9833c3d9d6d"
  9433. },
  9434. "dist": {
  9435. "type": "zip",
  9436. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/b0db5c443883ce5c10c2265c77feb9833c3d9d6d",
  9437. "reference": "b0db5c443883ce5c10c2265c77feb9833c3d9d6d",
  9438. "shasum": ""
  9439. },
  9440. "require": {
  9441. "ext-xml": "*",
  9442. "php": ">=8.2",
  9443. "symfony/dependency-injection": "^6.4|^7.0",
  9444. "symfony/http-kernel": "^6.4|^7.0",
  9445. "symfony/twig-bridge": "^6.4|^7.0",
  9446. "symfony/var-dumper": "^6.4|^7.0"
  9447. },
  9448. "conflict": {
  9449. "symfony/config": "<6.4",
  9450. "symfony/dependency-injection": "<6.4"
  9451. },
  9452. "require-dev": {
  9453. "symfony/config": "^6.4|^7.0",
  9454. "symfony/web-profiler-bundle": "^6.4|^7.0"
  9455. },
  9456. "type": "symfony-bundle",
  9457. "autoload": {
  9458. "psr-4": {
  9459. "Symfony\\Bundle\\DebugBundle\\": ""
  9460. },
  9461. "exclude-from-classmap": [
  9462. "/Tests/"
  9463. ]
  9464. },
  9465. "notification-url": "https://packagist.org/downloads/",
  9466. "license": [
  9467. "MIT"
  9468. ],
  9469. "authors": [
  9470. {
  9471. "name": "Fabien Potencier",
  9472. "email": "fabien@symfony.com"
  9473. },
  9474. {
  9475. "name": "Symfony Community",
  9476. "homepage": "https://symfony.com/contributors"
  9477. }
  9478. ],
  9479. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9480. "homepage": "https://symfony.com",
  9481. "support": {
  9482. "source": "https://github.com/symfony/debug-bundle/tree/v7.0.3"
  9483. },
  9484. "funding": [
  9485. {
  9486. "url": "https://symfony.com/sponsor",
  9487. "type": "custom"
  9488. },
  9489. {
  9490. "url": "https://github.com/fabpot",
  9491. "type": "github"
  9492. },
  9493. {
  9494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9495. "type": "tidelift"
  9496. }
  9497. ],
  9498. "time": "2024-01-23T15:02:46+00:00"
  9499. },
  9500. {
  9501. "name": "symfony/dom-crawler",
  9502. "version": "v7.0.4",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/symfony/dom-crawler.git",
  9506. "reference": "6cb272cbec4dc7a30a853d2931766b03bea92dda"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6cb272cbec4dc7a30a853d2931766b03bea92dda",
  9511. "reference": "6cb272cbec4dc7a30a853d2931766b03bea92dda",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "masterminds/html5": "^2.6",
  9516. "php": ">=8.2",
  9517. "symfony/polyfill-ctype": "~1.8",
  9518. "symfony/polyfill-mbstring": "~1.0"
  9519. },
  9520. "require-dev": {
  9521. "symfony/css-selector": "^6.4|^7.0"
  9522. },
  9523. "type": "library",
  9524. "autoload": {
  9525. "psr-4": {
  9526. "Symfony\\Component\\DomCrawler\\": ""
  9527. },
  9528. "exclude-from-classmap": [
  9529. "/Tests/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "MIT"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Fabien Potencier",
  9539. "email": "fabien@symfony.com"
  9540. },
  9541. {
  9542. "name": "Symfony Community",
  9543. "homepage": "https://symfony.com/contributors"
  9544. }
  9545. ],
  9546. "description": "Eases DOM navigation for HTML and XML documents",
  9547. "homepage": "https://symfony.com",
  9548. "support": {
  9549. "source": "https://github.com/symfony/dom-crawler/tree/v7.0.4"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://symfony.com/sponsor",
  9554. "type": "custom"
  9555. },
  9556. {
  9557. "url": "https://github.com/fabpot",
  9558. "type": "github"
  9559. },
  9560. {
  9561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9562. "type": "tidelift"
  9563. }
  9564. ],
  9565. "time": "2024-02-12T11:15:03+00:00"
  9566. },
  9567. {
  9568. "name": "symfony/maker-bundle",
  9569. "version": "v1.56.0",
  9570. "source": {
  9571. "type": "git",
  9572. "url": "https://github.com/symfony/maker-bundle.git",
  9573. "reference": "bbb7949ae048363df7c8439abeddef8befd155ce"
  9574. },
  9575. "dist": {
  9576. "type": "zip",
  9577. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/bbb7949ae048363df7c8439abeddef8befd155ce",
  9578. "reference": "bbb7949ae048363df7c8439abeddef8befd155ce",
  9579. "shasum": ""
  9580. },
  9581. "require": {
  9582. "doctrine/inflector": "^2.0",
  9583. "nikic/php-parser": "^4.18|^5.0",
  9584. "php": ">=8.1",
  9585. "symfony/config": "^6.4|^7.0",
  9586. "symfony/console": "^6.4|^7.0",
  9587. "symfony/dependency-injection": "^6.4|^7.0",
  9588. "symfony/deprecation-contracts": "^2.2|^3",
  9589. "symfony/filesystem": "^6.4|^7.0",
  9590. "symfony/finder": "^6.4|^7.0",
  9591. "symfony/framework-bundle": "^6.4|^7.0",
  9592. "symfony/http-kernel": "^6.4|^7.0",
  9593. "symfony/process": "^6.4|^7.0"
  9594. },
  9595. "conflict": {
  9596. "doctrine/doctrine-bundle": "<2.10",
  9597. "doctrine/orm": "<2.15"
  9598. },
  9599. "require-dev": {
  9600. "composer/semver": "^3.0",
  9601. "doctrine/doctrine-bundle": "^2.5.0",
  9602. "doctrine/orm": "^2.15|^3",
  9603. "symfony/http-client": "^6.4|^7.0",
  9604. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  9605. "symfony/security-core": "^6.4|^7.0",
  9606. "symfony/yaml": "^6.4|^7.0",
  9607. "twig/twig": "^3.0|^4.x-dev"
  9608. },
  9609. "type": "symfony-bundle",
  9610. "extra": {
  9611. "branch-alias": {
  9612. "dev-main": "1.x-dev"
  9613. }
  9614. },
  9615. "autoload": {
  9616. "psr-4": {
  9617. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9618. }
  9619. },
  9620. "notification-url": "https://packagist.org/downloads/",
  9621. "license": [
  9622. "MIT"
  9623. ],
  9624. "authors": [
  9625. {
  9626. "name": "Symfony Community",
  9627. "homepage": "https://symfony.com/contributors"
  9628. }
  9629. ],
  9630. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9631. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9632. "keywords": [
  9633. "code generator",
  9634. "dev",
  9635. "generator",
  9636. "scaffold",
  9637. "scaffolding"
  9638. ],
  9639. "support": {
  9640. "issues": "https://github.com/symfony/maker-bundle/issues",
  9641. "source": "https://github.com/symfony/maker-bundle/tree/v1.56.0"
  9642. },
  9643. "funding": [
  9644. {
  9645. "url": "https://symfony.com/sponsor",
  9646. "type": "custom"
  9647. },
  9648. {
  9649. "url": "https://github.com/fabpot",
  9650. "type": "github"
  9651. },
  9652. {
  9653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9654. "type": "tidelift"
  9655. }
  9656. ],
  9657. "time": "2024-03-04T13:36:45+00:00"
  9658. },
  9659. {
  9660. "name": "symfony/phpunit-bridge",
  9661. "version": "v7.0.4",
  9662. "source": {
  9663. "type": "git",
  9664. "url": "https://github.com/symfony/phpunit-bridge.git",
  9665. "reference": "54ca13ec990a40411ad978e08d994fca6cdd865f"
  9666. },
  9667. "dist": {
  9668. "type": "zip",
  9669. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/54ca13ec990a40411ad978e08d994fca6cdd865f",
  9670. "reference": "54ca13ec990a40411ad978e08d994fca6cdd865f",
  9671. "shasum": ""
  9672. },
  9673. "require": {
  9674. "php": ">=7.2.5"
  9675. },
  9676. "conflict": {
  9677. "phpunit/phpunit": "<7.5|9.1.2"
  9678. },
  9679. "require-dev": {
  9680. "symfony/deprecation-contracts": "^2.5|^3.0",
  9681. "symfony/error-handler": "^5.4|^6.4|^7.0",
  9682. "symfony/polyfill-php81": "^1.27"
  9683. },
  9684. "bin": [
  9685. "bin/simple-phpunit"
  9686. ],
  9687. "type": "symfony-bridge",
  9688. "extra": {
  9689. "thanks": {
  9690. "name": "phpunit/phpunit",
  9691. "url": "https://github.com/sebastianbergmann/phpunit"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "files": [
  9696. "bootstrap.php"
  9697. ],
  9698. "psr-4": {
  9699. "Symfony\\Bridge\\PhpUnit\\": ""
  9700. },
  9701. "exclude-from-classmap": [
  9702. "/Tests/"
  9703. ]
  9704. },
  9705. "notification-url": "https://packagist.org/downloads/",
  9706. "license": [
  9707. "MIT"
  9708. ],
  9709. "authors": [
  9710. {
  9711. "name": "Nicolas Grekas",
  9712. "email": "p@tchwork.com"
  9713. },
  9714. {
  9715. "name": "Symfony Community",
  9716. "homepage": "https://symfony.com/contributors"
  9717. }
  9718. ],
  9719. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9720. "homepage": "https://symfony.com",
  9721. "support": {
  9722. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.0.4"
  9723. },
  9724. "funding": [
  9725. {
  9726. "url": "https://symfony.com/sponsor",
  9727. "type": "custom"
  9728. },
  9729. {
  9730. "url": "https://github.com/fabpot",
  9731. "type": "github"
  9732. },
  9733. {
  9734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9735. "type": "tidelift"
  9736. }
  9737. ],
  9738. "time": "2024-02-08T19:22:56+00:00"
  9739. },
  9740. {
  9741. "name": "symfony/web-profiler-bundle",
  9742. "version": "v7.0.4",
  9743. "source": {
  9744. "type": "git",
  9745. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9746. "reference": "542daea1345fe181cbfd52db00717174a838ea0a"
  9747. },
  9748. "dist": {
  9749. "type": "zip",
  9750. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/542daea1345fe181cbfd52db00717174a838ea0a",
  9751. "reference": "542daea1345fe181cbfd52db00717174a838ea0a",
  9752. "shasum": ""
  9753. },
  9754. "require": {
  9755. "php": ">=8.2",
  9756. "symfony/config": "^6.4|^7.0",
  9757. "symfony/framework-bundle": "^6.4|^7.0",
  9758. "symfony/http-kernel": "^6.4|^7.0",
  9759. "symfony/routing": "^6.4|^7.0",
  9760. "symfony/twig-bundle": "^6.4|^7.0",
  9761. "twig/twig": "^3.0.4"
  9762. },
  9763. "conflict": {
  9764. "symfony/form": "<6.4",
  9765. "symfony/mailer": "<6.4",
  9766. "symfony/messenger": "<6.4"
  9767. },
  9768. "require-dev": {
  9769. "symfony/browser-kit": "^6.4|^7.0",
  9770. "symfony/console": "^6.4|^7.0",
  9771. "symfony/css-selector": "^6.4|^7.0",
  9772. "symfony/stopwatch": "^6.4|^7.0"
  9773. },
  9774. "type": "symfony-bundle",
  9775. "autoload": {
  9776. "psr-4": {
  9777. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9778. },
  9779. "exclude-from-classmap": [
  9780. "/Tests/"
  9781. ]
  9782. },
  9783. "notification-url": "https://packagist.org/downloads/",
  9784. "license": [
  9785. "MIT"
  9786. ],
  9787. "authors": [
  9788. {
  9789. "name": "Fabien Potencier",
  9790. "email": "fabien@symfony.com"
  9791. },
  9792. {
  9793. "name": "Symfony Community",
  9794. "homepage": "https://symfony.com/contributors"
  9795. }
  9796. ],
  9797. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9798. "homepage": "https://symfony.com",
  9799. "keywords": [
  9800. "dev"
  9801. ],
  9802. "support": {
  9803. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.0.4"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://symfony.com/sponsor",
  9808. "type": "custom"
  9809. },
  9810. {
  9811. "url": "https://github.com/fabpot",
  9812. "type": "github"
  9813. },
  9814. {
  9815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9816. "type": "tidelift"
  9817. }
  9818. ],
  9819. "time": "2024-02-22T20:27:20+00:00"
  9820. },
  9821. {
  9822. "name": "theseer/tokenizer",
  9823. "version": "1.2.3",
  9824. "source": {
  9825. "type": "git",
  9826. "url": "https://github.com/theseer/tokenizer.git",
  9827. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9828. },
  9829. "dist": {
  9830. "type": "zip",
  9831. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9832. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9833. "shasum": ""
  9834. },
  9835. "require": {
  9836. "ext-dom": "*",
  9837. "ext-tokenizer": "*",
  9838. "ext-xmlwriter": "*",
  9839. "php": "^7.2 || ^8.0"
  9840. },
  9841. "type": "library",
  9842. "autoload": {
  9843. "classmap": [
  9844. "src/"
  9845. ]
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "BSD-3-Clause"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Arne Blankerts",
  9854. "email": "arne@blankerts.de",
  9855. "role": "Developer"
  9856. }
  9857. ],
  9858. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9859. "support": {
  9860. "issues": "https://github.com/theseer/tokenizer/issues",
  9861. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9862. },
  9863. "funding": [
  9864. {
  9865. "url": "https://github.com/theseer",
  9866. "type": "github"
  9867. }
  9868. ],
  9869. "time": "2024-03-03T12:36:25+00:00"
  9870. }
  9871. ],
  9872. "aliases": [],
  9873. "minimum-stability": "stable",
  9874. "stability-flags": [],
  9875. "prefer-stable": true,
  9876. "prefer-lowest": false,
  9877. "platform": {
  9878. "php": ">=8.2",
  9879. "ext-ctype": "*",
  9880. "ext-iconv": "*"
  9881. },
  9882. "platform-dev": [],
  9883. "plugin-api-version": "2.6.0"
  9884. }