composer.lock 382 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588
  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": "b73d2e05e8eb48737f500d9310f0c66d",
  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": "dflydev/dot-access-data",
  92. "version": "v3.0.3",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  96. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  101. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "php": "^7.1 || ^8.0"
  106. },
  107. "require-dev": {
  108. "phpstan/phpstan": "^0.12.42",
  109. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  110. "scrutinizer/ocular": "1.6.0",
  111. "squizlabs/php_codesniffer": "^3.5",
  112. "vimeo/psalm": "^4.0.0"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-main": "3.x-dev"
  118. }
  119. },
  120. "autoload": {
  121. "psr-4": {
  122. "Dflydev\\DotAccessData\\": "src/"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Dragonfly Development Inc.",
  132. "email": "info@dflydev.com",
  133. "homepage": "http://dflydev.com"
  134. },
  135. {
  136. "name": "Beau Simensen",
  137. "email": "beau@dflydev.com",
  138. "homepage": "http://beausimensen.com"
  139. },
  140. {
  141. "name": "Carlos Frutos",
  142. "email": "carlos@kiwing.it",
  143. "homepage": "https://github.com/cfrutos"
  144. },
  145. {
  146. "name": "Colin O'Dell",
  147. "email": "colinodell@gmail.com",
  148. "homepage": "https://www.colinodell.com"
  149. }
  150. ],
  151. "description": "Given a deep data structure, access data by dot notation.",
  152. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  153. "keywords": [
  154. "access",
  155. "data",
  156. "dot",
  157. "notation"
  158. ],
  159. "support": {
  160. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  161. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  162. },
  163. "time": "2024-07-08T12:26:09+00:00"
  164. },
  165. {
  166. "name": "doctrine/cache",
  167. "version": "2.2.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/doctrine/cache.git",
  171. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  176. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "php": "~7.1 || ^8.0"
  181. },
  182. "conflict": {
  183. "doctrine/common": ">2.2,<2.4"
  184. },
  185. "require-dev": {
  186. "cache/integration-tests": "dev-master",
  187. "doctrine/coding-standard": "^9",
  188. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  189. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  190. "symfony/cache": "^4.4 || ^5.4 || ^6",
  191. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "psr-4": {
  196. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Guilherme Blanco",
  206. "email": "guilhermeblanco@gmail.com"
  207. },
  208. {
  209. "name": "Roman Borschel",
  210. "email": "roman@code-factory.org"
  211. },
  212. {
  213. "name": "Benjamin Eberlei",
  214. "email": "kontakt@beberlei.de"
  215. },
  216. {
  217. "name": "Jonathan Wage",
  218. "email": "jonwage@gmail.com"
  219. },
  220. {
  221. "name": "Johannes Schmitt",
  222. "email": "schmittjoh@gmail.com"
  223. }
  224. ],
  225. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  226. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  227. "keywords": [
  228. "abstraction",
  229. "apcu",
  230. "cache",
  231. "caching",
  232. "couchdb",
  233. "memcached",
  234. "php",
  235. "redis",
  236. "xcache"
  237. ],
  238. "support": {
  239. "issues": "https://github.com/doctrine/cache/issues",
  240. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  241. },
  242. "funding": [
  243. {
  244. "url": "https://www.doctrine-project.org/sponsorship.html",
  245. "type": "custom"
  246. },
  247. {
  248. "url": "https://www.patreon.com/phpdoctrine",
  249. "type": "patreon"
  250. },
  251. {
  252. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  253. "type": "tidelift"
  254. }
  255. ],
  256. "time": "2022-05-20T20:07:39+00:00"
  257. },
  258. {
  259. "name": "doctrine/collections",
  260. "version": "2.2.2",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/collections.git",
  264. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  269. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "doctrine/deprecations": "^1",
  274. "php": "^8.1"
  275. },
  276. "require-dev": {
  277. "doctrine/coding-standard": "^12",
  278. "ext-json": "*",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.0",
  281. "phpunit/phpunit": "^10.5",
  282. "vimeo/psalm": "^5.11"
  283. },
  284. "type": "library",
  285. "autoload": {
  286. "psr-4": {
  287. "Doctrine\\Common\\Collections\\": "src"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Guilherme Blanco",
  297. "email": "guilhermeblanco@gmail.com"
  298. },
  299. {
  300. "name": "Roman Borschel",
  301. "email": "roman@code-factory.org"
  302. },
  303. {
  304. "name": "Benjamin Eberlei",
  305. "email": "kontakt@beberlei.de"
  306. },
  307. {
  308. "name": "Jonathan Wage",
  309. "email": "jonwage@gmail.com"
  310. },
  311. {
  312. "name": "Johannes Schmitt",
  313. "email": "schmittjoh@gmail.com"
  314. }
  315. ],
  316. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  317. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  318. "keywords": [
  319. "array",
  320. "collections",
  321. "iterators",
  322. "php"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/doctrine/collections/issues",
  326. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://www.doctrine-project.org/sponsorship.html",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://www.patreon.com/phpdoctrine",
  335. "type": "patreon"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2024-04-18T06:56:21+00:00"
  343. },
  344. {
  345. "name": "doctrine/dbal",
  346. "version": "3.9.3",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/doctrine/dbal.git",
  350. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  355. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "composer-runtime-api": "^2",
  360. "doctrine/cache": "^1.11|^2.0",
  361. "doctrine/deprecations": "^0.5.3|^1",
  362. "doctrine/event-manager": "^1|^2",
  363. "php": "^7.4 || ^8.0",
  364. "psr/cache": "^1|^2|^3",
  365. "psr/log": "^1|^2|^3"
  366. },
  367. "require-dev": {
  368. "doctrine/coding-standard": "12.0.0",
  369. "fig/log-test": "^1",
  370. "jetbrains/phpstorm-stubs": "2023.1",
  371. "phpstan/phpstan": "1.12.6",
  372. "phpstan/phpstan-strict-rules": "^1.6",
  373. "phpunit/phpunit": "9.6.20",
  374. "psalm/plugin-phpunit": "0.18.4",
  375. "slevomat/coding-standard": "8.13.1",
  376. "squizlabs/php_codesniffer": "3.10.2",
  377. "symfony/cache": "^5.4|^6.0|^7.0",
  378. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  379. "vimeo/psalm": "4.30.0"
  380. },
  381. "suggest": {
  382. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  383. },
  384. "bin": [
  385. "bin/doctrine-dbal"
  386. ],
  387. "type": "library",
  388. "autoload": {
  389. "psr-4": {
  390. "Doctrine\\DBAL\\": "src"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "Guilherme Blanco",
  400. "email": "guilhermeblanco@gmail.com"
  401. },
  402. {
  403. "name": "Roman Borschel",
  404. "email": "roman@code-factory.org"
  405. },
  406. {
  407. "name": "Benjamin Eberlei",
  408. "email": "kontakt@beberlei.de"
  409. },
  410. {
  411. "name": "Jonathan Wage",
  412. "email": "jonwage@gmail.com"
  413. }
  414. ],
  415. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  416. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  417. "keywords": [
  418. "abstraction",
  419. "database",
  420. "db2",
  421. "dbal",
  422. "mariadb",
  423. "mssql",
  424. "mysql",
  425. "oci8",
  426. "oracle",
  427. "pdo",
  428. "pgsql",
  429. "postgresql",
  430. "queryobject",
  431. "sasql",
  432. "sql",
  433. "sqlite",
  434. "sqlserver",
  435. "sqlsrv"
  436. ],
  437. "support": {
  438. "issues": "https://github.com/doctrine/dbal/issues",
  439. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  440. },
  441. "funding": [
  442. {
  443. "url": "https://www.doctrine-project.org/sponsorship.html",
  444. "type": "custom"
  445. },
  446. {
  447. "url": "https://www.patreon.com/phpdoctrine",
  448. "type": "patreon"
  449. },
  450. {
  451. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  452. "type": "tidelift"
  453. }
  454. ],
  455. "time": "2024-10-10T17:56:43+00:00"
  456. },
  457. {
  458. "name": "doctrine/deprecations",
  459. "version": "1.1.3",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/doctrine/deprecations.git",
  463. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  468. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "php": "^7.1 || ^8.0"
  473. },
  474. "require-dev": {
  475. "doctrine/coding-standard": "^9",
  476. "phpstan/phpstan": "1.4.10 || 1.10.15",
  477. "phpstan/phpstan-phpunit": "^1.0",
  478. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  479. "psalm/plugin-phpunit": "0.18.4",
  480. "psr/log": "^1 || ^2 || ^3",
  481. "vimeo/psalm": "4.30.0 || 5.12.0"
  482. },
  483. "suggest": {
  484. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  485. },
  486. "type": "library",
  487. "autoload": {
  488. "psr-4": {
  489. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "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.",
  497. "homepage": "https://www.doctrine-project.org/",
  498. "support": {
  499. "issues": "https://github.com/doctrine/deprecations/issues",
  500. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  501. },
  502. "time": "2024-01-30T19:34:25+00:00"
  503. },
  504. {
  505. "name": "doctrine/doctrine-bundle",
  506. "version": "2.13.0",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/doctrine/DoctrineBundle.git",
  510. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  515. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "doctrine/cache": "^1.11 || ^2.0",
  520. "doctrine/dbal": "^3.7.0 || ^4.0",
  521. "doctrine/persistence": "^2.2 || ^3",
  522. "doctrine/sql-formatter": "^1.0.1",
  523. "php": "^7.4 || ^8.0",
  524. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  525. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  526. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  527. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  528. "symfony/deprecation-contracts": "^2.1 || ^3",
  529. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  530. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  531. "symfony/polyfill-php80": "^1.15",
  532. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  533. },
  534. "conflict": {
  535. "doctrine/annotations": ">=3.0",
  536. "doctrine/orm": "<2.17 || >=4.0",
  537. "twig/twig": "<1.34 || >=2.0 <2.4"
  538. },
  539. "require-dev": {
  540. "doctrine/annotations": "^1 || ^2",
  541. "doctrine/coding-standard": "^12",
  542. "doctrine/deprecations": "^1.0",
  543. "doctrine/orm": "^2.17 || ^3.0",
  544. "friendsofphp/proxy-manager-lts": "^1.0",
  545. "phpunit/phpunit": "^9.5.26",
  546. "psalm/plugin-phpunit": "^0.18.4",
  547. "psalm/plugin-symfony": "^5",
  548. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  549. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  550. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  551. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  552. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  553. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  554. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  555. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  556. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  557. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  558. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  559. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  560. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  561. "vimeo/psalm": "^5.15"
  562. },
  563. "suggest": {
  564. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  565. "ext-pdo": "*",
  566. "symfony/web-profiler-bundle": "To use the data collector."
  567. },
  568. "type": "symfony-bundle",
  569. "autoload": {
  570. "psr-4": {
  571. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Fabien Potencier",
  581. "email": "fabien@symfony.com"
  582. },
  583. {
  584. "name": "Benjamin Eberlei",
  585. "email": "kontakt@beberlei.de"
  586. },
  587. {
  588. "name": "Symfony Community",
  589. "homepage": "https://symfony.com/contributors"
  590. },
  591. {
  592. "name": "Doctrine Project",
  593. "homepage": "https://www.doctrine-project.org/"
  594. }
  595. ],
  596. "description": "Symfony DoctrineBundle",
  597. "homepage": "https://www.doctrine-project.org",
  598. "keywords": [
  599. "database",
  600. "dbal",
  601. "orm",
  602. "persistence"
  603. ],
  604. "support": {
  605. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  606. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  607. },
  608. "funding": [
  609. {
  610. "url": "https://www.doctrine-project.org/sponsorship.html",
  611. "type": "custom"
  612. },
  613. {
  614. "url": "https://www.patreon.com/phpdoctrine",
  615. "type": "patreon"
  616. },
  617. {
  618. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  619. "type": "tidelift"
  620. }
  621. ],
  622. "time": "2024-09-01T09:46:40+00:00"
  623. },
  624. {
  625. "name": "doctrine/doctrine-migrations-bundle",
  626. "version": "3.3.1",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  630. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  635. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  636. "shasum": ""
  637. },
  638. "require": {
  639. "doctrine/doctrine-bundle": "^2.4",
  640. "doctrine/migrations": "^3.2",
  641. "php": "^7.2|^8.0",
  642. "symfony/deprecation-contracts": "^2.1 || ^3",
  643. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  644. },
  645. "require-dev": {
  646. "composer/semver": "^3.0",
  647. "doctrine/coding-standard": "^12",
  648. "doctrine/orm": "^2.6 || ^3",
  649. "doctrine/persistence": "^2.0 || ^3 ",
  650. "phpstan/phpstan": "^1.4",
  651. "phpstan/phpstan-deprecation-rules": "^1",
  652. "phpstan/phpstan-phpunit": "^1",
  653. "phpstan/phpstan-strict-rules": "^1.1",
  654. "phpstan/phpstan-symfony": "^1.3",
  655. "phpunit/phpunit": "^8.5|^9.5",
  656. "psalm/plugin-phpunit": "^0.18.4",
  657. "psalm/plugin-symfony": "^3 || ^5",
  658. "symfony/phpunit-bridge": "^6.3 || ^7",
  659. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  660. "vimeo/psalm": "^4.30 || ^5.15"
  661. },
  662. "type": "symfony-bundle",
  663. "autoload": {
  664. "psr-4": {
  665. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  666. },
  667. "exclude-from-classmap": [
  668. "/Tests/"
  669. ]
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "authors": [
  676. {
  677. "name": "Fabien Potencier",
  678. "email": "fabien@symfony.com"
  679. },
  680. {
  681. "name": "Doctrine Project",
  682. "homepage": "https://www.doctrine-project.org"
  683. },
  684. {
  685. "name": "Symfony Community",
  686. "homepage": "https://symfony.com/contributors"
  687. }
  688. ],
  689. "description": "Symfony DoctrineMigrationsBundle",
  690. "homepage": "https://www.doctrine-project.org",
  691. "keywords": [
  692. "dbal",
  693. "migrations",
  694. "schema"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  698. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  699. },
  700. "funding": [
  701. {
  702. "url": "https://www.doctrine-project.org/sponsorship.html",
  703. "type": "custom"
  704. },
  705. {
  706. "url": "https://www.patreon.com/phpdoctrine",
  707. "type": "patreon"
  708. },
  709. {
  710. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  711. "type": "tidelift"
  712. }
  713. ],
  714. "time": "2024-05-14T20:32:18+00:00"
  715. },
  716. {
  717. "name": "doctrine/event-manager",
  718. "version": "2.0.1",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/doctrine/event-manager.git",
  722. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  727. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  728. "shasum": ""
  729. },
  730. "require": {
  731. "php": "^8.1"
  732. },
  733. "conflict": {
  734. "doctrine/common": "<2.9"
  735. },
  736. "require-dev": {
  737. "doctrine/coding-standard": "^12",
  738. "phpstan/phpstan": "^1.8.8",
  739. "phpunit/phpunit": "^10.5",
  740. "vimeo/psalm": "^5.24"
  741. },
  742. "type": "library",
  743. "autoload": {
  744. "psr-4": {
  745. "Doctrine\\Common\\": "src"
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Guilherme Blanco",
  755. "email": "guilhermeblanco@gmail.com"
  756. },
  757. {
  758. "name": "Roman Borschel",
  759. "email": "roman@code-factory.org"
  760. },
  761. {
  762. "name": "Benjamin Eberlei",
  763. "email": "kontakt@beberlei.de"
  764. },
  765. {
  766. "name": "Jonathan Wage",
  767. "email": "jonwage@gmail.com"
  768. },
  769. {
  770. "name": "Johannes Schmitt",
  771. "email": "schmittjoh@gmail.com"
  772. },
  773. {
  774. "name": "Marco Pivetta",
  775. "email": "ocramius@gmail.com"
  776. }
  777. ],
  778. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  779. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  780. "keywords": [
  781. "event",
  782. "event dispatcher",
  783. "event manager",
  784. "event system",
  785. "events"
  786. ],
  787. "support": {
  788. "issues": "https://github.com/doctrine/event-manager/issues",
  789. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  790. },
  791. "funding": [
  792. {
  793. "url": "https://www.doctrine-project.org/sponsorship.html",
  794. "type": "custom"
  795. },
  796. {
  797. "url": "https://www.patreon.com/phpdoctrine",
  798. "type": "patreon"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2024-05-22T20:47:39+00:00"
  806. },
  807. {
  808. "name": "doctrine/inflector",
  809. "version": "2.0.10",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/doctrine/inflector.git",
  813. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  818. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": "^7.2 || ^8.0"
  823. },
  824. "require-dev": {
  825. "doctrine/coding-standard": "^11.0",
  826. "phpstan/phpstan": "^1.8",
  827. "phpstan/phpstan-phpunit": "^1.1",
  828. "phpstan/phpstan-strict-rules": "^1.3",
  829. "phpunit/phpunit": "^8.5 || ^9.5",
  830. "vimeo/psalm": "^4.25 || ^5.4"
  831. },
  832. "type": "library",
  833. "autoload": {
  834. "psr-4": {
  835. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  836. }
  837. },
  838. "notification-url": "https://packagist.org/downloads/",
  839. "license": [
  840. "MIT"
  841. ],
  842. "authors": [
  843. {
  844. "name": "Guilherme Blanco",
  845. "email": "guilhermeblanco@gmail.com"
  846. },
  847. {
  848. "name": "Roman Borschel",
  849. "email": "roman@code-factory.org"
  850. },
  851. {
  852. "name": "Benjamin Eberlei",
  853. "email": "kontakt@beberlei.de"
  854. },
  855. {
  856. "name": "Jonathan Wage",
  857. "email": "jonwage@gmail.com"
  858. },
  859. {
  860. "name": "Johannes Schmitt",
  861. "email": "schmittjoh@gmail.com"
  862. }
  863. ],
  864. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  865. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  866. "keywords": [
  867. "inflection",
  868. "inflector",
  869. "lowercase",
  870. "manipulation",
  871. "php",
  872. "plural",
  873. "singular",
  874. "strings",
  875. "uppercase",
  876. "words"
  877. ],
  878. "support": {
  879. "issues": "https://github.com/doctrine/inflector/issues",
  880. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  881. },
  882. "funding": [
  883. {
  884. "url": "https://www.doctrine-project.org/sponsorship.html",
  885. "type": "custom"
  886. },
  887. {
  888. "url": "https://www.patreon.com/phpdoctrine",
  889. "type": "patreon"
  890. },
  891. {
  892. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  893. "type": "tidelift"
  894. }
  895. ],
  896. "time": "2024-02-18T20:23:39+00:00"
  897. },
  898. {
  899. "name": "doctrine/instantiator",
  900. "version": "2.0.0",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/doctrine/instantiator.git",
  904. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  909. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  910. "shasum": ""
  911. },
  912. "require": {
  913. "php": "^8.1"
  914. },
  915. "require-dev": {
  916. "doctrine/coding-standard": "^11",
  917. "ext-pdo": "*",
  918. "ext-phar": "*",
  919. "phpbench/phpbench": "^1.2",
  920. "phpstan/phpstan": "^1.9.4",
  921. "phpstan/phpstan-phpunit": "^1.3",
  922. "phpunit/phpunit": "^9.5.27",
  923. "vimeo/psalm": "^5.4"
  924. },
  925. "type": "library",
  926. "autoload": {
  927. "psr-4": {
  928. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  929. }
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "MIT"
  934. ],
  935. "authors": [
  936. {
  937. "name": "Marco Pivetta",
  938. "email": "ocramius@gmail.com",
  939. "homepage": "https://ocramius.github.io/"
  940. }
  941. ],
  942. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  943. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  944. "keywords": [
  945. "constructor",
  946. "instantiate"
  947. ],
  948. "support": {
  949. "issues": "https://github.com/doctrine/instantiator/issues",
  950. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://www.doctrine-project.org/sponsorship.html",
  955. "type": "custom"
  956. },
  957. {
  958. "url": "https://www.patreon.com/phpdoctrine",
  959. "type": "patreon"
  960. },
  961. {
  962. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  963. "type": "tidelift"
  964. }
  965. ],
  966. "time": "2022-12-30T00:23:10+00:00"
  967. },
  968. {
  969. "name": "doctrine/lexer",
  970. "version": "3.0.1",
  971. "source": {
  972. "type": "git",
  973. "url": "https://github.com/doctrine/lexer.git",
  974. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  975. },
  976. "dist": {
  977. "type": "zip",
  978. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  979. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  980. "shasum": ""
  981. },
  982. "require": {
  983. "php": "^8.1"
  984. },
  985. "require-dev": {
  986. "doctrine/coding-standard": "^12",
  987. "phpstan/phpstan": "^1.10",
  988. "phpunit/phpunit": "^10.5",
  989. "psalm/plugin-phpunit": "^0.18.3",
  990. "vimeo/psalm": "^5.21"
  991. },
  992. "type": "library",
  993. "autoload": {
  994. "psr-4": {
  995. "Doctrine\\Common\\Lexer\\": "src"
  996. }
  997. },
  998. "notification-url": "https://packagist.org/downloads/",
  999. "license": [
  1000. "MIT"
  1001. ],
  1002. "authors": [
  1003. {
  1004. "name": "Guilherme Blanco",
  1005. "email": "guilhermeblanco@gmail.com"
  1006. },
  1007. {
  1008. "name": "Roman Borschel",
  1009. "email": "roman@code-factory.org"
  1010. },
  1011. {
  1012. "name": "Johannes Schmitt",
  1013. "email": "schmittjoh@gmail.com"
  1014. }
  1015. ],
  1016. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1017. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1018. "keywords": [
  1019. "annotations",
  1020. "docblock",
  1021. "lexer",
  1022. "parser",
  1023. "php"
  1024. ],
  1025. "support": {
  1026. "issues": "https://github.com/doctrine/lexer/issues",
  1027. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1028. },
  1029. "funding": [
  1030. {
  1031. "url": "https://www.doctrine-project.org/sponsorship.html",
  1032. "type": "custom"
  1033. },
  1034. {
  1035. "url": "https://www.patreon.com/phpdoctrine",
  1036. "type": "patreon"
  1037. },
  1038. {
  1039. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1040. "type": "tidelift"
  1041. }
  1042. ],
  1043. "time": "2024-02-05T11:56:58+00:00"
  1044. },
  1045. {
  1046. "name": "doctrine/migrations",
  1047. "version": "3.8.2",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/doctrine/migrations.git",
  1051. "reference": "5007eb1168691225ac305fe16856755c20860842"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  1056. "reference": "5007eb1168691225ac305fe16856755c20860842",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "composer-runtime-api": "^2",
  1061. "doctrine/dbal": "^3.6 || ^4",
  1062. "doctrine/deprecations": "^0.5.3 || ^1",
  1063. "doctrine/event-manager": "^1.2 || ^2.0",
  1064. "php": "^8.1",
  1065. "psr/log": "^1.1.3 || ^2 || ^3",
  1066. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1067. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1068. "symfony/var-exporter": "^6.2 || ^7.0"
  1069. },
  1070. "conflict": {
  1071. "doctrine/orm": "<2.12 || >=4"
  1072. },
  1073. "require-dev": {
  1074. "doctrine/coding-standard": "^12",
  1075. "doctrine/orm": "^2.13 || ^3",
  1076. "doctrine/persistence": "^2 || ^3",
  1077. "doctrine/sql-formatter": "^1.0",
  1078. "ext-pdo_sqlite": "*",
  1079. "fig/log-test": "^1",
  1080. "phpstan/phpstan": "^1.10",
  1081. "phpstan/phpstan-deprecation-rules": "^1.1",
  1082. "phpstan/phpstan-phpunit": "^1.3",
  1083. "phpstan/phpstan-strict-rules": "^1.4",
  1084. "phpstan/phpstan-symfony": "^1.3",
  1085. "phpunit/phpunit": "^10.3",
  1086. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1087. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1088. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1089. },
  1090. "suggest": {
  1091. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1092. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1093. },
  1094. "bin": [
  1095. "bin/doctrine-migrations"
  1096. ],
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Migrations\\": "src"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Benjamin Eberlei",
  1110. "email": "kontakt@beberlei.de"
  1111. },
  1112. {
  1113. "name": "Jonathan Wage",
  1114. "email": "jonwage@gmail.com"
  1115. },
  1116. {
  1117. "name": "Michael Simonson",
  1118. "email": "contact@mikesimonson.com"
  1119. }
  1120. ],
  1121. "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.",
  1122. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1123. "keywords": [
  1124. "database",
  1125. "dbal",
  1126. "migrations"
  1127. ],
  1128. "support": {
  1129. "issues": "https://github.com/doctrine/migrations/issues",
  1130. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1131. },
  1132. "funding": [
  1133. {
  1134. "url": "https://www.doctrine-project.org/sponsorship.html",
  1135. "type": "custom"
  1136. },
  1137. {
  1138. "url": "https://www.patreon.com/phpdoctrine",
  1139. "type": "patreon"
  1140. },
  1141. {
  1142. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1143. "type": "tidelift"
  1144. }
  1145. ],
  1146. "time": "2024-10-10T21:35:27+00:00"
  1147. },
  1148. {
  1149. "name": "doctrine/orm",
  1150. "version": "3.3.0",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/doctrine/orm.git",
  1154. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1159. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "composer-runtime-api": "^2",
  1164. "doctrine/collections": "^2.2",
  1165. "doctrine/dbal": "^3.8.2 || ^4",
  1166. "doctrine/deprecations": "^0.5.3 || ^1",
  1167. "doctrine/event-manager": "^1.2 || ^2",
  1168. "doctrine/inflector": "^1.4 || ^2.0",
  1169. "doctrine/instantiator": "^1.3 || ^2",
  1170. "doctrine/lexer": "^3",
  1171. "doctrine/persistence": "^3.3.1",
  1172. "ext-ctype": "*",
  1173. "php": "^8.1",
  1174. "psr/cache": "^1 || ^2 || ^3",
  1175. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1176. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1177. },
  1178. "require-dev": {
  1179. "doctrine/coding-standard": "^12.0",
  1180. "phpbench/phpbench": "^1.0",
  1181. "phpdocumentor/guides-cli": "^1.4",
  1182. "phpstan/extension-installer": "^1.4",
  1183. "phpstan/phpstan": "1.12.6",
  1184. "phpstan/phpstan-deprecation-rules": "^1.2",
  1185. "phpunit/phpunit": "^10.4.0",
  1186. "psr/log": "^1 || ^2 || ^3",
  1187. "squizlabs/php_codesniffer": "3.7.2",
  1188. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1189. "vimeo/psalm": "5.24.0"
  1190. },
  1191. "suggest": {
  1192. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1193. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1194. },
  1195. "type": "library",
  1196. "autoload": {
  1197. "psr-4": {
  1198. "Doctrine\\ORM\\": "src"
  1199. }
  1200. },
  1201. "notification-url": "https://packagist.org/downloads/",
  1202. "license": [
  1203. "MIT"
  1204. ],
  1205. "authors": [
  1206. {
  1207. "name": "Guilherme Blanco",
  1208. "email": "guilhermeblanco@gmail.com"
  1209. },
  1210. {
  1211. "name": "Roman Borschel",
  1212. "email": "roman@code-factory.org"
  1213. },
  1214. {
  1215. "name": "Benjamin Eberlei",
  1216. "email": "kontakt@beberlei.de"
  1217. },
  1218. {
  1219. "name": "Jonathan Wage",
  1220. "email": "jonwage@gmail.com"
  1221. },
  1222. {
  1223. "name": "Marco Pivetta",
  1224. "email": "ocramius@gmail.com"
  1225. }
  1226. ],
  1227. "description": "Object-Relational-Mapper for PHP",
  1228. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1229. "keywords": [
  1230. "database",
  1231. "orm"
  1232. ],
  1233. "support": {
  1234. "issues": "https://github.com/doctrine/orm/issues",
  1235. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1236. },
  1237. "time": "2024-10-12T20:07:18+00:00"
  1238. },
  1239. {
  1240. "name": "doctrine/persistence",
  1241. "version": "3.3.3",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/doctrine/persistence.git",
  1245. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1250. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1251. "shasum": ""
  1252. },
  1253. "require": {
  1254. "doctrine/event-manager": "^1 || ^2",
  1255. "php": "^7.2 || ^8.0",
  1256. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1257. },
  1258. "conflict": {
  1259. "doctrine/common": "<2.10"
  1260. },
  1261. "require-dev": {
  1262. "doctrine/coding-standard": "^12",
  1263. "doctrine/common": "^3.0",
  1264. "phpstan/phpstan": "1.11.1",
  1265. "phpstan/phpstan-phpunit": "^1",
  1266. "phpstan/phpstan-strict-rules": "^1.1",
  1267. "phpunit/phpunit": "^8.5 || ^9.5",
  1268. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1269. "vimeo/psalm": "4.30.0 || 5.24.0"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Doctrine\\Persistence\\": "src/Persistence"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Guilherme Blanco",
  1284. "email": "guilhermeblanco@gmail.com"
  1285. },
  1286. {
  1287. "name": "Roman Borschel",
  1288. "email": "roman@code-factory.org"
  1289. },
  1290. {
  1291. "name": "Benjamin Eberlei",
  1292. "email": "kontakt@beberlei.de"
  1293. },
  1294. {
  1295. "name": "Jonathan Wage",
  1296. "email": "jonwage@gmail.com"
  1297. },
  1298. {
  1299. "name": "Johannes Schmitt",
  1300. "email": "schmittjoh@gmail.com"
  1301. },
  1302. {
  1303. "name": "Marco Pivetta",
  1304. "email": "ocramius@gmail.com"
  1305. }
  1306. ],
  1307. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1308. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1309. "keywords": [
  1310. "mapper",
  1311. "object",
  1312. "odm",
  1313. "orm",
  1314. "persistence"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/doctrine/persistence/issues",
  1318. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://www.doctrine-project.org/sponsorship.html",
  1323. "type": "custom"
  1324. },
  1325. {
  1326. "url": "https://www.patreon.com/phpdoctrine",
  1327. "type": "patreon"
  1328. },
  1329. {
  1330. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1331. "type": "tidelift"
  1332. }
  1333. ],
  1334. "time": "2024-06-20T10:14:30+00:00"
  1335. },
  1336. {
  1337. "name": "doctrine/sql-formatter",
  1338. "version": "1.5.1",
  1339. "source": {
  1340. "type": "git",
  1341. "url": "https://github.com/doctrine/sql-formatter.git",
  1342. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1343. },
  1344. "dist": {
  1345. "type": "zip",
  1346. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1347. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1348. "shasum": ""
  1349. },
  1350. "require": {
  1351. "php": "^8.1"
  1352. },
  1353. "require-dev": {
  1354. "doctrine/coding-standard": "^12",
  1355. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1356. "phpstan/phpstan": "^1.10",
  1357. "phpunit/phpunit": "^10.5",
  1358. "vimeo/psalm": "^5.24"
  1359. },
  1360. "bin": [
  1361. "bin/sql-formatter"
  1362. ],
  1363. "type": "library",
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Doctrine\\SqlFormatter\\": "src"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Jeremy Dorn",
  1376. "email": "jeremy@jeremydorn.com",
  1377. "homepage": "https://jeremydorn.com/"
  1378. }
  1379. ],
  1380. "description": "a PHP SQL highlighting library",
  1381. "homepage": "https://github.com/doctrine/sql-formatter/",
  1382. "keywords": [
  1383. "highlight",
  1384. "sql"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1388. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1389. },
  1390. "time": "2024-10-21T18:21:57+00:00"
  1391. },
  1392. {
  1393. "name": "egulias/email-validator",
  1394. "version": "4.0.2",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/egulias/EmailValidator.git",
  1398. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1403. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "doctrine/lexer": "^2.0 || ^3.0",
  1408. "php": ">=8.1",
  1409. "symfony/polyfill-intl-idn": "^1.26"
  1410. },
  1411. "require-dev": {
  1412. "phpunit/phpunit": "^10.2",
  1413. "vimeo/psalm": "^5.12"
  1414. },
  1415. "suggest": {
  1416. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1417. },
  1418. "type": "library",
  1419. "extra": {
  1420. "branch-alias": {
  1421. "dev-master": "4.0.x-dev"
  1422. }
  1423. },
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Egulias\\EmailValidator\\": "src"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Eduardo Gulias Davis"
  1436. }
  1437. ],
  1438. "description": "A library for validating emails against several RFCs",
  1439. "homepage": "https://github.com/egulias/EmailValidator",
  1440. "keywords": [
  1441. "email",
  1442. "emailvalidation",
  1443. "emailvalidator",
  1444. "validation",
  1445. "validator"
  1446. ],
  1447. "support": {
  1448. "issues": "https://github.com/egulias/EmailValidator/issues",
  1449. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1450. },
  1451. "funding": [
  1452. {
  1453. "url": "https://github.com/egulias",
  1454. "type": "github"
  1455. }
  1456. ],
  1457. "time": "2023-10-06T06:47:41+00:00"
  1458. },
  1459. {
  1460. "name": "friendsofsymfony/ckeditor-bundle",
  1461. "version": "2.5.0",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle.git",
  1465. "reference": "9d4cd4f2db4d800164b9c3051e4bfdee21acb27f"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSCKEditorBundle/zipball/9d4cd4f2db4d800164b9c3051e4bfdee21acb27f",
  1470. "reference": "9d4cd4f2db4d800164b9c3051e4bfdee21acb27f",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "ext-json": "*",
  1475. "ext-zip": "*",
  1476. "php": "^8.0",
  1477. "symfony/asset": "^5.4 || ^6.0 || ^7.0",
  1478. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  1479. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  1480. "symfony/expression-language": "^5.4 || ^6.0 || ^7.0",
  1481. "symfony/form": "^5.4 || ^6.0 || ^7.0",
  1482. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  1483. "symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
  1484. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  1485. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  1486. "symfony/property-access": "^5.4 || ^6.0 || ^7.0",
  1487. "symfony/routing": "^5.4 || ^6.0 || ^7.0",
  1488. "symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
  1489. "twig/twig": "^2.4 || ^3.0"
  1490. },
  1491. "conflict": {
  1492. "sebastian/environment": "<1.3.4",
  1493. "sebastian/exporter": "<2.0.0"
  1494. },
  1495. "require-dev": {
  1496. "friendsofphp/php-cs-fixer": "^3.41",
  1497. "matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
  1498. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1499. "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
  1500. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1501. },
  1502. "suggest": {
  1503. "egeloen/form-extra-bundle": "Allows to load CKEditor asynchronously"
  1504. },
  1505. "type": "symfony-bundle",
  1506. "extra": {
  1507. "branch-alias": {
  1508. "dev-master": "3.x-dev"
  1509. }
  1510. },
  1511. "autoload": {
  1512. "psr-4": {
  1513. "FOS\\CKEditorBundle\\": "src/"
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "MIT"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "Eric GELOEN",
  1523. "email": "geloen.eric@gmail.com"
  1524. },
  1525. {
  1526. "name": "FriendsOfSymfony Community",
  1527. "homepage": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/graphs/contributors"
  1528. }
  1529. ],
  1530. "description": "Provides a CKEditor integration for your Symfony project.",
  1531. "keywords": [
  1532. "CKEditor"
  1533. ],
  1534. "support": {
  1535. "issues": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/issues",
  1536. "source": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/tree/2.5.0"
  1537. },
  1538. "time": "2024-01-23T15:35:55+00:00"
  1539. },
  1540. {
  1541. "name": "league/commonmark",
  1542. "version": "2.5.3",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/thephpleague/commonmark.git",
  1546. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1551. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1552. "shasum": ""
  1553. },
  1554. "require": {
  1555. "ext-mbstring": "*",
  1556. "league/config": "^1.1.1",
  1557. "php": "^7.4 || ^8.0",
  1558. "psr/event-dispatcher": "^1.0",
  1559. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1560. "symfony/polyfill-php80": "^1.16"
  1561. },
  1562. "require-dev": {
  1563. "cebe/markdown": "^1.0",
  1564. "commonmark/cmark": "0.31.1",
  1565. "commonmark/commonmark.js": "0.31.1",
  1566. "composer/package-versions-deprecated": "^1.8",
  1567. "embed/embed": "^4.4",
  1568. "erusev/parsedown": "^1.0",
  1569. "ext-json": "*",
  1570. "github/gfm": "0.29.0",
  1571. "michelf/php-markdown": "^1.4 || ^2.0",
  1572. "nyholm/psr7": "^1.5",
  1573. "phpstan/phpstan": "^1.8.2",
  1574. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1575. "scrutinizer/ocular": "^1.8.1",
  1576. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1577. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1578. "unleashedtech/php-coding-standard": "^3.1.1",
  1579. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1580. },
  1581. "suggest": {
  1582. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-main": "2.6-dev"
  1588. }
  1589. },
  1590. "autoload": {
  1591. "psr-4": {
  1592. "League\\CommonMark\\": "src"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "BSD-3-Clause"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Colin O'Dell",
  1602. "email": "colinodell@gmail.com",
  1603. "homepage": "https://www.colinodell.com",
  1604. "role": "Lead Developer"
  1605. }
  1606. ],
  1607. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1608. "homepage": "https://commonmark.thephpleague.com",
  1609. "keywords": [
  1610. "commonmark",
  1611. "flavored",
  1612. "gfm",
  1613. "github",
  1614. "github-flavored",
  1615. "markdown",
  1616. "md",
  1617. "parser"
  1618. ],
  1619. "support": {
  1620. "docs": "https://commonmark.thephpleague.com/",
  1621. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1622. "issues": "https://github.com/thephpleague/commonmark/issues",
  1623. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1624. "source": "https://github.com/thephpleague/commonmark"
  1625. },
  1626. "funding": [
  1627. {
  1628. "url": "https://www.colinodell.com/sponsor",
  1629. "type": "custom"
  1630. },
  1631. {
  1632. "url": "https://www.paypal.me/colinpodell/10.00",
  1633. "type": "custom"
  1634. },
  1635. {
  1636. "url": "https://github.com/colinodell",
  1637. "type": "github"
  1638. },
  1639. {
  1640. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1641. "type": "tidelift"
  1642. }
  1643. ],
  1644. "time": "2024-08-16T11:46:16+00:00"
  1645. },
  1646. {
  1647. "name": "league/config",
  1648. "version": "v1.2.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/thephpleague/config.git",
  1652. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1657. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "dflydev/dot-access-data": "^3.0.1",
  1662. "nette/schema": "^1.2",
  1663. "php": "^7.4 || ^8.0"
  1664. },
  1665. "require-dev": {
  1666. "phpstan/phpstan": "^1.8.2",
  1667. "phpunit/phpunit": "^9.5.5",
  1668. "scrutinizer/ocular": "^1.8.1",
  1669. "unleashedtech/php-coding-standard": "^3.1",
  1670. "vimeo/psalm": "^4.7.3"
  1671. },
  1672. "type": "library",
  1673. "extra": {
  1674. "branch-alias": {
  1675. "dev-main": "1.2-dev"
  1676. }
  1677. },
  1678. "autoload": {
  1679. "psr-4": {
  1680. "League\\Config\\": "src"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "BSD-3-Clause"
  1686. ],
  1687. "authors": [
  1688. {
  1689. "name": "Colin O'Dell",
  1690. "email": "colinodell@gmail.com",
  1691. "homepage": "https://www.colinodell.com",
  1692. "role": "Lead Developer"
  1693. }
  1694. ],
  1695. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1696. "homepage": "https://config.thephpleague.com",
  1697. "keywords": [
  1698. "array",
  1699. "config",
  1700. "configuration",
  1701. "dot",
  1702. "dot-access",
  1703. "nested",
  1704. "schema"
  1705. ],
  1706. "support": {
  1707. "docs": "https://config.thephpleague.com/",
  1708. "issues": "https://github.com/thephpleague/config/issues",
  1709. "rss": "https://github.com/thephpleague/config/releases.atom",
  1710. "source": "https://github.com/thephpleague/config"
  1711. },
  1712. "funding": [
  1713. {
  1714. "url": "https://www.colinodell.com/sponsor",
  1715. "type": "custom"
  1716. },
  1717. {
  1718. "url": "https://www.paypal.me/colinpodell/10.00",
  1719. "type": "custom"
  1720. },
  1721. {
  1722. "url": "https://github.com/colinodell",
  1723. "type": "github"
  1724. }
  1725. ],
  1726. "time": "2022-12-11T20:36:23+00:00"
  1727. },
  1728. {
  1729. "name": "monolog/monolog",
  1730. "version": "3.7.0",
  1731. "source": {
  1732. "type": "git",
  1733. "url": "https://github.com/Seldaek/monolog.git",
  1734. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  1735. },
  1736. "dist": {
  1737. "type": "zip",
  1738. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1739. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1740. "shasum": ""
  1741. },
  1742. "require": {
  1743. "php": ">=8.1",
  1744. "psr/log": "^2.0 || ^3.0"
  1745. },
  1746. "provide": {
  1747. "psr/log-implementation": "3.0.0"
  1748. },
  1749. "require-dev": {
  1750. "aws/aws-sdk-php": "^3.0",
  1751. "doctrine/couchdb": "~1.0@dev",
  1752. "elasticsearch/elasticsearch": "^7 || ^8",
  1753. "ext-json": "*",
  1754. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1755. "guzzlehttp/guzzle": "^7.4.5",
  1756. "guzzlehttp/psr7": "^2.2",
  1757. "mongodb/mongodb": "^1.8",
  1758. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1759. "phpstan/phpstan": "^1.9",
  1760. "phpstan/phpstan-deprecation-rules": "^1.0",
  1761. "phpstan/phpstan-strict-rules": "^1.4",
  1762. "phpunit/phpunit": "^10.5.17",
  1763. "predis/predis": "^1.1 || ^2",
  1764. "ruflin/elastica": "^7",
  1765. "symfony/mailer": "^5.4 || ^6",
  1766. "symfony/mime": "^5.4 || ^6"
  1767. },
  1768. "suggest": {
  1769. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1770. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1771. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1772. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1773. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1774. "ext-mbstring": "Allow to work properly with unicode symbols",
  1775. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1776. "ext-openssl": "Required to send log messages using SSL",
  1777. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1778. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1779. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1780. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1781. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1782. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1783. },
  1784. "type": "library",
  1785. "extra": {
  1786. "branch-alias": {
  1787. "dev-main": "3.x-dev"
  1788. }
  1789. },
  1790. "autoload": {
  1791. "psr-4": {
  1792. "Monolog\\": "src/Monolog"
  1793. }
  1794. },
  1795. "notification-url": "https://packagist.org/downloads/",
  1796. "license": [
  1797. "MIT"
  1798. ],
  1799. "authors": [
  1800. {
  1801. "name": "Jordi Boggiano",
  1802. "email": "j.boggiano@seld.be",
  1803. "homepage": "https://seld.be"
  1804. }
  1805. ],
  1806. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1807. "homepage": "https://github.com/Seldaek/monolog",
  1808. "keywords": [
  1809. "log",
  1810. "logging",
  1811. "psr-3"
  1812. ],
  1813. "support": {
  1814. "issues": "https://github.com/Seldaek/monolog/issues",
  1815. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  1816. },
  1817. "funding": [
  1818. {
  1819. "url": "https://github.com/Seldaek",
  1820. "type": "github"
  1821. },
  1822. {
  1823. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1824. "type": "tidelift"
  1825. }
  1826. ],
  1827. "time": "2024-06-28T09:40:51+00:00"
  1828. },
  1829. {
  1830. "name": "nette/schema",
  1831. "version": "v1.3.2",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/nette/schema.git",
  1835. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  1840. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "nette/utils": "^4.0",
  1845. "php": "8.1 - 8.4"
  1846. },
  1847. "require-dev": {
  1848. "nette/tester": "^2.5.2",
  1849. "phpstan/phpstan-nette": "^1.0",
  1850. "tracy/tracy": "^2.8"
  1851. },
  1852. "type": "library",
  1853. "extra": {
  1854. "branch-alias": {
  1855. "dev-master": "1.3-dev"
  1856. }
  1857. },
  1858. "autoload": {
  1859. "classmap": [
  1860. "src/"
  1861. ]
  1862. },
  1863. "notification-url": "https://packagist.org/downloads/",
  1864. "license": [
  1865. "BSD-3-Clause",
  1866. "GPL-2.0-only",
  1867. "GPL-3.0-only"
  1868. ],
  1869. "authors": [
  1870. {
  1871. "name": "David Grudl",
  1872. "homepage": "https://davidgrudl.com"
  1873. },
  1874. {
  1875. "name": "Nette Community",
  1876. "homepage": "https://nette.org/contributors"
  1877. }
  1878. ],
  1879. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1880. "homepage": "https://nette.org",
  1881. "keywords": [
  1882. "config",
  1883. "nette"
  1884. ],
  1885. "support": {
  1886. "issues": "https://github.com/nette/schema/issues",
  1887. "source": "https://github.com/nette/schema/tree/v1.3.2"
  1888. },
  1889. "time": "2024-10-06T23:10:23+00:00"
  1890. },
  1891. {
  1892. "name": "nette/utils",
  1893. "version": "v4.0.5",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/nette/utils.git",
  1897. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  1902. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "php": "8.0 - 8.4"
  1907. },
  1908. "conflict": {
  1909. "nette/finder": "<3",
  1910. "nette/schema": "<1.2.2"
  1911. },
  1912. "require-dev": {
  1913. "jetbrains/phpstorm-attributes": "dev-master",
  1914. "nette/tester": "^2.5",
  1915. "phpstan/phpstan": "^1.0",
  1916. "tracy/tracy": "^2.9"
  1917. },
  1918. "suggest": {
  1919. "ext-gd": "to use Image",
  1920. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1921. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1922. "ext-json": "to use Nette\\Utils\\Json",
  1923. "ext-mbstring": "to use Strings::lower() etc...",
  1924. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  1925. },
  1926. "type": "library",
  1927. "extra": {
  1928. "branch-alias": {
  1929. "dev-master": "4.0-dev"
  1930. }
  1931. },
  1932. "autoload": {
  1933. "classmap": [
  1934. "src/"
  1935. ]
  1936. },
  1937. "notification-url": "https://packagist.org/downloads/",
  1938. "license": [
  1939. "BSD-3-Clause",
  1940. "GPL-2.0-only",
  1941. "GPL-3.0-only"
  1942. ],
  1943. "authors": [
  1944. {
  1945. "name": "David Grudl",
  1946. "homepage": "https://davidgrudl.com"
  1947. },
  1948. {
  1949. "name": "Nette Community",
  1950. "homepage": "https://nette.org/contributors"
  1951. }
  1952. ],
  1953. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1954. "homepage": "https://nette.org",
  1955. "keywords": [
  1956. "array",
  1957. "core",
  1958. "datetime",
  1959. "images",
  1960. "json",
  1961. "nette",
  1962. "paginator",
  1963. "password",
  1964. "slugify",
  1965. "string",
  1966. "unicode",
  1967. "utf-8",
  1968. "utility",
  1969. "validation"
  1970. ],
  1971. "support": {
  1972. "issues": "https://github.com/nette/utils/issues",
  1973. "source": "https://github.com/nette/utils/tree/v4.0.5"
  1974. },
  1975. "time": "2024-08-07T15:39:19+00:00"
  1976. },
  1977. {
  1978. "name": "phpdocumentor/reflection-common",
  1979. "version": "2.2.0",
  1980. "source": {
  1981. "type": "git",
  1982. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1983. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1984. },
  1985. "dist": {
  1986. "type": "zip",
  1987. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1988. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1989. "shasum": ""
  1990. },
  1991. "require": {
  1992. "php": "^7.2 || ^8.0"
  1993. },
  1994. "type": "library",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-2.x": "2.x-dev"
  1998. }
  1999. },
  2000. "autoload": {
  2001. "psr-4": {
  2002. "phpDocumentor\\Reflection\\": "src/"
  2003. }
  2004. },
  2005. "notification-url": "https://packagist.org/downloads/",
  2006. "license": [
  2007. "MIT"
  2008. ],
  2009. "authors": [
  2010. {
  2011. "name": "Jaap van Otterdijk",
  2012. "email": "opensource@ijaap.nl"
  2013. }
  2014. ],
  2015. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2016. "homepage": "http://www.phpdoc.org",
  2017. "keywords": [
  2018. "FQSEN",
  2019. "phpDocumentor",
  2020. "phpdoc",
  2021. "reflection",
  2022. "static analysis"
  2023. ],
  2024. "support": {
  2025. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2026. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2027. },
  2028. "time": "2020-06-27T09:03:43+00:00"
  2029. },
  2030. {
  2031. "name": "phpdocumentor/reflection-docblock",
  2032. "version": "5.4.1",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2036. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2041. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2042. "shasum": ""
  2043. },
  2044. "require": {
  2045. "doctrine/deprecations": "^1.1",
  2046. "ext-filter": "*",
  2047. "php": "^7.4 || ^8.0",
  2048. "phpdocumentor/reflection-common": "^2.2",
  2049. "phpdocumentor/type-resolver": "^1.7",
  2050. "phpstan/phpdoc-parser": "^1.7",
  2051. "webmozart/assert": "^1.9.1"
  2052. },
  2053. "require-dev": {
  2054. "mockery/mockery": "~1.3.5",
  2055. "phpstan/extension-installer": "^1.1",
  2056. "phpstan/phpstan": "^1.8",
  2057. "phpstan/phpstan-mockery": "^1.1",
  2058. "phpstan/phpstan-webmozart-assert": "^1.2",
  2059. "phpunit/phpunit": "^9.5",
  2060. "vimeo/psalm": "^5.13"
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "5.x-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "phpDocumentor\\Reflection\\": "src"
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Mike van Riel",
  2080. "email": "me@mikevanriel.com"
  2081. },
  2082. {
  2083. "name": "Jaap van Otterdijk",
  2084. "email": "opensource@ijaap.nl"
  2085. }
  2086. ],
  2087. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2088. "support": {
  2089. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2090. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2091. },
  2092. "time": "2024-05-21T05:55:05+00:00"
  2093. },
  2094. {
  2095. "name": "phpdocumentor/type-resolver",
  2096. "version": "1.8.2",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2100. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2105. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "doctrine/deprecations": "^1.0",
  2110. "php": "^7.3 || ^8.0",
  2111. "phpdocumentor/reflection-common": "^2.0",
  2112. "phpstan/phpdoc-parser": "^1.13"
  2113. },
  2114. "require-dev": {
  2115. "ext-tokenizer": "*",
  2116. "phpbench/phpbench": "^1.2",
  2117. "phpstan/extension-installer": "^1.1",
  2118. "phpstan/phpstan": "^1.8",
  2119. "phpstan/phpstan-phpunit": "^1.1",
  2120. "phpunit/phpunit": "^9.5",
  2121. "rector/rector": "^0.13.9",
  2122. "vimeo/psalm": "^4.25"
  2123. },
  2124. "type": "library",
  2125. "extra": {
  2126. "branch-alias": {
  2127. "dev-1.x": "1.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "phpDocumentor\\Reflection\\": "src"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "MIT"
  2138. ],
  2139. "authors": [
  2140. {
  2141. "name": "Mike van Riel",
  2142. "email": "me@mikevanriel.com"
  2143. }
  2144. ],
  2145. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2146. "support": {
  2147. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2148. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2149. },
  2150. "time": "2024-02-23T11:10:43+00:00"
  2151. },
  2152. {
  2153. "name": "phpstan/phpdoc-parser",
  2154. "version": "1.33.0",
  2155. "source": {
  2156. "type": "git",
  2157. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2158. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2159. },
  2160. "dist": {
  2161. "type": "zip",
  2162. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2163. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2164. "shasum": ""
  2165. },
  2166. "require": {
  2167. "php": "^7.2 || ^8.0"
  2168. },
  2169. "require-dev": {
  2170. "doctrine/annotations": "^2.0",
  2171. "nikic/php-parser": "^4.15",
  2172. "php-parallel-lint/php-parallel-lint": "^1.2",
  2173. "phpstan/extension-installer": "^1.0",
  2174. "phpstan/phpstan": "^1.5",
  2175. "phpstan/phpstan-phpunit": "^1.1",
  2176. "phpstan/phpstan-strict-rules": "^1.0",
  2177. "phpunit/phpunit": "^9.5",
  2178. "symfony/process": "^5.2"
  2179. },
  2180. "type": "library",
  2181. "autoload": {
  2182. "psr-4": {
  2183. "PHPStan\\PhpDocParser\\": [
  2184. "src/"
  2185. ]
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2193. "support": {
  2194. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2195. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2196. },
  2197. "time": "2024-10-13T11:25:22+00:00"
  2198. },
  2199. {
  2200. "name": "psr/cache",
  2201. "version": "3.0.0",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/php-fig/cache.git",
  2205. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2210. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2211. "shasum": ""
  2212. },
  2213. "require": {
  2214. "php": ">=8.0.0"
  2215. },
  2216. "type": "library",
  2217. "extra": {
  2218. "branch-alias": {
  2219. "dev-master": "1.0.x-dev"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "Psr\\Cache\\": "src/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "PHP-FIG",
  2234. "homepage": "https://www.php-fig.org/"
  2235. }
  2236. ],
  2237. "description": "Common interface for caching libraries",
  2238. "keywords": [
  2239. "cache",
  2240. "psr",
  2241. "psr-6"
  2242. ],
  2243. "support": {
  2244. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2245. },
  2246. "time": "2021-02-03T23:26:27+00:00"
  2247. },
  2248. {
  2249. "name": "psr/clock",
  2250. "version": "1.0.0",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/php-fig/clock.git",
  2254. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2259. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "php": "^7.0 || ^8.0"
  2264. },
  2265. "type": "library",
  2266. "autoload": {
  2267. "psr-4": {
  2268. "Psr\\Clock\\": "src/"
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "PHP-FIG",
  2278. "homepage": "https://www.php-fig.org/"
  2279. }
  2280. ],
  2281. "description": "Common interface for reading the clock.",
  2282. "homepage": "https://github.com/php-fig/clock",
  2283. "keywords": [
  2284. "clock",
  2285. "now",
  2286. "psr",
  2287. "psr-20",
  2288. "time"
  2289. ],
  2290. "support": {
  2291. "issues": "https://github.com/php-fig/clock/issues",
  2292. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2293. },
  2294. "time": "2022-11-25T14:36:26+00:00"
  2295. },
  2296. {
  2297. "name": "psr/container",
  2298. "version": "2.0.2",
  2299. "source": {
  2300. "type": "git",
  2301. "url": "https://github.com/php-fig/container.git",
  2302. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2303. },
  2304. "dist": {
  2305. "type": "zip",
  2306. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2307. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2308. "shasum": ""
  2309. },
  2310. "require": {
  2311. "php": ">=7.4.0"
  2312. },
  2313. "type": "library",
  2314. "extra": {
  2315. "branch-alias": {
  2316. "dev-master": "2.0.x-dev"
  2317. }
  2318. },
  2319. "autoload": {
  2320. "psr-4": {
  2321. "Psr\\Container\\": "src/"
  2322. }
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "MIT"
  2327. ],
  2328. "authors": [
  2329. {
  2330. "name": "PHP-FIG",
  2331. "homepage": "https://www.php-fig.org/"
  2332. }
  2333. ],
  2334. "description": "Common Container Interface (PHP FIG PSR-11)",
  2335. "homepage": "https://github.com/php-fig/container",
  2336. "keywords": [
  2337. "PSR-11",
  2338. "container",
  2339. "container-interface",
  2340. "container-interop",
  2341. "psr"
  2342. ],
  2343. "support": {
  2344. "issues": "https://github.com/php-fig/container/issues",
  2345. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2346. },
  2347. "time": "2021-11-05T16:47:00+00:00"
  2348. },
  2349. {
  2350. "name": "psr/event-dispatcher",
  2351. "version": "1.0.0",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/php-fig/event-dispatcher.git",
  2355. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2360. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=7.2.0"
  2365. },
  2366. "type": "library",
  2367. "extra": {
  2368. "branch-alias": {
  2369. "dev-master": "1.0.x-dev"
  2370. }
  2371. },
  2372. "autoload": {
  2373. "psr-4": {
  2374. "Psr\\EventDispatcher\\": "src/"
  2375. }
  2376. },
  2377. "notification-url": "https://packagist.org/downloads/",
  2378. "license": [
  2379. "MIT"
  2380. ],
  2381. "authors": [
  2382. {
  2383. "name": "PHP-FIG",
  2384. "homepage": "http://www.php-fig.org/"
  2385. }
  2386. ],
  2387. "description": "Standard interfaces for event handling.",
  2388. "keywords": [
  2389. "events",
  2390. "psr",
  2391. "psr-14"
  2392. ],
  2393. "support": {
  2394. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2395. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2396. },
  2397. "time": "2019-01-08T18:20:26+00:00"
  2398. },
  2399. {
  2400. "name": "psr/link",
  2401. "version": "2.0.1",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/php-fig/link.git",
  2405. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2410. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": ">=8.0.0"
  2415. },
  2416. "suggest": {
  2417. "fig/link-util": "Provides some useful PSR-13 utilities"
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "2.0.x-dev"
  2423. }
  2424. },
  2425. "autoload": {
  2426. "psr-4": {
  2427. "Psr\\Link\\": "src/"
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "PHP-FIG",
  2437. "homepage": "http://www.php-fig.org/"
  2438. }
  2439. ],
  2440. "description": "Common interfaces for HTTP links",
  2441. "homepage": "https://github.com/php-fig/link",
  2442. "keywords": [
  2443. "http",
  2444. "http-link",
  2445. "link",
  2446. "psr",
  2447. "psr-13",
  2448. "rest"
  2449. ],
  2450. "support": {
  2451. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2452. },
  2453. "time": "2021-03-11T23:00:27+00:00"
  2454. },
  2455. {
  2456. "name": "psr/log",
  2457. "version": "3.0.2",
  2458. "source": {
  2459. "type": "git",
  2460. "url": "https://github.com/php-fig/log.git",
  2461. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2462. },
  2463. "dist": {
  2464. "type": "zip",
  2465. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2466. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2467. "shasum": ""
  2468. },
  2469. "require": {
  2470. "php": ">=8.0.0"
  2471. },
  2472. "type": "library",
  2473. "extra": {
  2474. "branch-alias": {
  2475. "dev-master": "3.x-dev"
  2476. }
  2477. },
  2478. "autoload": {
  2479. "psr-4": {
  2480. "Psr\\Log\\": "src"
  2481. }
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "MIT"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "PHP-FIG",
  2490. "homepage": "https://www.php-fig.org/"
  2491. }
  2492. ],
  2493. "description": "Common interface for logging libraries",
  2494. "homepage": "https://github.com/php-fig/log",
  2495. "keywords": [
  2496. "log",
  2497. "psr",
  2498. "psr-3"
  2499. ],
  2500. "support": {
  2501. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2502. },
  2503. "time": "2024-09-11T13:17:53+00:00"
  2504. },
  2505. {
  2506. "name": "symfony/apache-pack",
  2507. "version": "v1.0.1",
  2508. "source": {
  2509. "type": "git",
  2510. "url": "https://github.com/symfony/apache-pack.git",
  2511. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2512. },
  2513. "dist": {
  2514. "type": "zip",
  2515. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2516. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2517. "shasum": ""
  2518. },
  2519. "type": "symfony-pack",
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "MIT"
  2523. ],
  2524. "description": "A pack for Apache support in Symfony",
  2525. "support": {
  2526. "issues": "https://github.com/symfony/apache-pack/issues",
  2527. "source": "https://github.com/symfony/apache-pack/tree/master"
  2528. },
  2529. "time": "2017-12-12T01:46:35+00:00"
  2530. },
  2531. {
  2532. "name": "symfony/asset",
  2533. "version": "v7.1.1",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/symfony/asset.git",
  2537. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2542. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2543. "shasum": ""
  2544. },
  2545. "require": {
  2546. "php": ">=8.2"
  2547. },
  2548. "conflict": {
  2549. "symfony/http-foundation": "<6.4"
  2550. },
  2551. "require-dev": {
  2552. "symfony/http-client": "^6.4|^7.0",
  2553. "symfony/http-foundation": "^6.4|^7.0",
  2554. "symfony/http-kernel": "^6.4|^7.0"
  2555. },
  2556. "type": "library",
  2557. "autoload": {
  2558. "psr-4": {
  2559. "Symfony\\Component\\Asset\\": ""
  2560. },
  2561. "exclude-from-classmap": [
  2562. "/Tests/"
  2563. ]
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "Fabien Potencier",
  2572. "email": "fabien@symfony.com"
  2573. },
  2574. {
  2575. "name": "Symfony Community",
  2576. "homepage": "https://symfony.com/contributors"
  2577. }
  2578. ],
  2579. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2580. "homepage": "https://symfony.com",
  2581. "support": {
  2582. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2583. },
  2584. "funding": [
  2585. {
  2586. "url": "https://symfony.com/sponsor",
  2587. "type": "custom"
  2588. },
  2589. {
  2590. "url": "https://github.com/fabpot",
  2591. "type": "github"
  2592. },
  2593. {
  2594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2595. "type": "tidelift"
  2596. }
  2597. ],
  2598. "time": "2024-05-31T14:57:53+00:00"
  2599. },
  2600. {
  2601. "name": "symfony/asset-mapper",
  2602. "version": "v7.1.5",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/symfony/asset-mapper.git",
  2606. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2611. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "composer/semver": "^3.0",
  2616. "php": ">=8.2",
  2617. "symfony/deprecation-contracts": "^2.1|^3",
  2618. "symfony/filesystem": "^7.1",
  2619. "symfony/http-client": "^6.4|^7.0"
  2620. },
  2621. "conflict": {
  2622. "symfony/framework-bundle": "<6.4"
  2623. },
  2624. "require-dev": {
  2625. "symfony/asset": "^6.4|^7.0",
  2626. "symfony/browser-kit": "^6.4|^7.0",
  2627. "symfony/console": "^6.4|^7.0",
  2628. "symfony/event-dispatcher-contracts": "^3.0",
  2629. "symfony/finder": "^6.4|^7.0",
  2630. "symfony/framework-bundle": "^6.4|^7.0",
  2631. "symfony/http-foundation": "^6.4|^7.0",
  2632. "symfony/http-kernel": "^6.4|^7.0",
  2633. "symfony/web-link": "^6.4|^7.0"
  2634. },
  2635. "type": "library",
  2636. "autoload": {
  2637. "psr-4": {
  2638. "Symfony\\Component\\AssetMapper\\": ""
  2639. },
  2640. "exclude-from-classmap": [
  2641. "/Tests/"
  2642. ]
  2643. },
  2644. "notification-url": "https://packagist.org/downloads/",
  2645. "license": [
  2646. "MIT"
  2647. ],
  2648. "authors": [
  2649. {
  2650. "name": "Fabien Potencier",
  2651. "email": "fabien@symfony.com"
  2652. },
  2653. {
  2654. "name": "Symfony Community",
  2655. "homepage": "https://symfony.com/contributors"
  2656. }
  2657. ],
  2658. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2659. "homepage": "https://symfony.com",
  2660. "support": {
  2661. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  2662. },
  2663. "funding": [
  2664. {
  2665. "url": "https://symfony.com/sponsor",
  2666. "type": "custom"
  2667. },
  2668. {
  2669. "url": "https://github.com/fabpot",
  2670. "type": "github"
  2671. },
  2672. {
  2673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2674. "type": "tidelift"
  2675. }
  2676. ],
  2677. "time": "2024-09-19T08:57:32+00:00"
  2678. },
  2679. {
  2680. "name": "symfony/cache",
  2681. "version": "v7.1.5",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://github.com/symfony/cache.git",
  2685. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2690. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2691. "shasum": ""
  2692. },
  2693. "require": {
  2694. "php": ">=8.2",
  2695. "psr/cache": "^2.0|^3.0",
  2696. "psr/log": "^1.1|^2|^3",
  2697. "symfony/cache-contracts": "^2.5|^3",
  2698. "symfony/deprecation-contracts": "^2.5|^3.0",
  2699. "symfony/service-contracts": "^2.5|^3",
  2700. "symfony/var-exporter": "^6.4|^7.0"
  2701. },
  2702. "conflict": {
  2703. "doctrine/dbal": "<3.6",
  2704. "symfony/dependency-injection": "<6.4",
  2705. "symfony/http-kernel": "<6.4",
  2706. "symfony/var-dumper": "<6.4"
  2707. },
  2708. "provide": {
  2709. "psr/cache-implementation": "2.0|3.0",
  2710. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2711. "symfony/cache-implementation": "1.1|2.0|3.0"
  2712. },
  2713. "require-dev": {
  2714. "cache/integration-tests": "dev-master",
  2715. "doctrine/dbal": "^3.6|^4",
  2716. "predis/predis": "^1.1|^2.0",
  2717. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2718. "symfony/config": "^6.4|^7.0",
  2719. "symfony/dependency-injection": "^6.4|^7.0",
  2720. "symfony/filesystem": "^6.4|^7.0",
  2721. "symfony/http-kernel": "^6.4|^7.0",
  2722. "symfony/messenger": "^6.4|^7.0",
  2723. "symfony/var-dumper": "^6.4|^7.0"
  2724. },
  2725. "type": "library",
  2726. "autoload": {
  2727. "psr-4": {
  2728. "Symfony\\Component\\Cache\\": ""
  2729. },
  2730. "classmap": [
  2731. "Traits/ValueWrapper.php"
  2732. ],
  2733. "exclude-from-classmap": [
  2734. "/Tests/"
  2735. ]
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "Nicolas Grekas",
  2744. "email": "p@tchwork.com"
  2745. },
  2746. {
  2747. "name": "Symfony Community",
  2748. "homepage": "https://symfony.com/contributors"
  2749. }
  2750. ],
  2751. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2752. "homepage": "https://symfony.com",
  2753. "keywords": [
  2754. "caching",
  2755. "psr6"
  2756. ],
  2757. "support": {
  2758. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  2759. },
  2760. "funding": [
  2761. {
  2762. "url": "https://symfony.com/sponsor",
  2763. "type": "custom"
  2764. },
  2765. {
  2766. "url": "https://github.com/fabpot",
  2767. "type": "github"
  2768. },
  2769. {
  2770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2771. "type": "tidelift"
  2772. }
  2773. ],
  2774. "time": "2024-09-17T09:16:35+00:00"
  2775. },
  2776. {
  2777. "name": "symfony/cache-contracts",
  2778. "version": "v3.5.0",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/symfony/cache-contracts.git",
  2782. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2787. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "php": ">=8.1",
  2792. "psr/cache": "^3.0"
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "branch-alias": {
  2797. "dev-main": "3.5-dev"
  2798. },
  2799. "thanks": {
  2800. "name": "symfony/contracts",
  2801. "url": "https://github.com/symfony/contracts"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Symfony\\Contracts\\Cache\\": ""
  2807. }
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "Nicolas Grekas",
  2816. "email": "p@tchwork.com"
  2817. },
  2818. {
  2819. "name": "Symfony Community",
  2820. "homepage": "https://symfony.com/contributors"
  2821. }
  2822. ],
  2823. "description": "Generic abstractions related to caching",
  2824. "homepage": "https://symfony.com",
  2825. "keywords": [
  2826. "abstractions",
  2827. "contracts",
  2828. "decoupling",
  2829. "interfaces",
  2830. "interoperability",
  2831. "standards"
  2832. ],
  2833. "support": {
  2834. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  2835. },
  2836. "funding": [
  2837. {
  2838. "url": "https://symfony.com/sponsor",
  2839. "type": "custom"
  2840. },
  2841. {
  2842. "url": "https://github.com/fabpot",
  2843. "type": "github"
  2844. },
  2845. {
  2846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2847. "type": "tidelift"
  2848. }
  2849. ],
  2850. "time": "2024-04-18T09:32:20+00:00"
  2851. },
  2852. {
  2853. "name": "symfony/clock",
  2854. "version": "v7.1.1",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://github.com/symfony/clock.git",
  2858. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2863. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2864. "shasum": ""
  2865. },
  2866. "require": {
  2867. "php": ">=8.2",
  2868. "psr/clock": "^1.0",
  2869. "symfony/polyfill-php83": "^1.28"
  2870. },
  2871. "provide": {
  2872. "psr/clock-implementation": "1.0"
  2873. },
  2874. "type": "library",
  2875. "autoload": {
  2876. "files": [
  2877. "Resources/now.php"
  2878. ],
  2879. "psr-4": {
  2880. "Symfony\\Component\\Clock\\": ""
  2881. },
  2882. "exclude-from-classmap": [
  2883. "/Tests/"
  2884. ]
  2885. },
  2886. "notification-url": "https://packagist.org/downloads/",
  2887. "license": [
  2888. "MIT"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "Nicolas Grekas",
  2893. "email": "p@tchwork.com"
  2894. },
  2895. {
  2896. "name": "Symfony Community",
  2897. "homepage": "https://symfony.com/contributors"
  2898. }
  2899. ],
  2900. "description": "Decouples applications from the system clock",
  2901. "homepage": "https://symfony.com",
  2902. "keywords": [
  2903. "clock",
  2904. "psr20",
  2905. "time"
  2906. ],
  2907. "support": {
  2908. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2909. },
  2910. "funding": [
  2911. {
  2912. "url": "https://symfony.com/sponsor",
  2913. "type": "custom"
  2914. },
  2915. {
  2916. "url": "https://github.com/fabpot",
  2917. "type": "github"
  2918. },
  2919. {
  2920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2921. "type": "tidelift"
  2922. }
  2923. ],
  2924. "time": "2024-05-31T14:57:53+00:00"
  2925. },
  2926. {
  2927. "name": "symfony/config",
  2928. "version": "v7.1.1",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/symfony/config.git",
  2932. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2937. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "php": ">=8.2",
  2942. "symfony/deprecation-contracts": "^2.5|^3",
  2943. "symfony/filesystem": "^7.1",
  2944. "symfony/polyfill-ctype": "~1.8"
  2945. },
  2946. "conflict": {
  2947. "symfony/finder": "<6.4",
  2948. "symfony/service-contracts": "<2.5"
  2949. },
  2950. "require-dev": {
  2951. "symfony/event-dispatcher": "^6.4|^7.0",
  2952. "symfony/finder": "^6.4|^7.0",
  2953. "symfony/messenger": "^6.4|^7.0",
  2954. "symfony/service-contracts": "^2.5|^3",
  2955. "symfony/yaml": "^6.4|^7.0"
  2956. },
  2957. "type": "library",
  2958. "autoload": {
  2959. "psr-4": {
  2960. "Symfony\\Component\\Config\\": ""
  2961. },
  2962. "exclude-from-classmap": [
  2963. "/Tests/"
  2964. ]
  2965. },
  2966. "notification-url": "https://packagist.org/downloads/",
  2967. "license": [
  2968. "MIT"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Fabien Potencier",
  2973. "email": "fabien@symfony.com"
  2974. },
  2975. {
  2976. "name": "Symfony Community",
  2977. "homepage": "https://symfony.com/contributors"
  2978. }
  2979. ],
  2980. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2981. "homepage": "https://symfony.com",
  2982. "support": {
  2983. "source": "https://github.com/symfony/config/tree/v7.1.1"
  2984. },
  2985. "funding": [
  2986. {
  2987. "url": "https://symfony.com/sponsor",
  2988. "type": "custom"
  2989. },
  2990. {
  2991. "url": "https://github.com/fabpot",
  2992. "type": "github"
  2993. },
  2994. {
  2995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2996. "type": "tidelift"
  2997. }
  2998. ],
  2999. "time": "2024-05-31T14:57:53+00:00"
  3000. },
  3001. {
  3002. "name": "symfony/console",
  3003. "version": "v7.1.5",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://github.com/symfony/console.git",
  3007. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  3008. },
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3012. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3013. "shasum": ""
  3014. },
  3015. "require": {
  3016. "php": ">=8.2",
  3017. "symfony/polyfill-mbstring": "~1.0",
  3018. "symfony/service-contracts": "^2.5|^3",
  3019. "symfony/string": "^6.4|^7.0"
  3020. },
  3021. "conflict": {
  3022. "symfony/dependency-injection": "<6.4",
  3023. "symfony/dotenv": "<6.4",
  3024. "symfony/event-dispatcher": "<6.4",
  3025. "symfony/lock": "<6.4",
  3026. "symfony/process": "<6.4"
  3027. },
  3028. "provide": {
  3029. "psr/log-implementation": "1.0|2.0|3.0"
  3030. },
  3031. "require-dev": {
  3032. "psr/log": "^1|^2|^3",
  3033. "symfony/config": "^6.4|^7.0",
  3034. "symfony/dependency-injection": "^6.4|^7.0",
  3035. "symfony/event-dispatcher": "^6.4|^7.0",
  3036. "symfony/http-foundation": "^6.4|^7.0",
  3037. "symfony/http-kernel": "^6.4|^7.0",
  3038. "symfony/lock": "^6.4|^7.0",
  3039. "symfony/messenger": "^6.4|^7.0",
  3040. "symfony/process": "^6.4|^7.0",
  3041. "symfony/stopwatch": "^6.4|^7.0",
  3042. "symfony/var-dumper": "^6.4|^7.0"
  3043. },
  3044. "type": "library",
  3045. "autoload": {
  3046. "psr-4": {
  3047. "Symfony\\Component\\Console\\": ""
  3048. },
  3049. "exclude-from-classmap": [
  3050. "/Tests/"
  3051. ]
  3052. },
  3053. "notification-url": "https://packagist.org/downloads/",
  3054. "license": [
  3055. "MIT"
  3056. ],
  3057. "authors": [
  3058. {
  3059. "name": "Fabien Potencier",
  3060. "email": "fabien@symfony.com"
  3061. },
  3062. {
  3063. "name": "Symfony Community",
  3064. "homepage": "https://symfony.com/contributors"
  3065. }
  3066. ],
  3067. "description": "Eases the creation of beautiful and testable command line interfaces",
  3068. "homepage": "https://symfony.com",
  3069. "keywords": [
  3070. "cli",
  3071. "command-line",
  3072. "console",
  3073. "terminal"
  3074. ],
  3075. "support": {
  3076. "source": "https://github.com/symfony/console/tree/v7.1.5"
  3077. },
  3078. "funding": [
  3079. {
  3080. "url": "https://symfony.com/sponsor",
  3081. "type": "custom"
  3082. },
  3083. {
  3084. "url": "https://github.com/fabpot",
  3085. "type": "github"
  3086. },
  3087. {
  3088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3089. "type": "tidelift"
  3090. }
  3091. ],
  3092. "time": "2024-09-20T08:28:38+00:00"
  3093. },
  3094. {
  3095. "name": "symfony/dependency-injection",
  3096. "version": "v7.1.5",
  3097. "source": {
  3098. "type": "git",
  3099. "url": "https://github.com/symfony/dependency-injection.git",
  3100. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  3101. },
  3102. "dist": {
  3103. "type": "zip",
  3104. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  3105. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  3106. "shasum": ""
  3107. },
  3108. "require": {
  3109. "php": ">=8.2",
  3110. "psr/container": "^1.1|^2.0",
  3111. "symfony/deprecation-contracts": "^2.5|^3",
  3112. "symfony/service-contracts": "^3.5",
  3113. "symfony/var-exporter": "^6.4|^7.0"
  3114. },
  3115. "conflict": {
  3116. "ext-psr": "<1.1|>=2",
  3117. "symfony/config": "<6.4",
  3118. "symfony/finder": "<6.4",
  3119. "symfony/yaml": "<6.4"
  3120. },
  3121. "provide": {
  3122. "psr/container-implementation": "1.1|2.0",
  3123. "symfony/service-implementation": "1.1|2.0|3.0"
  3124. },
  3125. "require-dev": {
  3126. "symfony/config": "^6.4|^7.0",
  3127. "symfony/expression-language": "^6.4|^7.0",
  3128. "symfony/yaml": "^6.4|^7.0"
  3129. },
  3130. "type": "library",
  3131. "autoload": {
  3132. "psr-4": {
  3133. "Symfony\\Component\\DependencyInjection\\": ""
  3134. },
  3135. "exclude-from-classmap": [
  3136. "/Tests/"
  3137. ]
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "Fabien Potencier",
  3146. "email": "fabien@symfony.com"
  3147. },
  3148. {
  3149. "name": "Symfony Community",
  3150. "homepage": "https://symfony.com/contributors"
  3151. }
  3152. ],
  3153. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3154. "homepage": "https://symfony.com",
  3155. "support": {
  3156. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  3157. },
  3158. "funding": [
  3159. {
  3160. "url": "https://symfony.com/sponsor",
  3161. "type": "custom"
  3162. },
  3163. {
  3164. "url": "https://github.com/fabpot",
  3165. "type": "github"
  3166. },
  3167. {
  3168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3169. "type": "tidelift"
  3170. }
  3171. ],
  3172. "time": "2024-09-20T08:28:38+00:00"
  3173. },
  3174. {
  3175. "name": "symfony/deprecation-contracts",
  3176. "version": "v3.5.0",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/symfony/deprecation-contracts.git",
  3180. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3185. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3186. "shasum": ""
  3187. },
  3188. "require": {
  3189. "php": ">=8.1"
  3190. },
  3191. "type": "library",
  3192. "extra": {
  3193. "branch-alias": {
  3194. "dev-main": "3.5-dev"
  3195. },
  3196. "thanks": {
  3197. "name": "symfony/contracts",
  3198. "url": "https://github.com/symfony/contracts"
  3199. }
  3200. },
  3201. "autoload": {
  3202. "files": [
  3203. "function.php"
  3204. ]
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "MIT"
  3209. ],
  3210. "authors": [
  3211. {
  3212. "name": "Nicolas Grekas",
  3213. "email": "p@tchwork.com"
  3214. },
  3215. {
  3216. "name": "Symfony Community",
  3217. "homepage": "https://symfony.com/contributors"
  3218. }
  3219. ],
  3220. "description": "A generic function and convention to trigger deprecation notices",
  3221. "homepage": "https://symfony.com",
  3222. "support": {
  3223. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3224. },
  3225. "funding": [
  3226. {
  3227. "url": "https://symfony.com/sponsor",
  3228. "type": "custom"
  3229. },
  3230. {
  3231. "url": "https://github.com/fabpot",
  3232. "type": "github"
  3233. },
  3234. {
  3235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3236. "type": "tidelift"
  3237. }
  3238. ],
  3239. "time": "2024-04-18T09:32:20+00:00"
  3240. },
  3241. {
  3242. "name": "symfony/doctrine-bridge",
  3243. "version": "v7.1.5",
  3244. "source": {
  3245. "type": "git",
  3246. "url": "https://github.com/symfony/doctrine-bridge.git",
  3247. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  3248. },
  3249. "dist": {
  3250. "type": "zip",
  3251. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  3252. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  3253. "shasum": ""
  3254. },
  3255. "require": {
  3256. "doctrine/event-manager": "^2",
  3257. "doctrine/persistence": "^3.1",
  3258. "php": ">=8.2",
  3259. "symfony/deprecation-contracts": "^2.5|^3",
  3260. "symfony/polyfill-ctype": "~1.8",
  3261. "symfony/polyfill-mbstring": "~1.0",
  3262. "symfony/service-contracts": "^2.5|^3"
  3263. },
  3264. "conflict": {
  3265. "doctrine/dbal": "<3.6",
  3266. "doctrine/lexer": "<1.1",
  3267. "doctrine/orm": "<2.15",
  3268. "symfony/cache": "<6.4",
  3269. "symfony/dependency-injection": "<6.4",
  3270. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3271. "symfony/http-foundation": "<6.4",
  3272. "symfony/http-kernel": "<6.4",
  3273. "symfony/lock": "<6.4",
  3274. "symfony/messenger": "<6.4",
  3275. "symfony/property-info": "<6.4",
  3276. "symfony/security-bundle": "<6.4",
  3277. "symfony/security-core": "<6.4",
  3278. "symfony/validator": "<6.4"
  3279. },
  3280. "require-dev": {
  3281. "doctrine/collections": "^1.0|^2.0",
  3282. "doctrine/data-fixtures": "^1.1",
  3283. "doctrine/dbal": "^3.6|^4",
  3284. "doctrine/orm": "^2.15|^3",
  3285. "psr/log": "^1|^2|^3",
  3286. "symfony/cache": "^6.4|^7.0",
  3287. "symfony/config": "^6.4|^7.0",
  3288. "symfony/dependency-injection": "^6.4|^7.0",
  3289. "symfony/doctrine-messenger": "^6.4|^7.0",
  3290. "symfony/expression-language": "^6.4|^7.0",
  3291. "symfony/form": "^6.4.6|^7.0.6",
  3292. "symfony/http-kernel": "^6.4|^7.0",
  3293. "symfony/lock": "^6.4|^7.0",
  3294. "symfony/messenger": "^6.4|^7.0",
  3295. "symfony/property-access": "^6.4|^7.0",
  3296. "symfony/property-info": "^6.4|^7.0",
  3297. "symfony/security-core": "^6.4|^7.0",
  3298. "symfony/stopwatch": "^6.4|^7.0",
  3299. "symfony/translation": "^6.4|^7.0",
  3300. "symfony/type-info": "^7.1",
  3301. "symfony/uid": "^6.4|^7.0",
  3302. "symfony/validator": "^6.4|^7.0",
  3303. "symfony/var-dumper": "^6.4|^7.0"
  3304. },
  3305. "type": "symfony-bridge",
  3306. "autoload": {
  3307. "psr-4": {
  3308. "Symfony\\Bridge\\Doctrine\\": ""
  3309. },
  3310. "exclude-from-classmap": [
  3311. "/Tests/"
  3312. ]
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Fabien Potencier",
  3321. "email": "fabien@symfony.com"
  3322. },
  3323. {
  3324. "name": "Symfony Community",
  3325. "homepage": "https://symfony.com/contributors"
  3326. }
  3327. ],
  3328. "description": "Provides integration for Doctrine with various Symfony components",
  3329. "homepage": "https://symfony.com",
  3330. "support": {
  3331. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  3332. },
  3333. "funding": [
  3334. {
  3335. "url": "https://symfony.com/sponsor",
  3336. "type": "custom"
  3337. },
  3338. {
  3339. "url": "https://github.com/fabpot",
  3340. "type": "github"
  3341. },
  3342. {
  3343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3344. "type": "tidelift"
  3345. }
  3346. ],
  3347. "time": "2024-09-08T12:32:26+00:00"
  3348. },
  3349. {
  3350. "name": "symfony/doctrine-messenger",
  3351. "version": "v7.1.5",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/symfony/doctrine-messenger.git",
  3355. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  3360. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "doctrine/dbal": "^3.6|^4",
  3365. "php": ">=8.2",
  3366. "symfony/messenger": "^6.4|^7.0",
  3367. "symfony/service-contracts": "^2.5|^3"
  3368. },
  3369. "conflict": {
  3370. "doctrine/persistence": "<1.3"
  3371. },
  3372. "require-dev": {
  3373. "doctrine/persistence": "^1.3|^2|^3",
  3374. "symfony/property-access": "^6.4|^7.0",
  3375. "symfony/serializer": "^6.4|^7.0"
  3376. },
  3377. "type": "symfony-messenger-bridge",
  3378. "autoload": {
  3379. "psr-4": {
  3380. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3381. },
  3382. "exclude-from-classmap": [
  3383. "/Tests/"
  3384. ]
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Fabien Potencier",
  3393. "email": "fabien@symfony.com"
  3394. },
  3395. {
  3396. "name": "Symfony Community",
  3397. "homepage": "https://symfony.com/contributors"
  3398. }
  3399. ],
  3400. "description": "Symfony Doctrine Messenger Bridge",
  3401. "homepage": "https://symfony.com",
  3402. "support": {
  3403. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  3404. },
  3405. "funding": [
  3406. {
  3407. "url": "https://symfony.com/sponsor",
  3408. "type": "custom"
  3409. },
  3410. {
  3411. "url": "https://github.com/fabpot",
  3412. "type": "github"
  3413. },
  3414. {
  3415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3416. "type": "tidelift"
  3417. }
  3418. ],
  3419. "time": "2024-09-20T08:28:38+00:00"
  3420. },
  3421. {
  3422. "name": "symfony/dotenv",
  3423. "version": "v7.1.5",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/symfony/dotenv.git",
  3427. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  3432. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "php": ">=8.2"
  3437. },
  3438. "conflict": {
  3439. "symfony/console": "<6.4",
  3440. "symfony/process": "<6.4"
  3441. },
  3442. "require-dev": {
  3443. "symfony/console": "^6.4|^7.0",
  3444. "symfony/process": "^6.4|^7.0"
  3445. },
  3446. "type": "library",
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Symfony\\Component\\Dotenv\\": ""
  3450. },
  3451. "exclude-from-classmap": [
  3452. "/Tests/"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Fabien Potencier",
  3462. "email": "fabien@symfony.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Registers environment variables from a .env file",
  3470. "homepage": "https://symfony.com",
  3471. "keywords": [
  3472. "dotenv",
  3473. "env",
  3474. "environment"
  3475. ],
  3476. "support": {
  3477. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  3478. },
  3479. "funding": [
  3480. {
  3481. "url": "https://symfony.com/sponsor",
  3482. "type": "custom"
  3483. },
  3484. {
  3485. "url": "https://github.com/fabpot",
  3486. "type": "github"
  3487. },
  3488. {
  3489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3490. "type": "tidelift"
  3491. }
  3492. ],
  3493. "time": "2024-09-17T09:16:35+00:00"
  3494. },
  3495. {
  3496. "name": "symfony/error-handler",
  3497. "version": "v7.1.3",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/symfony/error-handler.git",
  3501. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3506. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": ">=8.2",
  3511. "psr/log": "^1|^2|^3",
  3512. "symfony/var-dumper": "^6.4|^7.0"
  3513. },
  3514. "conflict": {
  3515. "symfony/deprecation-contracts": "<2.5",
  3516. "symfony/http-kernel": "<6.4"
  3517. },
  3518. "require-dev": {
  3519. "symfony/deprecation-contracts": "^2.5|^3",
  3520. "symfony/http-kernel": "^6.4|^7.0",
  3521. "symfony/serializer": "^6.4|^7.0"
  3522. },
  3523. "bin": [
  3524. "Resources/bin/patch-type-declarations"
  3525. ],
  3526. "type": "library",
  3527. "autoload": {
  3528. "psr-4": {
  3529. "Symfony\\Component\\ErrorHandler\\": ""
  3530. },
  3531. "exclude-from-classmap": [
  3532. "/Tests/"
  3533. ]
  3534. },
  3535. "notification-url": "https://packagist.org/downloads/",
  3536. "license": [
  3537. "MIT"
  3538. ],
  3539. "authors": [
  3540. {
  3541. "name": "Fabien Potencier",
  3542. "email": "fabien@symfony.com"
  3543. },
  3544. {
  3545. "name": "Symfony Community",
  3546. "homepage": "https://symfony.com/contributors"
  3547. }
  3548. ],
  3549. "description": "Provides tools to manage errors and ease debugging PHP code",
  3550. "homepage": "https://symfony.com",
  3551. "support": {
  3552. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3553. },
  3554. "funding": [
  3555. {
  3556. "url": "https://symfony.com/sponsor",
  3557. "type": "custom"
  3558. },
  3559. {
  3560. "url": "https://github.com/fabpot",
  3561. "type": "github"
  3562. },
  3563. {
  3564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3565. "type": "tidelift"
  3566. }
  3567. ],
  3568. "time": "2024-07-26T13:02:51+00:00"
  3569. },
  3570. {
  3571. "name": "symfony/event-dispatcher",
  3572. "version": "v7.1.1",
  3573. "source": {
  3574. "type": "git",
  3575. "url": "https://github.com/symfony/event-dispatcher.git",
  3576. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3577. },
  3578. "dist": {
  3579. "type": "zip",
  3580. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3581. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3582. "shasum": ""
  3583. },
  3584. "require": {
  3585. "php": ">=8.2",
  3586. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3587. },
  3588. "conflict": {
  3589. "symfony/dependency-injection": "<6.4",
  3590. "symfony/service-contracts": "<2.5"
  3591. },
  3592. "provide": {
  3593. "psr/event-dispatcher-implementation": "1.0",
  3594. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3595. },
  3596. "require-dev": {
  3597. "psr/log": "^1|^2|^3",
  3598. "symfony/config": "^6.4|^7.0",
  3599. "symfony/dependency-injection": "^6.4|^7.0",
  3600. "symfony/error-handler": "^6.4|^7.0",
  3601. "symfony/expression-language": "^6.4|^7.0",
  3602. "symfony/http-foundation": "^6.4|^7.0",
  3603. "symfony/service-contracts": "^2.5|^3",
  3604. "symfony/stopwatch": "^6.4|^7.0"
  3605. },
  3606. "type": "library",
  3607. "autoload": {
  3608. "psr-4": {
  3609. "Symfony\\Component\\EventDispatcher\\": ""
  3610. },
  3611. "exclude-from-classmap": [
  3612. "/Tests/"
  3613. ]
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "MIT"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Fabien Potencier",
  3622. "email": "fabien@symfony.com"
  3623. },
  3624. {
  3625. "name": "Symfony Community",
  3626. "homepage": "https://symfony.com/contributors"
  3627. }
  3628. ],
  3629. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3630. "homepage": "https://symfony.com",
  3631. "support": {
  3632. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3633. },
  3634. "funding": [
  3635. {
  3636. "url": "https://symfony.com/sponsor",
  3637. "type": "custom"
  3638. },
  3639. {
  3640. "url": "https://github.com/fabpot",
  3641. "type": "github"
  3642. },
  3643. {
  3644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3645. "type": "tidelift"
  3646. }
  3647. ],
  3648. "time": "2024-05-31T14:57:53+00:00"
  3649. },
  3650. {
  3651. "name": "symfony/event-dispatcher-contracts",
  3652. "version": "v3.5.0",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3656. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3661. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3662. "shasum": ""
  3663. },
  3664. "require": {
  3665. "php": ">=8.1",
  3666. "psr/event-dispatcher": "^1"
  3667. },
  3668. "type": "library",
  3669. "extra": {
  3670. "branch-alias": {
  3671. "dev-main": "3.5-dev"
  3672. },
  3673. "thanks": {
  3674. "name": "symfony/contracts",
  3675. "url": "https://github.com/symfony/contracts"
  3676. }
  3677. },
  3678. "autoload": {
  3679. "psr-4": {
  3680. "Symfony\\Contracts\\EventDispatcher\\": ""
  3681. }
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "Nicolas Grekas",
  3690. "email": "p@tchwork.com"
  3691. },
  3692. {
  3693. "name": "Symfony Community",
  3694. "homepage": "https://symfony.com/contributors"
  3695. }
  3696. ],
  3697. "description": "Generic abstractions related to dispatching event",
  3698. "homepage": "https://symfony.com",
  3699. "keywords": [
  3700. "abstractions",
  3701. "contracts",
  3702. "decoupling",
  3703. "interfaces",
  3704. "interoperability",
  3705. "standards"
  3706. ],
  3707. "support": {
  3708. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3709. },
  3710. "funding": [
  3711. {
  3712. "url": "https://symfony.com/sponsor",
  3713. "type": "custom"
  3714. },
  3715. {
  3716. "url": "https://github.com/fabpot",
  3717. "type": "github"
  3718. },
  3719. {
  3720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3721. "type": "tidelift"
  3722. }
  3723. ],
  3724. "time": "2024-04-18T09:32:20+00:00"
  3725. },
  3726. {
  3727. "name": "symfony/expression-language",
  3728. "version": "v7.1.4",
  3729. "source": {
  3730. "type": "git",
  3731. "url": "https://github.com/symfony/expression-language.git",
  3732. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  3733. },
  3734. "dist": {
  3735. "type": "zip",
  3736. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  3737. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  3738. "shasum": ""
  3739. },
  3740. "require": {
  3741. "php": ">=8.2",
  3742. "symfony/cache": "^6.4|^7.0",
  3743. "symfony/deprecation-contracts": "^2.5|^3",
  3744. "symfony/service-contracts": "^2.5|^3"
  3745. },
  3746. "type": "library",
  3747. "autoload": {
  3748. "psr-4": {
  3749. "Symfony\\Component\\ExpressionLanguage\\": ""
  3750. },
  3751. "exclude-from-classmap": [
  3752. "/Tests/"
  3753. ]
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "MIT"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Fabien Potencier",
  3762. "email": "fabien@symfony.com"
  3763. },
  3764. {
  3765. "name": "Symfony Community",
  3766. "homepage": "https://symfony.com/contributors"
  3767. }
  3768. ],
  3769. "description": "Provides an engine that can compile and evaluate expressions",
  3770. "homepage": "https://symfony.com",
  3771. "support": {
  3772. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  3773. },
  3774. "funding": [
  3775. {
  3776. "url": "https://symfony.com/sponsor",
  3777. "type": "custom"
  3778. },
  3779. {
  3780. "url": "https://github.com/fabpot",
  3781. "type": "github"
  3782. },
  3783. {
  3784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3785. "type": "tidelift"
  3786. }
  3787. ],
  3788. "time": "2024-08-12T09:59:40+00:00"
  3789. },
  3790. {
  3791. "name": "symfony/filesystem",
  3792. "version": "v7.1.5",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://github.com/symfony/filesystem.git",
  3796. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3801. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3802. "shasum": ""
  3803. },
  3804. "require": {
  3805. "php": ">=8.2",
  3806. "symfony/polyfill-ctype": "~1.8",
  3807. "symfony/polyfill-mbstring": "~1.8"
  3808. },
  3809. "require-dev": {
  3810. "symfony/process": "^6.4|^7.0"
  3811. },
  3812. "type": "library",
  3813. "autoload": {
  3814. "psr-4": {
  3815. "Symfony\\Component\\Filesystem\\": ""
  3816. },
  3817. "exclude-from-classmap": [
  3818. "/Tests/"
  3819. ]
  3820. },
  3821. "notification-url": "https://packagist.org/downloads/",
  3822. "license": [
  3823. "MIT"
  3824. ],
  3825. "authors": [
  3826. {
  3827. "name": "Fabien Potencier",
  3828. "email": "fabien@symfony.com"
  3829. },
  3830. {
  3831. "name": "Symfony Community",
  3832. "homepage": "https://symfony.com/contributors"
  3833. }
  3834. ],
  3835. "description": "Provides basic utilities for the filesystem",
  3836. "homepage": "https://symfony.com",
  3837. "support": {
  3838. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  3839. },
  3840. "funding": [
  3841. {
  3842. "url": "https://symfony.com/sponsor",
  3843. "type": "custom"
  3844. },
  3845. {
  3846. "url": "https://github.com/fabpot",
  3847. "type": "github"
  3848. },
  3849. {
  3850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3851. "type": "tidelift"
  3852. }
  3853. ],
  3854. "time": "2024-09-17T09:16:35+00:00"
  3855. },
  3856. {
  3857. "name": "symfony/finder",
  3858. "version": "v7.1.4",
  3859. "source": {
  3860. "type": "git",
  3861. "url": "https://github.com/symfony/finder.git",
  3862. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  3863. },
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  3867. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  3868. "shasum": ""
  3869. },
  3870. "require": {
  3871. "php": ">=8.2"
  3872. },
  3873. "require-dev": {
  3874. "symfony/filesystem": "^6.4|^7.0"
  3875. },
  3876. "type": "library",
  3877. "autoload": {
  3878. "psr-4": {
  3879. "Symfony\\Component\\Finder\\": ""
  3880. },
  3881. "exclude-from-classmap": [
  3882. "/Tests/"
  3883. ]
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Fabien Potencier",
  3892. "email": "fabien@symfony.com"
  3893. },
  3894. {
  3895. "name": "Symfony Community",
  3896. "homepage": "https://symfony.com/contributors"
  3897. }
  3898. ],
  3899. "description": "Finds files and directories via an intuitive fluent interface",
  3900. "homepage": "https://symfony.com",
  3901. "support": {
  3902. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  3903. },
  3904. "funding": [
  3905. {
  3906. "url": "https://symfony.com/sponsor",
  3907. "type": "custom"
  3908. },
  3909. {
  3910. "url": "https://github.com/fabpot",
  3911. "type": "github"
  3912. },
  3913. {
  3914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3915. "type": "tidelift"
  3916. }
  3917. ],
  3918. "time": "2024-08-13T14:28:19+00:00"
  3919. },
  3920. {
  3921. "name": "symfony/flex",
  3922. "version": "v2.4.7",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/symfony/flex.git",
  3926. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3931. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "composer-plugin-api": "^2.1",
  3936. "php": ">=8.0"
  3937. },
  3938. "conflict": {
  3939. "composer/semver": "<1.7.2"
  3940. },
  3941. "require-dev": {
  3942. "composer/composer": "^2.1",
  3943. "symfony/dotenv": "^5.4|^6.0",
  3944. "symfony/filesystem": "^5.4|^6.0",
  3945. "symfony/phpunit-bridge": "^5.4|^6.0",
  3946. "symfony/process": "^5.4|^6.0"
  3947. },
  3948. "type": "composer-plugin",
  3949. "extra": {
  3950. "class": "Symfony\\Flex\\Flex"
  3951. },
  3952. "autoload": {
  3953. "psr-4": {
  3954. "Symfony\\Flex\\": "src"
  3955. }
  3956. },
  3957. "notification-url": "https://packagist.org/downloads/",
  3958. "license": [
  3959. "MIT"
  3960. ],
  3961. "authors": [
  3962. {
  3963. "name": "Fabien Potencier",
  3964. "email": "fabien.potencier@gmail.com"
  3965. }
  3966. ],
  3967. "description": "Composer plugin for Symfony",
  3968. "support": {
  3969. "issues": "https://github.com/symfony/flex/issues",
  3970. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  3971. },
  3972. "funding": [
  3973. {
  3974. "url": "https://symfony.com/sponsor",
  3975. "type": "custom"
  3976. },
  3977. {
  3978. "url": "https://github.com/fabpot",
  3979. "type": "github"
  3980. },
  3981. {
  3982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3983. "type": "tidelift"
  3984. }
  3985. ],
  3986. "time": "2024-10-07T08:51:54+00:00"
  3987. },
  3988. {
  3989. "name": "symfony/form",
  3990. "version": "v7.1.5",
  3991. "source": {
  3992. "type": "git",
  3993. "url": "https://github.com/symfony/form.git",
  3994. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  3995. },
  3996. "dist": {
  3997. "type": "zip",
  3998. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  3999. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  4000. "shasum": ""
  4001. },
  4002. "require": {
  4003. "php": ">=8.2",
  4004. "symfony/deprecation-contracts": "^2.5|^3",
  4005. "symfony/event-dispatcher": "^6.4|^7.0",
  4006. "symfony/options-resolver": "^6.4|^7.0",
  4007. "symfony/polyfill-ctype": "~1.8",
  4008. "symfony/polyfill-intl-icu": "^1.21",
  4009. "symfony/polyfill-mbstring": "~1.0",
  4010. "symfony/property-access": "^6.4|^7.0",
  4011. "symfony/service-contracts": "^2.5|^3"
  4012. },
  4013. "conflict": {
  4014. "symfony/console": "<6.4",
  4015. "symfony/dependency-injection": "<6.4",
  4016. "symfony/doctrine-bridge": "<6.4",
  4017. "symfony/error-handler": "<6.4",
  4018. "symfony/framework-bundle": "<6.4",
  4019. "symfony/http-kernel": "<6.4",
  4020. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4021. "symfony/translation-contracts": "<2.5",
  4022. "symfony/twig-bridge": "<6.4"
  4023. },
  4024. "require-dev": {
  4025. "doctrine/collections": "^1.0|^2.0",
  4026. "symfony/config": "^6.4|^7.0",
  4027. "symfony/console": "^6.4|^7.0",
  4028. "symfony/dependency-injection": "^6.4|^7.0",
  4029. "symfony/expression-language": "^6.4|^7.0",
  4030. "symfony/html-sanitizer": "^6.4|^7.0",
  4031. "symfony/http-foundation": "^6.4|^7.0",
  4032. "symfony/http-kernel": "^6.4|^7.0",
  4033. "symfony/intl": "^6.4|^7.0",
  4034. "symfony/security-core": "^6.4|^7.0",
  4035. "symfony/security-csrf": "^6.4|^7.0",
  4036. "symfony/translation": "^6.4.3|^7.0.3",
  4037. "symfony/uid": "^6.4|^7.0",
  4038. "symfony/validator": "^6.4|^7.0",
  4039. "symfony/var-dumper": "^6.4|^7.0"
  4040. },
  4041. "type": "library",
  4042. "autoload": {
  4043. "psr-4": {
  4044. "Symfony\\Component\\Form\\": ""
  4045. },
  4046. "exclude-from-classmap": [
  4047. "/Tests/"
  4048. ]
  4049. },
  4050. "notification-url": "https://packagist.org/downloads/",
  4051. "license": [
  4052. "MIT"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "Fabien Potencier",
  4057. "email": "fabien@symfony.com"
  4058. },
  4059. {
  4060. "name": "Symfony Community",
  4061. "homepage": "https://symfony.com/contributors"
  4062. }
  4063. ],
  4064. "description": "Allows to easily create, process and reuse HTML forms",
  4065. "homepage": "https://symfony.com",
  4066. "support": {
  4067. "source": "https://github.com/symfony/form/tree/v7.1.5"
  4068. },
  4069. "funding": [
  4070. {
  4071. "url": "https://symfony.com/sponsor",
  4072. "type": "custom"
  4073. },
  4074. {
  4075. "url": "https://github.com/fabpot",
  4076. "type": "github"
  4077. },
  4078. {
  4079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4080. "type": "tidelift"
  4081. }
  4082. ],
  4083. "time": "2024-09-20T08:28:38+00:00"
  4084. },
  4085. {
  4086. "name": "symfony/framework-bundle",
  4087. "version": "v7.1.5",
  4088. "source": {
  4089. "type": "git",
  4090. "url": "https://github.com/symfony/framework-bundle.git",
  4091. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  4092. },
  4093. "dist": {
  4094. "type": "zip",
  4095. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  4096. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  4097. "shasum": ""
  4098. },
  4099. "require": {
  4100. "composer-runtime-api": ">=2.1",
  4101. "ext-xml": "*",
  4102. "php": ">=8.2",
  4103. "symfony/cache": "^6.4|^7.0",
  4104. "symfony/config": "^6.4|^7.0",
  4105. "symfony/dependency-injection": "^7.1.5",
  4106. "symfony/deprecation-contracts": "^2.5|^3",
  4107. "symfony/error-handler": "^6.4|^7.0",
  4108. "symfony/event-dispatcher": "^6.4|^7.0",
  4109. "symfony/filesystem": "^7.1",
  4110. "symfony/finder": "^6.4|^7.0",
  4111. "symfony/http-foundation": "^6.4|^7.0",
  4112. "symfony/http-kernel": "^6.4|^7.0",
  4113. "symfony/polyfill-mbstring": "~1.0",
  4114. "symfony/routing": "^6.4|^7.0"
  4115. },
  4116. "conflict": {
  4117. "doctrine/persistence": "<1.3",
  4118. "phpdocumentor/reflection-docblock": "<3.2.2",
  4119. "phpdocumentor/type-resolver": "<1.4.0",
  4120. "symfony/asset": "<6.4",
  4121. "symfony/asset-mapper": "<6.4",
  4122. "symfony/clock": "<6.4",
  4123. "symfony/console": "<6.4",
  4124. "symfony/dom-crawler": "<6.4",
  4125. "symfony/dotenv": "<6.4",
  4126. "symfony/form": "<6.4",
  4127. "symfony/http-client": "<6.4",
  4128. "symfony/lock": "<6.4",
  4129. "symfony/mailer": "<6.4",
  4130. "symfony/messenger": "<6.4",
  4131. "symfony/mime": "<6.4",
  4132. "symfony/property-access": "<6.4",
  4133. "symfony/property-info": "<6.4",
  4134. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4135. "symfony/security-core": "<6.4",
  4136. "symfony/security-csrf": "<6.4",
  4137. "symfony/serializer": "<6.4",
  4138. "symfony/stopwatch": "<6.4",
  4139. "symfony/translation": "<6.4",
  4140. "symfony/twig-bridge": "<6.4",
  4141. "symfony/twig-bundle": "<6.4",
  4142. "symfony/validator": "<6.4",
  4143. "symfony/web-profiler-bundle": "<6.4",
  4144. "symfony/workflow": "<6.4"
  4145. },
  4146. "require-dev": {
  4147. "doctrine/persistence": "^1.3|^2|^3",
  4148. "dragonmantank/cron-expression": "^3.1",
  4149. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4150. "seld/jsonlint": "^1.10",
  4151. "symfony/asset": "^6.4|^7.0",
  4152. "symfony/asset-mapper": "^6.4|^7.0",
  4153. "symfony/browser-kit": "^6.4|^7.0",
  4154. "symfony/clock": "^6.4|^7.0",
  4155. "symfony/console": "^6.4|^7.0",
  4156. "symfony/css-selector": "^6.4|^7.0",
  4157. "symfony/dom-crawler": "^6.4|^7.0",
  4158. "symfony/dotenv": "^6.4|^7.0",
  4159. "symfony/expression-language": "^6.4|^7.0",
  4160. "symfony/form": "^6.4|^7.0",
  4161. "symfony/html-sanitizer": "^6.4|^7.0",
  4162. "symfony/http-client": "^6.4|^7.0",
  4163. "symfony/lock": "^6.4|^7.0",
  4164. "symfony/mailer": "^6.4|^7.0",
  4165. "symfony/messenger": "^6.4|^7.0",
  4166. "symfony/mime": "^6.4|^7.0",
  4167. "symfony/notifier": "^6.4|^7.0",
  4168. "symfony/polyfill-intl-icu": "~1.0",
  4169. "symfony/process": "^6.4|^7.0",
  4170. "symfony/property-info": "^6.4|^7.0",
  4171. "symfony/rate-limiter": "^6.4|^7.0",
  4172. "symfony/scheduler": "^6.4.4|^7.0.4",
  4173. "symfony/security-bundle": "^6.4|^7.0",
  4174. "symfony/semaphore": "^6.4|^7.0",
  4175. "symfony/serializer": "^6.4|^7.0",
  4176. "symfony/stopwatch": "^6.4|^7.0",
  4177. "symfony/string": "^6.4|^7.0",
  4178. "symfony/translation": "^6.4|^7.0",
  4179. "symfony/twig-bundle": "^6.4|^7.0",
  4180. "symfony/type-info": "^7.1",
  4181. "symfony/uid": "^6.4|^7.0",
  4182. "symfony/validator": "^6.4|^7.0",
  4183. "symfony/web-link": "^6.4|^7.0",
  4184. "symfony/workflow": "^6.4|^7.0",
  4185. "symfony/yaml": "^6.4|^7.0",
  4186. "twig/twig": "^3.0.4"
  4187. },
  4188. "type": "symfony-bundle",
  4189. "autoload": {
  4190. "psr-4": {
  4191. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4192. },
  4193. "exclude-from-classmap": [
  4194. "/Tests/"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Fabien Potencier",
  4204. "email": "fabien@symfony.com"
  4205. },
  4206. {
  4207. "name": "Symfony Community",
  4208. "homepage": "https://symfony.com/contributors"
  4209. }
  4210. ],
  4211. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4212. "homepage": "https://symfony.com",
  4213. "support": {
  4214. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  4215. },
  4216. "funding": [
  4217. {
  4218. "url": "https://symfony.com/sponsor",
  4219. "type": "custom"
  4220. },
  4221. {
  4222. "url": "https://github.com/fabpot",
  4223. "type": "github"
  4224. },
  4225. {
  4226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4227. "type": "tidelift"
  4228. }
  4229. ],
  4230. "time": "2024-09-20T13:35:23+00:00"
  4231. },
  4232. {
  4233. "name": "symfony/http-client",
  4234. "version": "v7.1.5",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://github.com/symfony/http-client.git",
  4238. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  4243. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  4244. "shasum": ""
  4245. },
  4246. "require": {
  4247. "php": ">=8.2",
  4248. "psr/log": "^1|^2|^3",
  4249. "symfony/deprecation-contracts": "^2.5|^3",
  4250. "symfony/http-client-contracts": "^3.4.1",
  4251. "symfony/service-contracts": "^2.5|^3"
  4252. },
  4253. "conflict": {
  4254. "php-http/discovery": "<1.15",
  4255. "symfony/http-foundation": "<6.4"
  4256. },
  4257. "provide": {
  4258. "php-http/async-client-implementation": "*",
  4259. "php-http/client-implementation": "*",
  4260. "psr/http-client-implementation": "1.0",
  4261. "symfony/http-client-implementation": "3.0"
  4262. },
  4263. "require-dev": {
  4264. "amphp/amp": "^2.5",
  4265. "amphp/http-client": "^4.2.1",
  4266. "amphp/http-tunnel": "^1.0",
  4267. "amphp/socket": "^1.1",
  4268. "guzzlehttp/promises": "^1.4|^2.0",
  4269. "nyholm/psr7": "^1.0",
  4270. "php-http/httplug": "^1.0|^2.0",
  4271. "psr/http-client": "^1.0",
  4272. "symfony/dependency-injection": "^6.4|^7.0",
  4273. "symfony/http-kernel": "^6.4|^7.0",
  4274. "symfony/messenger": "^6.4|^7.0",
  4275. "symfony/process": "^6.4|^7.0",
  4276. "symfony/rate-limiter": "^6.4|^7.0",
  4277. "symfony/stopwatch": "^6.4|^7.0"
  4278. },
  4279. "type": "library",
  4280. "autoload": {
  4281. "psr-4": {
  4282. "Symfony\\Component\\HttpClient\\": ""
  4283. },
  4284. "exclude-from-classmap": [
  4285. "/Tests/"
  4286. ]
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Nicolas Grekas",
  4295. "email": "p@tchwork.com"
  4296. },
  4297. {
  4298. "name": "Symfony Community",
  4299. "homepage": "https://symfony.com/contributors"
  4300. }
  4301. ],
  4302. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4303. "homepage": "https://symfony.com",
  4304. "keywords": [
  4305. "http"
  4306. ],
  4307. "support": {
  4308. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  4309. },
  4310. "funding": [
  4311. {
  4312. "url": "https://symfony.com/sponsor",
  4313. "type": "custom"
  4314. },
  4315. {
  4316. "url": "https://github.com/fabpot",
  4317. "type": "github"
  4318. },
  4319. {
  4320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4321. "type": "tidelift"
  4322. }
  4323. ],
  4324. "time": "2024-09-20T13:35:23+00:00"
  4325. },
  4326. {
  4327. "name": "symfony/http-client-contracts",
  4328. "version": "v3.5.0",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/symfony/http-client-contracts.git",
  4332. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4337. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4338. "shasum": ""
  4339. },
  4340. "require": {
  4341. "php": ">=8.1"
  4342. },
  4343. "type": "library",
  4344. "extra": {
  4345. "branch-alias": {
  4346. "dev-main": "3.5-dev"
  4347. },
  4348. "thanks": {
  4349. "name": "symfony/contracts",
  4350. "url": "https://github.com/symfony/contracts"
  4351. }
  4352. },
  4353. "autoload": {
  4354. "psr-4": {
  4355. "Symfony\\Contracts\\HttpClient\\": ""
  4356. },
  4357. "exclude-from-classmap": [
  4358. "/Test/"
  4359. ]
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Nicolas Grekas",
  4368. "email": "p@tchwork.com"
  4369. },
  4370. {
  4371. "name": "Symfony Community",
  4372. "homepage": "https://symfony.com/contributors"
  4373. }
  4374. ],
  4375. "description": "Generic abstractions related to HTTP clients",
  4376. "homepage": "https://symfony.com",
  4377. "keywords": [
  4378. "abstractions",
  4379. "contracts",
  4380. "decoupling",
  4381. "interfaces",
  4382. "interoperability",
  4383. "standards"
  4384. ],
  4385. "support": {
  4386. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4387. },
  4388. "funding": [
  4389. {
  4390. "url": "https://symfony.com/sponsor",
  4391. "type": "custom"
  4392. },
  4393. {
  4394. "url": "https://github.com/fabpot",
  4395. "type": "github"
  4396. },
  4397. {
  4398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4399. "type": "tidelift"
  4400. }
  4401. ],
  4402. "time": "2024-04-18T09:32:20+00:00"
  4403. },
  4404. {
  4405. "name": "symfony/http-foundation",
  4406. "version": "v7.1.5",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://github.com/symfony/http-foundation.git",
  4410. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4415. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4416. "shasum": ""
  4417. },
  4418. "require": {
  4419. "php": ">=8.2",
  4420. "symfony/polyfill-mbstring": "~1.1",
  4421. "symfony/polyfill-php83": "^1.27"
  4422. },
  4423. "conflict": {
  4424. "doctrine/dbal": "<3.6",
  4425. "symfony/cache": "<6.4"
  4426. },
  4427. "require-dev": {
  4428. "doctrine/dbal": "^3.6|^4",
  4429. "predis/predis": "^1.1|^2.0",
  4430. "symfony/cache": "^6.4|^7.0",
  4431. "symfony/dependency-injection": "^6.4|^7.0",
  4432. "symfony/expression-language": "^6.4|^7.0",
  4433. "symfony/http-kernel": "^6.4|^7.0",
  4434. "symfony/mime": "^6.4|^7.0",
  4435. "symfony/rate-limiter": "^6.4|^7.0"
  4436. },
  4437. "type": "library",
  4438. "autoload": {
  4439. "psr-4": {
  4440. "Symfony\\Component\\HttpFoundation\\": ""
  4441. },
  4442. "exclude-from-classmap": [
  4443. "/Tests/"
  4444. ]
  4445. },
  4446. "notification-url": "https://packagist.org/downloads/",
  4447. "license": [
  4448. "MIT"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Fabien Potencier",
  4453. "email": "fabien@symfony.com"
  4454. },
  4455. {
  4456. "name": "Symfony Community",
  4457. "homepage": "https://symfony.com/contributors"
  4458. }
  4459. ],
  4460. "description": "Defines an object-oriented layer for the HTTP specification",
  4461. "homepage": "https://symfony.com",
  4462. "support": {
  4463. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  4464. },
  4465. "funding": [
  4466. {
  4467. "url": "https://symfony.com/sponsor",
  4468. "type": "custom"
  4469. },
  4470. {
  4471. "url": "https://github.com/fabpot",
  4472. "type": "github"
  4473. },
  4474. {
  4475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4476. "type": "tidelift"
  4477. }
  4478. ],
  4479. "time": "2024-09-20T08:28:38+00:00"
  4480. },
  4481. {
  4482. "name": "symfony/http-kernel",
  4483. "version": "v7.1.5",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/symfony/http-kernel.git",
  4487. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  4492. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  4493. "shasum": ""
  4494. },
  4495. "require": {
  4496. "php": ">=8.2",
  4497. "psr/log": "^1|^2|^3",
  4498. "symfony/deprecation-contracts": "^2.5|^3",
  4499. "symfony/error-handler": "^6.4|^7.0",
  4500. "symfony/event-dispatcher": "^6.4|^7.0",
  4501. "symfony/http-foundation": "^6.4|^7.0",
  4502. "symfony/polyfill-ctype": "^1.8"
  4503. },
  4504. "conflict": {
  4505. "symfony/browser-kit": "<6.4",
  4506. "symfony/cache": "<6.4",
  4507. "symfony/config": "<6.4",
  4508. "symfony/console": "<6.4",
  4509. "symfony/dependency-injection": "<6.4",
  4510. "symfony/doctrine-bridge": "<6.4",
  4511. "symfony/form": "<6.4",
  4512. "symfony/http-client": "<6.4",
  4513. "symfony/http-client-contracts": "<2.5",
  4514. "symfony/mailer": "<6.4",
  4515. "symfony/messenger": "<6.4",
  4516. "symfony/translation": "<6.4",
  4517. "symfony/translation-contracts": "<2.5",
  4518. "symfony/twig-bridge": "<6.4",
  4519. "symfony/validator": "<6.4",
  4520. "symfony/var-dumper": "<6.4",
  4521. "twig/twig": "<3.0.4"
  4522. },
  4523. "provide": {
  4524. "psr/log-implementation": "1.0|2.0|3.0"
  4525. },
  4526. "require-dev": {
  4527. "psr/cache": "^1.0|^2.0|^3.0",
  4528. "symfony/browser-kit": "^6.4|^7.0",
  4529. "symfony/clock": "^6.4|^7.0",
  4530. "symfony/config": "^6.4|^7.0",
  4531. "symfony/console": "^6.4|^7.0",
  4532. "symfony/css-selector": "^6.4|^7.0",
  4533. "symfony/dependency-injection": "^6.4|^7.0",
  4534. "symfony/dom-crawler": "^6.4|^7.0",
  4535. "symfony/expression-language": "^6.4|^7.0",
  4536. "symfony/finder": "^6.4|^7.0",
  4537. "symfony/http-client-contracts": "^2.5|^3",
  4538. "symfony/process": "^6.4|^7.0",
  4539. "symfony/property-access": "^7.1",
  4540. "symfony/routing": "^6.4|^7.0",
  4541. "symfony/serializer": "^7.1",
  4542. "symfony/stopwatch": "^6.4|^7.0",
  4543. "symfony/translation": "^6.4|^7.0",
  4544. "symfony/translation-contracts": "^2.5|^3",
  4545. "symfony/uid": "^6.4|^7.0",
  4546. "symfony/validator": "^6.4|^7.0",
  4547. "symfony/var-dumper": "^6.4|^7.0",
  4548. "symfony/var-exporter": "^6.4|^7.0",
  4549. "twig/twig": "^3.0.4"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "Symfony\\Component\\HttpKernel\\": ""
  4555. },
  4556. "exclude-from-classmap": [
  4557. "/Tests/"
  4558. ]
  4559. },
  4560. "notification-url": "https://packagist.org/downloads/",
  4561. "license": [
  4562. "MIT"
  4563. ],
  4564. "authors": [
  4565. {
  4566. "name": "Fabien Potencier",
  4567. "email": "fabien@symfony.com"
  4568. },
  4569. {
  4570. "name": "Symfony Community",
  4571. "homepage": "https://symfony.com/contributors"
  4572. }
  4573. ],
  4574. "description": "Provides a structured process for converting a Request into a Response",
  4575. "homepage": "https://symfony.com",
  4576. "support": {
  4577. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  4578. },
  4579. "funding": [
  4580. {
  4581. "url": "https://symfony.com/sponsor",
  4582. "type": "custom"
  4583. },
  4584. {
  4585. "url": "https://github.com/fabpot",
  4586. "type": "github"
  4587. },
  4588. {
  4589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4590. "type": "tidelift"
  4591. }
  4592. ],
  4593. "time": "2024-09-21T06:09:21+00:00"
  4594. },
  4595. {
  4596. "name": "symfony/intl",
  4597. "version": "v7.1.5",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://github.com/symfony/intl.git",
  4601. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  4602. },
  4603. "dist": {
  4604. "type": "zip",
  4605. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  4606. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  4607. "shasum": ""
  4608. },
  4609. "require": {
  4610. "php": ">=8.2",
  4611. "symfony/deprecation-contracts": "^2.5|^3"
  4612. },
  4613. "conflict": {
  4614. "symfony/string": "<7.1"
  4615. },
  4616. "require-dev": {
  4617. "symfony/filesystem": "^6.4|^7.0",
  4618. "symfony/var-exporter": "^6.4|^7.0"
  4619. },
  4620. "type": "library",
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Symfony\\Component\\Intl\\": ""
  4624. },
  4625. "exclude-from-classmap": [
  4626. "/Tests/",
  4627. "/Resources/data/"
  4628. ]
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Bernhard Schussek",
  4637. "email": "bschussek@gmail.com"
  4638. },
  4639. {
  4640. "name": "Eriksen Costa",
  4641. "email": "eriksen.costa@infranology.com.br"
  4642. },
  4643. {
  4644. "name": "Igor Wiedler",
  4645. "email": "igor@wiedler.ch"
  4646. },
  4647. {
  4648. "name": "Symfony Community",
  4649. "homepage": "https://symfony.com/contributors"
  4650. }
  4651. ],
  4652. "description": "Provides access to the localization data of the ICU library",
  4653. "homepage": "https://symfony.com",
  4654. "keywords": [
  4655. "i18n",
  4656. "icu",
  4657. "internationalization",
  4658. "intl",
  4659. "l10n",
  4660. "localization"
  4661. ],
  4662. "support": {
  4663. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  4664. },
  4665. "funding": [
  4666. {
  4667. "url": "https://symfony.com/sponsor",
  4668. "type": "custom"
  4669. },
  4670. {
  4671. "url": "https://github.com/fabpot",
  4672. "type": "github"
  4673. },
  4674. {
  4675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4676. "type": "tidelift"
  4677. }
  4678. ],
  4679. "time": "2024-09-20T08:28:38+00:00"
  4680. },
  4681. {
  4682. "name": "symfony/mailer",
  4683. "version": "v7.1.5",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://github.com/symfony/mailer.git",
  4687. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  4688. },
  4689. "dist": {
  4690. "type": "zip",
  4691. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4692. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4693. "shasum": ""
  4694. },
  4695. "require": {
  4696. "egulias/email-validator": "^2.1.10|^3|^4",
  4697. "php": ">=8.2",
  4698. "psr/event-dispatcher": "^1",
  4699. "psr/log": "^1|^2|^3",
  4700. "symfony/event-dispatcher": "^6.4|^7.0",
  4701. "symfony/mime": "^6.4|^7.0",
  4702. "symfony/service-contracts": "^2.5|^3"
  4703. },
  4704. "conflict": {
  4705. "symfony/http-client-contracts": "<2.5",
  4706. "symfony/http-kernel": "<6.4",
  4707. "symfony/messenger": "<6.4",
  4708. "symfony/mime": "<6.4",
  4709. "symfony/twig-bridge": "<6.4"
  4710. },
  4711. "require-dev": {
  4712. "symfony/console": "^6.4|^7.0",
  4713. "symfony/http-client": "^6.4|^7.0",
  4714. "symfony/messenger": "^6.4|^7.0",
  4715. "symfony/twig-bridge": "^6.4|^7.0"
  4716. },
  4717. "type": "library",
  4718. "autoload": {
  4719. "psr-4": {
  4720. "Symfony\\Component\\Mailer\\": ""
  4721. },
  4722. "exclude-from-classmap": [
  4723. "/Tests/"
  4724. ]
  4725. },
  4726. "notification-url": "https://packagist.org/downloads/",
  4727. "license": [
  4728. "MIT"
  4729. ],
  4730. "authors": [
  4731. {
  4732. "name": "Fabien Potencier",
  4733. "email": "fabien@symfony.com"
  4734. },
  4735. {
  4736. "name": "Symfony Community",
  4737. "homepage": "https://symfony.com/contributors"
  4738. }
  4739. ],
  4740. "description": "Helps sending emails",
  4741. "homepage": "https://symfony.com",
  4742. "support": {
  4743. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  4744. },
  4745. "funding": [
  4746. {
  4747. "url": "https://symfony.com/sponsor",
  4748. "type": "custom"
  4749. },
  4750. {
  4751. "url": "https://github.com/fabpot",
  4752. "type": "github"
  4753. },
  4754. {
  4755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4756. "type": "tidelift"
  4757. }
  4758. ],
  4759. "time": "2024-09-08T12:32:26+00:00"
  4760. },
  4761. {
  4762. "name": "symfony/messenger",
  4763. "version": "v7.1.5",
  4764. "source": {
  4765. "type": "git",
  4766. "url": "https://github.com/symfony/messenger.git",
  4767. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  4768. },
  4769. "dist": {
  4770. "type": "zip",
  4771. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4772. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4773. "shasum": ""
  4774. },
  4775. "require": {
  4776. "php": ">=8.2",
  4777. "psr/log": "^1|^2|^3",
  4778. "symfony/clock": "^6.4|^7.0"
  4779. },
  4780. "conflict": {
  4781. "symfony/console": "<6.4",
  4782. "symfony/event-dispatcher": "<6.4",
  4783. "symfony/event-dispatcher-contracts": "<2.5",
  4784. "symfony/framework-bundle": "<6.4",
  4785. "symfony/http-kernel": "<6.4",
  4786. "symfony/serializer": "<6.4"
  4787. },
  4788. "require-dev": {
  4789. "psr/cache": "^1.0|^2.0|^3.0",
  4790. "symfony/console": "^6.4|^7.0",
  4791. "symfony/dependency-injection": "^6.4|^7.0",
  4792. "symfony/event-dispatcher": "^6.4|^7.0",
  4793. "symfony/http-kernel": "^6.4|^7.0",
  4794. "symfony/process": "^6.4|^7.0",
  4795. "symfony/property-access": "^6.4|^7.0",
  4796. "symfony/rate-limiter": "^6.4|^7.0",
  4797. "symfony/routing": "^6.4|^7.0",
  4798. "symfony/serializer": "^6.4|^7.0",
  4799. "symfony/service-contracts": "^2.5|^3",
  4800. "symfony/stopwatch": "^6.4|^7.0",
  4801. "symfony/validator": "^6.4|^7.0"
  4802. },
  4803. "type": "library",
  4804. "autoload": {
  4805. "psr-4": {
  4806. "Symfony\\Component\\Messenger\\": ""
  4807. },
  4808. "exclude-from-classmap": [
  4809. "/Tests/"
  4810. ]
  4811. },
  4812. "notification-url": "https://packagist.org/downloads/",
  4813. "license": [
  4814. "MIT"
  4815. ],
  4816. "authors": [
  4817. {
  4818. "name": "Samuel Roze",
  4819. "email": "samuel.roze@gmail.com"
  4820. },
  4821. {
  4822. "name": "Symfony Community",
  4823. "homepage": "https://symfony.com/contributors"
  4824. }
  4825. ],
  4826. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4827. "homepage": "https://symfony.com",
  4828. "support": {
  4829. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  4830. },
  4831. "funding": [
  4832. {
  4833. "url": "https://symfony.com/sponsor",
  4834. "type": "custom"
  4835. },
  4836. {
  4837. "url": "https://github.com/fabpot",
  4838. "type": "github"
  4839. },
  4840. {
  4841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4842. "type": "tidelift"
  4843. }
  4844. ],
  4845. "time": "2024-09-08T12:32:26+00:00"
  4846. },
  4847. {
  4848. "name": "symfony/mime",
  4849. "version": "v7.1.5",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/symfony/mime.git",
  4853. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4858. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4859. "shasum": ""
  4860. },
  4861. "require": {
  4862. "php": ">=8.2",
  4863. "symfony/polyfill-intl-idn": "^1.10",
  4864. "symfony/polyfill-mbstring": "^1.0"
  4865. },
  4866. "conflict": {
  4867. "egulias/email-validator": "~3.0.0",
  4868. "phpdocumentor/reflection-docblock": "<3.2.2",
  4869. "phpdocumentor/type-resolver": "<1.4.0",
  4870. "symfony/mailer": "<6.4",
  4871. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4872. },
  4873. "require-dev": {
  4874. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4875. "league/html-to-markdown": "^5.0",
  4876. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4877. "symfony/dependency-injection": "^6.4|^7.0",
  4878. "symfony/process": "^6.4|^7.0",
  4879. "symfony/property-access": "^6.4|^7.0",
  4880. "symfony/property-info": "^6.4|^7.0",
  4881. "symfony/serializer": "^6.4.3|^7.0.3"
  4882. },
  4883. "type": "library",
  4884. "autoload": {
  4885. "psr-4": {
  4886. "Symfony\\Component\\Mime\\": ""
  4887. },
  4888. "exclude-from-classmap": [
  4889. "/Tests/"
  4890. ]
  4891. },
  4892. "notification-url": "https://packagist.org/downloads/",
  4893. "license": [
  4894. "MIT"
  4895. ],
  4896. "authors": [
  4897. {
  4898. "name": "Fabien Potencier",
  4899. "email": "fabien@symfony.com"
  4900. },
  4901. {
  4902. "name": "Symfony Community",
  4903. "homepage": "https://symfony.com/contributors"
  4904. }
  4905. ],
  4906. "description": "Allows manipulating MIME messages",
  4907. "homepage": "https://symfony.com",
  4908. "keywords": [
  4909. "mime",
  4910. "mime-type"
  4911. ],
  4912. "support": {
  4913. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  4914. },
  4915. "funding": [
  4916. {
  4917. "url": "https://symfony.com/sponsor",
  4918. "type": "custom"
  4919. },
  4920. {
  4921. "url": "https://github.com/fabpot",
  4922. "type": "github"
  4923. },
  4924. {
  4925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4926. "type": "tidelift"
  4927. }
  4928. ],
  4929. "time": "2024-09-20T08:28:38+00:00"
  4930. },
  4931. {
  4932. "name": "symfony/monolog-bridge",
  4933. "version": "v7.1.1",
  4934. "source": {
  4935. "type": "git",
  4936. "url": "https://github.com/symfony/monolog-bridge.git",
  4937. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  4938. },
  4939. "dist": {
  4940. "type": "zip",
  4941. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4942. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4943. "shasum": ""
  4944. },
  4945. "require": {
  4946. "monolog/monolog": "^3",
  4947. "php": ">=8.2",
  4948. "symfony/http-kernel": "^6.4|^7.0",
  4949. "symfony/service-contracts": "^2.5|^3"
  4950. },
  4951. "conflict": {
  4952. "symfony/console": "<6.4",
  4953. "symfony/http-foundation": "<6.4",
  4954. "symfony/security-core": "<6.4"
  4955. },
  4956. "require-dev": {
  4957. "symfony/console": "^6.4|^7.0",
  4958. "symfony/http-client": "^6.4|^7.0",
  4959. "symfony/mailer": "^6.4|^7.0",
  4960. "symfony/messenger": "^6.4|^7.0",
  4961. "symfony/mime": "^6.4|^7.0",
  4962. "symfony/security-core": "^6.4|^7.0",
  4963. "symfony/var-dumper": "^6.4|^7.0"
  4964. },
  4965. "type": "symfony-bridge",
  4966. "autoload": {
  4967. "psr-4": {
  4968. "Symfony\\Bridge\\Monolog\\": ""
  4969. },
  4970. "exclude-from-classmap": [
  4971. "/Tests/"
  4972. ]
  4973. },
  4974. "notification-url": "https://packagist.org/downloads/",
  4975. "license": [
  4976. "MIT"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Fabien Potencier",
  4981. "email": "fabien@symfony.com"
  4982. },
  4983. {
  4984. "name": "Symfony Community",
  4985. "homepage": "https://symfony.com/contributors"
  4986. }
  4987. ],
  4988. "description": "Provides integration for Monolog with various Symfony components",
  4989. "homepage": "https://symfony.com",
  4990. "support": {
  4991. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  4992. },
  4993. "funding": [
  4994. {
  4995. "url": "https://symfony.com/sponsor",
  4996. "type": "custom"
  4997. },
  4998. {
  4999. "url": "https://github.com/fabpot",
  5000. "type": "github"
  5001. },
  5002. {
  5003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5004. "type": "tidelift"
  5005. }
  5006. ],
  5007. "time": "2024-05-31T14:57:53+00:00"
  5008. },
  5009. {
  5010. "name": "symfony/monolog-bundle",
  5011. "version": "v3.10.0",
  5012. "source": {
  5013. "type": "git",
  5014. "url": "https://github.com/symfony/monolog-bundle.git",
  5015. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5016. },
  5017. "dist": {
  5018. "type": "zip",
  5019. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5020. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5021. "shasum": ""
  5022. },
  5023. "require": {
  5024. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5025. "php": ">=7.2.5",
  5026. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5027. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5028. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5029. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5030. },
  5031. "require-dev": {
  5032. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5033. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5034. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5035. },
  5036. "type": "symfony-bundle",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-master": "3.x-dev"
  5040. }
  5041. },
  5042. "autoload": {
  5043. "psr-4": {
  5044. "Symfony\\Bundle\\MonologBundle\\": ""
  5045. },
  5046. "exclude-from-classmap": [
  5047. "/Tests/"
  5048. ]
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Fabien Potencier",
  5057. "email": "fabien@symfony.com"
  5058. },
  5059. {
  5060. "name": "Symfony Community",
  5061. "homepage": "https://symfony.com/contributors"
  5062. }
  5063. ],
  5064. "description": "Symfony MonologBundle",
  5065. "homepage": "https://symfony.com",
  5066. "keywords": [
  5067. "log",
  5068. "logging"
  5069. ],
  5070. "support": {
  5071. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5072. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5073. },
  5074. "funding": [
  5075. {
  5076. "url": "https://symfony.com/sponsor",
  5077. "type": "custom"
  5078. },
  5079. {
  5080. "url": "https://github.com/fabpot",
  5081. "type": "github"
  5082. },
  5083. {
  5084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5085. "type": "tidelift"
  5086. }
  5087. ],
  5088. "time": "2023-11-06T17:08:13+00:00"
  5089. },
  5090. {
  5091. "name": "symfony/notifier",
  5092. "version": "v7.1.5",
  5093. "source": {
  5094. "type": "git",
  5095. "url": "https://github.com/symfony/notifier.git",
  5096. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  5097. },
  5098. "dist": {
  5099. "type": "zip",
  5100. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  5101. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  5102. "shasum": ""
  5103. },
  5104. "require": {
  5105. "php": ">=8.2",
  5106. "psr/log": "^1|^2|^3"
  5107. },
  5108. "conflict": {
  5109. "symfony/event-dispatcher": "<6.4",
  5110. "symfony/event-dispatcher-contracts": "<2.5",
  5111. "symfony/http-client-contracts": "<2.5",
  5112. "symfony/http-kernel": "<6.4"
  5113. },
  5114. "require-dev": {
  5115. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5116. "symfony/http-client-contracts": "^2.5|^3",
  5117. "symfony/http-foundation": "^6.4|^7.0",
  5118. "symfony/messenger": "^6.4|^7.0"
  5119. },
  5120. "type": "library",
  5121. "autoload": {
  5122. "psr-4": {
  5123. "Symfony\\Component\\Notifier\\": ""
  5124. },
  5125. "exclude-from-classmap": [
  5126. "/Tests/"
  5127. ]
  5128. },
  5129. "notification-url": "https://packagist.org/downloads/",
  5130. "license": [
  5131. "MIT"
  5132. ],
  5133. "authors": [
  5134. {
  5135. "name": "Fabien Potencier",
  5136. "email": "fabien@symfony.com"
  5137. },
  5138. {
  5139. "name": "Symfony Community",
  5140. "homepage": "https://symfony.com/contributors"
  5141. }
  5142. ],
  5143. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5144. "homepage": "https://symfony.com",
  5145. "keywords": [
  5146. "notification",
  5147. "notifier"
  5148. ],
  5149. "support": {
  5150. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  5151. },
  5152. "funding": [
  5153. {
  5154. "url": "https://symfony.com/sponsor",
  5155. "type": "custom"
  5156. },
  5157. {
  5158. "url": "https://github.com/fabpot",
  5159. "type": "github"
  5160. },
  5161. {
  5162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5163. "type": "tidelift"
  5164. }
  5165. ],
  5166. "time": "2024-09-08T12:32:26+00:00"
  5167. },
  5168. {
  5169. "name": "symfony/options-resolver",
  5170. "version": "v7.1.1",
  5171. "source": {
  5172. "type": "git",
  5173. "url": "https://github.com/symfony/options-resolver.git",
  5174. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5175. },
  5176. "dist": {
  5177. "type": "zip",
  5178. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5179. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5180. "shasum": ""
  5181. },
  5182. "require": {
  5183. "php": ">=8.2",
  5184. "symfony/deprecation-contracts": "^2.5|^3"
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Symfony\\Component\\OptionsResolver\\": ""
  5190. },
  5191. "exclude-from-classmap": [
  5192. "/Tests/"
  5193. ]
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Fabien Potencier",
  5202. "email": "fabien@symfony.com"
  5203. },
  5204. {
  5205. "name": "Symfony Community",
  5206. "homepage": "https://symfony.com/contributors"
  5207. }
  5208. ],
  5209. "description": "Provides an improved replacement for the array_replace PHP function",
  5210. "homepage": "https://symfony.com",
  5211. "keywords": [
  5212. "config",
  5213. "configuration",
  5214. "options"
  5215. ],
  5216. "support": {
  5217. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5218. },
  5219. "funding": [
  5220. {
  5221. "url": "https://symfony.com/sponsor",
  5222. "type": "custom"
  5223. },
  5224. {
  5225. "url": "https://github.com/fabpot",
  5226. "type": "github"
  5227. },
  5228. {
  5229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5230. "type": "tidelift"
  5231. }
  5232. ],
  5233. "time": "2024-05-31T14:57:53+00:00"
  5234. },
  5235. {
  5236. "name": "symfony/password-hasher",
  5237. "version": "v7.1.1",
  5238. "source": {
  5239. "type": "git",
  5240. "url": "https://github.com/symfony/password-hasher.git",
  5241. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5242. },
  5243. "dist": {
  5244. "type": "zip",
  5245. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5246. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5247. "shasum": ""
  5248. },
  5249. "require": {
  5250. "php": ">=8.2"
  5251. },
  5252. "conflict": {
  5253. "symfony/security-core": "<6.4"
  5254. },
  5255. "require-dev": {
  5256. "symfony/console": "^6.4|^7.0",
  5257. "symfony/security-core": "^6.4|^7.0"
  5258. },
  5259. "type": "library",
  5260. "autoload": {
  5261. "psr-4": {
  5262. "Symfony\\Component\\PasswordHasher\\": ""
  5263. },
  5264. "exclude-from-classmap": [
  5265. "/Tests/"
  5266. ]
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "MIT"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Robin Chalas",
  5275. "email": "robin.chalas@gmail.com"
  5276. },
  5277. {
  5278. "name": "Symfony Community",
  5279. "homepage": "https://symfony.com/contributors"
  5280. }
  5281. ],
  5282. "description": "Provides password hashing utilities",
  5283. "homepage": "https://symfony.com",
  5284. "keywords": [
  5285. "hashing",
  5286. "password"
  5287. ],
  5288. "support": {
  5289. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5290. },
  5291. "funding": [
  5292. {
  5293. "url": "https://symfony.com/sponsor",
  5294. "type": "custom"
  5295. },
  5296. {
  5297. "url": "https://github.com/fabpot",
  5298. "type": "github"
  5299. },
  5300. {
  5301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5302. "type": "tidelift"
  5303. }
  5304. ],
  5305. "time": "2024-05-31T14:57:53+00:00"
  5306. },
  5307. {
  5308. "name": "symfony/polyfill-intl-grapheme",
  5309. "version": "v1.31.0",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5313. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5318. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5319. "shasum": ""
  5320. },
  5321. "require": {
  5322. "php": ">=7.2"
  5323. },
  5324. "suggest": {
  5325. "ext-intl": "For best performance"
  5326. },
  5327. "type": "library",
  5328. "extra": {
  5329. "thanks": {
  5330. "name": "symfony/polyfill",
  5331. "url": "https://github.com/symfony/polyfill"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "files": [
  5336. "bootstrap.php"
  5337. ],
  5338. "psr-4": {
  5339. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5340. }
  5341. },
  5342. "notification-url": "https://packagist.org/downloads/",
  5343. "license": [
  5344. "MIT"
  5345. ],
  5346. "authors": [
  5347. {
  5348. "name": "Nicolas Grekas",
  5349. "email": "p@tchwork.com"
  5350. },
  5351. {
  5352. "name": "Symfony Community",
  5353. "homepage": "https://symfony.com/contributors"
  5354. }
  5355. ],
  5356. "description": "Symfony polyfill for intl's grapheme_* functions",
  5357. "homepage": "https://symfony.com",
  5358. "keywords": [
  5359. "compatibility",
  5360. "grapheme",
  5361. "intl",
  5362. "polyfill",
  5363. "portable",
  5364. "shim"
  5365. ],
  5366. "support": {
  5367. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5368. },
  5369. "funding": [
  5370. {
  5371. "url": "https://symfony.com/sponsor",
  5372. "type": "custom"
  5373. },
  5374. {
  5375. "url": "https://github.com/fabpot",
  5376. "type": "github"
  5377. },
  5378. {
  5379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5380. "type": "tidelift"
  5381. }
  5382. ],
  5383. "time": "2024-09-09T11:45:10+00:00"
  5384. },
  5385. {
  5386. "name": "symfony/polyfill-intl-icu",
  5387. "version": "v1.31.0",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5391. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5396. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5397. "shasum": ""
  5398. },
  5399. "require": {
  5400. "php": ">=7.2"
  5401. },
  5402. "suggest": {
  5403. "ext-intl": "For best performance and support of other locales than \"en\""
  5404. },
  5405. "type": "library",
  5406. "extra": {
  5407. "thanks": {
  5408. "name": "symfony/polyfill",
  5409. "url": "https://github.com/symfony/polyfill"
  5410. }
  5411. },
  5412. "autoload": {
  5413. "files": [
  5414. "bootstrap.php"
  5415. ],
  5416. "psr-4": {
  5417. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5418. },
  5419. "classmap": [
  5420. "Resources/stubs"
  5421. ],
  5422. "exclude-from-classmap": [
  5423. "/Tests/"
  5424. ]
  5425. },
  5426. "notification-url": "https://packagist.org/downloads/",
  5427. "license": [
  5428. "MIT"
  5429. ],
  5430. "authors": [
  5431. {
  5432. "name": "Nicolas Grekas",
  5433. "email": "p@tchwork.com"
  5434. },
  5435. {
  5436. "name": "Symfony Community",
  5437. "homepage": "https://symfony.com/contributors"
  5438. }
  5439. ],
  5440. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5441. "homepage": "https://symfony.com",
  5442. "keywords": [
  5443. "compatibility",
  5444. "icu",
  5445. "intl",
  5446. "polyfill",
  5447. "portable",
  5448. "shim"
  5449. ],
  5450. "support": {
  5451. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5452. },
  5453. "funding": [
  5454. {
  5455. "url": "https://symfony.com/sponsor",
  5456. "type": "custom"
  5457. },
  5458. {
  5459. "url": "https://github.com/fabpot",
  5460. "type": "github"
  5461. },
  5462. {
  5463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5464. "type": "tidelift"
  5465. }
  5466. ],
  5467. "time": "2024-09-09T11:45:10+00:00"
  5468. },
  5469. {
  5470. "name": "symfony/polyfill-intl-idn",
  5471. "version": "v1.31.0",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5475. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5480. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5481. "shasum": ""
  5482. },
  5483. "require": {
  5484. "php": ">=7.2",
  5485. "symfony/polyfill-intl-normalizer": "^1.10"
  5486. },
  5487. "suggest": {
  5488. "ext-intl": "For best performance"
  5489. },
  5490. "type": "library",
  5491. "extra": {
  5492. "thanks": {
  5493. "name": "symfony/polyfill",
  5494. "url": "https://github.com/symfony/polyfill"
  5495. }
  5496. },
  5497. "autoload": {
  5498. "files": [
  5499. "bootstrap.php"
  5500. ],
  5501. "psr-4": {
  5502. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5503. }
  5504. },
  5505. "notification-url": "https://packagist.org/downloads/",
  5506. "license": [
  5507. "MIT"
  5508. ],
  5509. "authors": [
  5510. {
  5511. "name": "Laurent Bassin",
  5512. "email": "laurent@bassin.info"
  5513. },
  5514. {
  5515. "name": "Trevor Rowbotham",
  5516. "email": "trevor.rowbotham@pm.me"
  5517. },
  5518. {
  5519. "name": "Symfony Community",
  5520. "homepage": "https://symfony.com/contributors"
  5521. }
  5522. ],
  5523. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5524. "homepage": "https://symfony.com",
  5525. "keywords": [
  5526. "compatibility",
  5527. "idn",
  5528. "intl",
  5529. "polyfill",
  5530. "portable",
  5531. "shim"
  5532. ],
  5533. "support": {
  5534. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5535. },
  5536. "funding": [
  5537. {
  5538. "url": "https://symfony.com/sponsor",
  5539. "type": "custom"
  5540. },
  5541. {
  5542. "url": "https://github.com/fabpot",
  5543. "type": "github"
  5544. },
  5545. {
  5546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5547. "type": "tidelift"
  5548. }
  5549. ],
  5550. "time": "2024-09-09T11:45:10+00:00"
  5551. },
  5552. {
  5553. "name": "symfony/polyfill-intl-normalizer",
  5554. "version": "v1.31.0",
  5555. "source": {
  5556. "type": "git",
  5557. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5558. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5559. },
  5560. "dist": {
  5561. "type": "zip",
  5562. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5563. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5564. "shasum": ""
  5565. },
  5566. "require": {
  5567. "php": ">=7.2"
  5568. },
  5569. "suggest": {
  5570. "ext-intl": "For best performance"
  5571. },
  5572. "type": "library",
  5573. "extra": {
  5574. "thanks": {
  5575. "name": "symfony/polyfill",
  5576. "url": "https://github.com/symfony/polyfill"
  5577. }
  5578. },
  5579. "autoload": {
  5580. "files": [
  5581. "bootstrap.php"
  5582. ],
  5583. "psr-4": {
  5584. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5585. },
  5586. "classmap": [
  5587. "Resources/stubs"
  5588. ]
  5589. },
  5590. "notification-url": "https://packagist.org/downloads/",
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Nicolas Grekas",
  5597. "email": "p@tchwork.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5605. "homepage": "https://symfony.com",
  5606. "keywords": [
  5607. "compatibility",
  5608. "intl",
  5609. "normalizer",
  5610. "polyfill",
  5611. "portable",
  5612. "shim"
  5613. ],
  5614. "support": {
  5615. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5616. },
  5617. "funding": [
  5618. {
  5619. "url": "https://symfony.com/sponsor",
  5620. "type": "custom"
  5621. },
  5622. {
  5623. "url": "https://github.com/fabpot",
  5624. "type": "github"
  5625. },
  5626. {
  5627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5628. "type": "tidelift"
  5629. }
  5630. ],
  5631. "time": "2024-09-09T11:45:10+00:00"
  5632. },
  5633. {
  5634. "name": "symfony/polyfill-mbstring",
  5635. "version": "v1.31.0",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5639. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5644. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": ">=7.2"
  5649. },
  5650. "provide": {
  5651. "ext-mbstring": "*"
  5652. },
  5653. "suggest": {
  5654. "ext-mbstring": "For best performance"
  5655. },
  5656. "type": "library",
  5657. "extra": {
  5658. "thanks": {
  5659. "name": "symfony/polyfill",
  5660. "url": "https://github.com/symfony/polyfill"
  5661. }
  5662. },
  5663. "autoload": {
  5664. "files": [
  5665. "bootstrap.php"
  5666. ],
  5667. "psr-4": {
  5668. "Symfony\\Polyfill\\Mbstring\\": ""
  5669. }
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "MIT"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Nicolas Grekas",
  5678. "email": "p@tchwork.com"
  5679. },
  5680. {
  5681. "name": "Symfony Community",
  5682. "homepage": "https://symfony.com/contributors"
  5683. }
  5684. ],
  5685. "description": "Symfony polyfill for the Mbstring extension",
  5686. "homepage": "https://symfony.com",
  5687. "keywords": [
  5688. "compatibility",
  5689. "mbstring",
  5690. "polyfill",
  5691. "portable",
  5692. "shim"
  5693. ],
  5694. "support": {
  5695. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5696. },
  5697. "funding": [
  5698. {
  5699. "url": "https://symfony.com/sponsor",
  5700. "type": "custom"
  5701. },
  5702. {
  5703. "url": "https://github.com/fabpot",
  5704. "type": "github"
  5705. },
  5706. {
  5707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5708. "type": "tidelift"
  5709. }
  5710. ],
  5711. "time": "2024-09-09T11:45:10+00:00"
  5712. },
  5713. {
  5714. "name": "symfony/polyfill-php83",
  5715. "version": "v1.31.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/symfony/polyfill-php83.git",
  5719. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5724. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5725. "shasum": ""
  5726. },
  5727. "require": {
  5728. "php": ">=7.2"
  5729. },
  5730. "type": "library",
  5731. "extra": {
  5732. "thanks": {
  5733. "name": "symfony/polyfill",
  5734. "url": "https://github.com/symfony/polyfill"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "files": [
  5739. "bootstrap.php"
  5740. ],
  5741. "psr-4": {
  5742. "Symfony\\Polyfill\\Php83\\": ""
  5743. },
  5744. "classmap": [
  5745. "Resources/stubs"
  5746. ]
  5747. },
  5748. "notification-url": "https://packagist.org/downloads/",
  5749. "license": [
  5750. "MIT"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Nicolas Grekas",
  5755. "email": "p@tchwork.com"
  5756. },
  5757. {
  5758. "name": "Symfony Community",
  5759. "homepage": "https://symfony.com/contributors"
  5760. }
  5761. ],
  5762. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5763. "homepage": "https://symfony.com",
  5764. "keywords": [
  5765. "compatibility",
  5766. "polyfill",
  5767. "portable",
  5768. "shim"
  5769. ],
  5770. "support": {
  5771. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5772. },
  5773. "funding": [
  5774. {
  5775. "url": "https://symfony.com/sponsor",
  5776. "type": "custom"
  5777. },
  5778. {
  5779. "url": "https://github.com/fabpot",
  5780. "type": "github"
  5781. },
  5782. {
  5783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5784. "type": "tidelift"
  5785. }
  5786. ],
  5787. "time": "2024-09-09T11:45:10+00:00"
  5788. },
  5789. {
  5790. "name": "symfony/process",
  5791. "version": "v7.1.5",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://github.com/symfony/process.git",
  5795. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  5800. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  5801. "shasum": ""
  5802. },
  5803. "require": {
  5804. "php": ">=8.2"
  5805. },
  5806. "type": "library",
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Symfony\\Component\\Process\\": ""
  5810. },
  5811. "exclude-from-classmap": [
  5812. "/Tests/"
  5813. ]
  5814. },
  5815. "notification-url": "https://packagist.org/downloads/",
  5816. "license": [
  5817. "MIT"
  5818. ],
  5819. "authors": [
  5820. {
  5821. "name": "Fabien Potencier",
  5822. "email": "fabien@symfony.com"
  5823. },
  5824. {
  5825. "name": "Symfony Community",
  5826. "homepage": "https://symfony.com/contributors"
  5827. }
  5828. ],
  5829. "description": "Executes commands in sub-processes",
  5830. "homepage": "https://symfony.com",
  5831. "support": {
  5832. "source": "https://github.com/symfony/process/tree/v7.1.5"
  5833. },
  5834. "funding": [
  5835. {
  5836. "url": "https://symfony.com/sponsor",
  5837. "type": "custom"
  5838. },
  5839. {
  5840. "url": "https://github.com/fabpot",
  5841. "type": "github"
  5842. },
  5843. {
  5844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5845. "type": "tidelift"
  5846. }
  5847. ],
  5848. "time": "2024-09-19T21:48:23+00:00"
  5849. },
  5850. {
  5851. "name": "symfony/property-access",
  5852. "version": "v7.1.4",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/symfony/property-access.git",
  5856. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  5861. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": ">=8.2",
  5866. "symfony/property-info": "^6.4|^7.0"
  5867. },
  5868. "require-dev": {
  5869. "symfony/cache": "^6.4|^7.0"
  5870. },
  5871. "type": "library",
  5872. "autoload": {
  5873. "psr-4": {
  5874. "Symfony\\Component\\PropertyAccess\\": ""
  5875. },
  5876. "exclude-from-classmap": [
  5877. "/Tests/"
  5878. ]
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Fabien Potencier",
  5887. "email": "fabien@symfony.com"
  5888. },
  5889. {
  5890. "name": "Symfony Community",
  5891. "homepage": "https://symfony.com/contributors"
  5892. }
  5893. ],
  5894. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5895. "homepage": "https://symfony.com",
  5896. "keywords": [
  5897. "access",
  5898. "array",
  5899. "extraction",
  5900. "index",
  5901. "injection",
  5902. "object",
  5903. "property",
  5904. "property-path",
  5905. "reflection"
  5906. ],
  5907. "support": {
  5908. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  5909. },
  5910. "funding": [
  5911. {
  5912. "url": "https://symfony.com/sponsor",
  5913. "type": "custom"
  5914. },
  5915. {
  5916. "url": "https://github.com/fabpot",
  5917. "type": "github"
  5918. },
  5919. {
  5920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5921. "type": "tidelift"
  5922. }
  5923. ],
  5924. "time": "2024-08-30T16:12:47+00:00"
  5925. },
  5926. {
  5927. "name": "symfony/property-info",
  5928. "version": "v7.1.3",
  5929. "source": {
  5930. "type": "git",
  5931. "url": "https://github.com/symfony/property-info.git",
  5932. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  5933. },
  5934. "dist": {
  5935. "type": "zip",
  5936. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5937. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5938. "shasum": ""
  5939. },
  5940. "require": {
  5941. "php": ">=8.2",
  5942. "symfony/string": "^6.4|^7.0",
  5943. "symfony/type-info": "^7.1"
  5944. },
  5945. "conflict": {
  5946. "phpdocumentor/reflection-docblock": "<5.2",
  5947. "phpdocumentor/type-resolver": "<1.5.1",
  5948. "symfony/dependency-injection": "<6.4",
  5949. "symfony/serializer": "<6.4"
  5950. },
  5951. "require-dev": {
  5952. "phpdocumentor/reflection-docblock": "^5.2",
  5953. "phpstan/phpdoc-parser": "^1.0",
  5954. "symfony/cache": "^6.4|^7.0",
  5955. "symfony/dependency-injection": "^6.4|^7.0",
  5956. "symfony/serializer": "^6.4|^7.0"
  5957. },
  5958. "type": "library",
  5959. "autoload": {
  5960. "psr-4": {
  5961. "Symfony\\Component\\PropertyInfo\\": ""
  5962. },
  5963. "exclude-from-classmap": [
  5964. "/Tests/"
  5965. ]
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Kévin Dunglas",
  5974. "email": "dunglas@gmail.com"
  5975. },
  5976. {
  5977. "name": "Symfony Community",
  5978. "homepage": "https://symfony.com/contributors"
  5979. }
  5980. ],
  5981. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5982. "homepage": "https://symfony.com",
  5983. "keywords": [
  5984. "doctrine",
  5985. "phpdoc",
  5986. "property",
  5987. "symfony",
  5988. "type",
  5989. "validator"
  5990. ],
  5991. "support": {
  5992. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  5993. },
  5994. "funding": [
  5995. {
  5996. "url": "https://symfony.com/sponsor",
  5997. "type": "custom"
  5998. },
  5999. {
  6000. "url": "https://github.com/fabpot",
  6001. "type": "github"
  6002. },
  6003. {
  6004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6005. "type": "tidelift"
  6006. }
  6007. ],
  6008. "time": "2024-07-26T07:36:36+00:00"
  6009. },
  6010. {
  6011. "name": "symfony/routing",
  6012. "version": "v7.1.4",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://github.com/symfony/routing.git",
  6016. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6021. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6022. "shasum": ""
  6023. },
  6024. "require": {
  6025. "php": ">=8.2",
  6026. "symfony/deprecation-contracts": "^2.5|^3"
  6027. },
  6028. "conflict": {
  6029. "symfony/config": "<6.4",
  6030. "symfony/dependency-injection": "<6.4",
  6031. "symfony/yaml": "<6.4"
  6032. },
  6033. "require-dev": {
  6034. "psr/log": "^1|^2|^3",
  6035. "symfony/config": "^6.4|^7.0",
  6036. "symfony/dependency-injection": "^6.4|^7.0",
  6037. "symfony/expression-language": "^6.4|^7.0",
  6038. "symfony/http-foundation": "^6.4|^7.0",
  6039. "symfony/yaml": "^6.4|^7.0"
  6040. },
  6041. "type": "library",
  6042. "autoload": {
  6043. "psr-4": {
  6044. "Symfony\\Component\\Routing\\": ""
  6045. },
  6046. "exclude-from-classmap": [
  6047. "/Tests/"
  6048. ]
  6049. },
  6050. "notification-url": "https://packagist.org/downloads/",
  6051. "license": [
  6052. "MIT"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Fabien Potencier",
  6057. "email": "fabien@symfony.com"
  6058. },
  6059. {
  6060. "name": "Symfony Community",
  6061. "homepage": "https://symfony.com/contributors"
  6062. }
  6063. ],
  6064. "description": "Maps an HTTP request to a set of configuration variables",
  6065. "homepage": "https://symfony.com",
  6066. "keywords": [
  6067. "router",
  6068. "routing",
  6069. "uri",
  6070. "url"
  6071. ],
  6072. "support": {
  6073. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  6074. },
  6075. "funding": [
  6076. {
  6077. "url": "https://symfony.com/sponsor",
  6078. "type": "custom"
  6079. },
  6080. {
  6081. "url": "https://github.com/fabpot",
  6082. "type": "github"
  6083. },
  6084. {
  6085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6086. "type": "tidelift"
  6087. }
  6088. ],
  6089. "time": "2024-08-29T08:16:25+00:00"
  6090. },
  6091. {
  6092. "name": "symfony/runtime",
  6093. "version": "v7.1.1",
  6094. "source": {
  6095. "type": "git",
  6096. "url": "https://github.com/symfony/runtime.git",
  6097. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6098. },
  6099. "dist": {
  6100. "type": "zip",
  6101. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6102. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6103. "shasum": ""
  6104. },
  6105. "require": {
  6106. "composer-plugin-api": "^1.0|^2.0",
  6107. "php": ">=8.2"
  6108. },
  6109. "conflict": {
  6110. "symfony/dotenv": "<6.4"
  6111. },
  6112. "require-dev": {
  6113. "composer/composer": "^2.6",
  6114. "symfony/console": "^6.4|^7.0",
  6115. "symfony/dotenv": "^6.4|^7.0",
  6116. "symfony/http-foundation": "^6.4|^7.0",
  6117. "symfony/http-kernel": "^6.4|^7.0"
  6118. },
  6119. "type": "composer-plugin",
  6120. "extra": {
  6121. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6122. },
  6123. "autoload": {
  6124. "psr-4": {
  6125. "Symfony\\Component\\Runtime\\": "",
  6126. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6127. },
  6128. "exclude-from-classmap": [
  6129. "/Tests/"
  6130. ]
  6131. },
  6132. "notification-url": "https://packagist.org/downloads/",
  6133. "license": [
  6134. "MIT"
  6135. ],
  6136. "authors": [
  6137. {
  6138. "name": "Nicolas Grekas",
  6139. "email": "p@tchwork.com"
  6140. },
  6141. {
  6142. "name": "Symfony Community",
  6143. "homepage": "https://symfony.com/contributors"
  6144. }
  6145. ],
  6146. "description": "Enables decoupling PHP applications from global state",
  6147. "homepage": "https://symfony.com",
  6148. "keywords": [
  6149. "runtime"
  6150. ],
  6151. "support": {
  6152. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6153. },
  6154. "funding": [
  6155. {
  6156. "url": "https://symfony.com/sponsor",
  6157. "type": "custom"
  6158. },
  6159. {
  6160. "url": "https://github.com/fabpot",
  6161. "type": "github"
  6162. },
  6163. {
  6164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6165. "type": "tidelift"
  6166. }
  6167. ],
  6168. "time": "2024-05-31T14:55:39+00:00"
  6169. },
  6170. {
  6171. "name": "symfony/security-bundle",
  6172. "version": "v7.1.4",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://github.com/symfony/security-bundle.git",
  6176. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6181. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6182. "shasum": ""
  6183. },
  6184. "require": {
  6185. "composer-runtime-api": ">=2.1",
  6186. "ext-xml": "*",
  6187. "php": ">=8.2",
  6188. "symfony/clock": "^6.4|^7.0",
  6189. "symfony/config": "^6.4|^7.0",
  6190. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6191. "symfony/event-dispatcher": "^6.4|^7.0",
  6192. "symfony/http-foundation": "^6.4|^7.0",
  6193. "symfony/http-kernel": "^6.4|^7.0",
  6194. "symfony/password-hasher": "^6.4|^7.0",
  6195. "symfony/security-core": "^6.4|^7.0",
  6196. "symfony/security-csrf": "^6.4|^7.0",
  6197. "symfony/security-http": "^7.1",
  6198. "symfony/service-contracts": "^2.5|^3"
  6199. },
  6200. "conflict": {
  6201. "symfony/browser-kit": "<6.4",
  6202. "symfony/console": "<6.4",
  6203. "symfony/framework-bundle": "<6.4",
  6204. "symfony/http-client": "<6.4",
  6205. "symfony/ldap": "<6.4",
  6206. "symfony/serializer": "<6.4",
  6207. "symfony/twig-bundle": "<6.4",
  6208. "symfony/validator": "<6.4"
  6209. },
  6210. "require-dev": {
  6211. "symfony/asset": "^6.4|^7.0",
  6212. "symfony/browser-kit": "^6.4|^7.0",
  6213. "symfony/console": "^6.4|^7.0",
  6214. "symfony/css-selector": "^6.4|^7.0",
  6215. "symfony/dom-crawler": "^6.4|^7.0",
  6216. "symfony/expression-language": "^6.4|^7.0",
  6217. "symfony/form": "^6.4|^7.0",
  6218. "symfony/framework-bundle": "^6.4|^7.0",
  6219. "symfony/http-client": "^6.4|^7.0",
  6220. "symfony/ldap": "^6.4|^7.0",
  6221. "symfony/process": "^6.4|^7.0",
  6222. "symfony/rate-limiter": "^6.4|^7.0",
  6223. "symfony/serializer": "^6.4|^7.0",
  6224. "symfony/translation": "^6.4|^7.0",
  6225. "symfony/twig-bridge": "^6.4|^7.0",
  6226. "symfony/twig-bundle": "^6.4|^7.0",
  6227. "symfony/validator": "^6.4|^7.0",
  6228. "symfony/yaml": "^6.4|^7.0",
  6229. "twig/twig": "^3.0.4",
  6230. "web-token/jwt-library": "^3.3.2|^4.0"
  6231. },
  6232. "type": "symfony-bundle",
  6233. "autoload": {
  6234. "psr-4": {
  6235. "Symfony\\Bundle\\SecurityBundle\\": ""
  6236. },
  6237. "exclude-from-classmap": [
  6238. "/Tests/"
  6239. ]
  6240. },
  6241. "notification-url": "https://packagist.org/downloads/",
  6242. "license": [
  6243. "MIT"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "Fabien Potencier",
  6248. "email": "fabien@symfony.com"
  6249. },
  6250. {
  6251. "name": "Symfony Community",
  6252. "homepage": "https://symfony.com/contributors"
  6253. }
  6254. ],
  6255. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6256. "homepage": "https://symfony.com",
  6257. "support": {
  6258. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  6259. },
  6260. "funding": [
  6261. {
  6262. "url": "https://symfony.com/sponsor",
  6263. "type": "custom"
  6264. },
  6265. {
  6266. "url": "https://github.com/fabpot",
  6267. "type": "github"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2024-08-20T11:38:55+00:00"
  6275. },
  6276. {
  6277. "name": "symfony/security-core",
  6278. "version": "v7.1.5",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/symfony/security-core.git",
  6282. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  6287. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=8.2",
  6292. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6293. "symfony/password-hasher": "^6.4|^7.0",
  6294. "symfony/service-contracts": "^2.5|^3"
  6295. },
  6296. "conflict": {
  6297. "symfony/dependency-injection": "<6.4",
  6298. "symfony/event-dispatcher": "<6.4",
  6299. "symfony/http-foundation": "<6.4",
  6300. "symfony/ldap": "<6.4",
  6301. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6302. "symfony/validator": "<6.4"
  6303. },
  6304. "require-dev": {
  6305. "psr/cache": "^1.0|^2.0|^3.0",
  6306. "psr/container": "^1.1|^2.0",
  6307. "psr/log": "^1|^2|^3",
  6308. "symfony/cache": "^6.4|^7.0",
  6309. "symfony/dependency-injection": "^6.4|^7.0",
  6310. "symfony/event-dispatcher": "^6.4|^7.0",
  6311. "symfony/expression-language": "^6.4|^7.0",
  6312. "symfony/http-foundation": "^6.4|^7.0",
  6313. "symfony/ldap": "^6.4|^7.0",
  6314. "symfony/string": "^6.4|^7.0",
  6315. "symfony/translation": "^6.4.3|^7.0.3",
  6316. "symfony/validator": "^6.4|^7.0"
  6317. },
  6318. "type": "library",
  6319. "autoload": {
  6320. "psr-4": {
  6321. "Symfony\\Component\\Security\\Core\\": ""
  6322. },
  6323. "exclude-from-classmap": [
  6324. "/Tests/"
  6325. ]
  6326. },
  6327. "notification-url": "https://packagist.org/downloads/",
  6328. "license": [
  6329. "MIT"
  6330. ],
  6331. "authors": [
  6332. {
  6333. "name": "Fabien Potencier",
  6334. "email": "fabien@symfony.com"
  6335. },
  6336. {
  6337. "name": "Symfony Community",
  6338. "homepage": "https://symfony.com/contributors"
  6339. }
  6340. ],
  6341. "description": "Symfony Security Component - Core Library",
  6342. "homepage": "https://symfony.com",
  6343. "support": {
  6344. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  6345. },
  6346. "funding": [
  6347. {
  6348. "url": "https://symfony.com/sponsor",
  6349. "type": "custom"
  6350. },
  6351. {
  6352. "url": "https://github.com/fabpot",
  6353. "type": "github"
  6354. },
  6355. {
  6356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6357. "type": "tidelift"
  6358. }
  6359. ],
  6360. "time": "2024-09-20T13:35:23+00:00"
  6361. },
  6362. {
  6363. "name": "symfony/security-csrf",
  6364. "version": "v7.1.1",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/symfony/security-csrf.git",
  6368. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6373. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6374. "shasum": ""
  6375. },
  6376. "require": {
  6377. "php": ">=8.2",
  6378. "symfony/security-core": "^6.4|^7.0"
  6379. },
  6380. "conflict": {
  6381. "symfony/http-foundation": "<6.4"
  6382. },
  6383. "require-dev": {
  6384. "symfony/http-foundation": "^6.4|^7.0"
  6385. },
  6386. "type": "library",
  6387. "autoload": {
  6388. "psr-4": {
  6389. "Symfony\\Component\\Security\\Csrf\\": ""
  6390. },
  6391. "exclude-from-classmap": [
  6392. "/Tests/"
  6393. ]
  6394. },
  6395. "notification-url": "https://packagist.org/downloads/",
  6396. "license": [
  6397. "MIT"
  6398. ],
  6399. "authors": [
  6400. {
  6401. "name": "Fabien Potencier",
  6402. "email": "fabien@symfony.com"
  6403. },
  6404. {
  6405. "name": "Symfony Community",
  6406. "homepage": "https://symfony.com/contributors"
  6407. }
  6408. ],
  6409. "description": "Symfony Security Component - CSRF Library",
  6410. "homepage": "https://symfony.com",
  6411. "support": {
  6412. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://symfony.com/sponsor",
  6417. "type": "custom"
  6418. },
  6419. {
  6420. "url": "https://github.com/fabpot",
  6421. "type": "github"
  6422. },
  6423. {
  6424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6425. "type": "tidelift"
  6426. }
  6427. ],
  6428. "time": "2024-05-31T14:57:53+00:00"
  6429. },
  6430. {
  6431. "name": "symfony/security-http",
  6432. "version": "v7.1.5",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://github.com/symfony/security-http.git",
  6436. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  6441. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  6442. "shasum": ""
  6443. },
  6444. "require": {
  6445. "php": ">=8.2",
  6446. "symfony/deprecation-contracts": "^2.5|^3",
  6447. "symfony/http-foundation": "^6.4|^7.0",
  6448. "symfony/http-kernel": "^6.4|^7.0",
  6449. "symfony/polyfill-mbstring": "~1.0",
  6450. "symfony/property-access": "^6.4|^7.0",
  6451. "symfony/security-core": "^6.4|^7.0",
  6452. "symfony/service-contracts": "^2.5|^3"
  6453. },
  6454. "conflict": {
  6455. "symfony/clock": "<6.4",
  6456. "symfony/event-dispatcher": "<6.4",
  6457. "symfony/http-client-contracts": "<3.0",
  6458. "symfony/security-bundle": "<6.4",
  6459. "symfony/security-csrf": "<6.4"
  6460. },
  6461. "require-dev": {
  6462. "psr/log": "^1|^2|^3",
  6463. "symfony/cache": "^6.4|^7.0",
  6464. "symfony/clock": "^6.4|^7.0",
  6465. "symfony/expression-language": "^6.4|^7.0",
  6466. "symfony/http-client": "^6.4|^7.0",
  6467. "symfony/http-client-contracts": "^3.0",
  6468. "symfony/rate-limiter": "^6.4|^7.0",
  6469. "symfony/routing": "^6.4|^7.0",
  6470. "symfony/security-csrf": "^6.4|^7.0",
  6471. "symfony/translation": "^6.4|^7.0",
  6472. "web-token/jwt-library": "^3.3.2|^4.0"
  6473. },
  6474. "type": "library",
  6475. "autoload": {
  6476. "psr-4": {
  6477. "Symfony\\Component\\Security\\Http\\": ""
  6478. },
  6479. "exclude-from-classmap": [
  6480. "/Tests/"
  6481. ]
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "license": [
  6485. "MIT"
  6486. ],
  6487. "authors": [
  6488. {
  6489. "name": "Fabien Potencier",
  6490. "email": "fabien@symfony.com"
  6491. },
  6492. {
  6493. "name": "Symfony Community",
  6494. "homepage": "https://symfony.com/contributors"
  6495. }
  6496. ],
  6497. "description": "Symfony Security Component - HTTP Integration",
  6498. "homepage": "https://symfony.com",
  6499. "support": {
  6500. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  6501. },
  6502. "funding": [
  6503. {
  6504. "url": "https://symfony.com/sponsor",
  6505. "type": "custom"
  6506. },
  6507. {
  6508. "url": "https://github.com/fabpot",
  6509. "type": "github"
  6510. },
  6511. {
  6512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6513. "type": "tidelift"
  6514. }
  6515. ],
  6516. "time": "2024-09-20T08:28:38+00:00"
  6517. },
  6518. {
  6519. "name": "symfony/serializer",
  6520. "version": "v7.1.5",
  6521. "source": {
  6522. "type": "git",
  6523. "url": "https://github.com/symfony/serializer.git",
  6524. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  6525. },
  6526. "dist": {
  6527. "type": "zip",
  6528. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6529. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6530. "shasum": ""
  6531. },
  6532. "require": {
  6533. "php": ">=8.2",
  6534. "symfony/deprecation-contracts": "^2.5|^3",
  6535. "symfony/polyfill-ctype": "~1.8"
  6536. },
  6537. "conflict": {
  6538. "phpdocumentor/reflection-docblock": "<3.2.2",
  6539. "phpdocumentor/type-resolver": "<1.4.0",
  6540. "symfony/dependency-injection": "<6.4",
  6541. "symfony/property-access": "<6.4",
  6542. "symfony/property-info": "<6.4",
  6543. "symfony/type-info": "<7.1.5",
  6544. "symfony/uid": "<6.4",
  6545. "symfony/validator": "<6.4",
  6546. "symfony/yaml": "<6.4"
  6547. },
  6548. "require-dev": {
  6549. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6550. "phpstan/phpdoc-parser": "^1.0",
  6551. "seld/jsonlint": "^1.10",
  6552. "symfony/cache": "^6.4|^7.0",
  6553. "symfony/config": "^6.4|^7.0",
  6554. "symfony/console": "^6.4|^7.0",
  6555. "symfony/dependency-injection": "^6.4|^7.0",
  6556. "symfony/error-handler": "^6.4|^7.0",
  6557. "symfony/filesystem": "^6.4|^7.0",
  6558. "symfony/form": "^6.4|^7.0",
  6559. "symfony/http-foundation": "^6.4|^7.0",
  6560. "symfony/http-kernel": "^6.4|^7.0",
  6561. "symfony/messenger": "^6.4|^7.0",
  6562. "symfony/mime": "^6.4|^7.0",
  6563. "symfony/property-access": "^6.4|^7.0",
  6564. "symfony/property-info": "^6.4|^7.0",
  6565. "symfony/translation-contracts": "^2.5|^3",
  6566. "symfony/type-info": "^7.1.5",
  6567. "symfony/uid": "^6.4|^7.0",
  6568. "symfony/validator": "^6.4|^7.0",
  6569. "symfony/var-dumper": "^6.4|^7.0",
  6570. "symfony/var-exporter": "^6.4|^7.0",
  6571. "symfony/yaml": "^6.4|^7.0"
  6572. },
  6573. "type": "library",
  6574. "autoload": {
  6575. "psr-4": {
  6576. "Symfony\\Component\\Serializer\\": ""
  6577. },
  6578. "exclude-from-classmap": [
  6579. "/Tests/"
  6580. ]
  6581. },
  6582. "notification-url": "https://packagist.org/downloads/",
  6583. "license": [
  6584. "MIT"
  6585. ],
  6586. "authors": [
  6587. {
  6588. "name": "Fabien Potencier",
  6589. "email": "fabien@symfony.com"
  6590. },
  6591. {
  6592. "name": "Symfony Community",
  6593. "homepage": "https://symfony.com/contributors"
  6594. }
  6595. ],
  6596. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6597. "homepage": "https://symfony.com",
  6598. "support": {
  6599. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  6600. },
  6601. "funding": [
  6602. {
  6603. "url": "https://symfony.com/sponsor",
  6604. "type": "custom"
  6605. },
  6606. {
  6607. "url": "https://github.com/fabpot",
  6608. "type": "github"
  6609. },
  6610. {
  6611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6612. "type": "tidelift"
  6613. }
  6614. ],
  6615. "time": "2024-09-20T12:13:15+00:00"
  6616. },
  6617. {
  6618. "name": "symfony/service-contracts",
  6619. "version": "v3.5.0",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://github.com/symfony/service-contracts.git",
  6623. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6628. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6629. "shasum": ""
  6630. },
  6631. "require": {
  6632. "php": ">=8.1",
  6633. "psr/container": "^1.1|^2.0",
  6634. "symfony/deprecation-contracts": "^2.5|^3"
  6635. },
  6636. "conflict": {
  6637. "ext-psr": "<1.1|>=2"
  6638. },
  6639. "type": "library",
  6640. "extra": {
  6641. "branch-alias": {
  6642. "dev-main": "3.5-dev"
  6643. },
  6644. "thanks": {
  6645. "name": "symfony/contracts",
  6646. "url": "https://github.com/symfony/contracts"
  6647. }
  6648. },
  6649. "autoload": {
  6650. "psr-4": {
  6651. "Symfony\\Contracts\\Service\\": ""
  6652. },
  6653. "exclude-from-classmap": [
  6654. "/Test/"
  6655. ]
  6656. },
  6657. "notification-url": "https://packagist.org/downloads/",
  6658. "license": [
  6659. "MIT"
  6660. ],
  6661. "authors": [
  6662. {
  6663. "name": "Nicolas Grekas",
  6664. "email": "p@tchwork.com"
  6665. },
  6666. {
  6667. "name": "Symfony Community",
  6668. "homepage": "https://symfony.com/contributors"
  6669. }
  6670. ],
  6671. "description": "Generic abstractions related to writing services",
  6672. "homepage": "https://symfony.com",
  6673. "keywords": [
  6674. "abstractions",
  6675. "contracts",
  6676. "decoupling",
  6677. "interfaces",
  6678. "interoperability",
  6679. "standards"
  6680. ],
  6681. "support": {
  6682. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6683. },
  6684. "funding": [
  6685. {
  6686. "url": "https://symfony.com/sponsor",
  6687. "type": "custom"
  6688. },
  6689. {
  6690. "url": "https://github.com/fabpot",
  6691. "type": "github"
  6692. },
  6693. {
  6694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6695. "type": "tidelift"
  6696. }
  6697. ],
  6698. "time": "2024-04-18T09:32:20+00:00"
  6699. },
  6700. {
  6701. "name": "symfony/stimulus-bundle",
  6702. "version": "v2.21.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://github.com/symfony/stimulus-bundle.git",
  6706. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  6711. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  6712. "shasum": ""
  6713. },
  6714. "require": {
  6715. "php": ">=8.1",
  6716. "symfony/config": "^5.4|^6.0|^7.0",
  6717. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6718. "symfony/deprecation-contracts": "^2.0|^3.0",
  6719. "symfony/finder": "^5.4|^6.0|^7.0",
  6720. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6721. "twig/twig": "^2.15.3|^3.8"
  6722. },
  6723. "require-dev": {
  6724. "symfony/asset-mapper": "^6.3|^7.0",
  6725. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6726. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6727. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6728. "zenstruck/browser": "^1.4"
  6729. },
  6730. "type": "symfony-bundle",
  6731. "autoload": {
  6732. "psr-4": {
  6733. "Symfony\\UX\\StimulusBundle\\": "src"
  6734. }
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Symfony Community",
  6743. "homepage": "https://symfony.com/contributors"
  6744. }
  6745. ],
  6746. "description": "Integration with your Symfony app & Stimulus!",
  6747. "keywords": [
  6748. "symfony-ux"
  6749. ],
  6750. "support": {
  6751. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://symfony.com/sponsor",
  6756. "type": "custom"
  6757. },
  6758. {
  6759. "url": "https://github.com/fabpot",
  6760. "type": "github"
  6761. },
  6762. {
  6763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6764. "type": "tidelift"
  6765. }
  6766. ],
  6767. "time": "2024-10-05T22:11:16+00:00"
  6768. },
  6769. {
  6770. "name": "symfony/stopwatch",
  6771. "version": "v7.1.1",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://github.com/symfony/stopwatch.git",
  6775. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6780. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6781. "shasum": ""
  6782. },
  6783. "require": {
  6784. "php": ">=8.2",
  6785. "symfony/service-contracts": "^2.5|^3"
  6786. },
  6787. "type": "library",
  6788. "autoload": {
  6789. "psr-4": {
  6790. "Symfony\\Component\\Stopwatch\\": ""
  6791. },
  6792. "exclude-from-classmap": [
  6793. "/Tests/"
  6794. ]
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "MIT"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Fabien Potencier",
  6803. "email": "fabien@symfony.com"
  6804. },
  6805. {
  6806. "name": "Symfony Community",
  6807. "homepage": "https://symfony.com/contributors"
  6808. }
  6809. ],
  6810. "description": "Provides a way to profile code",
  6811. "homepage": "https://symfony.com",
  6812. "support": {
  6813. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  6814. },
  6815. "funding": [
  6816. {
  6817. "url": "https://symfony.com/sponsor",
  6818. "type": "custom"
  6819. },
  6820. {
  6821. "url": "https://github.com/fabpot",
  6822. "type": "github"
  6823. },
  6824. {
  6825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6826. "type": "tidelift"
  6827. }
  6828. ],
  6829. "time": "2024-05-31T14:57:53+00:00"
  6830. },
  6831. {
  6832. "name": "symfony/string",
  6833. "version": "v7.1.5",
  6834. "source": {
  6835. "type": "git",
  6836. "url": "https://github.com/symfony/string.git",
  6837. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  6838. },
  6839. "dist": {
  6840. "type": "zip",
  6841. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  6842. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  6843. "shasum": ""
  6844. },
  6845. "require": {
  6846. "php": ">=8.2",
  6847. "symfony/polyfill-ctype": "~1.8",
  6848. "symfony/polyfill-intl-grapheme": "~1.0",
  6849. "symfony/polyfill-intl-normalizer": "~1.0",
  6850. "symfony/polyfill-mbstring": "~1.0"
  6851. },
  6852. "conflict": {
  6853. "symfony/translation-contracts": "<2.5"
  6854. },
  6855. "require-dev": {
  6856. "symfony/emoji": "^7.1",
  6857. "symfony/error-handler": "^6.4|^7.0",
  6858. "symfony/http-client": "^6.4|^7.0",
  6859. "symfony/intl": "^6.4|^7.0",
  6860. "symfony/translation-contracts": "^2.5|^3.0",
  6861. "symfony/var-exporter": "^6.4|^7.0"
  6862. },
  6863. "type": "library",
  6864. "autoload": {
  6865. "files": [
  6866. "Resources/functions.php"
  6867. ],
  6868. "psr-4": {
  6869. "Symfony\\Component\\String\\": ""
  6870. },
  6871. "exclude-from-classmap": [
  6872. "/Tests/"
  6873. ]
  6874. },
  6875. "notification-url": "https://packagist.org/downloads/",
  6876. "license": [
  6877. "MIT"
  6878. ],
  6879. "authors": [
  6880. {
  6881. "name": "Nicolas Grekas",
  6882. "email": "p@tchwork.com"
  6883. },
  6884. {
  6885. "name": "Symfony Community",
  6886. "homepage": "https://symfony.com/contributors"
  6887. }
  6888. ],
  6889. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6890. "homepage": "https://symfony.com",
  6891. "keywords": [
  6892. "grapheme",
  6893. "i18n",
  6894. "string",
  6895. "unicode",
  6896. "utf-8",
  6897. "utf8"
  6898. ],
  6899. "support": {
  6900. "source": "https://github.com/symfony/string/tree/v7.1.5"
  6901. },
  6902. "funding": [
  6903. {
  6904. "url": "https://symfony.com/sponsor",
  6905. "type": "custom"
  6906. },
  6907. {
  6908. "url": "https://github.com/fabpot",
  6909. "type": "github"
  6910. },
  6911. {
  6912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6913. "type": "tidelift"
  6914. }
  6915. ],
  6916. "time": "2024-09-20T08:28:38+00:00"
  6917. },
  6918. {
  6919. "name": "symfony/translation",
  6920. "version": "v7.1.5",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/symfony/translation.git",
  6924. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6929. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6930. "shasum": ""
  6931. },
  6932. "require": {
  6933. "php": ">=8.2",
  6934. "symfony/polyfill-mbstring": "~1.0",
  6935. "symfony/translation-contracts": "^2.5|^3.0"
  6936. },
  6937. "conflict": {
  6938. "symfony/config": "<6.4",
  6939. "symfony/console": "<6.4",
  6940. "symfony/dependency-injection": "<6.4",
  6941. "symfony/http-client-contracts": "<2.5",
  6942. "symfony/http-kernel": "<6.4",
  6943. "symfony/service-contracts": "<2.5",
  6944. "symfony/twig-bundle": "<6.4",
  6945. "symfony/yaml": "<6.4"
  6946. },
  6947. "provide": {
  6948. "symfony/translation-implementation": "2.3|3.0"
  6949. },
  6950. "require-dev": {
  6951. "nikic/php-parser": "^4.18|^5.0",
  6952. "psr/log": "^1|^2|^3",
  6953. "symfony/config": "^6.4|^7.0",
  6954. "symfony/console": "^6.4|^7.0",
  6955. "symfony/dependency-injection": "^6.4|^7.0",
  6956. "symfony/finder": "^6.4|^7.0",
  6957. "symfony/http-client-contracts": "^2.5|^3.0",
  6958. "symfony/http-kernel": "^6.4|^7.0",
  6959. "symfony/intl": "^6.4|^7.0",
  6960. "symfony/polyfill-intl-icu": "^1.21",
  6961. "symfony/routing": "^6.4|^7.0",
  6962. "symfony/service-contracts": "^2.5|^3",
  6963. "symfony/yaml": "^6.4|^7.0"
  6964. },
  6965. "type": "library",
  6966. "autoload": {
  6967. "files": [
  6968. "Resources/functions.php"
  6969. ],
  6970. "psr-4": {
  6971. "Symfony\\Component\\Translation\\": ""
  6972. },
  6973. "exclude-from-classmap": [
  6974. "/Tests/"
  6975. ]
  6976. },
  6977. "notification-url": "https://packagist.org/downloads/",
  6978. "license": [
  6979. "MIT"
  6980. ],
  6981. "authors": [
  6982. {
  6983. "name": "Fabien Potencier",
  6984. "email": "fabien@symfony.com"
  6985. },
  6986. {
  6987. "name": "Symfony Community",
  6988. "homepage": "https://symfony.com/contributors"
  6989. }
  6990. ],
  6991. "description": "Provides tools to internationalize your application",
  6992. "homepage": "https://symfony.com",
  6993. "support": {
  6994. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  6995. },
  6996. "funding": [
  6997. {
  6998. "url": "https://symfony.com/sponsor",
  6999. "type": "custom"
  7000. },
  7001. {
  7002. "url": "https://github.com/fabpot",
  7003. "type": "github"
  7004. },
  7005. {
  7006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7007. "type": "tidelift"
  7008. }
  7009. ],
  7010. "time": "2024-09-16T06:30:38+00:00"
  7011. },
  7012. {
  7013. "name": "symfony/translation-contracts",
  7014. "version": "v3.5.0",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/symfony/translation-contracts.git",
  7018. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7023. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7024. "shasum": ""
  7025. },
  7026. "require": {
  7027. "php": ">=8.1"
  7028. },
  7029. "type": "library",
  7030. "extra": {
  7031. "branch-alias": {
  7032. "dev-main": "3.5-dev"
  7033. },
  7034. "thanks": {
  7035. "name": "symfony/contracts",
  7036. "url": "https://github.com/symfony/contracts"
  7037. }
  7038. },
  7039. "autoload": {
  7040. "psr-4": {
  7041. "Symfony\\Contracts\\Translation\\": ""
  7042. },
  7043. "exclude-from-classmap": [
  7044. "/Test/"
  7045. ]
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Nicolas Grekas",
  7054. "email": "p@tchwork.com"
  7055. },
  7056. {
  7057. "name": "Symfony Community",
  7058. "homepage": "https://symfony.com/contributors"
  7059. }
  7060. ],
  7061. "description": "Generic abstractions related to translation",
  7062. "homepage": "https://symfony.com",
  7063. "keywords": [
  7064. "abstractions",
  7065. "contracts",
  7066. "decoupling",
  7067. "interfaces",
  7068. "interoperability",
  7069. "standards"
  7070. ],
  7071. "support": {
  7072. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7073. },
  7074. "funding": [
  7075. {
  7076. "url": "https://symfony.com/sponsor",
  7077. "type": "custom"
  7078. },
  7079. {
  7080. "url": "https://github.com/fabpot",
  7081. "type": "github"
  7082. },
  7083. {
  7084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7085. "type": "tidelift"
  7086. }
  7087. ],
  7088. "time": "2024-04-18T09:32:20+00:00"
  7089. },
  7090. {
  7091. "name": "symfony/twig-bridge",
  7092. "version": "v7.1.5",
  7093. "source": {
  7094. "type": "git",
  7095. "url": "https://github.com/symfony/twig-bridge.git",
  7096. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  7097. },
  7098. "dist": {
  7099. "type": "zip",
  7100. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  7101. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  7102. "shasum": ""
  7103. },
  7104. "require": {
  7105. "php": ">=8.2",
  7106. "symfony/translation-contracts": "^2.5|^3",
  7107. "twig/twig": "^3.9"
  7108. },
  7109. "conflict": {
  7110. "phpdocumentor/reflection-docblock": "<3.2.2",
  7111. "phpdocumentor/type-resolver": "<1.4.0",
  7112. "symfony/console": "<6.4",
  7113. "symfony/form": "<6.4",
  7114. "symfony/http-foundation": "<6.4",
  7115. "symfony/http-kernel": "<6.4",
  7116. "symfony/mime": "<6.4",
  7117. "symfony/serializer": "<6.4",
  7118. "symfony/translation": "<6.4",
  7119. "symfony/workflow": "<6.4"
  7120. },
  7121. "require-dev": {
  7122. "egulias/email-validator": "^2.1.10|^3|^4",
  7123. "league/html-to-markdown": "^5.0",
  7124. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7125. "symfony/asset": "^6.4|^7.0",
  7126. "symfony/asset-mapper": "^6.4|^7.0",
  7127. "symfony/console": "^6.4|^7.0",
  7128. "symfony/dependency-injection": "^6.4|^7.0",
  7129. "symfony/emoji": "^7.1",
  7130. "symfony/expression-language": "^6.4|^7.0",
  7131. "symfony/finder": "^6.4|^7.0",
  7132. "symfony/form": "^6.4|^7.0",
  7133. "symfony/html-sanitizer": "^6.4|^7.0",
  7134. "symfony/http-foundation": "^6.4|^7.0",
  7135. "symfony/http-kernel": "^6.4|^7.0",
  7136. "symfony/intl": "^6.4|^7.0",
  7137. "symfony/mime": "^6.4|^7.0",
  7138. "symfony/polyfill-intl-icu": "~1.0",
  7139. "symfony/property-info": "^6.4|^7.0",
  7140. "symfony/routing": "^6.4|^7.0",
  7141. "symfony/security-acl": "^2.8|^3.0",
  7142. "symfony/security-core": "^6.4|^7.0",
  7143. "symfony/security-csrf": "^6.4|^7.0",
  7144. "symfony/security-http": "^6.4|^7.0",
  7145. "symfony/serializer": "^6.4.3|^7.0.3",
  7146. "symfony/stopwatch": "^6.4|^7.0",
  7147. "symfony/translation": "^6.4|^7.0",
  7148. "symfony/web-link": "^6.4|^7.0",
  7149. "symfony/workflow": "^6.4|^7.0",
  7150. "symfony/yaml": "^6.4|^7.0",
  7151. "twig/cssinliner-extra": "^2.12|^3",
  7152. "twig/inky-extra": "^2.12|^3",
  7153. "twig/markdown-extra": "^2.12|^3"
  7154. },
  7155. "type": "symfony-bridge",
  7156. "autoload": {
  7157. "psr-4": {
  7158. "Symfony\\Bridge\\Twig\\": ""
  7159. },
  7160. "exclude-from-classmap": [
  7161. "/Tests/"
  7162. ]
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "MIT"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Fabien Potencier",
  7171. "email": "fabien@symfony.com"
  7172. },
  7173. {
  7174. "name": "Symfony Community",
  7175. "homepage": "https://symfony.com/contributors"
  7176. }
  7177. ],
  7178. "description": "Provides integration for Twig with various Symfony components",
  7179. "homepage": "https://symfony.com",
  7180. "support": {
  7181. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  7182. },
  7183. "funding": [
  7184. {
  7185. "url": "https://symfony.com/sponsor",
  7186. "type": "custom"
  7187. },
  7188. {
  7189. "url": "https://github.com/fabpot",
  7190. "type": "github"
  7191. },
  7192. {
  7193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7194. "type": "tidelift"
  7195. }
  7196. ],
  7197. "time": "2024-09-15T06:48:17+00:00"
  7198. },
  7199. {
  7200. "name": "symfony/twig-bundle",
  7201. "version": "v7.1.5",
  7202. "source": {
  7203. "type": "git",
  7204. "url": "https://github.com/symfony/twig-bundle.git",
  7205. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  7206. },
  7207. "dist": {
  7208. "type": "zip",
  7209. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7210. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7211. "shasum": ""
  7212. },
  7213. "require": {
  7214. "composer-runtime-api": ">=2.1",
  7215. "php": ">=8.2",
  7216. "symfony/config": "^6.4|^7.0",
  7217. "symfony/dependency-injection": "^6.4|^7.0",
  7218. "symfony/http-foundation": "^6.4|^7.0",
  7219. "symfony/http-kernel": "^6.4|^7.0",
  7220. "symfony/twig-bridge": "^6.4|^7.0",
  7221. "twig/twig": "^3.0.4"
  7222. },
  7223. "conflict": {
  7224. "symfony/framework-bundle": "<6.4",
  7225. "symfony/translation": "<6.4"
  7226. },
  7227. "require-dev": {
  7228. "symfony/asset": "^6.4|^7.0",
  7229. "symfony/expression-language": "^6.4|^7.0",
  7230. "symfony/finder": "^6.4|^7.0",
  7231. "symfony/form": "^6.4|^7.0",
  7232. "symfony/framework-bundle": "^6.4|^7.0",
  7233. "symfony/routing": "^6.4|^7.0",
  7234. "symfony/stopwatch": "^6.4|^7.0",
  7235. "symfony/translation": "^6.4|^7.0",
  7236. "symfony/web-link": "^6.4|^7.0",
  7237. "symfony/yaml": "^6.4|^7.0"
  7238. },
  7239. "type": "symfony-bundle",
  7240. "autoload": {
  7241. "psr-4": {
  7242. "Symfony\\Bundle\\TwigBundle\\": ""
  7243. },
  7244. "exclude-from-classmap": [
  7245. "/Tests/"
  7246. ]
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Fabien Potencier",
  7255. "email": "fabien@symfony.com"
  7256. },
  7257. {
  7258. "name": "Symfony Community",
  7259. "homepage": "https://symfony.com/contributors"
  7260. }
  7261. ],
  7262. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7263. "homepage": "https://symfony.com",
  7264. "support": {
  7265. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  7266. },
  7267. "funding": [
  7268. {
  7269. "url": "https://symfony.com/sponsor",
  7270. "type": "custom"
  7271. },
  7272. {
  7273. "url": "https://github.com/fabpot",
  7274. "type": "github"
  7275. },
  7276. {
  7277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7278. "type": "tidelift"
  7279. }
  7280. ],
  7281. "time": "2024-09-08T12:32:26+00:00"
  7282. },
  7283. {
  7284. "name": "symfony/type-info",
  7285. "version": "v7.1.5",
  7286. "source": {
  7287. "type": "git",
  7288. "url": "https://github.com/symfony/type-info.git",
  7289. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  7290. },
  7291. "dist": {
  7292. "type": "zip",
  7293. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7294. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7295. "shasum": ""
  7296. },
  7297. "require": {
  7298. "php": ">=8.2",
  7299. "psr/container": "^1.1|^2.0"
  7300. },
  7301. "conflict": {
  7302. "phpstan/phpdoc-parser": "<1.0",
  7303. "symfony/dependency-injection": "<6.4",
  7304. "symfony/property-info": "<6.4"
  7305. },
  7306. "require-dev": {
  7307. "phpstan/phpdoc-parser": "^1.0",
  7308. "symfony/dependency-injection": "^6.4|^7.0",
  7309. "symfony/property-info": "^6.4|^7.0"
  7310. },
  7311. "type": "library",
  7312. "autoload": {
  7313. "psr-4": {
  7314. "Symfony\\Component\\TypeInfo\\": ""
  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": "Mathias Arlaud",
  7327. "email": "mathias.arlaud@gmail.com"
  7328. },
  7329. {
  7330. "name": "Baptiste LEDUC",
  7331. "email": "baptiste.leduc@gmail.com"
  7332. },
  7333. {
  7334. "name": "Symfony Community",
  7335. "homepage": "https://symfony.com/contributors"
  7336. }
  7337. ],
  7338. "description": "Extracts PHP types information.",
  7339. "homepage": "https://symfony.com",
  7340. "keywords": [
  7341. "PHPStan",
  7342. "phpdoc",
  7343. "symfony",
  7344. "type"
  7345. ],
  7346. "support": {
  7347. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://symfony.com/sponsor",
  7352. "type": "custom"
  7353. },
  7354. {
  7355. "url": "https://github.com/fabpot",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7360. "type": "tidelift"
  7361. }
  7362. ],
  7363. "time": "2024-09-19T21:48:23+00:00"
  7364. },
  7365. {
  7366. "name": "symfony/ux-turbo",
  7367. "version": "v2.21.0",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/symfony/ux-turbo.git",
  7371. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7376. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=8.1",
  7381. "symfony/stimulus-bundle": "^2.9.1"
  7382. },
  7383. "conflict": {
  7384. "symfony/flex": "<1.13"
  7385. },
  7386. "require-dev": {
  7387. "dbrekelmans/bdi": "dev-main",
  7388. "doctrine/doctrine-bundle": "^2.4.3",
  7389. "doctrine/orm": "^2.8 | 3.0",
  7390. "phpstan/phpstan": "^1.10",
  7391. "symfony/asset-mapper": "^6.4|^7.0",
  7392. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7393. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7394. "symfony/form": "^5.4|^6.0|^7.0",
  7395. "symfony/framework-bundle": "^6.4|^7.0",
  7396. "symfony/mercure-bundle": "^0.3.7",
  7397. "symfony/messenger": "^5.4|^6.0|^7.0",
  7398. "symfony/panther": "^2.1",
  7399. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7400. "symfony/process": "^5.4|6.3.*|^7.0",
  7401. "symfony/property-access": "^5.4|^6.0|^7.0",
  7402. "symfony/security-core": "^5.4|^6.0|^7.0",
  7403. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7404. "symfony/twig-bundle": "^6.4|^7.0",
  7405. "symfony/ux-twig-component": "^2.21",
  7406. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7407. },
  7408. "type": "symfony-bundle",
  7409. "extra": {
  7410. "thanks": {
  7411. "name": "symfony/ux",
  7412. "url": "https://github.com/symfony/ux"
  7413. }
  7414. },
  7415. "autoload": {
  7416. "psr-4": {
  7417. "Symfony\\UX\\Turbo\\": "src/"
  7418. }
  7419. },
  7420. "notification-url": "https://packagist.org/downloads/",
  7421. "license": [
  7422. "MIT"
  7423. ],
  7424. "authors": [
  7425. {
  7426. "name": "Kévin Dunglas",
  7427. "email": "kevin@dunglas.fr"
  7428. },
  7429. {
  7430. "name": "Symfony Community",
  7431. "homepage": "https://symfony.com/contributors"
  7432. }
  7433. ],
  7434. "description": "Hotwire Turbo integration for Symfony",
  7435. "homepage": "https://symfony.com",
  7436. "keywords": [
  7437. "hotwire",
  7438. "javascript",
  7439. "mercure",
  7440. "symfony-ux",
  7441. "turbo",
  7442. "turbo-stream"
  7443. ],
  7444. "support": {
  7445. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  7446. },
  7447. "funding": [
  7448. {
  7449. "url": "https://symfony.com/sponsor",
  7450. "type": "custom"
  7451. },
  7452. {
  7453. "url": "https://github.com/fabpot",
  7454. "type": "github"
  7455. },
  7456. {
  7457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7458. "type": "tidelift"
  7459. }
  7460. ],
  7461. "time": "2024-10-21T19:07:02+00:00"
  7462. },
  7463. {
  7464. "name": "symfony/validator",
  7465. "version": "v7.1.5",
  7466. "source": {
  7467. "type": "git",
  7468. "url": "https://github.com/symfony/validator.git",
  7469. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  7470. },
  7471. "dist": {
  7472. "type": "zip",
  7473. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  7474. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  7475. "shasum": ""
  7476. },
  7477. "require": {
  7478. "php": ">=8.2",
  7479. "symfony/deprecation-contracts": "^2.5|^3",
  7480. "symfony/polyfill-ctype": "~1.8",
  7481. "symfony/polyfill-mbstring": "~1.0",
  7482. "symfony/polyfill-php83": "^1.27",
  7483. "symfony/translation-contracts": "^2.5|^3"
  7484. },
  7485. "conflict": {
  7486. "doctrine/lexer": "<1.1",
  7487. "symfony/dependency-injection": "<6.4",
  7488. "symfony/doctrine-bridge": "<7.0",
  7489. "symfony/expression-language": "<6.4",
  7490. "symfony/http-kernel": "<6.4",
  7491. "symfony/intl": "<6.4",
  7492. "symfony/property-info": "<6.4",
  7493. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7494. "symfony/yaml": "<6.4"
  7495. },
  7496. "require-dev": {
  7497. "egulias/email-validator": "^2.1.10|^3|^4",
  7498. "symfony/cache": "^6.4|^7.0",
  7499. "symfony/config": "^6.4|^7.0",
  7500. "symfony/console": "^6.4|^7.0",
  7501. "symfony/dependency-injection": "^6.4|^7.0",
  7502. "symfony/expression-language": "^6.4|^7.0",
  7503. "symfony/finder": "^6.4|^7.0",
  7504. "symfony/http-client": "^6.4|^7.0",
  7505. "symfony/http-foundation": "^6.4|^7.0",
  7506. "symfony/http-kernel": "^6.4|^7.0",
  7507. "symfony/intl": "^6.4|^7.0",
  7508. "symfony/mime": "^6.4|^7.0",
  7509. "symfony/property-access": "^6.4|^7.0",
  7510. "symfony/property-info": "^6.4|^7.0",
  7511. "symfony/translation": "^6.4.3|^7.0.3",
  7512. "symfony/type-info": "^7.1",
  7513. "symfony/yaml": "^6.4|^7.0"
  7514. },
  7515. "type": "library",
  7516. "autoload": {
  7517. "psr-4": {
  7518. "Symfony\\Component\\Validator\\": ""
  7519. },
  7520. "exclude-from-classmap": [
  7521. "/Tests/",
  7522. "/Resources/bin/"
  7523. ]
  7524. },
  7525. "notification-url": "https://packagist.org/downloads/",
  7526. "license": [
  7527. "MIT"
  7528. ],
  7529. "authors": [
  7530. {
  7531. "name": "Fabien Potencier",
  7532. "email": "fabien@symfony.com"
  7533. },
  7534. {
  7535. "name": "Symfony Community",
  7536. "homepage": "https://symfony.com/contributors"
  7537. }
  7538. ],
  7539. "description": "Provides tools to validate values",
  7540. "homepage": "https://symfony.com",
  7541. "support": {
  7542. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  7543. },
  7544. "funding": [
  7545. {
  7546. "url": "https://symfony.com/sponsor",
  7547. "type": "custom"
  7548. },
  7549. {
  7550. "url": "https://github.com/fabpot",
  7551. "type": "github"
  7552. },
  7553. {
  7554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7555. "type": "tidelift"
  7556. }
  7557. ],
  7558. "time": "2024-09-20T08:28:38+00:00"
  7559. },
  7560. {
  7561. "name": "symfony/var-dumper",
  7562. "version": "v7.1.5",
  7563. "source": {
  7564. "type": "git",
  7565. "url": "https://github.com/symfony/var-dumper.git",
  7566. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  7567. },
  7568. "dist": {
  7569. "type": "zip",
  7570. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  7571. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  7572. "shasum": ""
  7573. },
  7574. "require": {
  7575. "php": ">=8.2",
  7576. "symfony/polyfill-mbstring": "~1.0"
  7577. },
  7578. "conflict": {
  7579. "symfony/console": "<6.4"
  7580. },
  7581. "require-dev": {
  7582. "ext-iconv": "*",
  7583. "symfony/console": "^6.4|^7.0",
  7584. "symfony/http-kernel": "^6.4|^7.0",
  7585. "symfony/process": "^6.4|^7.0",
  7586. "symfony/uid": "^6.4|^7.0",
  7587. "twig/twig": "^3.0.4"
  7588. },
  7589. "bin": [
  7590. "Resources/bin/var-dump-server"
  7591. ],
  7592. "type": "library",
  7593. "autoload": {
  7594. "files": [
  7595. "Resources/functions/dump.php"
  7596. ],
  7597. "psr-4": {
  7598. "Symfony\\Component\\VarDumper\\": ""
  7599. },
  7600. "exclude-from-classmap": [
  7601. "/Tests/"
  7602. ]
  7603. },
  7604. "notification-url": "https://packagist.org/downloads/",
  7605. "license": [
  7606. "MIT"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Nicolas Grekas",
  7611. "email": "p@tchwork.com"
  7612. },
  7613. {
  7614. "name": "Symfony Community",
  7615. "homepage": "https://symfony.com/contributors"
  7616. }
  7617. ],
  7618. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7619. "homepage": "https://symfony.com",
  7620. "keywords": [
  7621. "debug",
  7622. "dump"
  7623. ],
  7624. "support": {
  7625. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  7626. },
  7627. "funding": [
  7628. {
  7629. "url": "https://symfony.com/sponsor",
  7630. "type": "custom"
  7631. },
  7632. {
  7633. "url": "https://github.com/fabpot",
  7634. "type": "github"
  7635. },
  7636. {
  7637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7638. "type": "tidelift"
  7639. }
  7640. ],
  7641. "time": "2024-09-16T10:07:02+00:00"
  7642. },
  7643. {
  7644. "name": "symfony/var-exporter",
  7645. "version": "v7.1.2",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/symfony/var-exporter.git",
  7649. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7654. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": ">=8.2"
  7659. },
  7660. "require-dev": {
  7661. "symfony/property-access": "^6.4|^7.0",
  7662. "symfony/serializer": "^6.4|^7.0",
  7663. "symfony/var-dumper": "^6.4|^7.0"
  7664. },
  7665. "type": "library",
  7666. "autoload": {
  7667. "psr-4": {
  7668. "Symfony\\Component\\VarExporter\\": ""
  7669. },
  7670. "exclude-from-classmap": [
  7671. "/Tests/"
  7672. ]
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "Nicolas Grekas",
  7681. "email": "p@tchwork.com"
  7682. },
  7683. {
  7684. "name": "Symfony Community",
  7685. "homepage": "https://symfony.com/contributors"
  7686. }
  7687. ],
  7688. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7689. "homepage": "https://symfony.com",
  7690. "keywords": [
  7691. "clone",
  7692. "construct",
  7693. "export",
  7694. "hydrate",
  7695. "instantiate",
  7696. "lazy-loading",
  7697. "proxy",
  7698. "serialize"
  7699. ],
  7700. "support": {
  7701. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7702. },
  7703. "funding": [
  7704. {
  7705. "url": "https://symfony.com/sponsor",
  7706. "type": "custom"
  7707. },
  7708. {
  7709. "url": "https://github.com/fabpot",
  7710. "type": "github"
  7711. },
  7712. {
  7713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7714. "type": "tidelift"
  7715. }
  7716. ],
  7717. "time": "2024-06-28T08:00:31+00:00"
  7718. },
  7719. {
  7720. "name": "symfony/web-link",
  7721. "version": "v7.1.1",
  7722. "source": {
  7723. "type": "git",
  7724. "url": "https://github.com/symfony/web-link.git",
  7725. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7726. },
  7727. "dist": {
  7728. "type": "zip",
  7729. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7730. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7731. "shasum": ""
  7732. },
  7733. "require": {
  7734. "php": ">=8.2",
  7735. "psr/link": "^1.1|^2.0"
  7736. },
  7737. "conflict": {
  7738. "symfony/http-kernel": "<6.4"
  7739. },
  7740. "provide": {
  7741. "psr/link-implementation": "1.0|2.0"
  7742. },
  7743. "require-dev": {
  7744. "symfony/http-kernel": "^6.4|^7.0"
  7745. },
  7746. "type": "library",
  7747. "autoload": {
  7748. "psr-4": {
  7749. "Symfony\\Component\\WebLink\\": ""
  7750. },
  7751. "exclude-from-classmap": [
  7752. "/Tests/"
  7753. ]
  7754. },
  7755. "notification-url": "https://packagist.org/downloads/",
  7756. "license": [
  7757. "MIT"
  7758. ],
  7759. "authors": [
  7760. {
  7761. "name": "Kévin Dunglas",
  7762. "email": "dunglas@gmail.com"
  7763. },
  7764. {
  7765. "name": "Symfony Community",
  7766. "homepage": "https://symfony.com/contributors"
  7767. }
  7768. ],
  7769. "description": "Manages links between resources",
  7770. "homepage": "https://symfony.com",
  7771. "keywords": [
  7772. "dns-prefetch",
  7773. "http",
  7774. "http2",
  7775. "link",
  7776. "performance",
  7777. "prefetch",
  7778. "preload",
  7779. "prerender",
  7780. "psr13",
  7781. "push"
  7782. ],
  7783. "support": {
  7784. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7785. },
  7786. "funding": [
  7787. {
  7788. "url": "https://symfony.com/sponsor",
  7789. "type": "custom"
  7790. },
  7791. {
  7792. "url": "https://github.com/fabpot",
  7793. "type": "github"
  7794. },
  7795. {
  7796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7797. "type": "tidelift"
  7798. }
  7799. ],
  7800. "time": "2024-05-31T14:57:53+00:00"
  7801. },
  7802. {
  7803. "name": "symfony/workflow",
  7804. "version": "v7.1.1",
  7805. "source": {
  7806. "type": "git",
  7807. "url": "https://github.com/symfony/workflow.git",
  7808. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8"
  7809. },
  7810. "dist": {
  7811. "type": "zip",
  7812. "url": "https://api.github.com/repos/symfony/workflow/zipball/bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  7813. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  7814. "shasum": ""
  7815. },
  7816. "require": {
  7817. "php": ">=8.2"
  7818. },
  7819. "conflict": {
  7820. "symfony/event-dispatcher": "<6.4"
  7821. },
  7822. "require-dev": {
  7823. "psr/log": "^1|^2|^3",
  7824. "symfony/dependency-injection": "^6.4|^7.0",
  7825. "symfony/error-handler": "^6.4|^7.0",
  7826. "symfony/event-dispatcher": "^6.4|^7.0",
  7827. "symfony/expression-language": "^6.4|^7.0",
  7828. "symfony/http-kernel": "^6.4|^7.0",
  7829. "symfony/security-core": "^6.4|^7.0",
  7830. "symfony/stopwatch": "^6.4|^7.0",
  7831. "symfony/validator": "^6.4|^7.0"
  7832. },
  7833. "type": "library",
  7834. "autoload": {
  7835. "psr-4": {
  7836. "Symfony\\Component\\Workflow\\": ""
  7837. },
  7838. "exclude-from-classmap": [
  7839. "/Tests/"
  7840. ]
  7841. },
  7842. "notification-url": "https://packagist.org/downloads/",
  7843. "license": [
  7844. "MIT"
  7845. ],
  7846. "authors": [
  7847. {
  7848. "name": "Fabien Potencier",
  7849. "email": "fabien@symfony.com"
  7850. },
  7851. {
  7852. "name": "Grégoire Pineau",
  7853. "email": "lyrixx@lyrixx.info"
  7854. },
  7855. {
  7856. "name": "Symfony Community",
  7857. "homepage": "https://symfony.com/contributors"
  7858. }
  7859. ],
  7860. "description": "Provides tools for managing a workflow or finite state machine",
  7861. "homepage": "https://symfony.com",
  7862. "keywords": [
  7863. "petrinet",
  7864. "place",
  7865. "state",
  7866. "statemachine",
  7867. "transition",
  7868. "workflow"
  7869. ],
  7870. "support": {
  7871. "source": "https://github.com/symfony/workflow/tree/v7.1.1"
  7872. },
  7873. "funding": [
  7874. {
  7875. "url": "https://symfony.com/sponsor",
  7876. "type": "custom"
  7877. },
  7878. {
  7879. "url": "https://github.com/fabpot",
  7880. "type": "github"
  7881. },
  7882. {
  7883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7884. "type": "tidelift"
  7885. }
  7886. ],
  7887. "time": "2024-05-31T14:57:53+00:00"
  7888. },
  7889. {
  7890. "name": "symfony/yaml",
  7891. "version": "v7.1.5",
  7892. "source": {
  7893. "type": "git",
  7894. "url": "https://github.com/symfony/yaml.git",
  7895. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  7896. },
  7897. "dist": {
  7898. "type": "zip",
  7899. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  7900. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  7901. "shasum": ""
  7902. },
  7903. "require": {
  7904. "php": ">=8.2",
  7905. "symfony/polyfill-ctype": "^1.8"
  7906. },
  7907. "conflict": {
  7908. "symfony/console": "<6.4"
  7909. },
  7910. "require-dev": {
  7911. "symfony/console": "^6.4|^7.0"
  7912. },
  7913. "bin": [
  7914. "Resources/bin/yaml-lint"
  7915. ],
  7916. "type": "library",
  7917. "autoload": {
  7918. "psr-4": {
  7919. "Symfony\\Component\\Yaml\\": ""
  7920. },
  7921. "exclude-from-classmap": [
  7922. "/Tests/"
  7923. ]
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "MIT"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "Fabien Potencier",
  7932. "email": "fabien@symfony.com"
  7933. },
  7934. {
  7935. "name": "Symfony Community",
  7936. "homepage": "https://symfony.com/contributors"
  7937. }
  7938. ],
  7939. "description": "Loads and dumps YAML files",
  7940. "homepage": "https://symfony.com",
  7941. "support": {
  7942. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  7943. },
  7944. "funding": [
  7945. {
  7946. "url": "https://symfony.com/sponsor",
  7947. "type": "custom"
  7948. },
  7949. {
  7950. "url": "https://github.com/fabpot",
  7951. "type": "github"
  7952. },
  7953. {
  7954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7955. "type": "tidelift"
  7956. }
  7957. ],
  7958. "time": "2024-09-17T12:49:58+00:00"
  7959. },
  7960. {
  7961. "name": "twig/extra-bundle",
  7962. "version": "v3.13.0",
  7963. "source": {
  7964. "type": "git",
  7965. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7966. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  7967. },
  7968. "dist": {
  7969. "type": "zip",
  7970. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7971. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7972. "shasum": ""
  7973. },
  7974. "require": {
  7975. "php": ">=8.0.2",
  7976. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7977. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7978. "twig/twig": "^3.0|^4.0"
  7979. },
  7980. "require-dev": {
  7981. "league/commonmark": "^1.0|^2.0",
  7982. "symfony/phpunit-bridge": "^6.4|^7.0",
  7983. "twig/cache-extra": "^3.0",
  7984. "twig/cssinliner-extra": "^3.0",
  7985. "twig/html-extra": "^3.0",
  7986. "twig/inky-extra": "^3.0",
  7987. "twig/intl-extra": "^3.0",
  7988. "twig/markdown-extra": "^3.0",
  7989. "twig/string-extra": "^3.0"
  7990. },
  7991. "type": "symfony-bundle",
  7992. "autoload": {
  7993. "psr-4": {
  7994. "Twig\\Extra\\TwigExtraBundle\\": ""
  7995. },
  7996. "exclude-from-classmap": [
  7997. "/Tests/"
  7998. ]
  7999. },
  8000. "notification-url": "https://packagist.org/downloads/",
  8001. "license": [
  8002. "MIT"
  8003. ],
  8004. "authors": [
  8005. {
  8006. "name": "Fabien Potencier",
  8007. "email": "fabien@symfony.com",
  8008. "homepage": "http://fabien.potencier.org",
  8009. "role": "Lead Developer"
  8010. }
  8011. ],
  8012. "description": "A Symfony bundle for extra Twig extensions",
  8013. "homepage": "https://twig.symfony.com",
  8014. "keywords": [
  8015. "bundle",
  8016. "extra",
  8017. "twig"
  8018. ],
  8019. "support": {
  8020. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  8021. },
  8022. "funding": [
  8023. {
  8024. "url": "https://github.com/fabpot",
  8025. "type": "github"
  8026. },
  8027. {
  8028. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8029. "type": "tidelift"
  8030. }
  8031. ],
  8032. "time": "2024-09-01T20:39:12+00:00"
  8033. },
  8034. {
  8035. "name": "twig/markdown-extra",
  8036. "version": "v3.13.0",
  8037. "source": {
  8038. "type": "git",
  8039. "url": "https://github.com/twigphp/markdown-extra.git",
  8040. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3"
  8041. },
  8042. "dist": {
  8043. "type": "zip",
  8044. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25f23c02936f8c7157a8413154c06a462c9c20d3",
  8045. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3",
  8046. "shasum": ""
  8047. },
  8048. "require": {
  8049. "php": ">=8.0.2",
  8050. "symfony/deprecation-contracts": "^2.5|^3",
  8051. "twig/twig": "^3.13|^4.0"
  8052. },
  8053. "require-dev": {
  8054. "erusev/parsedown": "^1.7",
  8055. "league/commonmark": "^1.0|^2.0",
  8056. "league/html-to-markdown": "^4.8|^5.0",
  8057. "michelf/php-markdown": "^1.8|^2.0",
  8058. "symfony/phpunit-bridge": "^6.4|^7.0"
  8059. },
  8060. "type": "library",
  8061. "autoload": {
  8062. "files": [
  8063. "Resources/functions.php"
  8064. ],
  8065. "psr-4": {
  8066. "Twig\\Extra\\Markdown\\": ""
  8067. },
  8068. "exclude-from-classmap": [
  8069. "/Tests/"
  8070. ]
  8071. },
  8072. "notification-url": "https://packagist.org/downloads/",
  8073. "license": [
  8074. "MIT"
  8075. ],
  8076. "authors": [
  8077. {
  8078. "name": "Fabien Potencier",
  8079. "email": "fabien@symfony.com",
  8080. "homepage": "http://fabien.potencier.org",
  8081. "role": "Lead Developer"
  8082. }
  8083. ],
  8084. "description": "A Twig extension for Markdown",
  8085. "homepage": "https://twig.symfony.com",
  8086. "keywords": [
  8087. "html",
  8088. "markdown",
  8089. "twig"
  8090. ],
  8091. "support": {
  8092. "source": "https://github.com/twigphp/markdown-extra/tree/v3.13.0"
  8093. },
  8094. "funding": [
  8095. {
  8096. "url": "https://github.com/fabpot",
  8097. "type": "github"
  8098. },
  8099. {
  8100. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8101. "type": "tidelift"
  8102. }
  8103. ],
  8104. "time": "2024-09-03T20:17:35+00:00"
  8105. },
  8106. {
  8107. "name": "twig/twig",
  8108. "version": "v3.14.0",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/twigphp/Twig.git",
  8112. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8117. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": ">=8.0.2",
  8122. "symfony/deprecation-contracts": "^2.5|^3",
  8123. "symfony/polyfill-ctype": "^1.8",
  8124. "symfony/polyfill-mbstring": "^1.3",
  8125. "symfony/polyfill-php81": "^1.29"
  8126. },
  8127. "require-dev": {
  8128. "psr/container": "^1.0|^2.0",
  8129. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8130. },
  8131. "type": "library",
  8132. "autoload": {
  8133. "files": [
  8134. "src/Resources/core.php",
  8135. "src/Resources/debug.php",
  8136. "src/Resources/escaper.php",
  8137. "src/Resources/string_loader.php"
  8138. ],
  8139. "psr-4": {
  8140. "Twig\\": "src/"
  8141. }
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "BSD-3-Clause"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "Fabien Potencier",
  8150. "email": "fabien@symfony.com",
  8151. "homepage": "http://fabien.potencier.org",
  8152. "role": "Lead Developer"
  8153. },
  8154. {
  8155. "name": "Twig Team",
  8156. "role": "Contributors"
  8157. },
  8158. {
  8159. "name": "Armin Ronacher",
  8160. "email": "armin.ronacher@active-4.com",
  8161. "role": "Project Founder"
  8162. }
  8163. ],
  8164. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8165. "homepage": "https://twig.symfony.com",
  8166. "keywords": [
  8167. "templating"
  8168. ],
  8169. "support": {
  8170. "issues": "https://github.com/twigphp/Twig/issues",
  8171. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  8172. },
  8173. "funding": [
  8174. {
  8175. "url": "https://github.com/fabpot",
  8176. "type": "github"
  8177. },
  8178. {
  8179. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8180. "type": "tidelift"
  8181. }
  8182. ],
  8183. "time": "2024-09-09T17:55:12+00:00"
  8184. },
  8185. {
  8186. "name": "webmozart/assert",
  8187. "version": "1.11.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/webmozarts/assert.git",
  8191. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8196. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "ext-ctype": "*",
  8201. "php": "^7.2 || ^8.0"
  8202. },
  8203. "conflict": {
  8204. "phpstan/phpstan": "<0.12.20",
  8205. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8206. },
  8207. "require-dev": {
  8208. "phpunit/phpunit": "^8.5.13"
  8209. },
  8210. "type": "library",
  8211. "extra": {
  8212. "branch-alias": {
  8213. "dev-master": "1.10-dev"
  8214. }
  8215. },
  8216. "autoload": {
  8217. "psr-4": {
  8218. "Webmozart\\Assert\\": "src/"
  8219. }
  8220. },
  8221. "notification-url": "https://packagist.org/downloads/",
  8222. "license": [
  8223. "MIT"
  8224. ],
  8225. "authors": [
  8226. {
  8227. "name": "Bernhard Schussek",
  8228. "email": "bschussek@gmail.com"
  8229. }
  8230. ],
  8231. "description": "Assertions to validate method input/output with nice error messages.",
  8232. "keywords": [
  8233. "assert",
  8234. "check",
  8235. "validate"
  8236. ],
  8237. "support": {
  8238. "issues": "https://github.com/webmozarts/assert/issues",
  8239. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8240. },
  8241. "time": "2022-06-03T18:03:27+00:00"
  8242. }
  8243. ],
  8244. "packages-dev": [
  8245. {
  8246. "name": "fakerphp/faker",
  8247. "version": "v1.23.1",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/FakerPHP/Faker.git",
  8251. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8256. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "php": "^7.4 || ^8.0",
  8261. "psr/container": "^1.0 || ^2.0",
  8262. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8263. },
  8264. "conflict": {
  8265. "fzaninotto/faker": "*"
  8266. },
  8267. "require-dev": {
  8268. "bamarni/composer-bin-plugin": "^1.4.1",
  8269. "doctrine/persistence": "^1.3 || ^2.0",
  8270. "ext-intl": "*",
  8271. "phpunit/phpunit": "^9.5.26",
  8272. "symfony/phpunit-bridge": "^5.4.16"
  8273. },
  8274. "suggest": {
  8275. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8276. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8277. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8278. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8279. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8280. },
  8281. "type": "library",
  8282. "autoload": {
  8283. "psr-4": {
  8284. "Faker\\": "src/Faker/"
  8285. }
  8286. },
  8287. "notification-url": "https://packagist.org/downloads/",
  8288. "license": [
  8289. "MIT"
  8290. ],
  8291. "authors": [
  8292. {
  8293. "name": "François Zaninotto"
  8294. }
  8295. ],
  8296. "description": "Faker is a PHP library that generates fake data for you.",
  8297. "keywords": [
  8298. "data",
  8299. "faker",
  8300. "fixtures"
  8301. ],
  8302. "support": {
  8303. "issues": "https://github.com/FakerPHP/Faker/issues",
  8304. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8305. },
  8306. "time": "2024-01-02T13:46:09+00:00"
  8307. },
  8308. {
  8309. "name": "masterminds/html5",
  8310. "version": "2.9.0",
  8311. "source": {
  8312. "type": "git",
  8313. "url": "https://github.com/Masterminds/html5-php.git",
  8314. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8315. },
  8316. "dist": {
  8317. "type": "zip",
  8318. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8319. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8320. "shasum": ""
  8321. },
  8322. "require": {
  8323. "ext-dom": "*",
  8324. "php": ">=5.3.0"
  8325. },
  8326. "require-dev": {
  8327. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8328. },
  8329. "type": "library",
  8330. "extra": {
  8331. "branch-alias": {
  8332. "dev-master": "2.7-dev"
  8333. }
  8334. },
  8335. "autoload": {
  8336. "psr-4": {
  8337. "Masterminds\\": "src"
  8338. }
  8339. },
  8340. "notification-url": "https://packagist.org/downloads/",
  8341. "license": [
  8342. "MIT"
  8343. ],
  8344. "authors": [
  8345. {
  8346. "name": "Matt Butcher",
  8347. "email": "technosophos@gmail.com"
  8348. },
  8349. {
  8350. "name": "Matt Farina",
  8351. "email": "matt@mattfarina.com"
  8352. },
  8353. {
  8354. "name": "Asmir Mustafic",
  8355. "email": "goetas@gmail.com"
  8356. }
  8357. ],
  8358. "description": "An HTML5 parser and serializer.",
  8359. "homepage": "http://masterminds.github.io/html5-php",
  8360. "keywords": [
  8361. "HTML5",
  8362. "dom",
  8363. "html",
  8364. "parser",
  8365. "querypath",
  8366. "serializer",
  8367. "xml"
  8368. ],
  8369. "support": {
  8370. "issues": "https://github.com/Masterminds/html5-php/issues",
  8371. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8372. },
  8373. "time": "2024-03-31T07:05:07+00:00"
  8374. },
  8375. {
  8376. "name": "myclabs/deep-copy",
  8377. "version": "1.12.0",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://github.com/myclabs/DeepCopy.git",
  8381. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8386. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8387. "shasum": ""
  8388. },
  8389. "require": {
  8390. "php": "^7.1 || ^8.0"
  8391. },
  8392. "conflict": {
  8393. "doctrine/collections": "<1.6.8",
  8394. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8395. },
  8396. "require-dev": {
  8397. "doctrine/collections": "^1.6.8",
  8398. "doctrine/common": "^2.13.3 || ^3.2.2",
  8399. "phpspec/prophecy": "^1.10",
  8400. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8401. },
  8402. "type": "library",
  8403. "autoload": {
  8404. "files": [
  8405. "src/DeepCopy/deep_copy.php"
  8406. ],
  8407. "psr-4": {
  8408. "DeepCopy\\": "src/DeepCopy/"
  8409. }
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "description": "Create deep copies (clones) of your objects",
  8416. "keywords": [
  8417. "clone",
  8418. "copy",
  8419. "duplicate",
  8420. "object",
  8421. "object graph"
  8422. ],
  8423. "support": {
  8424. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8425. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8426. },
  8427. "funding": [
  8428. {
  8429. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8430. "type": "tidelift"
  8431. }
  8432. ],
  8433. "time": "2024-06-12T14:39:25+00:00"
  8434. },
  8435. {
  8436. "name": "nikic/php-parser",
  8437. "version": "v5.3.1",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/nikic/PHP-Parser.git",
  8441. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  8446. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  8447. "shasum": ""
  8448. },
  8449. "require": {
  8450. "ext-ctype": "*",
  8451. "ext-json": "*",
  8452. "ext-tokenizer": "*",
  8453. "php": ">=7.4"
  8454. },
  8455. "require-dev": {
  8456. "ircmaxell/php-yacc": "^0.0.7",
  8457. "phpunit/phpunit": "^9.0"
  8458. },
  8459. "bin": [
  8460. "bin/php-parse"
  8461. ],
  8462. "type": "library",
  8463. "extra": {
  8464. "branch-alias": {
  8465. "dev-master": "5.0-dev"
  8466. }
  8467. },
  8468. "autoload": {
  8469. "psr-4": {
  8470. "PhpParser\\": "lib/PhpParser"
  8471. }
  8472. },
  8473. "notification-url": "https://packagist.org/downloads/",
  8474. "license": [
  8475. "BSD-3-Clause"
  8476. ],
  8477. "authors": [
  8478. {
  8479. "name": "Nikita Popov"
  8480. }
  8481. ],
  8482. "description": "A PHP parser written in PHP",
  8483. "keywords": [
  8484. "parser",
  8485. "php"
  8486. ],
  8487. "support": {
  8488. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8489. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  8490. },
  8491. "time": "2024-10-08T18:51:32+00:00"
  8492. },
  8493. {
  8494. "name": "phar-io/manifest",
  8495. "version": "2.0.4",
  8496. "source": {
  8497. "type": "git",
  8498. "url": "https://github.com/phar-io/manifest.git",
  8499. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8500. },
  8501. "dist": {
  8502. "type": "zip",
  8503. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8504. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8505. "shasum": ""
  8506. },
  8507. "require": {
  8508. "ext-dom": "*",
  8509. "ext-libxml": "*",
  8510. "ext-phar": "*",
  8511. "ext-xmlwriter": "*",
  8512. "phar-io/version": "^3.0.1",
  8513. "php": "^7.2 || ^8.0"
  8514. },
  8515. "type": "library",
  8516. "extra": {
  8517. "branch-alias": {
  8518. "dev-master": "2.0.x-dev"
  8519. }
  8520. },
  8521. "autoload": {
  8522. "classmap": [
  8523. "src/"
  8524. ]
  8525. },
  8526. "notification-url": "https://packagist.org/downloads/",
  8527. "license": [
  8528. "BSD-3-Clause"
  8529. ],
  8530. "authors": [
  8531. {
  8532. "name": "Arne Blankerts",
  8533. "email": "arne@blankerts.de",
  8534. "role": "Developer"
  8535. },
  8536. {
  8537. "name": "Sebastian Heuer",
  8538. "email": "sebastian@phpeople.de",
  8539. "role": "Developer"
  8540. },
  8541. {
  8542. "name": "Sebastian Bergmann",
  8543. "email": "sebastian@phpunit.de",
  8544. "role": "Developer"
  8545. }
  8546. ],
  8547. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8548. "support": {
  8549. "issues": "https://github.com/phar-io/manifest/issues",
  8550. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8551. },
  8552. "funding": [
  8553. {
  8554. "url": "https://github.com/theseer",
  8555. "type": "github"
  8556. }
  8557. ],
  8558. "time": "2024-03-03T12:33:53+00:00"
  8559. },
  8560. {
  8561. "name": "phar-io/version",
  8562. "version": "3.2.1",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/phar-io/version.git",
  8566. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8571. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": "^7.2 || ^8.0"
  8576. },
  8577. "type": "library",
  8578. "autoload": {
  8579. "classmap": [
  8580. "src/"
  8581. ]
  8582. },
  8583. "notification-url": "https://packagist.org/downloads/",
  8584. "license": [
  8585. "BSD-3-Clause"
  8586. ],
  8587. "authors": [
  8588. {
  8589. "name": "Arne Blankerts",
  8590. "email": "arne@blankerts.de",
  8591. "role": "Developer"
  8592. },
  8593. {
  8594. "name": "Sebastian Heuer",
  8595. "email": "sebastian@phpeople.de",
  8596. "role": "Developer"
  8597. },
  8598. {
  8599. "name": "Sebastian Bergmann",
  8600. "email": "sebastian@phpunit.de",
  8601. "role": "Developer"
  8602. }
  8603. ],
  8604. "description": "Library for handling version information and constraints",
  8605. "support": {
  8606. "issues": "https://github.com/phar-io/version/issues",
  8607. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8608. },
  8609. "time": "2022-02-21T01:04:05+00:00"
  8610. },
  8611. {
  8612. "name": "phpunit/php-code-coverage",
  8613. "version": "9.2.32",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8617. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8622. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "ext-dom": "*",
  8627. "ext-libxml": "*",
  8628. "ext-xmlwriter": "*",
  8629. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8630. "php": ">=7.3",
  8631. "phpunit/php-file-iterator": "^3.0.6",
  8632. "phpunit/php-text-template": "^2.0.4",
  8633. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8634. "sebastian/complexity": "^2.0.3",
  8635. "sebastian/environment": "^5.1.5",
  8636. "sebastian/lines-of-code": "^1.0.4",
  8637. "sebastian/version": "^3.0.2",
  8638. "theseer/tokenizer": "^1.2.3"
  8639. },
  8640. "require-dev": {
  8641. "phpunit/phpunit": "^9.6"
  8642. },
  8643. "suggest": {
  8644. "ext-pcov": "PHP extension that provides line coverage",
  8645. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8646. },
  8647. "type": "library",
  8648. "extra": {
  8649. "branch-alias": {
  8650. "dev-main": "9.2.x-dev"
  8651. }
  8652. },
  8653. "autoload": {
  8654. "classmap": [
  8655. "src/"
  8656. ]
  8657. },
  8658. "notification-url": "https://packagist.org/downloads/",
  8659. "license": [
  8660. "BSD-3-Clause"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Sebastian Bergmann",
  8665. "email": "sebastian@phpunit.de",
  8666. "role": "lead"
  8667. }
  8668. ],
  8669. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8670. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8671. "keywords": [
  8672. "coverage",
  8673. "testing",
  8674. "xunit"
  8675. ],
  8676. "support": {
  8677. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8678. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8679. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8680. },
  8681. "funding": [
  8682. {
  8683. "url": "https://github.com/sebastianbergmann",
  8684. "type": "github"
  8685. }
  8686. ],
  8687. "time": "2024-08-22T04:23:01+00:00"
  8688. },
  8689. {
  8690. "name": "phpunit/php-file-iterator",
  8691. "version": "3.0.6",
  8692. "source": {
  8693. "type": "git",
  8694. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8695. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8696. },
  8697. "dist": {
  8698. "type": "zip",
  8699. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8700. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8701. "shasum": ""
  8702. },
  8703. "require": {
  8704. "php": ">=7.3"
  8705. },
  8706. "require-dev": {
  8707. "phpunit/phpunit": "^9.3"
  8708. },
  8709. "type": "library",
  8710. "extra": {
  8711. "branch-alias": {
  8712. "dev-master": "3.0-dev"
  8713. }
  8714. },
  8715. "autoload": {
  8716. "classmap": [
  8717. "src/"
  8718. ]
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "BSD-3-Clause"
  8723. ],
  8724. "authors": [
  8725. {
  8726. "name": "Sebastian Bergmann",
  8727. "email": "sebastian@phpunit.de",
  8728. "role": "lead"
  8729. }
  8730. ],
  8731. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8732. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8733. "keywords": [
  8734. "filesystem",
  8735. "iterator"
  8736. ],
  8737. "support": {
  8738. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8739. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8740. },
  8741. "funding": [
  8742. {
  8743. "url": "https://github.com/sebastianbergmann",
  8744. "type": "github"
  8745. }
  8746. ],
  8747. "time": "2021-12-02T12:48:52+00:00"
  8748. },
  8749. {
  8750. "name": "phpunit/php-invoker",
  8751. "version": "3.1.1",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8755. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8760. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "php": ">=7.3"
  8765. },
  8766. "require-dev": {
  8767. "ext-pcntl": "*",
  8768. "phpunit/phpunit": "^9.3"
  8769. },
  8770. "suggest": {
  8771. "ext-pcntl": "*"
  8772. },
  8773. "type": "library",
  8774. "extra": {
  8775. "branch-alias": {
  8776. "dev-master": "3.1-dev"
  8777. }
  8778. },
  8779. "autoload": {
  8780. "classmap": [
  8781. "src/"
  8782. ]
  8783. },
  8784. "notification-url": "https://packagist.org/downloads/",
  8785. "license": [
  8786. "BSD-3-Clause"
  8787. ],
  8788. "authors": [
  8789. {
  8790. "name": "Sebastian Bergmann",
  8791. "email": "sebastian@phpunit.de",
  8792. "role": "lead"
  8793. }
  8794. ],
  8795. "description": "Invoke callables with a timeout",
  8796. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8797. "keywords": [
  8798. "process"
  8799. ],
  8800. "support": {
  8801. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8802. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8803. },
  8804. "funding": [
  8805. {
  8806. "url": "https://github.com/sebastianbergmann",
  8807. "type": "github"
  8808. }
  8809. ],
  8810. "time": "2020-09-28T05:58:55+00:00"
  8811. },
  8812. {
  8813. "name": "phpunit/php-text-template",
  8814. "version": "2.0.4",
  8815. "source": {
  8816. "type": "git",
  8817. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8818. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8819. },
  8820. "dist": {
  8821. "type": "zip",
  8822. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8823. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8824. "shasum": ""
  8825. },
  8826. "require": {
  8827. "php": ">=7.3"
  8828. },
  8829. "require-dev": {
  8830. "phpunit/phpunit": "^9.3"
  8831. },
  8832. "type": "library",
  8833. "extra": {
  8834. "branch-alias": {
  8835. "dev-master": "2.0-dev"
  8836. }
  8837. },
  8838. "autoload": {
  8839. "classmap": [
  8840. "src/"
  8841. ]
  8842. },
  8843. "notification-url": "https://packagist.org/downloads/",
  8844. "license": [
  8845. "BSD-3-Clause"
  8846. ],
  8847. "authors": [
  8848. {
  8849. "name": "Sebastian Bergmann",
  8850. "email": "sebastian@phpunit.de",
  8851. "role": "lead"
  8852. }
  8853. ],
  8854. "description": "Simple template engine.",
  8855. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8856. "keywords": [
  8857. "template"
  8858. ],
  8859. "support": {
  8860. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8861. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8862. },
  8863. "funding": [
  8864. {
  8865. "url": "https://github.com/sebastianbergmann",
  8866. "type": "github"
  8867. }
  8868. ],
  8869. "time": "2020-10-26T05:33:50+00:00"
  8870. },
  8871. {
  8872. "name": "phpunit/php-timer",
  8873. "version": "5.0.3",
  8874. "source": {
  8875. "type": "git",
  8876. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8877. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8878. },
  8879. "dist": {
  8880. "type": "zip",
  8881. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8882. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8883. "shasum": ""
  8884. },
  8885. "require": {
  8886. "php": ">=7.3"
  8887. },
  8888. "require-dev": {
  8889. "phpunit/phpunit": "^9.3"
  8890. },
  8891. "type": "library",
  8892. "extra": {
  8893. "branch-alias": {
  8894. "dev-master": "5.0-dev"
  8895. }
  8896. },
  8897. "autoload": {
  8898. "classmap": [
  8899. "src/"
  8900. ]
  8901. },
  8902. "notification-url": "https://packagist.org/downloads/",
  8903. "license": [
  8904. "BSD-3-Clause"
  8905. ],
  8906. "authors": [
  8907. {
  8908. "name": "Sebastian Bergmann",
  8909. "email": "sebastian@phpunit.de",
  8910. "role": "lead"
  8911. }
  8912. ],
  8913. "description": "Utility class for timing",
  8914. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8915. "keywords": [
  8916. "timer"
  8917. ],
  8918. "support": {
  8919. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8920. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8921. },
  8922. "funding": [
  8923. {
  8924. "url": "https://github.com/sebastianbergmann",
  8925. "type": "github"
  8926. }
  8927. ],
  8928. "time": "2020-10-26T13:16:10+00:00"
  8929. },
  8930. {
  8931. "name": "phpunit/phpunit",
  8932. "version": "9.6.21",
  8933. "source": {
  8934. "type": "git",
  8935. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8936. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  8937. },
  8938. "dist": {
  8939. "type": "zip",
  8940. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8941. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8942. "shasum": ""
  8943. },
  8944. "require": {
  8945. "doctrine/instantiator": "^1.5.0 || ^2",
  8946. "ext-dom": "*",
  8947. "ext-json": "*",
  8948. "ext-libxml": "*",
  8949. "ext-mbstring": "*",
  8950. "ext-xml": "*",
  8951. "ext-xmlwriter": "*",
  8952. "myclabs/deep-copy": "^1.12.0",
  8953. "phar-io/manifest": "^2.0.4",
  8954. "phar-io/version": "^3.2.1",
  8955. "php": ">=7.3",
  8956. "phpunit/php-code-coverage": "^9.2.32",
  8957. "phpunit/php-file-iterator": "^3.0.6",
  8958. "phpunit/php-invoker": "^3.1.1",
  8959. "phpunit/php-text-template": "^2.0.4",
  8960. "phpunit/php-timer": "^5.0.3",
  8961. "sebastian/cli-parser": "^1.0.2",
  8962. "sebastian/code-unit": "^1.0.8",
  8963. "sebastian/comparator": "^4.0.8",
  8964. "sebastian/diff": "^4.0.6",
  8965. "sebastian/environment": "^5.1.5",
  8966. "sebastian/exporter": "^4.0.6",
  8967. "sebastian/global-state": "^5.0.7",
  8968. "sebastian/object-enumerator": "^4.0.4",
  8969. "sebastian/resource-operations": "^3.0.4",
  8970. "sebastian/type": "^3.2.1",
  8971. "sebastian/version": "^3.0.2"
  8972. },
  8973. "suggest": {
  8974. "ext-soap": "To be able to generate mocks based on WSDL files",
  8975. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8976. },
  8977. "bin": [
  8978. "phpunit"
  8979. ],
  8980. "type": "library",
  8981. "extra": {
  8982. "branch-alias": {
  8983. "dev-master": "9.6-dev"
  8984. }
  8985. },
  8986. "autoload": {
  8987. "files": [
  8988. "src/Framework/Assert/Functions.php"
  8989. ],
  8990. "classmap": [
  8991. "src/"
  8992. ]
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Sebastian Bergmann",
  9001. "email": "sebastian@phpunit.de",
  9002. "role": "lead"
  9003. }
  9004. ],
  9005. "description": "The PHP Unit Testing framework.",
  9006. "homepage": "https://phpunit.de/",
  9007. "keywords": [
  9008. "phpunit",
  9009. "testing",
  9010. "xunit"
  9011. ],
  9012. "support": {
  9013. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9014. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9015. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  9016. },
  9017. "funding": [
  9018. {
  9019. "url": "https://phpunit.de/sponsors.html",
  9020. "type": "custom"
  9021. },
  9022. {
  9023. "url": "https://github.com/sebastianbergmann",
  9024. "type": "github"
  9025. },
  9026. {
  9027. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9028. "type": "tidelift"
  9029. }
  9030. ],
  9031. "time": "2024-09-19T10:50:18+00:00"
  9032. },
  9033. {
  9034. "name": "sebastian/cli-parser",
  9035. "version": "1.0.2",
  9036. "source": {
  9037. "type": "git",
  9038. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9039. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9040. },
  9041. "dist": {
  9042. "type": "zip",
  9043. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9044. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9045. "shasum": ""
  9046. },
  9047. "require": {
  9048. "php": ">=7.3"
  9049. },
  9050. "require-dev": {
  9051. "phpunit/phpunit": "^9.3"
  9052. },
  9053. "type": "library",
  9054. "extra": {
  9055. "branch-alias": {
  9056. "dev-master": "1.0-dev"
  9057. }
  9058. },
  9059. "autoload": {
  9060. "classmap": [
  9061. "src/"
  9062. ]
  9063. },
  9064. "notification-url": "https://packagist.org/downloads/",
  9065. "license": [
  9066. "BSD-3-Clause"
  9067. ],
  9068. "authors": [
  9069. {
  9070. "name": "Sebastian Bergmann",
  9071. "email": "sebastian@phpunit.de",
  9072. "role": "lead"
  9073. }
  9074. ],
  9075. "description": "Library for parsing CLI options",
  9076. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9077. "support": {
  9078. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9079. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9080. },
  9081. "funding": [
  9082. {
  9083. "url": "https://github.com/sebastianbergmann",
  9084. "type": "github"
  9085. }
  9086. ],
  9087. "time": "2024-03-02T06:27:43+00:00"
  9088. },
  9089. {
  9090. "name": "sebastian/code-unit",
  9091. "version": "1.0.8",
  9092. "source": {
  9093. "type": "git",
  9094. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9095. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9096. },
  9097. "dist": {
  9098. "type": "zip",
  9099. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9100. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9101. "shasum": ""
  9102. },
  9103. "require": {
  9104. "php": ">=7.3"
  9105. },
  9106. "require-dev": {
  9107. "phpunit/phpunit": "^9.3"
  9108. },
  9109. "type": "library",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-master": "1.0-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "classmap": [
  9117. "src/"
  9118. ]
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "BSD-3-Clause"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Sebastian Bergmann",
  9127. "email": "sebastian@phpunit.de",
  9128. "role": "lead"
  9129. }
  9130. ],
  9131. "description": "Collection of value objects that represent the PHP code units",
  9132. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9133. "support": {
  9134. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9135. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9136. },
  9137. "funding": [
  9138. {
  9139. "url": "https://github.com/sebastianbergmann",
  9140. "type": "github"
  9141. }
  9142. ],
  9143. "time": "2020-10-26T13:08:54+00:00"
  9144. },
  9145. {
  9146. "name": "sebastian/code-unit-reverse-lookup",
  9147. "version": "2.0.3",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9151. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9156. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9157. "shasum": ""
  9158. },
  9159. "require": {
  9160. "php": ">=7.3"
  9161. },
  9162. "require-dev": {
  9163. "phpunit/phpunit": "^9.3"
  9164. },
  9165. "type": "library",
  9166. "extra": {
  9167. "branch-alias": {
  9168. "dev-master": "2.0-dev"
  9169. }
  9170. },
  9171. "autoload": {
  9172. "classmap": [
  9173. "src/"
  9174. ]
  9175. },
  9176. "notification-url": "https://packagist.org/downloads/",
  9177. "license": [
  9178. "BSD-3-Clause"
  9179. ],
  9180. "authors": [
  9181. {
  9182. "name": "Sebastian Bergmann",
  9183. "email": "sebastian@phpunit.de"
  9184. }
  9185. ],
  9186. "description": "Looks up which function or method a line of code belongs to",
  9187. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9188. "support": {
  9189. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9190. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9191. },
  9192. "funding": [
  9193. {
  9194. "url": "https://github.com/sebastianbergmann",
  9195. "type": "github"
  9196. }
  9197. ],
  9198. "time": "2020-09-28T05:30:19+00:00"
  9199. },
  9200. {
  9201. "name": "sebastian/comparator",
  9202. "version": "4.0.8",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/sebastianbergmann/comparator.git",
  9206. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9211. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9212. "shasum": ""
  9213. },
  9214. "require": {
  9215. "php": ">=7.3",
  9216. "sebastian/diff": "^4.0",
  9217. "sebastian/exporter": "^4.0"
  9218. },
  9219. "require-dev": {
  9220. "phpunit/phpunit": "^9.3"
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-master": "4.0-dev"
  9226. }
  9227. },
  9228. "autoload": {
  9229. "classmap": [
  9230. "src/"
  9231. ]
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "BSD-3-Clause"
  9236. ],
  9237. "authors": [
  9238. {
  9239. "name": "Sebastian Bergmann",
  9240. "email": "sebastian@phpunit.de"
  9241. },
  9242. {
  9243. "name": "Jeff Welch",
  9244. "email": "whatthejeff@gmail.com"
  9245. },
  9246. {
  9247. "name": "Volker Dusch",
  9248. "email": "github@wallbash.com"
  9249. },
  9250. {
  9251. "name": "Bernhard Schussek",
  9252. "email": "bschussek@2bepublished.at"
  9253. }
  9254. ],
  9255. "description": "Provides the functionality to compare PHP values for equality",
  9256. "homepage": "https://github.com/sebastianbergmann/comparator",
  9257. "keywords": [
  9258. "comparator",
  9259. "compare",
  9260. "equality"
  9261. ],
  9262. "support": {
  9263. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9264. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9265. },
  9266. "funding": [
  9267. {
  9268. "url": "https://github.com/sebastianbergmann",
  9269. "type": "github"
  9270. }
  9271. ],
  9272. "time": "2022-09-14T12:41:17+00:00"
  9273. },
  9274. {
  9275. "name": "sebastian/complexity",
  9276. "version": "2.0.3",
  9277. "source": {
  9278. "type": "git",
  9279. "url": "https://github.com/sebastianbergmann/complexity.git",
  9280. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9281. },
  9282. "dist": {
  9283. "type": "zip",
  9284. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9285. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9286. "shasum": ""
  9287. },
  9288. "require": {
  9289. "nikic/php-parser": "^4.18 || ^5.0",
  9290. "php": ">=7.3"
  9291. },
  9292. "require-dev": {
  9293. "phpunit/phpunit": "^9.3"
  9294. },
  9295. "type": "library",
  9296. "extra": {
  9297. "branch-alias": {
  9298. "dev-master": "2.0-dev"
  9299. }
  9300. },
  9301. "autoload": {
  9302. "classmap": [
  9303. "src/"
  9304. ]
  9305. },
  9306. "notification-url": "https://packagist.org/downloads/",
  9307. "license": [
  9308. "BSD-3-Clause"
  9309. ],
  9310. "authors": [
  9311. {
  9312. "name": "Sebastian Bergmann",
  9313. "email": "sebastian@phpunit.de",
  9314. "role": "lead"
  9315. }
  9316. ],
  9317. "description": "Library for calculating the complexity of PHP code units",
  9318. "homepage": "https://github.com/sebastianbergmann/complexity",
  9319. "support": {
  9320. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9321. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9322. },
  9323. "funding": [
  9324. {
  9325. "url": "https://github.com/sebastianbergmann",
  9326. "type": "github"
  9327. }
  9328. ],
  9329. "time": "2023-12-22T06:19:30+00:00"
  9330. },
  9331. {
  9332. "name": "sebastian/diff",
  9333. "version": "4.0.6",
  9334. "source": {
  9335. "type": "git",
  9336. "url": "https://github.com/sebastianbergmann/diff.git",
  9337. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9338. },
  9339. "dist": {
  9340. "type": "zip",
  9341. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9342. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9343. "shasum": ""
  9344. },
  9345. "require": {
  9346. "php": ">=7.3"
  9347. },
  9348. "require-dev": {
  9349. "phpunit/phpunit": "^9.3",
  9350. "symfony/process": "^4.2 || ^5"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-master": "4.0-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "classmap": [
  9360. "src/"
  9361. ]
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "BSD-3-Clause"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Sebastian Bergmann",
  9370. "email": "sebastian@phpunit.de"
  9371. },
  9372. {
  9373. "name": "Kore Nordmann",
  9374. "email": "mail@kore-nordmann.de"
  9375. }
  9376. ],
  9377. "description": "Diff implementation",
  9378. "homepage": "https://github.com/sebastianbergmann/diff",
  9379. "keywords": [
  9380. "diff",
  9381. "udiff",
  9382. "unidiff",
  9383. "unified diff"
  9384. ],
  9385. "support": {
  9386. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9387. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9388. },
  9389. "funding": [
  9390. {
  9391. "url": "https://github.com/sebastianbergmann",
  9392. "type": "github"
  9393. }
  9394. ],
  9395. "time": "2024-03-02T06:30:58+00:00"
  9396. },
  9397. {
  9398. "name": "sebastian/environment",
  9399. "version": "5.1.5",
  9400. "source": {
  9401. "type": "git",
  9402. "url": "https://github.com/sebastianbergmann/environment.git",
  9403. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9404. },
  9405. "dist": {
  9406. "type": "zip",
  9407. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9408. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9409. "shasum": ""
  9410. },
  9411. "require": {
  9412. "php": ">=7.3"
  9413. },
  9414. "require-dev": {
  9415. "phpunit/phpunit": "^9.3"
  9416. },
  9417. "suggest": {
  9418. "ext-posix": "*"
  9419. },
  9420. "type": "library",
  9421. "extra": {
  9422. "branch-alias": {
  9423. "dev-master": "5.1-dev"
  9424. }
  9425. },
  9426. "autoload": {
  9427. "classmap": [
  9428. "src/"
  9429. ]
  9430. },
  9431. "notification-url": "https://packagist.org/downloads/",
  9432. "license": [
  9433. "BSD-3-Clause"
  9434. ],
  9435. "authors": [
  9436. {
  9437. "name": "Sebastian Bergmann",
  9438. "email": "sebastian@phpunit.de"
  9439. }
  9440. ],
  9441. "description": "Provides functionality to handle HHVM/PHP environments",
  9442. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9443. "keywords": [
  9444. "Xdebug",
  9445. "environment",
  9446. "hhvm"
  9447. ],
  9448. "support": {
  9449. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9450. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9451. },
  9452. "funding": [
  9453. {
  9454. "url": "https://github.com/sebastianbergmann",
  9455. "type": "github"
  9456. }
  9457. ],
  9458. "time": "2023-02-03T06:03:51+00:00"
  9459. },
  9460. {
  9461. "name": "sebastian/exporter",
  9462. "version": "4.0.6",
  9463. "source": {
  9464. "type": "git",
  9465. "url": "https://github.com/sebastianbergmann/exporter.git",
  9466. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9467. },
  9468. "dist": {
  9469. "type": "zip",
  9470. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9471. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9472. "shasum": ""
  9473. },
  9474. "require": {
  9475. "php": ">=7.3",
  9476. "sebastian/recursion-context": "^4.0"
  9477. },
  9478. "require-dev": {
  9479. "ext-mbstring": "*",
  9480. "phpunit/phpunit": "^9.3"
  9481. },
  9482. "type": "library",
  9483. "extra": {
  9484. "branch-alias": {
  9485. "dev-master": "4.0-dev"
  9486. }
  9487. },
  9488. "autoload": {
  9489. "classmap": [
  9490. "src/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "BSD-3-Clause"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Sebastian Bergmann",
  9500. "email": "sebastian@phpunit.de"
  9501. },
  9502. {
  9503. "name": "Jeff Welch",
  9504. "email": "whatthejeff@gmail.com"
  9505. },
  9506. {
  9507. "name": "Volker Dusch",
  9508. "email": "github@wallbash.com"
  9509. },
  9510. {
  9511. "name": "Adam Harvey",
  9512. "email": "aharvey@php.net"
  9513. },
  9514. {
  9515. "name": "Bernhard Schussek",
  9516. "email": "bschussek@gmail.com"
  9517. }
  9518. ],
  9519. "description": "Provides the functionality to export PHP variables for visualization",
  9520. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9521. "keywords": [
  9522. "export",
  9523. "exporter"
  9524. ],
  9525. "support": {
  9526. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9527. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9528. },
  9529. "funding": [
  9530. {
  9531. "url": "https://github.com/sebastianbergmann",
  9532. "type": "github"
  9533. }
  9534. ],
  9535. "time": "2024-03-02T06:33:00+00:00"
  9536. },
  9537. {
  9538. "name": "sebastian/global-state",
  9539. "version": "5.0.7",
  9540. "source": {
  9541. "type": "git",
  9542. "url": "https://github.com/sebastianbergmann/global-state.git",
  9543. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9544. },
  9545. "dist": {
  9546. "type": "zip",
  9547. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9548. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9549. "shasum": ""
  9550. },
  9551. "require": {
  9552. "php": ">=7.3",
  9553. "sebastian/object-reflector": "^2.0",
  9554. "sebastian/recursion-context": "^4.0"
  9555. },
  9556. "require-dev": {
  9557. "ext-dom": "*",
  9558. "phpunit/phpunit": "^9.3"
  9559. },
  9560. "suggest": {
  9561. "ext-uopz": "*"
  9562. },
  9563. "type": "library",
  9564. "extra": {
  9565. "branch-alias": {
  9566. "dev-master": "5.0-dev"
  9567. }
  9568. },
  9569. "autoload": {
  9570. "classmap": [
  9571. "src/"
  9572. ]
  9573. },
  9574. "notification-url": "https://packagist.org/downloads/",
  9575. "license": [
  9576. "BSD-3-Clause"
  9577. ],
  9578. "authors": [
  9579. {
  9580. "name": "Sebastian Bergmann",
  9581. "email": "sebastian@phpunit.de"
  9582. }
  9583. ],
  9584. "description": "Snapshotting of global state",
  9585. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9586. "keywords": [
  9587. "global state"
  9588. ],
  9589. "support": {
  9590. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9591. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9592. },
  9593. "funding": [
  9594. {
  9595. "url": "https://github.com/sebastianbergmann",
  9596. "type": "github"
  9597. }
  9598. ],
  9599. "time": "2024-03-02T06:35:11+00:00"
  9600. },
  9601. {
  9602. "name": "sebastian/lines-of-code",
  9603. "version": "1.0.4",
  9604. "source": {
  9605. "type": "git",
  9606. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9607. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9608. },
  9609. "dist": {
  9610. "type": "zip",
  9611. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9612. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9613. "shasum": ""
  9614. },
  9615. "require": {
  9616. "nikic/php-parser": "^4.18 || ^5.0",
  9617. "php": ">=7.3"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^9.3"
  9621. },
  9622. "type": "library",
  9623. "extra": {
  9624. "branch-alias": {
  9625. "dev-master": "1.0-dev"
  9626. }
  9627. },
  9628. "autoload": {
  9629. "classmap": [
  9630. "src/"
  9631. ]
  9632. },
  9633. "notification-url": "https://packagist.org/downloads/",
  9634. "license": [
  9635. "BSD-3-Clause"
  9636. ],
  9637. "authors": [
  9638. {
  9639. "name": "Sebastian Bergmann",
  9640. "email": "sebastian@phpunit.de",
  9641. "role": "lead"
  9642. }
  9643. ],
  9644. "description": "Library for counting the lines of code in PHP source code",
  9645. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9646. "support": {
  9647. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9648. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9649. },
  9650. "funding": [
  9651. {
  9652. "url": "https://github.com/sebastianbergmann",
  9653. "type": "github"
  9654. }
  9655. ],
  9656. "time": "2023-12-22T06:20:34+00:00"
  9657. },
  9658. {
  9659. "name": "sebastian/object-enumerator",
  9660. "version": "4.0.4",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9664. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9669. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9670. "shasum": ""
  9671. },
  9672. "require": {
  9673. "php": ">=7.3",
  9674. "sebastian/object-reflector": "^2.0",
  9675. "sebastian/recursion-context": "^4.0"
  9676. },
  9677. "require-dev": {
  9678. "phpunit/phpunit": "^9.3"
  9679. },
  9680. "type": "library",
  9681. "extra": {
  9682. "branch-alias": {
  9683. "dev-master": "4.0-dev"
  9684. }
  9685. },
  9686. "autoload": {
  9687. "classmap": [
  9688. "src/"
  9689. ]
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "BSD-3-Clause"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Sebastian Bergmann",
  9698. "email": "sebastian@phpunit.de"
  9699. }
  9700. ],
  9701. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9702. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9703. "support": {
  9704. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9705. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9706. },
  9707. "funding": [
  9708. {
  9709. "url": "https://github.com/sebastianbergmann",
  9710. "type": "github"
  9711. }
  9712. ],
  9713. "time": "2020-10-26T13:12:34+00:00"
  9714. },
  9715. {
  9716. "name": "sebastian/object-reflector",
  9717. "version": "2.0.4",
  9718. "source": {
  9719. "type": "git",
  9720. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9721. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9722. },
  9723. "dist": {
  9724. "type": "zip",
  9725. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9726. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9727. "shasum": ""
  9728. },
  9729. "require": {
  9730. "php": ">=7.3"
  9731. },
  9732. "require-dev": {
  9733. "phpunit/phpunit": "^9.3"
  9734. },
  9735. "type": "library",
  9736. "extra": {
  9737. "branch-alias": {
  9738. "dev-master": "2.0-dev"
  9739. }
  9740. },
  9741. "autoload": {
  9742. "classmap": [
  9743. "src/"
  9744. ]
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "license": [
  9748. "BSD-3-Clause"
  9749. ],
  9750. "authors": [
  9751. {
  9752. "name": "Sebastian Bergmann",
  9753. "email": "sebastian@phpunit.de"
  9754. }
  9755. ],
  9756. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9757. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9758. "support": {
  9759. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9760. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9761. },
  9762. "funding": [
  9763. {
  9764. "url": "https://github.com/sebastianbergmann",
  9765. "type": "github"
  9766. }
  9767. ],
  9768. "time": "2020-10-26T13:14:26+00:00"
  9769. },
  9770. {
  9771. "name": "sebastian/recursion-context",
  9772. "version": "4.0.5",
  9773. "source": {
  9774. "type": "git",
  9775. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9776. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9777. },
  9778. "dist": {
  9779. "type": "zip",
  9780. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9781. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9782. "shasum": ""
  9783. },
  9784. "require": {
  9785. "php": ">=7.3"
  9786. },
  9787. "require-dev": {
  9788. "phpunit/phpunit": "^9.3"
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-master": "4.0-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "classmap": [
  9798. "src/"
  9799. ]
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "BSD-3-Clause"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "Sebastian Bergmann",
  9808. "email": "sebastian@phpunit.de"
  9809. },
  9810. {
  9811. "name": "Jeff Welch",
  9812. "email": "whatthejeff@gmail.com"
  9813. },
  9814. {
  9815. "name": "Adam Harvey",
  9816. "email": "aharvey@php.net"
  9817. }
  9818. ],
  9819. "description": "Provides functionality to recursively process PHP variables",
  9820. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9821. "support": {
  9822. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9823. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9824. },
  9825. "funding": [
  9826. {
  9827. "url": "https://github.com/sebastianbergmann",
  9828. "type": "github"
  9829. }
  9830. ],
  9831. "time": "2023-02-03T06:07:39+00:00"
  9832. },
  9833. {
  9834. "name": "sebastian/resource-operations",
  9835. "version": "3.0.4",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9839. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9844. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9845. "shasum": ""
  9846. },
  9847. "require": {
  9848. "php": ">=7.3"
  9849. },
  9850. "require-dev": {
  9851. "phpunit/phpunit": "^9.0"
  9852. },
  9853. "type": "library",
  9854. "extra": {
  9855. "branch-alias": {
  9856. "dev-main": "3.0-dev"
  9857. }
  9858. },
  9859. "autoload": {
  9860. "classmap": [
  9861. "src/"
  9862. ]
  9863. },
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "BSD-3-Clause"
  9867. ],
  9868. "authors": [
  9869. {
  9870. "name": "Sebastian Bergmann",
  9871. "email": "sebastian@phpunit.de"
  9872. }
  9873. ],
  9874. "description": "Provides a list of PHP built-in functions that operate on resources",
  9875. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9876. "support": {
  9877. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://github.com/sebastianbergmann",
  9882. "type": "github"
  9883. }
  9884. ],
  9885. "time": "2024-03-14T16:00:52+00:00"
  9886. },
  9887. {
  9888. "name": "sebastian/type",
  9889. "version": "3.2.1",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/sebastianbergmann/type.git",
  9893. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9898. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "php": ">=7.3"
  9903. },
  9904. "require-dev": {
  9905. "phpunit/phpunit": "^9.5"
  9906. },
  9907. "type": "library",
  9908. "extra": {
  9909. "branch-alias": {
  9910. "dev-master": "3.2-dev"
  9911. }
  9912. },
  9913. "autoload": {
  9914. "classmap": [
  9915. "src/"
  9916. ]
  9917. },
  9918. "notification-url": "https://packagist.org/downloads/",
  9919. "license": [
  9920. "BSD-3-Clause"
  9921. ],
  9922. "authors": [
  9923. {
  9924. "name": "Sebastian Bergmann",
  9925. "email": "sebastian@phpunit.de",
  9926. "role": "lead"
  9927. }
  9928. ],
  9929. "description": "Collection of value objects that represent the types of the PHP type system",
  9930. "homepage": "https://github.com/sebastianbergmann/type",
  9931. "support": {
  9932. "issues": "https://github.com/sebastianbergmann/type/issues",
  9933. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9934. },
  9935. "funding": [
  9936. {
  9937. "url": "https://github.com/sebastianbergmann",
  9938. "type": "github"
  9939. }
  9940. ],
  9941. "time": "2023-02-03T06:13:03+00:00"
  9942. },
  9943. {
  9944. "name": "sebastian/version",
  9945. "version": "3.0.2",
  9946. "source": {
  9947. "type": "git",
  9948. "url": "https://github.com/sebastianbergmann/version.git",
  9949. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9950. },
  9951. "dist": {
  9952. "type": "zip",
  9953. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9954. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9955. "shasum": ""
  9956. },
  9957. "require": {
  9958. "php": ">=7.3"
  9959. },
  9960. "type": "library",
  9961. "extra": {
  9962. "branch-alias": {
  9963. "dev-master": "3.0-dev"
  9964. }
  9965. },
  9966. "autoload": {
  9967. "classmap": [
  9968. "src/"
  9969. ]
  9970. },
  9971. "notification-url": "https://packagist.org/downloads/",
  9972. "license": [
  9973. "BSD-3-Clause"
  9974. ],
  9975. "authors": [
  9976. {
  9977. "name": "Sebastian Bergmann",
  9978. "email": "sebastian@phpunit.de",
  9979. "role": "lead"
  9980. }
  9981. ],
  9982. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9983. "homepage": "https://github.com/sebastianbergmann/version",
  9984. "support": {
  9985. "issues": "https://github.com/sebastianbergmann/version/issues",
  9986. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9987. },
  9988. "funding": [
  9989. {
  9990. "url": "https://github.com/sebastianbergmann",
  9991. "type": "github"
  9992. }
  9993. ],
  9994. "time": "2020-09-28T06:39:44+00:00"
  9995. },
  9996. {
  9997. "name": "symfony/browser-kit",
  9998. "version": "v7.1.1",
  9999. "source": {
  10000. "type": "git",
  10001. "url": "https://github.com/symfony/browser-kit.git",
  10002. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  10003. },
  10004. "dist": {
  10005. "type": "zip",
  10006. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  10007. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  10008. "shasum": ""
  10009. },
  10010. "require": {
  10011. "php": ">=8.2",
  10012. "symfony/dom-crawler": "^6.4|^7.0"
  10013. },
  10014. "require-dev": {
  10015. "symfony/css-selector": "^6.4|^7.0",
  10016. "symfony/http-client": "^6.4|^7.0",
  10017. "symfony/mime": "^6.4|^7.0",
  10018. "symfony/process": "^6.4|^7.0"
  10019. },
  10020. "type": "library",
  10021. "autoload": {
  10022. "psr-4": {
  10023. "Symfony\\Component\\BrowserKit\\": ""
  10024. },
  10025. "exclude-from-classmap": [
  10026. "/Tests/"
  10027. ]
  10028. },
  10029. "notification-url": "https://packagist.org/downloads/",
  10030. "license": [
  10031. "MIT"
  10032. ],
  10033. "authors": [
  10034. {
  10035. "name": "Fabien Potencier",
  10036. "email": "fabien@symfony.com"
  10037. },
  10038. {
  10039. "name": "Symfony Community",
  10040. "homepage": "https://symfony.com/contributors"
  10041. }
  10042. ],
  10043. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10044. "homepage": "https://symfony.com",
  10045. "support": {
  10046. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  10047. },
  10048. "funding": [
  10049. {
  10050. "url": "https://symfony.com/sponsor",
  10051. "type": "custom"
  10052. },
  10053. {
  10054. "url": "https://github.com/fabpot",
  10055. "type": "github"
  10056. },
  10057. {
  10058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10059. "type": "tidelift"
  10060. }
  10061. ],
  10062. "time": "2024-05-31T14:57:53+00:00"
  10063. },
  10064. {
  10065. "name": "symfony/css-selector",
  10066. "version": "v7.1.1",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/symfony/css-selector.git",
  10070. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10075. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10076. "shasum": ""
  10077. },
  10078. "require": {
  10079. "php": ">=8.2"
  10080. },
  10081. "type": "library",
  10082. "autoload": {
  10083. "psr-4": {
  10084. "Symfony\\Component\\CssSelector\\": ""
  10085. },
  10086. "exclude-from-classmap": [
  10087. "/Tests/"
  10088. ]
  10089. },
  10090. "notification-url": "https://packagist.org/downloads/",
  10091. "license": [
  10092. "MIT"
  10093. ],
  10094. "authors": [
  10095. {
  10096. "name": "Fabien Potencier",
  10097. "email": "fabien@symfony.com"
  10098. },
  10099. {
  10100. "name": "Jean-François Simon",
  10101. "email": "jeanfrancois.simon@sensiolabs.com"
  10102. },
  10103. {
  10104. "name": "Symfony Community",
  10105. "homepage": "https://symfony.com/contributors"
  10106. }
  10107. ],
  10108. "description": "Converts CSS selectors to XPath expressions",
  10109. "homepage": "https://symfony.com",
  10110. "support": {
  10111. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://symfony.com/sponsor",
  10116. "type": "custom"
  10117. },
  10118. {
  10119. "url": "https://github.com/fabpot",
  10120. "type": "github"
  10121. },
  10122. {
  10123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10124. "type": "tidelift"
  10125. }
  10126. ],
  10127. "time": "2024-05-31T14:57:53+00:00"
  10128. },
  10129. {
  10130. "name": "symfony/debug-bundle",
  10131. "version": "v7.1.1",
  10132. "source": {
  10133. "type": "git",
  10134. "url": "https://github.com/symfony/debug-bundle.git",
  10135. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10136. },
  10137. "dist": {
  10138. "type": "zip",
  10139. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10140. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10141. "shasum": ""
  10142. },
  10143. "require": {
  10144. "ext-xml": "*",
  10145. "php": ">=8.2",
  10146. "symfony/dependency-injection": "^6.4|^7.0",
  10147. "symfony/http-kernel": "^6.4|^7.0",
  10148. "symfony/twig-bridge": "^6.4|^7.0",
  10149. "symfony/var-dumper": "^6.4|^7.0"
  10150. },
  10151. "conflict": {
  10152. "symfony/config": "<6.4",
  10153. "symfony/dependency-injection": "<6.4"
  10154. },
  10155. "require-dev": {
  10156. "symfony/config": "^6.4|^7.0",
  10157. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10158. },
  10159. "type": "symfony-bundle",
  10160. "autoload": {
  10161. "psr-4": {
  10162. "Symfony\\Bundle\\DebugBundle\\": ""
  10163. },
  10164. "exclude-from-classmap": [
  10165. "/Tests/"
  10166. ]
  10167. },
  10168. "notification-url": "https://packagist.org/downloads/",
  10169. "license": [
  10170. "MIT"
  10171. ],
  10172. "authors": [
  10173. {
  10174. "name": "Fabien Potencier",
  10175. "email": "fabien@symfony.com"
  10176. },
  10177. {
  10178. "name": "Symfony Community",
  10179. "homepage": "https://symfony.com/contributors"
  10180. }
  10181. ],
  10182. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10183. "homepage": "https://symfony.com",
  10184. "support": {
  10185. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10186. },
  10187. "funding": [
  10188. {
  10189. "url": "https://symfony.com/sponsor",
  10190. "type": "custom"
  10191. },
  10192. {
  10193. "url": "https://github.com/fabpot",
  10194. "type": "github"
  10195. },
  10196. {
  10197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10198. "type": "tidelift"
  10199. }
  10200. ],
  10201. "time": "2024-05-31T14:55:39+00:00"
  10202. },
  10203. {
  10204. "name": "symfony/dom-crawler",
  10205. "version": "v7.1.5",
  10206. "source": {
  10207. "type": "git",
  10208. "url": "https://github.com/symfony/dom-crawler.git",
  10209. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  10210. },
  10211. "dist": {
  10212. "type": "zip",
  10213. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  10214. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  10215. "shasum": ""
  10216. },
  10217. "require": {
  10218. "masterminds/html5": "^2.6",
  10219. "php": ">=8.2",
  10220. "symfony/polyfill-ctype": "~1.8",
  10221. "symfony/polyfill-mbstring": "~1.0"
  10222. },
  10223. "require-dev": {
  10224. "symfony/css-selector": "^6.4|^7.0"
  10225. },
  10226. "type": "library",
  10227. "autoload": {
  10228. "psr-4": {
  10229. "Symfony\\Component\\DomCrawler\\": ""
  10230. },
  10231. "exclude-from-classmap": [
  10232. "/Tests/"
  10233. ]
  10234. },
  10235. "notification-url": "https://packagist.org/downloads/",
  10236. "license": [
  10237. "MIT"
  10238. ],
  10239. "authors": [
  10240. {
  10241. "name": "Fabien Potencier",
  10242. "email": "fabien@symfony.com"
  10243. },
  10244. {
  10245. "name": "Symfony Community",
  10246. "homepage": "https://symfony.com/contributors"
  10247. }
  10248. ],
  10249. "description": "Eases DOM navigation for HTML and XML documents",
  10250. "homepage": "https://symfony.com",
  10251. "support": {
  10252. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  10253. },
  10254. "funding": [
  10255. {
  10256. "url": "https://symfony.com/sponsor",
  10257. "type": "custom"
  10258. },
  10259. {
  10260. "url": "https://github.com/fabpot",
  10261. "type": "github"
  10262. },
  10263. {
  10264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10265. "type": "tidelift"
  10266. }
  10267. ],
  10268. "time": "2024-09-15T06:48:17+00:00"
  10269. },
  10270. {
  10271. "name": "symfony/maker-bundle",
  10272. "version": "v1.61.0",
  10273. "source": {
  10274. "type": "git",
  10275. "url": "https://github.com/symfony/maker-bundle.git",
  10276. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  10277. },
  10278. "dist": {
  10279. "type": "zip",
  10280. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10281. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10282. "shasum": ""
  10283. },
  10284. "require": {
  10285. "doctrine/inflector": "^2.0",
  10286. "nikic/php-parser": "^4.18|^5.0",
  10287. "php": ">=8.1",
  10288. "symfony/config": "^6.4|^7.0",
  10289. "symfony/console": "^6.4|^7.0",
  10290. "symfony/dependency-injection": "^6.4|^7.0",
  10291. "symfony/deprecation-contracts": "^2.2|^3",
  10292. "symfony/filesystem": "^6.4|^7.0",
  10293. "symfony/finder": "^6.4|^7.0",
  10294. "symfony/framework-bundle": "^6.4|^7.0",
  10295. "symfony/http-kernel": "^6.4|^7.0",
  10296. "symfony/process": "^6.4|^7.0"
  10297. },
  10298. "conflict": {
  10299. "doctrine/doctrine-bundle": "<2.10",
  10300. "doctrine/orm": "<2.15"
  10301. },
  10302. "require-dev": {
  10303. "composer/semver": "^3.0",
  10304. "doctrine/doctrine-bundle": "^2.5.0",
  10305. "doctrine/orm": "^2.15|^3",
  10306. "symfony/http-client": "^6.4|^7.0",
  10307. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10308. "symfony/security-core": "^6.4|^7.0",
  10309. "symfony/yaml": "^6.4|^7.0",
  10310. "twig/twig": "^3.0|^4.x-dev"
  10311. },
  10312. "type": "symfony-bundle",
  10313. "extra": {
  10314. "branch-alias": {
  10315. "dev-main": "1.x-dev"
  10316. }
  10317. },
  10318. "autoload": {
  10319. "psr-4": {
  10320. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10321. }
  10322. },
  10323. "notification-url": "https://packagist.org/downloads/",
  10324. "license": [
  10325. "MIT"
  10326. ],
  10327. "authors": [
  10328. {
  10329. "name": "Symfony Community",
  10330. "homepage": "https://symfony.com/contributors"
  10331. }
  10332. ],
  10333. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10334. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10335. "keywords": [
  10336. "code generator",
  10337. "dev",
  10338. "generator",
  10339. "scaffold",
  10340. "scaffolding"
  10341. ],
  10342. "support": {
  10343. "issues": "https://github.com/symfony/maker-bundle/issues",
  10344. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  10345. },
  10346. "funding": [
  10347. {
  10348. "url": "https://symfony.com/sponsor",
  10349. "type": "custom"
  10350. },
  10351. {
  10352. "url": "https://github.com/fabpot",
  10353. "type": "github"
  10354. },
  10355. {
  10356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10357. "type": "tidelift"
  10358. }
  10359. ],
  10360. "time": "2024-08-29T22:50:23+00:00"
  10361. },
  10362. {
  10363. "name": "symfony/phpunit-bridge",
  10364. "version": "v7.1.4",
  10365. "source": {
  10366. "type": "git",
  10367. "url": "https://github.com/symfony/phpunit-bridge.git",
  10368. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  10369. },
  10370. "dist": {
  10371. "type": "zip",
  10372. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10373. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10374. "shasum": ""
  10375. },
  10376. "require": {
  10377. "php": ">=7.2.5"
  10378. },
  10379. "conflict": {
  10380. "phpunit/phpunit": "<7.5|9.1.2"
  10381. },
  10382. "require-dev": {
  10383. "symfony/deprecation-contracts": "^2.5|^3.0",
  10384. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10385. "symfony/polyfill-php81": "^1.27"
  10386. },
  10387. "bin": [
  10388. "bin/simple-phpunit"
  10389. ],
  10390. "type": "symfony-bridge",
  10391. "extra": {
  10392. "thanks": {
  10393. "name": "phpunit/phpunit",
  10394. "url": "https://github.com/sebastianbergmann/phpunit"
  10395. }
  10396. },
  10397. "autoload": {
  10398. "files": [
  10399. "bootstrap.php"
  10400. ],
  10401. "psr-4": {
  10402. "Symfony\\Bridge\\PhpUnit\\": ""
  10403. },
  10404. "exclude-from-classmap": [
  10405. "/Tests/",
  10406. "/bin/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "MIT"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Nicolas Grekas",
  10416. "email": "p@tchwork.com"
  10417. },
  10418. {
  10419. "name": "Symfony Community",
  10420. "homepage": "https://symfony.com/contributors"
  10421. }
  10422. ],
  10423. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10424. "homepage": "https://symfony.com",
  10425. "support": {
  10426. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  10427. },
  10428. "funding": [
  10429. {
  10430. "url": "https://symfony.com/sponsor",
  10431. "type": "custom"
  10432. },
  10433. {
  10434. "url": "https://github.com/fabpot",
  10435. "type": "github"
  10436. },
  10437. {
  10438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10439. "type": "tidelift"
  10440. }
  10441. ],
  10442. "time": "2024-08-13T14:28:19+00:00"
  10443. },
  10444. {
  10445. "name": "symfony/web-profiler-bundle",
  10446. "version": "v7.1.4",
  10447. "source": {
  10448. "type": "git",
  10449. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10450. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  10451. },
  10452. "dist": {
  10453. "type": "zip",
  10454. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  10455. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  10456. "shasum": ""
  10457. },
  10458. "require": {
  10459. "php": ">=8.2",
  10460. "symfony/config": "^6.4|^7.0",
  10461. "symfony/framework-bundle": "^6.4|^7.0",
  10462. "symfony/http-kernel": "^6.4|^7.0",
  10463. "symfony/routing": "^6.4|^7.0",
  10464. "symfony/twig-bundle": "^6.4|^7.0",
  10465. "twig/twig": "^3.10"
  10466. },
  10467. "conflict": {
  10468. "symfony/form": "<6.4",
  10469. "symfony/mailer": "<6.4",
  10470. "symfony/messenger": "<6.4"
  10471. },
  10472. "require-dev": {
  10473. "symfony/browser-kit": "^6.4|^7.0",
  10474. "symfony/console": "^6.4|^7.0",
  10475. "symfony/css-selector": "^6.4|^7.0",
  10476. "symfony/stopwatch": "^6.4|^7.0"
  10477. },
  10478. "type": "symfony-bundle",
  10479. "autoload": {
  10480. "psr-4": {
  10481. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10482. },
  10483. "exclude-from-classmap": [
  10484. "/Tests/"
  10485. ]
  10486. },
  10487. "notification-url": "https://packagist.org/downloads/",
  10488. "license": [
  10489. "MIT"
  10490. ],
  10491. "authors": [
  10492. {
  10493. "name": "Fabien Potencier",
  10494. "email": "fabien@symfony.com"
  10495. },
  10496. {
  10497. "name": "Symfony Community",
  10498. "homepage": "https://symfony.com/contributors"
  10499. }
  10500. ],
  10501. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10502. "homepage": "https://symfony.com",
  10503. "keywords": [
  10504. "dev"
  10505. ],
  10506. "support": {
  10507. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  10508. },
  10509. "funding": [
  10510. {
  10511. "url": "https://symfony.com/sponsor",
  10512. "type": "custom"
  10513. },
  10514. {
  10515. "url": "https://github.com/fabpot",
  10516. "type": "github"
  10517. },
  10518. {
  10519. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10520. "type": "tidelift"
  10521. }
  10522. ],
  10523. "time": "2024-08-12T09:59:40+00:00"
  10524. },
  10525. {
  10526. "name": "theseer/tokenizer",
  10527. "version": "1.2.3",
  10528. "source": {
  10529. "type": "git",
  10530. "url": "https://github.com/theseer/tokenizer.git",
  10531. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10532. },
  10533. "dist": {
  10534. "type": "zip",
  10535. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10536. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10537. "shasum": ""
  10538. },
  10539. "require": {
  10540. "ext-dom": "*",
  10541. "ext-tokenizer": "*",
  10542. "ext-xmlwriter": "*",
  10543. "php": "^7.2 || ^8.0"
  10544. },
  10545. "type": "library",
  10546. "autoload": {
  10547. "classmap": [
  10548. "src/"
  10549. ]
  10550. },
  10551. "notification-url": "https://packagist.org/downloads/",
  10552. "license": [
  10553. "BSD-3-Clause"
  10554. ],
  10555. "authors": [
  10556. {
  10557. "name": "Arne Blankerts",
  10558. "email": "arne@blankerts.de",
  10559. "role": "Developer"
  10560. }
  10561. ],
  10562. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10563. "support": {
  10564. "issues": "https://github.com/theseer/tokenizer/issues",
  10565. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10566. },
  10567. "funding": [
  10568. {
  10569. "url": "https://github.com/theseer",
  10570. "type": "github"
  10571. }
  10572. ],
  10573. "time": "2024-03-03T12:36:25+00:00"
  10574. }
  10575. ],
  10576. "aliases": [],
  10577. "minimum-stability": "stable",
  10578. "stability-flags": [],
  10579. "prefer-stable": true,
  10580. "prefer-lowest": false,
  10581. "platform": {
  10582. "php": ">=8.2",
  10583. "ext-ctype": "*",
  10584. "ext-iconv": "*"
  10585. },
  10586. "platform-dev": [],
  10587. "plugin-api-version": "2.6.0"
  10588. }