composer.lock 355 KB

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