composer.lock 380 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501
  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": "9e6713e4c35aac584cd3f404ee58ab09",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  20. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2021-05-24T07:46:03+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  93. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  154. },
  155. "time": "2022-10-27T11:44:00+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "1.14.2",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "ad785217c1e9555a7d6c6c8c9f406395a5e2882b"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ad785217c1e9555a7d6c6c8c9f406395a5e2882b",
  168. "reference": "ad785217c1e9555a7d6c6c8c9f406395a5e2882b",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^1 || ^2",
  173. "ext-tokenizer": "*",
  174. "php": "^7.1 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^1.11 || ^2.0",
  179. "doctrine/coding-standard": "^9 || ^10",
  180. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^4.4 || ^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/1.14.2"
  230. },
  231. "time": "2022-12-15T06:48:22+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.1.1",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "425857d49df4812ca9199691d7d7aa66097d94f3"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/425857d49df4812ca9199691d7d7aa66097d94f3",
  337. "reference": "425857d49df4812ca9199691d7d7aa66097d94f3",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^10.0",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^4.22"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.1.1"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2022-12-08T22:30:56+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.5.2",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/63e513cebbbaf96a6795e5c5ee34d205831bfc85",
  514. "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "11.0.0",
  528. "jetbrains/phpstorm-stubs": "2022.3",
  529. "phpstan/phpstan": "1.9.2",
  530. "phpstan/phpstan-strict-rules": "^1.4",
  531. "phpunit/phpunit": "9.5.27",
  532. "psalm/plugin-phpunit": "0.18.4",
  533. "squizlabs/php_codesniffer": "3.7.1",
  534. "symfony/cache": "^5.4|^6.0",
  535. "symfony/console": "^4.4|^5.4|^6.0",
  536. "vimeo/psalm": "4.30.0"
  537. },
  538. "suggest": {
  539. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  540. },
  541. "bin": [
  542. "bin/doctrine-dbal"
  543. ],
  544. "type": "library",
  545. "autoload": {
  546. "psr-4": {
  547. "Doctrine\\DBAL\\": "src"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Guilherme Blanco",
  557. "email": "guilhermeblanco@gmail.com"
  558. },
  559. {
  560. "name": "Roman Borschel",
  561. "email": "roman@code-factory.org"
  562. },
  563. {
  564. "name": "Benjamin Eberlei",
  565. "email": "kontakt@beberlei.de"
  566. },
  567. {
  568. "name": "Jonathan Wage",
  569. "email": "jonwage@gmail.com"
  570. }
  571. ],
  572. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  573. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  574. "keywords": [
  575. "abstraction",
  576. "database",
  577. "db2",
  578. "dbal",
  579. "mariadb",
  580. "mssql",
  581. "mysql",
  582. "oci8",
  583. "oracle",
  584. "pdo",
  585. "pgsql",
  586. "postgresql",
  587. "queryobject",
  588. "sasql",
  589. "sql",
  590. "sqlite",
  591. "sqlserver",
  592. "sqlsrv"
  593. ],
  594. "support": {
  595. "issues": "https://github.com/doctrine/dbal/issues",
  596. "source": "https://github.com/doctrine/dbal/tree/3.5.2"
  597. },
  598. "funding": [
  599. {
  600. "url": "https://www.doctrine-project.org/sponsorship.html",
  601. "type": "custom"
  602. },
  603. {
  604. "url": "https://www.patreon.com/phpdoctrine",
  605. "type": "patreon"
  606. },
  607. {
  608. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  609. "type": "tidelift"
  610. }
  611. ],
  612. "time": "2022-12-19T08:17:34+00:00"
  613. },
  614. {
  615. "name": "doctrine/deprecations",
  616. "version": "v1.0.0",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/doctrine/deprecations.git",
  620. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  625. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "php": "^7.1|^8.0"
  630. },
  631. "require-dev": {
  632. "doctrine/coding-standard": "^9",
  633. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  634. "psr/log": "^1|^2|^3"
  635. },
  636. "suggest": {
  637. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  638. },
  639. "type": "library",
  640. "autoload": {
  641. "psr-4": {
  642. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  643. }
  644. },
  645. "notification-url": "https://packagist.org/downloads/",
  646. "license": [
  647. "MIT"
  648. ],
  649. "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.",
  650. "homepage": "https://www.doctrine-project.org/",
  651. "support": {
  652. "issues": "https://github.com/doctrine/deprecations/issues",
  653. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  654. },
  655. "time": "2022-05-02T15:47:09+00:00"
  656. },
  657. {
  658. "name": "doctrine/doctrine-bundle",
  659. "version": "2.7.2",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/doctrine/DoctrineBundle.git",
  663. "reference": "22d53b2c5ad03929628fb4a928b01135585b7179"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/22d53b2c5ad03929628fb4a928b01135585b7179",
  668. "reference": "22d53b2c5ad03929628fb4a928b01135585b7179",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "doctrine/annotations": "^1",
  673. "doctrine/cache": "^1.11 || ^2.0",
  674. "doctrine/dbal": "^2.13.1 || ^3.3.2",
  675. "doctrine/persistence": "^2.2 || ^3",
  676. "doctrine/sql-formatter": "^1.0.1",
  677. "php": "^7.1 || ^8.0",
  678. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  679. "symfony/config": "^4.4.3 || ^5.4 || ^6.0",
  680. "symfony/console": "^4.4 || ^5.4 || ^6.0",
  681. "symfony/dependency-injection": "^4.4.18 || ^5.4 || ^6.0",
  682. "symfony/deprecation-contracts": "^2.1 || ^3",
  683. "symfony/doctrine-bridge": "^4.4.22 || ^5.4 || ^6.0",
  684. "symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
  685. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  686. },
  687. "conflict": {
  688. "doctrine/orm": "<2.11 || >=3.0",
  689. "twig/twig": "<1.34 || >=2.0,<2.4"
  690. },
  691. "require-dev": {
  692. "doctrine/coding-standard": "^9.0",
  693. "doctrine/orm": "^2.11 || ^3.0",
  694. "friendsofphp/proxy-manager-lts": "^1.0",
  695. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  696. "psalm/plugin-phpunit": "^0.16.1",
  697. "psalm/plugin-symfony": "^3",
  698. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  699. "symfony/phpunit-bridge": "^6.1",
  700. "symfony/property-info": "^4.4 || ^5.4 || ^6.0",
  701. "symfony/proxy-manager-bridge": "^4.4 || ^5.4 || ^6.0",
  702. "symfony/security-bundle": "^4.4 || ^5.4 || ^6.0",
  703. "symfony/twig-bridge": "^4.4 || ^5.4 || ^6.0",
  704. "symfony/validator": "^4.4 || ^5.4 || ^6.0",
  705. "symfony/web-profiler-bundle": "^4.4 || ^5.4 || ^6.0",
  706. "symfony/yaml": "^4.4 || ^5.4 || ^6.0",
  707. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  708. "vimeo/psalm": "^4.7"
  709. },
  710. "suggest": {
  711. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  712. "ext-pdo": "*",
  713. "symfony/web-profiler-bundle": "To use the data collector."
  714. },
  715. "type": "symfony-bundle",
  716. "autoload": {
  717. "psr-4": {
  718. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  719. }
  720. },
  721. "notification-url": "https://packagist.org/downloads/",
  722. "license": [
  723. "MIT"
  724. ],
  725. "authors": [
  726. {
  727. "name": "Fabien Potencier",
  728. "email": "fabien@symfony.com"
  729. },
  730. {
  731. "name": "Benjamin Eberlei",
  732. "email": "kontakt@beberlei.de"
  733. },
  734. {
  735. "name": "Symfony Community",
  736. "homepage": "https://symfony.com/contributors"
  737. },
  738. {
  739. "name": "Doctrine Project",
  740. "homepage": "https://www.doctrine-project.org/"
  741. }
  742. ],
  743. "description": "Symfony DoctrineBundle",
  744. "homepage": "https://www.doctrine-project.org",
  745. "keywords": [
  746. "database",
  747. "dbal",
  748. "orm",
  749. "persistence"
  750. ],
  751. "support": {
  752. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  753. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.7.2"
  754. },
  755. "funding": [
  756. {
  757. "url": "https://www.doctrine-project.org/sponsorship.html",
  758. "type": "custom"
  759. },
  760. {
  761. "url": "https://www.patreon.com/phpdoctrine",
  762. "type": "patreon"
  763. },
  764. {
  765. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  766. "type": "tidelift"
  767. }
  768. ],
  769. "time": "2022-12-07T12:07:11+00:00"
  770. },
  771. {
  772. "name": "doctrine/doctrine-migrations-bundle",
  773. "version": "3.2.2",
  774. "source": {
  775. "type": "git",
  776. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  777. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  778. },
  779. "dist": {
  780. "type": "zip",
  781. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  782. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  783. "shasum": ""
  784. },
  785. "require": {
  786. "doctrine/doctrine-bundle": "~1.0|~2.0",
  787. "doctrine/migrations": "^3.2",
  788. "php": "^7.2|^8.0",
  789. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  790. },
  791. "require-dev": {
  792. "doctrine/coding-standard": "^8.0",
  793. "doctrine/orm": "^2.6",
  794. "doctrine/persistence": "^1.3||^2.0",
  795. "phpstan/phpstan": "^0.12",
  796. "phpstan/phpstan-deprecation-rules": "^0.12",
  797. "phpstan/phpstan-phpunit": "^0.12",
  798. "phpstan/phpstan-strict-rules": "^0.12",
  799. "phpunit/phpunit": "^8.0|^9.0",
  800. "vimeo/psalm": "^4.11"
  801. },
  802. "type": "symfony-bundle",
  803. "autoload": {
  804. "psr-4": {
  805. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  806. },
  807. "exclude-from-classmap": [
  808. "/Tests/"
  809. ]
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "MIT"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Fabien Potencier",
  818. "email": "fabien@symfony.com"
  819. },
  820. {
  821. "name": "Doctrine Project",
  822. "homepage": "https://www.doctrine-project.org"
  823. },
  824. {
  825. "name": "Symfony Community",
  826. "homepage": "https://symfony.com/contributors"
  827. }
  828. ],
  829. "description": "Symfony DoctrineMigrationsBundle",
  830. "homepage": "https://www.doctrine-project.org",
  831. "keywords": [
  832. "dbal",
  833. "migrations",
  834. "schema"
  835. ],
  836. "support": {
  837. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  838. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  839. },
  840. "funding": [
  841. {
  842. "url": "https://www.doctrine-project.org/sponsorship.html",
  843. "type": "custom"
  844. },
  845. {
  846. "url": "https://www.patreon.com/phpdoctrine",
  847. "type": "patreon"
  848. },
  849. {
  850. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  851. "type": "tidelift"
  852. }
  853. ],
  854. "time": "2022-02-01T18:08:07+00:00"
  855. },
  856. {
  857. "name": "doctrine/event-manager",
  858. "version": "1.2.0",
  859. "source": {
  860. "type": "git",
  861. "url": "https://github.com/doctrine/event-manager.git",
  862. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  863. },
  864. "dist": {
  865. "type": "zip",
  866. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  867. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  868. "shasum": ""
  869. },
  870. "require": {
  871. "doctrine/deprecations": "^0.5.3 || ^1",
  872. "php": "^7.1 || ^8.0"
  873. },
  874. "conflict": {
  875. "doctrine/common": "<2.9"
  876. },
  877. "require-dev": {
  878. "doctrine/coding-standard": "^9 || ^10",
  879. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  880. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  881. "vimeo/psalm": "^4.24"
  882. },
  883. "type": "library",
  884. "autoload": {
  885. "psr-4": {
  886. "Doctrine\\Common\\": "src"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Guilherme Blanco",
  896. "email": "guilhermeblanco@gmail.com"
  897. },
  898. {
  899. "name": "Roman Borschel",
  900. "email": "roman@code-factory.org"
  901. },
  902. {
  903. "name": "Benjamin Eberlei",
  904. "email": "kontakt@beberlei.de"
  905. },
  906. {
  907. "name": "Jonathan Wage",
  908. "email": "jonwage@gmail.com"
  909. },
  910. {
  911. "name": "Johannes Schmitt",
  912. "email": "schmittjoh@gmail.com"
  913. },
  914. {
  915. "name": "Marco Pivetta",
  916. "email": "ocramius@gmail.com"
  917. }
  918. ],
  919. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  920. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  921. "keywords": [
  922. "event",
  923. "event dispatcher",
  924. "event manager",
  925. "event system",
  926. "events"
  927. ],
  928. "support": {
  929. "issues": "https://github.com/doctrine/event-manager/issues",
  930. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  931. },
  932. "funding": [
  933. {
  934. "url": "https://www.doctrine-project.org/sponsorship.html",
  935. "type": "custom"
  936. },
  937. {
  938. "url": "https://www.patreon.com/phpdoctrine",
  939. "type": "patreon"
  940. },
  941. {
  942. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  943. "type": "tidelift"
  944. }
  945. ],
  946. "time": "2022-10-12T20:51:15+00:00"
  947. },
  948. {
  949. "name": "doctrine/inflector",
  950. "version": "2.0.6",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/doctrine/inflector.git",
  954. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  959. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  960. "shasum": ""
  961. },
  962. "require": {
  963. "php": "^7.2 || ^8.0"
  964. },
  965. "require-dev": {
  966. "doctrine/coding-standard": "^10",
  967. "phpstan/phpstan": "^1.8",
  968. "phpstan/phpstan-phpunit": "^1.1",
  969. "phpstan/phpstan-strict-rules": "^1.3",
  970. "phpunit/phpunit": "^8.5 || ^9.5",
  971. "vimeo/psalm": "^4.25"
  972. },
  973. "type": "library",
  974. "autoload": {
  975. "psr-4": {
  976. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "authors": [
  984. {
  985. "name": "Guilherme Blanco",
  986. "email": "guilhermeblanco@gmail.com"
  987. },
  988. {
  989. "name": "Roman Borschel",
  990. "email": "roman@code-factory.org"
  991. },
  992. {
  993. "name": "Benjamin Eberlei",
  994. "email": "kontakt@beberlei.de"
  995. },
  996. {
  997. "name": "Jonathan Wage",
  998. "email": "jonwage@gmail.com"
  999. },
  1000. {
  1001. "name": "Johannes Schmitt",
  1002. "email": "schmittjoh@gmail.com"
  1003. }
  1004. ],
  1005. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1006. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1007. "keywords": [
  1008. "inflection",
  1009. "inflector",
  1010. "lowercase",
  1011. "manipulation",
  1012. "php",
  1013. "plural",
  1014. "singular",
  1015. "strings",
  1016. "uppercase",
  1017. "words"
  1018. ],
  1019. "support": {
  1020. "issues": "https://github.com/doctrine/inflector/issues",
  1021. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://www.doctrine-project.org/sponsorship.html",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://www.patreon.com/phpdoctrine",
  1030. "type": "patreon"
  1031. },
  1032. {
  1033. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1034. "type": "tidelift"
  1035. }
  1036. ],
  1037. "time": "2022-10-20T09:10:12+00:00"
  1038. },
  1039. {
  1040. "name": "doctrine/instantiator",
  1041. "version": "1.4.1",
  1042. "source": {
  1043. "type": "git",
  1044. "url": "https://github.com/doctrine/instantiator.git",
  1045. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  1046. },
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  1050. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  1051. "shasum": ""
  1052. },
  1053. "require": {
  1054. "php": "^7.1 || ^8.0"
  1055. },
  1056. "require-dev": {
  1057. "doctrine/coding-standard": "^9",
  1058. "ext-pdo": "*",
  1059. "ext-phar": "*",
  1060. "phpbench/phpbench": "^0.16 || ^1",
  1061. "phpstan/phpstan": "^1.4",
  1062. "phpstan/phpstan-phpunit": "^1",
  1063. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1064. "vimeo/psalm": "^4.22"
  1065. },
  1066. "type": "library",
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Marco Pivetta",
  1079. "email": "ocramius@gmail.com",
  1080. "homepage": "https://ocramius.github.io/"
  1081. }
  1082. ],
  1083. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1084. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1085. "keywords": [
  1086. "constructor",
  1087. "instantiate"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/doctrine/instantiator/issues",
  1091. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://www.doctrine-project.org/sponsorship.html",
  1096. "type": "custom"
  1097. },
  1098. {
  1099. "url": "https://www.patreon.com/phpdoctrine",
  1100. "type": "patreon"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2022-03-03T08:28:38+00:00"
  1108. },
  1109. {
  1110. "name": "doctrine/lexer",
  1111. "version": "1.2.3",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/doctrine/lexer.git",
  1115. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1120. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "php": "^7.1 || ^8.0"
  1125. },
  1126. "require-dev": {
  1127. "doctrine/coding-standard": "^9.0",
  1128. "phpstan/phpstan": "^1.3",
  1129. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1130. "vimeo/psalm": "^4.11"
  1131. },
  1132. "type": "library",
  1133. "autoload": {
  1134. "psr-4": {
  1135. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1136. }
  1137. },
  1138. "notification-url": "https://packagist.org/downloads/",
  1139. "license": [
  1140. "MIT"
  1141. ],
  1142. "authors": [
  1143. {
  1144. "name": "Guilherme Blanco",
  1145. "email": "guilhermeblanco@gmail.com"
  1146. },
  1147. {
  1148. "name": "Roman Borschel",
  1149. "email": "roman@code-factory.org"
  1150. },
  1151. {
  1152. "name": "Johannes Schmitt",
  1153. "email": "schmittjoh@gmail.com"
  1154. }
  1155. ],
  1156. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1157. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1158. "keywords": [
  1159. "annotations",
  1160. "docblock",
  1161. "lexer",
  1162. "parser",
  1163. "php"
  1164. ],
  1165. "support": {
  1166. "issues": "https://github.com/doctrine/lexer/issues",
  1167. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1168. },
  1169. "funding": [
  1170. {
  1171. "url": "https://www.doctrine-project.org/sponsorship.html",
  1172. "type": "custom"
  1173. },
  1174. {
  1175. "url": "https://www.patreon.com/phpdoctrine",
  1176. "type": "patreon"
  1177. },
  1178. {
  1179. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1180. "type": "tidelift"
  1181. }
  1182. ],
  1183. "time": "2022-02-28T11:07:21+00:00"
  1184. },
  1185. {
  1186. "name": "doctrine/migrations",
  1187. "version": "3.5.2",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/doctrine/migrations.git",
  1191. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/doctrine/migrations/zipball/61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1196. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "composer-runtime-api": "^2",
  1201. "doctrine/dbal": "^3.3",
  1202. "doctrine/deprecations": "^0.5.3 || ^1",
  1203. "doctrine/event-manager": "^1.0",
  1204. "friendsofphp/proxy-manager-lts": "^1.0",
  1205. "php": "^7.4 || ^8.0",
  1206. "psr/log": "^1.1.3 || ^2 || ^3",
  1207. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1208. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0"
  1209. },
  1210. "conflict": {
  1211. "doctrine/orm": "<2.12"
  1212. },
  1213. "require-dev": {
  1214. "doctrine/coding-standard": "^9",
  1215. "doctrine/orm": "^2.12",
  1216. "doctrine/persistence": "^2 || ^3",
  1217. "doctrine/sql-formatter": "^1.0",
  1218. "ergebnis/composer-normalize": "^2.9",
  1219. "ext-pdo_sqlite": "*",
  1220. "phpstan/phpstan": "^1.5",
  1221. "phpstan/phpstan-deprecation-rules": "^1",
  1222. "phpstan/phpstan-phpunit": "^1.1",
  1223. "phpstan/phpstan-strict-rules": "^1.1",
  1224. "phpstan/phpstan-symfony": "^1.1",
  1225. "phpunit/phpunit": "^9.5",
  1226. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1227. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1228. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1229. },
  1230. "suggest": {
  1231. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1232. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1233. },
  1234. "bin": [
  1235. "bin/doctrine-migrations"
  1236. ],
  1237. "type": "library",
  1238. "extra": {
  1239. "composer-normalize": {
  1240. "indent-size": 4,
  1241. "indent-style": "space"
  1242. }
  1243. },
  1244. "autoload": {
  1245. "psr-4": {
  1246. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Benjamin Eberlei",
  1256. "email": "kontakt@beberlei.de"
  1257. },
  1258. {
  1259. "name": "Jonathan Wage",
  1260. "email": "jonwage@gmail.com"
  1261. },
  1262. {
  1263. "name": "Michael Simonson",
  1264. "email": "contact@mikesimonson.com"
  1265. }
  1266. ],
  1267. "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.",
  1268. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1269. "keywords": [
  1270. "database",
  1271. "dbal",
  1272. "migrations"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/doctrine/migrations/issues",
  1276. "source": "https://github.com/doctrine/migrations/tree/3.5.2"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://www.doctrine-project.org/sponsorship.html",
  1281. "type": "custom"
  1282. },
  1283. {
  1284. "url": "https://www.patreon.com/phpdoctrine",
  1285. "type": "patreon"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2022-08-04T14:29:49+00:00"
  1293. },
  1294. {
  1295. "name": "doctrine/orm",
  1296. "version": "2.14.0",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/doctrine/orm.git",
  1300. "reference": "f82485e651763fbd1b34879726f4d3b91c358bd9"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/doctrine/orm/zipball/f82485e651763fbd1b34879726f4d3b91c358bd9",
  1305. "reference": "f82485e651763fbd1b34879726f4d3b91c358bd9",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "composer-runtime-api": "^2",
  1310. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1311. "doctrine/collections": "^1.5 || ^2.0",
  1312. "doctrine/common": "^3.0.3",
  1313. "doctrine/dbal": "^2.13.1 || ^3.2",
  1314. "doctrine/deprecations": "^0.5.3 || ^1",
  1315. "doctrine/event-manager": "^1.2 || ^2",
  1316. "doctrine/inflector": "^1.4 || ^2.0",
  1317. "doctrine/instantiator": "^1.3",
  1318. "doctrine/lexer": "^1.2.3 || ^2",
  1319. "doctrine/persistence": "^2.4 || ^3",
  1320. "ext-ctype": "*",
  1321. "php": "^7.1 || ^8.0",
  1322. "psr/cache": "^1 || ^2 || ^3",
  1323. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  1324. "symfony/polyfill-php72": "^1.23",
  1325. "symfony/polyfill-php80": "^1.16"
  1326. },
  1327. "conflict": {
  1328. "doctrine/annotations": "<1.13 || >= 3.0"
  1329. },
  1330. "require-dev": {
  1331. "doctrine/annotations": "^1.13 || ^2",
  1332. "doctrine/coding-standard": "^9.0.2 || ^11.0",
  1333. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1334. "phpstan/phpstan": "~1.4.10 || 1.9.4",
  1335. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1336. "psr/log": "^1 || ^2 || ^3",
  1337. "squizlabs/php_codesniffer": "3.7.1",
  1338. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1339. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2",
  1340. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1341. "vimeo/psalm": "4.30.0 || 5.3.0"
  1342. },
  1343. "suggest": {
  1344. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1345. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1346. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1347. },
  1348. "bin": [
  1349. "bin/doctrine"
  1350. ],
  1351. "type": "library",
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Guilherme Blanco",
  1364. "email": "guilhermeblanco@gmail.com"
  1365. },
  1366. {
  1367. "name": "Roman Borschel",
  1368. "email": "roman@code-factory.org"
  1369. },
  1370. {
  1371. "name": "Benjamin Eberlei",
  1372. "email": "kontakt@beberlei.de"
  1373. },
  1374. {
  1375. "name": "Jonathan Wage",
  1376. "email": "jonwage@gmail.com"
  1377. },
  1378. {
  1379. "name": "Marco Pivetta",
  1380. "email": "ocramius@gmail.com"
  1381. }
  1382. ],
  1383. "description": "Object-Relational-Mapper for PHP",
  1384. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1385. "keywords": [
  1386. "database",
  1387. "orm"
  1388. ],
  1389. "support": {
  1390. "issues": "https://github.com/doctrine/orm/issues",
  1391. "source": "https://github.com/doctrine/orm/tree/2.14.0"
  1392. },
  1393. "time": "2022-12-19T21:51:58+00:00"
  1394. },
  1395. {
  1396. "name": "doctrine/persistence",
  1397. "version": "3.1.2",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/doctrine/persistence.git",
  1401. "reference": "b44d128311af55275dbed6a4558ca59a2b9f9387"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b44d128311af55275dbed6a4558ca59a2b9f9387",
  1406. "reference": "b44d128311af55275dbed6a4558ca59a2b9f9387",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "doctrine/event-manager": "^1 || ^2",
  1411. "php": "^7.2 || ^8.0",
  1412. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1413. },
  1414. "conflict": {
  1415. "doctrine/common": "<2.10"
  1416. },
  1417. "require-dev": {
  1418. "composer/package-versions-deprecated": "^1.11",
  1419. "doctrine/coding-standard": "^11",
  1420. "doctrine/common": "^3.0",
  1421. "phpstan/phpstan": "1.9.4",
  1422. "phpstan/phpstan-phpunit": "^1",
  1423. "phpstan/phpstan-strict-rules": "^1.1",
  1424. "phpunit/phpunit": "^8.5 || ^9.5",
  1425. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1426. "vimeo/psalm": "4.30.0 || 5.3.0"
  1427. },
  1428. "type": "library",
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Doctrine\\Persistence\\": "src/Persistence"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Guilherme Blanco",
  1441. "email": "guilhermeblanco@gmail.com"
  1442. },
  1443. {
  1444. "name": "Roman Borschel",
  1445. "email": "roman@code-factory.org"
  1446. },
  1447. {
  1448. "name": "Benjamin Eberlei",
  1449. "email": "kontakt@beberlei.de"
  1450. },
  1451. {
  1452. "name": "Jonathan Wage",
  1453. "email": "jonwage@gmail.com"
  1454. },
  1455. {
  1456. "name": "Johannes Schmitt",
  1457. "email": "schmittjoh@gmail.com"
  1458. },
  1459. {
  1460. "name": "Marco Pivetta",
  1461. "email": "ocramius@gmail.com"
  1462. }
  1463. ],
  1464. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1465. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1466. "keywords": [
  1467. "mapper",
  1468. "object",
  1469. "odm",
  1470. "orm",
  1471. "persistence"
  1472. ],
  1473. "support": {
  1474. "issues": "https://github.com/doctrine/persistence/issues",
  1475. "source": "https://github.com/doctrine/persistence/tree/3.1.2"
  1476. },
  1477. "funding": [
  1478. {
  1479. "url": "https://www.doctrine-project.org/sponsorship.html",
  1480. "type": "custom"
  1481. },
  1482. {
  1483. "url": "https://www.patreon.com/phpdoctrine",
  1484. "type": "patreon"
  1485. },
  1486. {
  1487. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1488. "type": "tidelift"
  1489. }
  1490. ],
  1491. "time": "2022-12-19T13:58:18+00:00"
  1492. },
  1493. {
  1494. "name": "doctrine/sql-formatter",
  1495. "version": "1.1.3",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/doctrine/sql-formatter.git",
  1499. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1504. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1505. "shasum": ""
  1506. },
  1507. "require": {
  1508. "php": "^7.1 || ^8.0"
  1509. },
  1510. "require-dev": {
  1511. "bamarni/composer-bin-plugin": "^1.4"
  1512. },
  1513. "bin": [
  1514. "bin/sql-formatter"
  1515. ],
  1516. "type": "library",
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Doctrine\\SqlFormatter\\": "src"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Jeremy Dorn",
  1529. "email": "jeremy@jeremydorn.com",
  1530. "homepage": "https://jeremydorn.com/"
  1531. }
  1532. ],
  1533. "description": "a PHP SQL highlighting library",
  1534. "homepage": "https://github.com/doctrine/sql-formatter/",
  1535. "keywords": [
  1536. "highlight",
  1537. "sql"
  1538. ],
  1539. "support": {
  1540. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1541. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1542. },
  1543. "time": "2022-05-23T21:33:49+00:00"
  1544. },
  1545. {
  1546. "name": "egulias/email-validator",
  1547. "version": "3.2.1",
  1548. "source": {
  1549. "type": "git",
  1550. "url": "https://github.com/egulias/EmailValidator.git",
  1551. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1552. },
  1553. "dist": {
  1554. "type": "zip",
  1555. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1556. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1557. "shasum": ""
  1558. },
  1559. "require": {
  1560. "doctrine/lexer": "^1.2",
  1561. "php": ">=7.2",
  1562. "symfony/polyfill-intl-idn": "^1.15"
  1563. },
  1564. "require-dev": {
  1565. "php-coveralls/php-coveralls": "^2.2",
  1566. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1567. "vimeo/psalm": "^4"
  1568. },
  1569. "suggest": {
  1570. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "3.0.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "psr-4": {
  1580. "Egulias\\EmailValidator\\": "src"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Eduardo Gulias Davis"
  1590. }
  1591. ],
  1592. "description": "A library for validating emails against several RFCs",
  1593. "homepage": "https://github.com/egulias/EmailValidator",
  1594. "keywords": [
  1595. "email",
  1596. "emailvalidation",
  1597. "emailvalidator",
  1598. "validation",
  1599. "validator"
  1600. ],
  1601. "support": {
  1602. "issues": "https://github.com/egulias/EmailValidator/issues",
  1603. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1604. },
  1605. "funding": [
  1606. {
  1607. "url": "https://github.com/egulias",
  1608. "type": "github"
  1609. }
  1610. ],
  1611. "time": "2022-06-18T20:57:19+00:00"
  1612. },
  1613. {
  1614. "name": "friendsofphp/proxy-manager-lts",
  1615. "version": "v1.0.13",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1619. "reference": "88354616f4cf4f6620910fd035e282173ba453e8"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/88354616f4cf4f6620910fd035e282173ba453e8",
  1624. "reference": "88354616f4cf4f6620910fd035e282173ba453e8",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "laminas/laminas-code": "~3.4.1|^4.0",
  1629. "php": ">=7.1",
  1630. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1631. },
  1632. "conflict": {
  1633. "laminas/laminas-stdlib": "<3.2.1",
  1634. "zendframework/zend-stdlib": "<3.2.1"
  1635. },
  1636. "replace": {
  1637. "ocramius/proxy-manager": "^2.1"
  1638. },
  1639. "require-dev": {
  1640. "ext-phar": "*",
  1641. "symfony/phpunit-bridge": "^5.4|^6.0"
  1642. },
  1643. "type": "library",
  1644. "extra": {
  1645. "thanks": {
  1646. "name": "ocramius/proxy-manager",
  1647. "url": "https://github.com/Ocramius/ProxyManager"
  1648. }
  1649. },
  1650. "autoload": {
  1651. "psr-4": {
  1652. "ProxyManager\\": "src/ProxyManager"
  1653. }
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "MIT"
  1658. ],
  1659. "authors": [
  1660. {
  1661. "name": "Marco Pivetta",
  1662. "email": "ocramius@gmail.com",
  1663. "homepage": "https://ocramius.github.io/"
  1664. },
  1665. {
  1666. "name": "Nicolas Grekas",
  1667. "email": "p@tchwork.com"
  1668. }
  1669. ],
  1670. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1671. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1672. "keywords": [
  1673. "aop",
  1674. "lazy loading",
  1675. "proxy",
  1676. "proxy pattern",
  1677. "service proxies"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1681. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.13"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://github.com/Ocramius",
  1686. "type": "github"
  1687. },
  1688. {
  1689. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1690. "type": "tidelift"
  1691. }
  1692. ],
  1693. "time": "2022-10-17T19:48:16+00:00"
  1694. },
  1695. {
  1696. "name": "laminas/laminas-code",
  1697. "version": "4.8.0",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/laminas/laminas-code.git",
  1701. "reference": "dd19fe8e07cc3f374308565667eecd4958c22106"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/dd19fe8e07cc3f374308565667eecd4958c22106",
  1706. "reference": "dd19fe8e07cc3f374308565667eecd4958c22106",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "php": "~8.1.0 || ~8.2.0"
  1711. },
  1712. "require-dev": {
  1713. "doctrine/annotations": "^1.13.3",
  1714. "ext-phar": "*",
  1715. "laminas/laminas-coding-standard": "^2.3.0",
  1716. "laminas/laminas-stdlib": "^3.6.1",
  1717. "phpunit/phpunit": "^9.5.26",
  1718. "psalm/plugin-phpunit": "^0.18.0",
  1719. "vimeo/psalm": "^5.1.0"
  1720. },
  1721. "suggest": {
  1722. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1723. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1724. },
  1725. "type": "library",
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Laminas\\Code\\": "src/"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1736. "homepage": "https://laminas.dev",
  1737. "keywords": [
  1738. "code",
  1739. "laminas",
  1740. "laminasframework"
  1741. ],
  1742. "support": {
  1743. "chat": "https://laminas.dev/chat",
  1744. "docs": "https://docs.laminas.dev/laminas-code/",
  1745. "forum": "https://discourse.laminas.dev",
  1746. "issues": "https://github.com/laminas/laminas-code/issues",
  1747. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1748. "source": "https://github.com/laminas/laminas-code"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1753. "type": "community_bridge"
  1754. }
  1755. ],
  1756. "time": "2022-12-08T02:08:23+00:00"
  1757. },
  1758. {
  1759. "name": "league/commonmark",
  1760. "version": "2.3.8",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/thephpleague/commonmark.git",
  1764. "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c493585c130544c4e91d2e0e131e6d35cb0cbc47",
  1769. "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "ext-mbstring": "*",
  1774. "league/config": "^1.1.1",
  1775. "php": "^7.4 || ^8.0",
  1776. "psr/event-dispatcher": "^1.0",
  1777. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1778. "symfony/polyfill-php80": "^1.16"
  1779. },
  1780. "require-dev": {
  1781. "cebe/markdown": "^1.0",
  1782. "commonmark/cmark": "0.30.0",
  1783. "commonmark/commonmark.js": "0.30.0",
  1784. "composer/package-versions-deprecated": "^1.8",
  1785. "embed/embed": "^4.4",
  1786. "erusev/parsedown": "^1.0",
  1787. "ext-json": "*",
  1788. "github/gfm": "0.29.0",
  1789. "michelf/php-markdown": "^1.4 || ^2.0",
  1790. "nyholm/psr7": "^1.5",
  1791. "phpstan/phpstan": "^1.8.2",
  1792. "phpunit/phpunit": "^9.5.21",
  1793. "scrutinizer/ocular": "^1.8.1",
  1794. "symfony/finder": "^5.3 | ^6.0",
  1795. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1796. "unleashedtech/php-coding-standard": "^3.1.1",
  1797. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1798. },
  1799. "suggest": {
  1800. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1801. },
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-main": "2.4-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "psr-4": {
  1810. "League\\CommonMark\\": "src"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "BSD-3-Clause"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Colin O'Dell",
  1820. "email": "colinodell@gmail.com",
  1821. "homepage": "https://www.colinodell.com",
  1822. "role": "Lead Developer"
  1823. }
  1824. ],
  1825. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1826. "homepage": "https://commonmark.thephpleague.com",
  1827. "keywords": [
  1828. "commonmark",
  1829. "flavored",
  1830. "gfm",
  1831. "github",
  1832. "github-flavored",
  1833. "markdown",
  1834. "md",
  1835. "parser"
  1836. ],
  1837. "support": {
  1838. "docs": "https://commonmark.thephpleague.com/",
  1839. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1840. "issues": "https://github.com/thephpleague/commonmark/issues",
  1841. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1842. "source": "https://github.com/thephpleague/commonmark"
  1843. },
  1844. "funding": [
  1845. {
  1846. "url": "https://www.colinodell.com/sponsor",
  1847. "type": "custom"
  1848. },
  1849. {
  1850. "url": "https://www.paypal.me/colinpodell/10.00",
  1851. "type": "custom"
  1852. },
  1853. {
  1854. "url": "https://github.com/colinodell",
  1855. "type": "github"
  1856. },
  1857. {
  1858. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1859. "type": "tidelift"
  1860. }
  1861. ],
  1862. "time": "2022-12-10T16:02:17+00:00"
  1863. },
  1864. {
  1865. "name": "league/config",
  1866. "version": "v1.2.0",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/thephpleague/config.git",
  1870. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1875. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1876. "shasum": ""
  1877. },
  1878. "require": {
  1879. "dflydev/dot-access-data": "^3.0.1",
  1880. "nette/schema": "^1.2",
  1881. "php": "^7.4 || ^8.0"
  1882. },
  1883. "require-dev": {
  1884. "phpstan/phpstan": "^1.8.2",
  1885. "phpunit/phpunit": "^9.5.5",
  1886. "scrutinizer/ocular": "^1.8.1",
  1887. "unleashedtech/php-coding-standard": "^3.1",
  1888. "vimeo/psalm": "^4.7.3"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "branch-alias": {
  1893. "dev-main": "1.2-dev"
  1894. }
  1895. },
  1896. "autoload": {
  1897. "psr-4": {
  1898. "League\\Config\\": "src"
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "BSD-3-Clause"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "Colin O'Dell",
  1908. "email": "colinodell@gmail.com",
  1909. "homepage": "https://www.colinodell.com",
  1910. "role": "Lead Developer"
  1911. }
  1912. ],
  1913. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1914. "homepage": "https://config.thephpleague.com",
  1915. "keywords": [
  1916. "array",
  1917. "config",
  1918. "configuration",
  1919. "dot",
  1920. "dot-access",
  1921. "nested",
  1922. "schema"
  1923. ],
  1924. "support": {
  1925. "docs": "https://config.thephpleague.com/",
  1926. "issues": "https://github.com/thephpleague/config/issues",
  1927. "rss": "https://github.com/thephpleague/config/releases.atom",
  1928. "source": "https://github.com/thephpleague/config"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://www.colinodell.com/sponsor",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://www.paypal.me/colinpodell/10.00",
  1937. "type": "custom"
  1938. },
  1939. {
  1940. "url": "https://github.com/colinodell",
  1941. "type": "github"
  1942. }
  1943. ],
  1944. "time": "2022-12-11T20:36:23+00:00"
  1945. },
  1946. {
  1947. "name": "league/uri",
  1948. "version": "6.8.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/thephpleague/uri.git",
  1952. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1957. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "ext-json": "*",
  1962. "league/uri-interfaces": "^2.3",
  1963. "php": "^8.1",
  1964. "psr/http-message": "^1.0.1"
  1965. },
  1966. "conflict": {
  1967. "league/uri-schemes": "^1.0"
  1968. },
  1969. "require-dev": {
  1970. "friendsofphp/php-cs-fixer": "^v3.9.5",
  1971. "nyholm/psr7": "^1.5.1",
  1972. "php-http/psr7-integration-tests": "^1.1.1",
  1973. "phpbench/phpbench": "^1.2.6",
  1974. "phpstan/phpstan": "^1.8.5",
  1975. "phpstan/phpstan-deprecation-rules": "^1.0",
  1976. "phpstan/phpstan-phpunit": "^1.1.1",
  1977. "phpstan/phpstan-strict-rules": "^1.4.3",
  1978. "phpunit/phpunit": "^9.5.24",
  1979. "psr/http-factory": "^1.0.1"
  1980. },
  1981. "suggest": {
  1982. "ext-fileinfo": "Needed to create Data URI from a filepath",
  1983. "ext-intl": "Needed to improve host validation",
  1984. "league/uri-components": "Needed to easily manipulate URI objects",
  1985. "psr/http-factory": "Needed to use the URI factory"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "6.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "League\\Uri\\": "src"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Ignace Nyamagana Butera",
  2005. "email": "nyamsprod@gmail.com",
  2006. "homepage": "https://nyamsprod.com"
  2007. }
  2008. ],
  2009. "description": "URI manipulation library",
  2010. "homepage": "https://uri.thephpleague.com",
  2011. "keywords": [
  2012. "data-uri",
  2013. "file-uri",
  2014. "ftp",
  2015. "hostname",
  2016. "http",
  2017. "https",
  2018. "middleware",
  2019. "parse_str",
  2020. "parse_url",
  2021. "psr-7",
  2022. "query-string",
  2023. "querystring",
  2024. "rfc3986",
  2025. "rfc3987",
  2026. "rfc6570",
  2027. "uri",
  2028. "uri-template",
  2029. "url",
  2030. "ws"
  2031. ],
  2032. "support": {
  2033. "docs": "https://uri.thephpleague.com",
  2034. "forum": "https://thephpleague.slack.com",
  2035. "issues": "https://github.com/thephpleague/uri/issues",
  2036. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2037. },
  2038. "funding": [
  2039. {
  2040. "url": "https://github.com/sponsors/nyamsprod",
  2041. "type": "github"
  2042. }
  2043. ],
  2044. "time": "2022-09-13T19:58:47+00:00"
  2045. },
  2046. {
  2047. "name": "league/uri-interfaces",
  2048. "version": "2.3.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2052. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2057. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "ext-json": "*",
  2062. "php": "^7.2 || ^8.0"
  2063. },
  2064. "require-dev": {
  2065. "friendsofphp/php-cs-fixer": "^2.19",
  2066. "phpstan/phpstan": "^0.12.90",
  2067. "phpstan/phpstan-phpunit": "^0.12.19",
  2068. "phpstan/phpstan-strict-rules": "^0.12.9",
  2069. "phpunit/phpunit": "^8.5.15 || ^9.5"
  2070. },
  2071. "suggest": {
  2072. "ext-intl": "to use the IDNA feature",
  2073. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  2074. },
  2075. "type": "library",
  2076. "extra": {
  2077. "branch-alias": {
  2078. "dev-master": "2.x-dev"
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "League\\Uri\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Ignace Nyamagana Butera",
  2093. "email": "nyamsprod@gmail.com",
  2094. "homepage": "https://nyamsprod.com"
  2095. }
  2096. ],
  2097. "description": "Common interface for URI representation",
  2098. "homepage": "http://github.com/thephpleague/uri-interfaces",
  2099. "keywords": [
  2100. "rfc3986",
  2101. "rfc3987",
  2102. "uri",
  2103. "url"
  2104. ],
  2105. "support": {
  2106. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  2107. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  2108. },
  2109. "funding": [
  2110. {
  2111. "url": "https://github.com/sponsors/nyamsprod",
  2112. "type": "github"
  2113. }
  2114. ],
  2115. "time": "2021-06-28T04:27:21+00:00"
  2116. },
  2117. {
  2118. "name": "masterminds/html5",
  2119. "version": "2.7.6",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://github.com/Masterminds/html5-php.git",
  2123. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2128. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2129. "shasum": ""
  2130. },
  2131. "require": {
  2132. "ext-ctype": "*",
  2133. "ext-dom": "*",
  2134. "ext-libxml": "*",
  2135. "php": ">=5.3.0"
  2136. },
  2137. "require-dev": {
  2138. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "2.7-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Masterminds\\": "src"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Matt Butcher",
  2158. "email": "technosophos@gmail.com"
  2159. },
  2160. {
  2161. "name": "Matt Farina",
  2162. "email": "matt@mattfarina.com"
  2163. },
  2164. {
  2165. "name": "Asmir Mustafic",
  2166. "email": "goetas@gmail.com"
  2167. }
  2168. ],
  2169. "description": "An HTML5 parser and serializer.",
  2170. "homepage": "http://masterminds.github.io/html5-php",
  2171. "keywords": [
  2172. "HTML5",
  2173. "dom",
  2174. "html",
  2175. "parser",
  2176. "querypath",
  2177. "serializer",
  2178. "xml"
  2179. ],
  2180. "support": {
  2181. "issues": "https://github.com/Masterminds/html5-php/issues",
  2182. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2183. },
  2184. "time": "2022-08-18T16:18:26+00:00"
  2185. },
  2186. {
  2187. "name": "monolog/monolog",
  2188. "version": "3.2.0",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/Seldaek/monolog.git",
  2192. "reference": "305444bc6fb6c89e490f4b34fa6e979584d7fa81"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/305444bc6fb6c89e490f4b34fa6e979584d7fa81",
  2197. "reference": "305444bc6fb6c89e490f4b34fa6e979584d7fa81",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=8.1",
  2202. "psr/log": "^2.0 || ^3.0"
  2203. },
  2204. "provide": {
  2205. "psr/log-implementation": "3.0.0"
  2206. },
  2207. "require-dev": {
  2208. "aws/aws-sdk-php": "^3.0",
  2209. "doctrine/couchdb": "~1.0@dev",
  2210. "elasticsearch/elasticsearch": "^7 || ^8",
  2211. "ext-json": "*",
  2212. "graylog2/gelf-php": "^1.4.2",
  2213. "guzzlehttp/guzzle": "^7.4",
  2214. "guzzlehttp/psr7": "^2.2",
  2215. "mongodb/mongodb": "^1.8",
  2216. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2217. "phpstan/phpstan": "^1.4",
  2218. "phpstan/phpstan-deprecation-rules": "^1.0",
  2219. "phpstan/phpstan-strict-rules": "^1.1",
  2220. "phpunit/phpunit": "^9.5.16",
  2221. "predis/predis": "^1.1",
  2222. "ruflin/elastica": "^7",
  2223. "symfony/mailer": "^5.4 || ^6",
  2224. "symfony/mime": "^5.4 || ^6"
  2225. },
  2226. "suggest": {
  2227. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2228. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2229. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2230. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2231. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2232. "ext-mbstring": "Allow to work properly with unicode symbols",
  2233. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2234. "ext-openssl": "Required to send log messages using SSL",
  2235. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2236. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2237. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2238. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2239. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2240. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2241. },
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-main": "3.x-dev"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "psr-4": {
  2250. "Monolog\\": "src/Monolog"
  2251. }
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "MIT"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Jordi Boggiano",
  2260. "email": "j.boggiano@seld.be",
  2261. "homepage": "https://seld.be"
  2262. }
  2263. ],
  2264. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2265. "homepage": "https://github.com/Seldaek/monolog",
  2266. "keywords": [
  2267. "log",
  2268. "logging",
  2269. "psr-3"
  2270. ],
  2271. "support": {
  2272. "issues": "https://github.com/Seldaek/monolog/issues",
  2273. "source": "https://github.com/Seldaek/monolog/tree/3.2.0"
  2274. },
  2275. "funding": [
  2276. {
  2277. "url": "https://github.com/Seldaek",
  2278. "type": "github"
  2279. },
  2280. {
  2281. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2282. "type": "tidelift"
  2283. }
  2284. ],
  2285. "time": "2022-07-24T12:00:55+00:00"
  2286. },
  2287. {
  2288. "name": "nette/schema",
  2289. "version": "v1.2.3",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/nette/schema.git",
  2293. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2298. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2299. "shasum": ""
  2300. },
  2301. "require": {
  2302. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2303. "php": ">=7.1 <8.3"
  2304. },
  2305. "require-dev": {
  2306. "nette/tester": "^2.3 || ^2.4",
  2307. "phpstan/phpstan-nette": "^1.0",
  2308. "tracy/tracy": "^2.7"
  2309. },
  2310. "type": "library",
  2311. "extra": {
  2312. "branch-alias": {
  2313. "dev-master": "1.2-dev"
  2314. }
  2315. },
  2316. "autoload": {
  2317. "classmap": [
  2318. "src/"
  2319. ]
  2320. },
  2321. "notification-url": "https://packagist.org/downloads/",
  2322. "license": [
  2323. "BSD-3-Clause",
  2324. "GPL-2.0-only",
  2325. "GPL-3.0-only"
  2326. ],
  2327. "authors": [
  2328. {
  2329. "name": "David Grudl",
  2330. "homepage": "https://davidgrudl.com"
  2331. },
  2332. {
  2333. "name": "Nette Community",
  2334. "homepage": "https://nette.org/contributors"
  2335. }
  2336. ],
  2337. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2338. "homepage": "https://nette.org",
  2339. "keywords": [
  2340. "config",
  2341. "nette"
  2342. ],
  2343. "support": {
  2344. "issues": "https://github.com/nette/schema/issues",
  2345. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2346. },
  2347. "time": "2022-10-13T01:24:26+00:00"
  2348. },
  2349. {
  2350. "name": "nette/utils",
  2351. "version": "v3.2.8",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/nette/utils.git",
  2355. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  2360. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=7.2 <8.3"
  2365. },
  2366. "conflict": {
  2367. "nette/di": "<3.0.6"
  2368. },
  2369. "require-dev": {
  2370. "nette/tester": "~2.0",
  2371. "phpstan/phpstan": "^1.0",
  2372. "tracy/tracy": "^2.3"
  2373. },
  2374. "suggest": {
  2375. "ext-gd": "to use Image",
  2376. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2377. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2378. "ext-json": "to use Nette\\Utils\\Json",
  2379. "ext-mbstring": "to use Strings::lower() etc...",
  2380. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2381. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "3.2-dev"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "classmap": [
  2391. "src/"
  2392. ]
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "BSD-3-Clause",
  2397. "GPL-2.0-only",
  2398. "GPL-3.0-only"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "David Grudl",
  2403. "homepage": "https://davidgrudl.com"
  2404. },
  2405. {
  2406. "name": "Nette Community",
  2407. "homepage": "https://nette.org/contributors"
  2408. }
  2409. ],
  2410. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2411. "homepage": "https://nette.org",
  2412. "keywords": [
  2413. "array",
  2414. "core",
  2415. "datetime",
  2416. "images",
  2417. "json",
  2418. "nette",
  2419. "paginator",
  2420. "password",
  2421. "slugify",
  2422. "string",
  2423. "unicode",
  2424. "utf-8",
  2425. "utility",
  2426. "validation"
  2427. ],
  2428. "support": {
  2429. "issues": "https://github.com/nette/utils/issues",
  2430. "source": "https://github.com/nette/utils/tree/v3.2.8"
  2431. },
  2432. "time": "2022-09-12T23:36:20+00:00"
  2433. },
  2434. {
  2435. "name": "phpdocumentor/reflection-common",
  2436. "version": "2.2.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2440. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2445. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "php": "^7.2 || ^8.0"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-2.x": "2.x-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "psr-4": {
  2459. "phpDocumentor\\Reflection\\": "src/"
  2460. }
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "MIT"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "Jaap van Otterdijk",
  2469. "email": "opensource@ijaap.nl"
  2470. }
  2471. ],
  2472. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2473. "homepage": "http://www.phpdoc.org",
  2474. "keywords": [
  2475. "FQSEN",
  2476. "phpDocumentor",
  2477. "phpdoc",
  2478. "reflection",
  2479. "static analysis"
  2480. ],
  2481. "support": {
  2482. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2483. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2484. },
  2485. "time": "2020-06-27T09:03:43+00:00"
  2486. },
  2487. {
  2488. "name": "phpdocumentor/reflection-docblock",
  2489. "version": "5.3.0",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2493. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2498. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2499. "shasum": ""
  2500. },
  2501. "require": {
  2502. "ext-filter": "*",
  2503. "php": "^7.2 || ^8.0",
  2504. "phpdocumentor/reflection-common": "^2.2",
  2505. "phpdocumentor/type-resolver": "^1.3",
  2506. "webmozart/assert": "^1.9.1"
  2507. },
  2508. "require-dev": {
  2509. "mockery/mockery": "~1.3.2",
  2510. "psalm/phar": "^4.8"
  2511. },
  2512. "type": "library",
  2513. "extra": {
  2514. "branch-alias": {
  2515. "dev-master": "5.x-dev"
  2516. }
  2517. },
  2518. "autoload": {
  2519. "psr-4": {
  2520. "phpDocumentor\\Reflection\\": "src"
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "Mike van Riel",
  2530. "email": "me@mikevanriel.com"
  2531. },
  2532. {
  2533. "name": "Jaap van Otterdijk",
  2534. "email": "account@ijaap.nl"
  2535. }
  2536. ],
  2537. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2538. "support": {
  2539. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2540. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2541. },
  2542. "time": "2021-10-19T17:43:47+00:00"
  2543. },
  2544. {
  2545. "name": "phpdocumentor/type-resolver",
  2546. "version": "1.6.2",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2550. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  2555. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  2556. "shasum": ""
  2557. },
  2558. "require": {
  2559. "php": "^7.4 || ^8.0",
  2560. "phpdocumentor/reflection-common": "^2.0"
  2561. },
  2562. "require-dev": {
  2563. "ext-tokenizer": "*",
  2564. "phpstan/extension-installer": "^1.1",
  2565. "phpstan/phpstan": "^1.8",
  2566. "phpstan/phpstan-phpunit": "^1.1",
  2567. "phpunit/phpunit": "^9.5",
  2568. "rector/rector": "^0.13.9",
  2569. "vimeo/psalm": "^4.25"
  2570. },
  2571. "type": "library",
  2572. "extra": {
  2573. "branch-alias": {
  2574. "dev-1.x": "1.x-dev"
  2575. }
  2576. },
  2577. "autoload": {
  2578. "psr-4": {
  2579. "phpDocumentor\\Reflection\\": "src"
  2580. }
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "Mike van Riel",
  2589. "email": "me@mikevanriel.com"
  2590. }
  2591. ],
  2592. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2593. "support": {
  2594. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2595. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
  2596. },
  2597. "time": "2022-10-14T12:47:21+00:00"
  2598. },
  2599. {
  2600. "name": "psr/cache",
  2601. "version": "3.0.0",
  2602. "source": {
  2603. "type": "git",
  2604. "url": "https://github.com/php-fig/cache.git",
  2605. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2606. },
  2607. "dist": {
  2608. "type": "zip",
  2609. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2610. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2611. "shasum": ""
  2612. },
  2613. "require": {
  2614. "php": ">=8.0.0"
  2615. },
  2616. "type": "library",
  2617. "extra": {
  2618. "branch-alias": {
  2619. "dev-master": "1.0.x-dev"
  2620. }
  2621. },
  2622. "autoload": {
  2623. "psr-4": {
  2624. "Psr\\Cache\\": "src/"
  2625. }
  2626. },
  2627. "notification-url": "https://packagist.org/downloads/",
  2628. "license": [
  2629. "MIT"
  2630. ],
  2631. "authors": [
  2632. {
  2633. "name": "PHP-FIG",
  2634. "homepage": "https://www.php-fig.org/"
  2635. }
  2636. ],
  2637. "description": "Common interface for caching libraries",
  2638. "keywords": [
  2639. "cache",
  2640. "psr",
  2641. "psr-6"
  2642. ],
  2643. "support": {
  2644. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2645. },
  2646. "time": "2021-02-03T23:26:27+00:00"
  2647. },
  2648. {
  2649. "name": "psr/container",
  2650. "version": "2.0.2",
  2651. "source": {
  2652. "type": "git",
  2653. "url": "https://github.com/php-fig/container.git",
  2654. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2655. },
  2656. "dist": {
  2657. "type": "zip",
  2658. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2659. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2660. "shasum": ""
  2661. },
  2662. "require": {
  2663. "php": ">=7.4.0"
  2664. },
  2665. "type": "library",
  2666. "extra": {
  2667. "branch-alias": {
  2668. "dev-master": "2.0.x-dev"
  2669. }
  2670. },
  2671. "autoload": {
  2672. "psr-4": {
  2673. "Psr\\Container\\": "src/"
  2674. }
  2675. },
  2676. "notification-url": "https://packagist.org/downloads/",
  2677. "license": [
  2678. "MIT"
  2679. ],
  2680. "authors": [
  2681. {
  2682. "name": "PHP-FIG",
  2683. "homepage": "https://www.php-fig.org/"
  2684. }
  2685. ],
  2686. "description": "Common Container Interface (PHP FIG PSR-11)",
  2687. "homepage": "https://github.com/php-fig/container",
  2688. "keywords": [
  2689. "PSR-11",
  2690. "container",
  2691. "container-interface",
  2692. "container-interop",
  2693. "psr"
  2694. ],
  2695. "support": {
  2696. "issues": "https://github.com/php-fig/container/issues",
  2697. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2698. },
  2699. "time": "2021-11-05T16:47:00+00:00"
  2700. },
  2701. {
  2702. "name": "psr/event-dispatcher",
  2703. "version": "1.0.0",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/php-fig/event-dispatcher.git",
  2707. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2712. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "php": ">=7.2.0"
  2717. },
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-master": "1.0.x-dev"
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Psr\\EventDispatcher\\": "src/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "PHP-FIG",
  2736. "homepage": "http://www.php-fig.org/"
  2737. }
  2738. ],
  2739. "description": "Standard interfaces for event handling.",
  2740. "keywords": [
  2741. "events",
  2742. "psr",
  2743. "psr-14"
  2744. ],
  2745. "support": {
  2746. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2747. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2748. },
  2749. "time": "2019-01-08T18:20:26+00:00"
  2750. },
  2751. {
  2752. "name": "psr/http-message",
  2753. "version": "1.0.1",
  2754. "source": {
  2755. "type": "git",
  2756. "url": "https://github.com/php-fig/http-message.git",
  2757. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2758. },
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2762. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "php": ">=5.3.0"
  2767. },
  2768. "type": "library",
  2769. "extra": {
  2770. "branch-alias": {
  2771. "dev-master": "1.0.x-dev"
  2772. }
  2773. },
  2774. "autoload": {
  2775. "psr-4": {
  2776. "Psr\\Http\\Message\\": "src/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "PHP-FIG",
  2786. "homepage": "http://www.php-fig.org/"
  2787. }
  2788. ],
  2789. "description": "Common interface for HTTP messages",
  2790. "homepage": "https://github.com/php-fig/http-message",
  2791. "keywords": [
  2792. "http",
  2793. "http-message",
  2794. "psr",
  2795. "psr-7",
  2796. "request",
  2797. "response"
  2798. ],
  2799. "support": {
  2800. "source": "https://github.com/php-fig/http-message/tree/master"
  2801. },
  2802. "time": "2016-08-06T14:39:51+00:00"
  2803. },
  2804. {
  2805. "name": "psr/link",
  2806. "version": "2.0.1",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/php-fig/link.git",
  2810. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2815. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "php": ">=8.0.0"
  2820. },
  2821. "suggest": {
  2822. "fig/link-util": "Provides some useful PSR-13 utilities"
  2823. },
  2824. "type": "library",
  2825. "extra": {
  2826. "branch-alias": {
  2827. "dev-master": "2.0.x-dev"
  2828. }
  2829. },
  2830. "autoload": {
  2831. "psr-4": {
  2832. "Psr\\Link\\": "src/"
  2833. }
  2834. },
  2835. "notification-url": "https://packagist.org/downloads/",
  2836. "license": [
  2837. "MIT"
  2838. ],
  2839. "authors": [
  2840. {
  2841. "name": "PHP-FIG",
  2842. "homepage": "http://www.php-fig.org/"
  2843. }
  2844. ],
  2845. "description": "Common interfaces for HTTP links",
  2846. "homepage": "https://github.com/php-fig/link",
  2847. "keywords": [
  2848. "http",
  2849. "http-link",
  2850. "link",
  2851. "psr",
  2852. "psr-13",
  2853. "rest"
  2854. ],
  2855. "support": {
  2856. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2857. },
  2858. "time": "2021-03-11T23:00:27+00:00"
  2859. },
  2860. {
  2861. "name": "psr/log",
  2862. "version": "3.0.0",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/php-fig/log.git",
  2866. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2871. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2872. "shasum": ""
  2873. },
  2874. "require": {
  2875. "php": ">=8.0.0"
  2876. },
  2877. "type": "library",
  2878. "extra": {
  2879. "branch-alias": {
  2880. "dev-master": "3.x-dev"
  2881. }
  2882. },
  2883. "autoload": {
  2884. "psr-4": {
  2885. "Psr\\Log\\": "src"
  2886. }
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "PHP-FIG",
  2895. "homepage": "https://www.php-fig.org/"
  2896. }
  2897. ],
  2898. "description": "Common interface for logging libraries",
  2899. "homepage": "https://github.com/php-fig/log",
  2900. "keywords": [
  2901. "log",
  2902. "psr",
  2903. "psr-3"
  2904. ],
  2905. "support": {
  2906. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2907. },
  2908. "time": "2021-07-14T16:46:02+00:00"
  2909. },
  2910. {
  2911. "name": "sensio/framework-extra-bundle",
  2912. "version": "v6.2.9",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2916. "reference": "dcfac94d6bdcf95c126e8ccac2104917c7c8f135"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/dcfac94d6bdcf95c126e8ccac2104917c7c8f135",
  2921. "reference": "dcfac94d6bdcf95c126e8ccac2104917c7c8f135",
  2922. "shasum": ""
  2923. },
  2924. "require": {
  2925. "doctrine/annotations": "^1.0",
  2926. "php": ">=7.2.5",
  2927. "symfony/config": "^4.4|^5.0|^6.0",
  2928. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2929. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2930. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2931. },
  2932. "conflict": {
  2933. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2934. "doctrine/persistence": "<1.3"
  2935. },
  2936. "require-dev": {
  2937. "doctrine/dbal": "^2.10|^3.0",
  2938. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2939. "doctrine/orm": "^2.5",
  2940. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2941. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2942. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2943. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2944. "symfony/finder": "^4.4|^5.0|^6.0",
  2945. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2946. "symfony/monolog-bundle": "^3.2",
  2947. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2948. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2949. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2950. "symfony/yaml": "^4.4|^5.0|^6.0",
  2951. "twig/twig": "^1.34|^2.4|^3.0"
  2952. },
  2953. "type": "symfony-bundle",
  2954. "extra": {
  2955. "branch-alias": {
  2956. "dev-master": "6.1.x-dev"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "psr-4": {
  2961. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2962. },
  2963. "exclude-from-classmap": [
  2964. "/tests/"
  2965. ]
  2966. },
  2967. "notification-url": "https://packagist.org/downloads/",
  2968. "license": [
  2969. "MIT"
  2970. ],
  2971. "authors": [
  2972. {
  2973. "name": "Fabien Potencier",
  2974. "email": "fabien@symfony.com"
  2975. }
  2976. ],
  2977. "description": "This bundle provides a way to configure your controllers with annotations",
  2978. "keywords": [
  2979. "annotations",
  2980. "controllers"
  2981. ],
  2982. "support": {
  2983. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2984. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.9"
  2985. },
  2986. "abandoned": "Symfony",
  2987. "time": "2022-11-01T17:17:13+00:00"
  2988. },
  2989. {
  2990. "name": "symfony/apache-pack",
  2991. "version": "v1.0.1",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/symfony/apache-pack.git",
  2995. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3000. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3001. "shasum": ""
  3002. },
  3003. "type": "symfony-pack",
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "description": "A pack for Apache support in Symfony",
  3009. "support": {
  3010. "issues": "https://github.com/symfony/apache-pack/issues",
  3011. "source": "https://github.com/symfony/apache-pack/tree/master"
  3012. },
  3013. "time": "2017-12-12T01:46:35+00:00"
  3014. },
  3015. {
  3016. "name": "symfony/asset",
  3017. "version": "v6.1.5",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/symfony/asset.git",
  3021. "reference": "6065b5edc36442cb1ba98dc40f7c7f6b9e154729"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/symfony/asset/zipball/6065b5edc36442cb1ba98dc40f7c7f6b9e154729",
  3026. "reference": "6065b5edc36442cb1ba98dc40f7c7f6b9e154729",
  3027. "shasum": ""
  3028. },
  3029. "require": {
  3030. "php": ">=8.1"
  3031. },
  3032. "conflict": {
  3033. "symfony/http-foundation": "<5.4"
  3034. },
  3035. "require-dev": {
  3036. "symfony/http-client": "^5.4|^6.0",
  3037. "symfony/http-foundation": "^5.4|^6.0",
  3038. "symfony/http-kernel": "^5.4|^6.0"
  3039. },
  3040. "suggest": {
  3041. "symfony/http-foundation": ""
  3042. },
  3043. "type": "library",
  3044. "autoload": {
  3045. "psr-4": {
  3046. "Symfony\\Component\\Asset\\": ""
  3047. },
  3048. "exclude-from-classmap": [
  3049. "/Tests/"
  3050. ]
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "Fabien Potencier",
  3059. "email": "fabien@symfony.com"
  3060. },
  3061. {
  3062. "name": "Symfony Community",
  3063. "homepage": "https://symfony.com/contributors"
  3064. }
  3065. ],
  3066. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3067. "homepage": "https://symfony.com",
  3068. "support": {
  3069. "source": "https://github.com/symfony/asset/tree/v6.1.5"
  3070. },
  3071. "funding": [
  3072. {
  3073. "url": "https://symfony.com/sponsor",
  3074. "type": "custom"
  3075. },
  3076. {
  3077. "url": "https://github.com/fabpot",
  3078. "type": "github"
  3079. },
  3080. {
  3081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3082. "type": "tidelift"
  3083. }
  3084. ],
  3085. "time": "2022-08-31T08:17:45+00:00"
  3086. },
  3087. {
  3088. "name": "symfony/cache",
  3089. "version": "v6.1.8",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://github.com/symfony/cache.git",
  3093. "reference": "ffa53c4e0f18828751a57a3f6bc32f7147c03867"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://api.github.com/repos/symfony/cache/zipball/ffa53c4e0f18828751a57a3f6bc32f7147c03867",
  3098. "reference": "ffa53c4e0f18828751a57a3f6bc32f7147c03867",
  3099. "shasum": ""
  3100. },
  3101. "require": {
  3102. "php": ">=8.1",
  3103. "psr/cache": "^2.0|^3.0",
  3104. "psr/log": "^1.1|^2|^3",
  3105. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3106. "symfony/service-contracts": "^1.1|^2|^3",
  3107. "symfony/var-exporter": "^5.4|^6.0"
  3108. },
  3109. "conflict": {
  3110. "doctrine/dbal": "<2.13.1",
  3111. "symfony/dependency-injection": "<5.4",
  3112. "symfony/http-kernel": "<5.4",
  3113. "symfony/var-dumper": "<5.4"
  3114. },
  3115. "provide": {
  3116. "psr/cache-implementation": "2.0|3.0",
  3117. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3118. "symfony/cache-implementation": "1.1|2.0|3.0"
  3119. },
  3120. "require-dev": {
  3121. "cache/integration-tests": "dev-master",
  3122. "doctrine/dbal": "^2.13.1|^3.0",
  3123. "predis/predis": "^1.1",
  3124. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3125. "symfony/config": "^5.4|^6.0",
  3126. "symfony/dependency-injection": "^5.4|^6.0",
  3127. "symfony/filesystem": "^5.4|^6.0",
  3128. "symfony/http-kernel": "^5.4|^6.0",
  3129. "symfony/messenger": "^5.4|^6.0",
  3130. "symfony/var-dumper": "^5.4|^6.0"
  3131. },
  3132. "type": "library",
  3133. "autoload": {
  3134. "psr-4": {
  3135. "Symfony\\Component\\Cache\\": ""
  3136. },
  3137. "classmap": [
  3138. "Traits/ValueWrapper.php"
  3139. ],
  3140. "exclude-from-classmap": [
  3141. "/Tests/"
  3142. ]
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Nicolas Grekas",
  3151. "email": "p@tchwork.com"
  3152. },
  3153. {
  3154. "name": "Symfony Community",
  3155. "homepage": "https://symfony.com/contributors"
  3156. }
  3157. ],
  3158. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3159. "homepage": "https://symfony.com",
  3160. "keywords": [
  3161. "caching",
  3162. "psr6"
  3163. ],
  3164. "support": {
  3165. "source": "https://github.com/symfony/cache/tree/v6.1.8"
  3166. },
  3167. "funding": [
  3168. {
  3169. "url": "https://symfony.com/sponsor",
  3170. "type": "custom"
  3171. },
  3172. {
  3173. "url": "https://github.com/fabpot",
  3174. "type": "github"
  3175. },
  3176. {
  3177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3178. "type": "tidelift"
  3179. }
  3180. ],
  3181. "time": "2022-11-14T10:13:26+00:00"
  3182. },
  3183. {
  3184. "name": "symfony/cache-contracts",
  3185. "version": "v3.2.0",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://github.com/symfony/cache-contracts.git",
  3189. "reference": "e8d1a5fc43534063204b74c080ebe36307d12271"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/e8d1a5fc43534063204b74c080ebe36307d12271",
  3194. "reference": "e8d1a5fc43534063204b74c080ebe36307d12271",
  3195. "shasum": ""
  3196. },
  3197. "require": {
  3198. "php": ">=8.1",
  3199. "psr/cache": "^3.0"
  3200. },
  3201. "suggest": {
  3202. "symfony/cache-implementation": ""
  3203. },
  3204. "type": "library",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-main": "3.3-dev"
  3208. },
  3209. "thanks": {
  3210. "name": "symfony/contracts",
  3211. "url": "https://github.com/symfony/contracts"
  3212. }
  3213. },
  3214. "autoload": {
  3215. "psr-4": {
  3216. "Symfony\\Contracts\\Cache\\": ""
  3217. }
  3218. },
  3219. "notification-url": "https://packagist.org/downloads/",
  3220. "license": [
  3221. "MIT"
  3222. ],
  3223. "authors": [
  3224. {
  3225. "name": "Nicolas Grekas",
  3226. "email": "p@tchwork.com"
  3227. },
  3228. {
  3229. "name": "Symfony Community",
  3230. "homepage": "https://symfony.com/contributors"
  3231. }
  3232. ],
  3233. "description": "Generic abstractions related to caching",
  3234. "homepage": "https://symfony.com",
  3235. "keywords": [
  3236. "abstractions",
  3237. "contracts",
  3238. "decoupling",
  3239. "interfaces",
  3240. "interoperability",
  3241. "standards"
  3242. ],
  3243. "support": {
  3244. "source": "https://github.com/symfony/cache-contracts/tree/v3.2.0"
  3245. },
  3246. "funding": [
  3247. {
  3248. "url": "https://symfony.com/sponsor",
  3249. "type": "custom"
  3250. },
  3251. {
  3252. "url": "https://github.com/fabpot",
  3253. "type": "github"
  3254. },
  3255. {
  3256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3257. "type": "tidelift"
  3258. }
  3259. ],
  3260. "time": "2022-11-25T10:21:52+00:00"
  3261. },
  3262. {
  3263. "name": "symfony/config",
  3264. "version": "v6.1.3",
  3265. "source": {
  3266. "type": "git",
  3267. "url": "https://github.com/symfony/config.git",
  3268. "reference": "a0645dc585d378b73c01115dd7ab9348f7d40c85"
  3269. },
  3270. "dist": {
  3271. "type": "zip",
  3272. "url": "https://api.github.com/repos/symfony/config/zipball/a0645dc585d378b73c01115dd7ab9348f7d40c85",
  3273. "reference": "a0645dc585d378b73c01115dd7ab9348f7d40c85",
  3274. "shasum": ""
  3275. },
  3276. "require": {
  3277. "php": ">=8.1",
  3278. "symfony/deprecation-contracts": "^2.1|^3",
  3279. "symfony/filesystem": "^5.4|^6.0",
  3280. "symfony/polyfill-ctype": "~1.8"
  3281. },
  3282. "conflict": {
  3283. "symfony/finder": "<5.4"
  3284. },
  3285. "require-dev": {
  3286. "symfony/event-dispatcher": "^5.4|^6.0",
  3287. "symfony/finder": "^5.4|^6.0",
  3288. "symfony/messenger": "^5.4|^6.0",
  3289. "symfony/service-contracts": "^1.1|^2|^3",
  3290. "symfony/yaml": "^5.4|^6.0"
  3291. },
  3292. "suggest": {
  3293. "symfony/yaml": "To use the yaml reference dumper"
  3294. },
  3295. "type": "library",
  3296. "autoload": {
  3297. "psr-4": {
  3298. "Symfony\\Component\\Config\\": ""
  3299. },
  3300. "exclude-from-classmap": [
  3301. "/Tests/"
  3302. ]
  3303. },
  3304. "notification-url": "https://packagist.org/downloads/",
  3305. "license": [
  3306. "MIT"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Fabien Potencier",
  3311. "email": "fabien@symfony.com"
  3312. },
  3313. {
  3314. "name": "Symfony Community",
  3315. "homepage": "https://symfony.com/contributors"
  3316. }
  3317. ],
  3318. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3319. "homepage": "https://symfony.com",
  3320. "support": {
  3321. "source": "https://github.com/symfony/config/tree/v6.1.3"
  3322. },
  3323. "funding": [
  3324. {
  3325. "url": "https://symfony.com/sponsor",
  3326. "type": "custom"
  3327. },
  3328. {
  3329. "url": "https://github.com/fabpot",
  3330. "type": "github"
  3331. },
  3332. {
  3333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3334. "type": "tidelift"
  3335. }
  3336. ],
  3337. "time": "2022-07-20T15:00:40+00:00"
  3338. },
  3339. {
  3340. "name": "symfony/console",
  3341. "version": "v6.1.8",
  3342. "source": {
  3343. "type": "git",
  3344. "url": "https://github.com/symfony/console.git",
  3345. "reference": "a71863ea74f444d93c768deb3e314e1f750cf20d"
  3346. },
  3347. "dist": {
  3348. "type": "zip",
  3349. "url": "https://api.github.com/repos/symfony/console/zipball/a71863ea74f444d93c768deb3e314e1f750cf20d",
  3350. "reference": "a71863ea74f444d93c768deb3e314e1f750cf20d",
  3351. "shasum": ""
  3352. },
  3353. "require": {
  3354. "php": ">=8.1",
  3355. "symfony/deprecation-contracts": "^2.1|^3",
  3356. "symfony/polyfill-mbstring": "~1.0",
  3357. "symfony/service-contracts": "^1.1|^2|^3",
  3358. "symfony/string": "^5.4|^6.0"
  3359. },
  3360. "conflict": {
  3361. "symfony/dependency-injection": "<5.4",
  3362. "symfony/dotenv": "<5.4",
  3363. "symfony/event-dispatcher": "<5.4",
  3364. "symfony/lock": "<5.4",
  3365. "symfony/process": "<5.4"
  3366. },
  3367. "provide": {
  3368. "psr/log-implementation": "1.0|2.0|3.0"
  3369. },
  3370. "require-dev": {
  3371. "psr/log": "^1|^2|^3",
  3372. "symfony/config": "^5.4|^6.0",
  3373. "symfony/dependency-injection": "^5.4|^6.0",
  3374. "symfony/event-dispatcher": "^5.4|^6.0",
  3375. "symfony/lock": "^5.4|^6.0",
  3376. "symfony/process": "^5.4|^6.0",
  3377. "symfony/var-dumper": "^5.4|^6.0"
  3378. },
  3379. "suggest": {
  3380. "psr/log": "For using the console logger",
  3381. "symfony/event-dispatcher": "",
  3382. "symfony/lock": "",
  3383. "symfony/process": ""
  3384. },
  3385. "type": "library",
  3386. "autoload": {
  3387. "psr-4": {
  3388. "Symfony\\Component\\Console\\": ""
  3389. },
  3390. "exclude-from-classmap": [
  3391. "/Tests/"
  3392. ]
  3393. },
  3394. "notification-url": "https://packagist.org/downloads/",
  3395. "license": [
  3396. "MIT"
  3397. ],
  3398. "authors": [
  3399. {
  3400. "name": "Fabien Potencier",
  3401. "email": "fabien@symfony.com"
  3402. },
  3403. {
  3404. "name": "Symfony Community",
  3405. "homepage": "https://symfony.com/contributors"
  3406. }
  3407. ],
  3408. "description": "Eases the creation of beautiful and testable command line interfaces",
  3409. "homepage": "https://symfony.com",
  3410. "keywords": [
  3411. "cli",
  3412. "command line",
  3413. "console",
  3414. "terminal"
  3415. ],
  3416. "support": {
  3417. "source": "https://github.com/symfony/console/tree/v6.1.8"
  3418. },
  3419. "funding": [
  3420. {
  3421. "url": "https://symfony.com/sponsor",
  3422. "type": "custom"
  3423. },
  3424. {
  3425. "url": "https://github.com/fabpot",
  3426. "type": "github"
  3427. },
  3428. {
  3429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3430. "type": "tidelift"
  3431. }
  3432. ],
  3433. "time": "2022-11-25T18:59:16+00:00"
  3434. },
  3435. {
  3436. "name": "symfony/dependency-injection",
  3437. "version": "v6.1.8",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/symfony/dependency-injection.git",
  3441. "reference": "11e33ed84db0ced77511a23b35168db127909f0e"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/11e33ed84db0ced77511a23b35168db127909f0e",
  3446. "reference": "11e33ed84db0ced77511a23b35168db127909f0e",
  3447. "shasum": ""
  3448. },
  3449. "require": {
  3450. "php": ">=8.1",
  3451. "psr/container": "^1.1|^2.0",
  3452. "symfony/deprecation-contracts": "^2.1|^3",
  3453. "symfony/service-contracts": "^1.1.6|^2.0|^3.0"
  3454. },
  3455. "conflict": {
  3456. "ext-psr": "<1.1|>=2",
  3457. "symfony/config": "<6.1",
  3458. "symfony/finder": "<5.4",
  3459. "symfony/proxy-manager-bridge": "<5.4",
  3460. "symfony/yaml": "<5.4"
  3461. },
  3462. "provide": {
  3463. "psr/container-implementation": "1.1|2.0",
  3464. "symfony/service-implementation": "1.1|2.0|3.0"
  3465. },
  3466. "require-dev": {
  3467. "symfony/config": "^6.1",
  3468. "symfony/expression-language": "^5.4|^6.0",
  3469. "symfony/yaml": "^5.4|^6.0"
  3470. },
  3471. "suggest": {
  3472. "symfony/config": "",
  3473. "symfony/expression-language": "For using expressions in service container configuration",
  3474. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3475. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3476. "symfony/yaml": ""
  3477. },
  3478. "type": "library",
  3479. "autoload": {
  3480. "psr-4": {
  3481. "Symfony\\Component\\DependencyInjection\\": ""
  3482. },
  3483. "exclude-from-classmap": [
  3484. "/Tests/"
  3485. ]
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Fabien Potencier",
  3494. "email": "fabien@symfony.com"
  3495. },
  3496. {
  3497. "name": "Symfony Community",
  3498. "homepage": "https://symfony.com/contributors"
  3499. }
  3500. ],
  3501. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3502. "homepage": "https://symfony.com",
  3503. "support": {
  3504. "source": "https://github.com/symfony/dependency-injection/tree/v6.1.8"
  3505. },
  3506. "funding": [
  3507. {
  3508. "url": "https://symfony.com/sponsor",
  3509. "type": "custom"
  3510. },
  3511. {
  3512. "url": "https://github.com/fabpot",
  3513. "type": "github"
  3514. },
  3515. {
  3516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3517. "type": "tidelift"
  3518. }
  3519. ],
  3520. "time": "2022-11-25T07:34:52+00:00"
  3521. },
  3522. {
  3523. "name": "symfony/deprecation-contracts",
  3524. "version": "v3.2.0",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/symfony/deprecation-contracts.git",
  3528. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  3533. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  3534. "shasum": ""
  3535. },
  3536. "require": {
  3537. "php": ">=8.1"
  3538. },
  3539. "type": "library",
  3540. "extra": {
  3541. "branch-alias": {
  3542. "dev-main": "3.3-dev"
  3543. },
  3544. "thanks": {
  3545. "name": "symfony/contracts",
  3546. "url": "https://github.com/symfony/contracts"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "files": [
  3551. "function.php"
  3552. ]
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Nicolas Grekas",
  3561. "email": "p@tchwork.com"
  3562. },
  3563. {
  3564. "name": "Symfony Community",
  3565. "homepage": "https://symfony.com/contributors"
  3566. }
  3567. ],
  3568. "description": "A generic function and convention to trigger deprecation notices",
  3569. "homepage": "https://symfony.com",
  3570. "support": {
  3571. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.0"
  3572. },
  3573. "funding": [
  3574. {
  3575. "url": "https://symfony.com/sponsor",
  3576. "type": "custom"
  3577. },
  3578. {
  3579. "url": "https://github.com/fabpot",
  3580. "type": "github"
  3581. },
  3582. {
  3583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3584. "type": "tidelift"
  3585. }
  3586. ],
  3587. "time": "2022-11-25T10:21:52+00:00"
  3588. },
  3589. {
  3590. "name": "symfony/doctrine-bridge",
  3591. "version": "v6.1.8",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/symfony/doctrine-bridge.git",
  3595. "reference": "088996a46a2561582001153df9c7fab7c065908a"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/088996a46a2561582001153df9c7fab7c065908a",
  3600. "reference": "088996a46a2561582001153df9c7fab7c065908a",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "doctrine/event-manager": "^1|^2",
  3605. "doctrine/persistence": "^2|^3",
  3606. "php": ">=8.1",
  3607. "symfony/deprecation-contracts": "^2.1|^3",
  3608. "symfony/polyfill-ctype": "~1.8",
  3609. "symfony/polyfill-mbstring": "~1.0",
  3610. "symfony/service-contracts": "^1.1|^2|^3"
  3611. },
  3612. "conflict": {
  3613. "doctrine/dbal": "<2.13.1",
  3614. "doctrine/lexer": "<1.1",
  3615. "doctrine/orm": "<2.7.4",
  3616. "phpunit/phpunit": "<5.4.3",
  3617. "symfony/cache": "<5.4",
  3618. "symfony/dependency-injection": "<5.4",
  3619. "symfony/form": "<5.4",
  3620. "symfony/http-kernel": "<5.4",
  3621. "symfony/messenger": "<5.4",
  3622. "symfony/property-info": "<5.4",
  3623. "symfony/security-bundle": "<5.4",
  3624. "symfony/security-core": "<6.0",
  3625. "symfony/validator": "<5.4"
  3626. },
  3627. "require-dev": {
  3628. "doctrine/annotations": "^1.10.4",
  3629. "doctrine/collections": "^1.0|^2.0",
  3630. "doctrine/data-fixtures": "^1.1",
  3631. "doctrine/dbal": "^2.13.1|^3.0",
  3632. "doctrine/orm": "^2.7.4",
  3633. "psr/log": "^1|^2|^3",
  3634. "symfony/cache": "^5.4|^6.0",
  3635. "symfony/config": "^5.4|^6.0",
  3636. "symfony/dependency-injection": "^5.4|^6.0",
  3637. "symfony/doctrine-messenger": "^5.4|^6.0",
  3638. "symfony/expression-language": "^5.4|^6.0",
  3639. "symfony/form": "^5.4.9|^6.0.9",
  3640. "symfony/http-kernel": "^5.4|^6.0",
  3641. "symfony/messenger": "^5.4|^6.0",
  3642. "symfony/property-access": "^5.4|^6.0",
  3643. "symfony/property-info": "^5.4|^6.0",
  3644. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3645. "symfony/security-core": "^6.0",
  3646. "symfony/stopwatch": "^5.4|^6.0",
  3647. "symfony/translation": "^5.4|^6.0",
  3648. "symfony/uid": "^5.4|^6.0",
  3649. "symfony/validator": "^5.4|^6.0",
  3650. "symfony/var-dumper": "^5.4|^6.0"
  3651. },
  3652. "suggest": {
  3653. "doctrine/data-fixtures": "",
  3654. "doctrine/dbal": "",
  3655. "doctrine/orm": "",
  3656. "symfony/form": "",
  3657. "symfony/property-info": "",
  3658. "symfony/validator": ""
  3659. },
  3660. "type": "symfony-bridge",
  3661. "autoload": {
  3662. "psr-4": {
  3663. "Symfony\\Bridge\\Doctrine\\": ""
  3664. },
  3665. "exclude-from-classmap": [
  3666. "/Tests/"
  3667. ]
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Fabien Potencier",
  3676. "email": "fabien@symfony.com"
  3677. },
  3678. {
  3679. "name": "Symfony Community",
  3680. "homepage": "https://symfony.com/contributors"
  3681. }
  3682. ],
  3683. "description": "Provides integration for Doctrine with various Symfony components",
  3684. "homepage": "https://symfony.com",
  3685. "support": {
  3686. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.1.8"
  3687. },
  3688. "funding": [
  3689. {
  3690. "url": "https://symfony.com/sponsor",
  3691. "type": "custom"
  3692. },
  3693. {
  3694. "url": "https://github.com/fabpot",
  3695. "type": "github"
  3696. },
  3697. {
  3698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3699. "type": "tidelift"
  3700. }
  3701. ],
  3702. "time": "2022-11-28T12:27:40+00:00"
  3703. },
  3704. {
  3705. "name": "symfony/dotenv",
  3706. "version": "v6.1.0",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/symfony/dotenv.git",
  3710. "reference": "568c11bcedf419e7e61f663912c3547b54de51df"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/symfony/dotenv/zipball/568c11bcedf419e7e61f663912c3547b54de51df",
  3715. "reference": "568c11bcedf419e7e61f663912c3547b54de51df",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "php": ">=8.1"
  3720. },
  3721. "conflict": {
  3722. "symfony/console": "<5.4"
  3723. },
  3724. "require-dev": {
  3725. "symfony/console": "^5.4|^6.0",
  3726. "symfony/process": "^5.4|^6.0"
  3727. },
  3728. "type": "library",
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Symfony\\Component\\Dotenv\\": ""
  3732. },
  3733. "exclude-from-classmap": [
  3734. "/Tests/"
  3735. ]
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "MIT"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Fabien Potencier",
  3744. "email": "fabien@symfony.com"
  3745. },
  3746. {
  3747. "name": "Symfony Community",
  3748. "homepage": "https://symfony.com/contributors"
  3749. }
  3750. ],
  3751. "description": "Registers environment variables from a .env file",
  3752. "homepage": "https://symfony.com",
  3753. "keywords": [
  3754. "dotenv",
  3755. "env",
  3756. "environment"
  3757. ],
  3758. "support": {
  3759. "source": "https://github.com/symfony/dotenv/tree/v6.1.0"
  3760. },
  3761. "funding": [
  3762. {
  3763. "url": "https://symfony.com/sponsor",
  3764. "type": "custom"
  3765. },
  3766. {
  3767. "url": "https://github.com/fabpot",
  3768. "type": "github"
  3769. },
  3770. {
  3771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3772. "type": "tidelift"
  3773. }
  3774. ],
  3775. "time": "2022-04-01T07:15:35+00:00"
  3776. },
  3777. {
  3778. "name": "symfony/error-handler",
  3779. "version": "v6.1.7",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/symfony/error-handler.git",
  3783. "reference": "699a26ce5ec656c198bf6e26398b0f0818c7e504"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/symfony/error-handler/zipball/699a26ce5ec656c198bf6e26398b0f0818c7e504",
  3788. "reference": "699a26ce5ec656c198bf6e26398b0f0818c7e504",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "php": ">=8.1",
  3793. "psr/log": "^1|^2|^3",
  3794. "symfony/var-dumper": "^5.4|^6.0"
  3795. },
  3796. "require-dev": {
  3797. "symfony/deprecation-contracts": "^2.1|^3",
  3798. "symfony/http-kernel": "^5.4|^6.0",
  3799. "symfony/serializer": "^5.4|^6.0"
  3800. },
  3801. "bin": [
  3802. "Resources/bin/patch-type-declarations"
  3803. ],
  3804. "type": "library",
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Symfony\\Component\\ErrorHandler\\": ""
  3808. },
  3809. "exclude-from-classmap": [
  3810. "/Tests/"
  3811. ]
  3812. },
  3813. "notification-url": "https://packagist.org/downloads/",
  3814. "license": [
  3815. "MIT"
  3816. ],
  3817. "authors": [
  3818. {
  3819. "name": "Fabien Potencier",
  3820. "email": "fabien@symfony.com"
  3821. },
  3822. {
  3823. "name": "Symfony Community",
  3824. "homepage": "https://symfony.com/contributors"
  3825. }
  3826. ],
  3827. "description": "Provides tools to manage errors and ease debugging PHP code",
  3828. "homepage": "https://symfony.com",
  3829. "support": {
  3830. "source": "https://github.com/symfony/error-handler/tree/v6.1.7"
  3831. },
  3832. "funding": [
  3833. {
  3834. "url": "https://symfony.com/sponsor",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://github.com/fabpot",
  3839. "type": "github"
  3840. },
  3841. {
  3842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3843. "type": "tidelift"
  3844. }
  3845. ],
  3846. "time": "2022-10-28T16:23:08+00:00"
  3847. },
  3848. {
  3849. "name": "symfony/event-dispatcher",
  3850. "version": "v6.1.0",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/symfony/event-dispatcher.git",
  3854. "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a0449a7ad7daa0f7c0acd508259f80544ab5a347",
  3859. "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347",
  3860. "shasum": ""
  3861. },
  3862. "require": {
  3863. "php": ">=8.1",
  3864. "symfony/event-dispatcher-contracts": "^2|^3"
  3865. },
  3866. "conflict": {
  3867. "symfony/dependency-injection": "<5.4"
  3868. },
  3869. "provide": {
  3870. "psr/event-dispatcher-implementation": "1.0",
  3871. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3872. },
  3873. "require-dev": {
  3874. "psr/log": "^1|^2|^3",
  3875. "symfony/config": "^5.4|^6.0",
  3876. "symfony/dependency-injection": "^5.4|^6.0",
  3877. "symfony/error-handler": "^5.4|^6.0",
  3878. "symfony/expression-language": "^5.4|^6.0",
  3879. "symfony/http-foundation": "^5.4|^6.0",
  3880. "symfony/service-contracts": "^1.1|^2|^3",
  3881. "symfony/stopwatch": "^5.4|^6.0"
  3882. },
  3883. "suggest": {
  3884. "symfony/dependency-injection": "",
  3885. "symfony/http-kernel": ""
  3886. },
  3887. "type": "library",
  3888. "autoload": {
  3889. "psr-4": {
  3890. "Symfony\\Component\\EventDispatcher\\": ""
  3891. },
  3892. "exclude-from-classmap": [
  3893. "/Tests/"
  3894. ]
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "MIT"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "Fabien Potencier",
  3903. "email": "fabien@symfony.com"
  3904. },
  3905. {
  3906. "name": "Symfony Community",
  3907. "homepage": "https://symfony.com/contributors"
  3908. }
  3909. ],
  3910. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3911. "homepage": "https://symfony.com",
  3912. "support": {
  3913. "source": "https://github.com/symfony/event-dispatcher/tree/v6.1.0"
  3914. },
  3915. "funding": [
  3916. {
  3917. "url": "https://symfony.com/sponsor",
  3918. "type": "custom"
  3919. },
  3920. {
  3921. "url": "https://github.com/fabpot",
  3922. "type": "github"
  3923. },
  3924. {
  3925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3926. "type": "tidelift"
  3927. }
  3928. ],
  3929. "time": "2022-05-05T16:51:07+00:00"
  3930. },
  3931. {
  3932. "name": "symfony/event-dispatcher-contracts",
  3933. "version": "v3.2.0",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3937. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0782b0b52a737a05b4383d0df35a474303cabdae",
  3942. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "php": ">=8.1",
  3947. "psr/event-dispatcher": "^1"
  3948. },
  3949. "suggest": {
  3950. "symfony/event-dispatcher-implementation": ""
  3951. },
  3952. "type": "library",
  3953. "extra": {
  3954. "branch-alias": {
  3955. "dev-main": "3.3-dev"
  3956. },
  3957. "thanks": {
  3958. "name": "symfony/contracts",
  3959. "url": "https://github.com/symfony/contracts"
  3960. }
  3961. },
  3962. "autoload": {
  3963. "psr-4": {
  3964. "Symfony\\Contracts\\EventDispatcher\\": ""
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Nicolas Grekas",
  3974. "email": "p@tchwork.com"
  3975. },
  3976. {
  3977. "name": "Symfony Community",
  3978. "homepage": "https://symfony.com/contributors"
  3979. }
  3980. ],
  3981. "description": "Generic abstractions related to dispatching event",
  3982. "homepage": "https://symfony.com",
  3983. "keywords": [
  3984. "abstractions",
  3985. "contracts",
  3986. "decoupling",
  3987. "interfaces",
  3988. "interoperability",
  3989. "standards"
  3990. ],
  3991. "support": {
  3992. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.0"
  3993. },
  3994. "funding": [
  3995. {
  3996. "url": "https://symfony.com/sponsor",
  3997. "type": "custom"
  3998. },
  3999. {
  4000. "url": "https://github.com/fabpot",
  4001. "type": "github"
  4002. },
  4003. {
  4004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4005. "type": "tidelift"
  4006. }
  4007. ],
  4008. "time": "2022-11-25T10:21:52+00:00"
  4009. },
  4010. {
  4011. "name": "symfony/expression-language",
  4012. "version": "v6.1.6",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://github.com/symfony/expression-language.git",
  4016. "reference": "d1538560c075007d3dfd1f8e3a05e43a5ff13fd6"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://api.github.com/repos/symfony/expression-language/zipball/d1538560c075007d3dfd1f8e3a05e43a5ff13fd6",
  4021. "reference": "d1538560c075007d3dfd1f8e3a05e43a5ff13fd6",
  4022. "shasum": ""
  4023. },
  4024. "require": {
  4025. "php": ">=8.1",
  4026. "symfony/cache": "^5.4|^6.0",
  4027. "symfony/service-contracts": "^1.1|^2|^3"
  4028. },
  4029. "type": "library",
  4030. "autoload": {
  4031. "psr-4": {
  4032. "Symfony\\Component\\ExpressionLanguage\\": ""
  4033. },
  4034. "exclude-from-classmap": [
  4035. "/Tests/"
  4036. ]
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "Fabien Potencier",
  4045. "email": "fabien@symfony.com"
  4046. },
  4047. {
  4048. "name": "Symfony Community",
  4049. "homepage": "https://symfony.com/contributors"
  4050. }
  4051. ],
  4052. "description": "Provides an engine that can compile and evaluate expressions",
  4053. "homepage": "https://symfony.com",
  4054. "support": {
  4055. "source": "https://github.com/symfony/expression-language/tree/v6.1.6"
  4056. },
  4057. "funding": [
  4058. {
  4059. "url": "https://symfony.com/sponsor",
  4060. "type": "custom"
  4061. },
  4062. {
  4063. "url": "https://github.com/fabpot",
  4064. "type": "github"
  4065. },
  4066. {
  4067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4068. "type": "tidelift"
  4069. }
  4070. ],
  4071. "time": "2022-10-07T08:04:03+00:00"
  4072. },
  4073. {
  4074. "name": "symfony/filesystem",
  4075. "version": "v6.1.5",
  4076. "source": {
  4077. "type": "git",
  4078. "url": "https://github.com/symfony/filesystem.git",
  4079. "reference": "4d216a2beef096edf040a070117c39ca2abce307"
  4080. },
  4081. "dist": {
  4082. "type": "zip",
  4083. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d216a2beef096edf040a070117c39ca2abce307",
  4084. "reference": "4d216a2beef096edf040a070117c39ca2abce307",
  4085. "shasum": ""
  4086. },
  4087. "require": {
  4088. "php": ">=8.1",
  4089. "symfony/polyfill-ctype": "~1.8",
  4090. "symfony/polyfill-mbstring": "~1.8"
  4091. },
  4092. "type": "library",
  4093. "autoload": {
  4094. "psr-4": {
  4095. "Symfony\\Component\\Filesystem\\": ""
  4096. },
  4097. "exclude-from-classmap": [
  4098. "/Tests/"
  4099. ]
  4100. },
  4101. "notification-url": "https://packagist.org/downloads/",
  4102. "license": [
  4103. "MIT"
  4104. ],
  4105. "authors": [
  4106. {
  4107. "name": "Fabien Potencier",
  4108. "email": "fabien@symfony.com"
  4109. },
  4110. {
  4111. "name": "Symfony Community",
  4112. "homepage": "https://symfony.com/contributors"
  4113. }
  4114. ],
  4115. "description": "Provides basic utilities for the filesystem",
  4116. "homepage": "https://symfony.com",
  4117. "support": {
  4118. "source": "https://github.com/symfony/filesystem/tree/v6.1.5"
  4119. },
  4120. "funding": [
  4121. {
  4122. "url": "https://symfony.com/sponsor",
  4123. "type": "custom"
  4124. },
  4125. {
  4126. "url": "https://github.com/fabpot",
  4127. "type": "github"
  4128. },
  4129. {
  4130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4131. "type": "tidelift"
  4132. }
  4133. ],
  4134. "time": "2022-09-21T20:29:40+00:00"
  4135. },
  4136. {
  4137. "name": "symfony/finder",
  4138. "version": "v6.1.3",
  4139. "source": {
  4140. "type": "git",
  4141. "url": "https://github.com/symfony/finder.git",
  4142. "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709"
  4143. },
  4144. "dist": {
  4145. "type": "zip",
  4146. "url": "https://api.github.com/repos/symfony/finder/zipball/39696bff2c2970b3779a5cac7bf9f0b88fc2b709",
  4147. "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709",
  4148. "shasum": ""
  4149. },
  4150. "require": {
  4151. "php": ">=8.1"
  4152. },
  4153. "require-dev": {
  4154. "symfony/filesystem": "^6.0"
  4155. },
  4156. "type": "library",
  4157. "autoload": {
  4158. "psr-4": {
  4159. "Symfony\\Component\\Finder\\": ""
  4160. },
  4161. "exclude-from-classmap": [
  4162. "/Tests/"
  4163. ]
  4164. },
  4165. "notification-url": "https://packagist.org/downloads/",
  4166. "license": [
  4167. "MIT"
  4168. ],
  4169. "authors": [
  4170. {
  4171. "name": "Fabien Potencier",
  4172. "email": "fabien@symfony.com"
  4173. },
  4174. {
  4175. "name": "Symfony Community",
  4176. "homepage": "https://symfony.com/contributors"
  4177. }
  4178. ],
  4179. "description": "Finds files and directories via an intuitive fluent interface",
  4180. "homepage": "https://symfony.com",
  4181. "support": {
  4182. "source": "https://github.com/symfony/finder/tree/v6.1.3"
  4183. },
  4184. "funding": [
  4185. {
  4186. "url": "https://symfony.com/sponsor",
  4187. "type": "custom"
  4188. },
  4189. {
  4190. "url": "https://github.com/fabpot",
  4191. "type": "github"
  4192. },
  4193. {
  4194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4195. "type": "tidelift"
  4196. }
  4197. ],
  4198. "time": "2022-07-29T07:42:06+00:00"
  4199. },
  4200. {
  4201. "name": "symfony/flex",
  4202. "version": "v2.2.4",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/symfony/flex.git",
  4206. "reference": "52baff1adb29faf443c6710cb775bd88b9627381"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/symfony/flex/zipball/52baff1adb29faf443c6710cb775bd88b9627381",
  4211. "reference": "52baff1adb29faf443c6710cb775bd88b9627381",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "composer-plugin-api": "^2.1",
  4216. "php": ">=8.0"
  4217. },
  4218. "require-dev": {
  4219. "composer/composer": "^2.1",
  4220. "symfony/dotenv": "^5.4|^6.0",
  4221. "symfony/filesystem": "^5.4|^6.0",
  4222. "symfony/phpunit-bridge": "^5.4|^6.0",
  4223. "symfony/process": "^5.4|^6.0"
  4224. },
  4225. "type": "composer-plugin",
  4226. "extra": {
  4227. "class": "Symfony\\Flex\\Flex"
  4228. },
  4229. "autoload": {
  4230. "psr-4": {
  4231. "Symfony\\Flex\\": "src"
  4232. }
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "Fabien Potencier",
  4241. "email": "fabien.potencier@gmail.com"
  4242. }
  4243. ],
  4244. "description": "Composer plugin for Symfony",
  4245. "support": {
  4246. "issues": "https://github.com/symfony/flex/issues",
  4247. "source": "https://github.com/symfony/flex/tree/v2.2.4"
  4248. },
  4249. "funding": [
  4250. {
  4251. "url": "https://symfony.com/sponsor",
  4252. "type": "custom"
  4253. },
  4254. {
  4255. "url": "https://github.com/fabpot",
  4256. "type": "github"
  4257. },
  4258. {
  4259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4260. "type": "tidelift"
  4261. }
  4262. ],
  4263. "time": "2022-12-20T07:19:39+00:00"
  4264. },
  4265. {
  4266. "name": "symfony/form",
  4267. "version": "v6.1.8",
  4268. "source": {
  4269. "type": "git",
  4270. "url": "https://github.com/symfony/form.git",
  4271. "reference": "821d02c6d3a47bbf38a53f86c1c59e06360f97f4"
  4272. },
  4273. "dist": {
  4274. "type": "zip",
  4275. "url": "https://api.github.com/repos/symfony/form/zipball/821d02c6d3a47bbf38a53f86c1c59e06360f97f4",
  4276. "reference": "821d02c6d3a47bbf38a53f86c1c59e06360f97f4",
  4277. "shasum": ""
  4278. },
  4279. "require": {
  4280. "php": ">=8.1",
  4281. "symfony/deprecation-contracts": "^2.1|^3",
  4282. "symfony/event-dispatcher": "^5.4|^6.0",
  4283. "symfony/options-resolver": "^5.4|^6.0",
  4284. "symfony/polyfill-ctype": "~1.8",
  4285. "symfony/polyfill-intl-icu": "^1.21",
  4286. "symfony/polyfill-mbstring": "~1.0",
  4287. "symfony/property-access": "^5.4|^6.0",
  4288. "symfony/service-contracts": "^1.1|^2|^3"
  4289. },
  4290. "conflict": {
  4291. "phpunit/phpunit": "<5.4.3",
  4292. "symfony/console": "<5.4",
  4293. "symfony/dependency-injection": "<5.4",
  4294. "symfony/doctrine-bridge": "<5.4",
  4295. "symfony/error-handler": "<5.4",
  4296. "symfony/framework-bundle": "<5.4",
  4297. "symfony/http-kernel": "<5.4",
  4298. "symfony/translation": "<5.4",
  4299. "symfony/translation-contracts": "<1.1.7",
  4300. "symfony/twig-bridge": "<5.4"
  4301. },
  4302. "require-dev": {
  4303. "doctrine/collections": "^1.0|^2.0",
  4304. "symfony/config": "^5.4|^6.0",
  4305. "symfony/console": "^5.4|^6.0",
  4306. "symfony/dependency-injection": "^5.4|^6.0",
  4307. "symfony/expression-language": "^5.4|^6.0",
  4308. "symfony/html-sanitizer": "^6.1",
  4309. "symfony/http-foundation": "^5.4|^6.0",
  4310. "symfony/http-kernel": "^5.4|^6.0",
  4311. "symfony/intl": "^5.4|^6.0",
  4312. "symfony/security-csrf": "^5.4|^6.0",
  4313. "symfony/translation": "^5.4|^6.0",
  4314. "symfony/uid": "^5.4|^6.0",
  4315. "symfony/validator": "^5.4|^6.0",
  4316. "symfony/var-dumper": "^5.4|^6.0"
  4317. },
  4318. "suggest": {
  4319. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4320. "symfony/twig-bridge": "For templating with Twig.",
  4321. "symfony/validator": "For form validation."
  4322. },
  4323. "type": "library",
  4324. "autoload": {
  4325. "psr-4": {
  4326. "Symfony\\Component\\Form\\": ""
  4327. },
  4328. "exclude-from-classmap": [
  4329. "/Tests/"
  4330. ]
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "MIT"
  4335. ],
  4336. "authors": [
  4337. {
  4338. "name": "Fabien Potencier",
  4339. "email": "fabien@symfony.com"
  4340. },
  4341. {
  4342. "name": "Symfony Community",
  4343. "homepage": "https://symfony.com/contributors"
  4344. }
  4345. ],
  4346. "description": "Allows to easily create, process and reuse HTML forms",
  4347. "homepage": "https://symfony.com",
  4348. "support": {
  4349. "source": "https://github.com/symfony/form/tree/v6.1.8"
  4350. },
  4351. "funding": [
  4352. {
  4353. "url": "https://symfony.com/sponsor",
  4354. "type": "custom"
  4355. },
  4356. {
  4357. "url": "https://github.com/fabpot",
  4358. "type": "github"
  4359. },
  4360. {
  4361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4362. "type": "tidelift"
  4363. }
  4364. ],
  4365. "time": "2022-11-28T12:27:40+00:00"
  4366. },
  4367. {
  4368. "name": "symfony/framework-bundle",
  4369. "version": "v6.1.8",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/symfony/framework-bundle.git",
  4373. "reference": "0b40e0995acc4686104e8fca126e147c56c35a25"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/0b40e0995acc4686104e8fca126e147c56c35a25",
  4378. "reference": "0b40e0995acc4686104e8fca126e147c56c35a25",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "composer-runtime-api": ">=2.1",
  4383. "ext-xml": "*",
  4384. "php": ">=8.1",
  4385. "symfony/cache": "^5.4|^6.0",
  4386. "symfony/config": "^6.1",
  4387. "symfony/dependency-injection": "^6.1",
  4388. "symfony/deprecation-contracts": "^2.1|^3",
  4389. "symfony/error-handler": "^6.1",
  4390. "symfony/event-dispatcher": "^5.4|^6.0",
  4391. "symfony/filesystem": "^5.4|^6.0",
  4392. "symfony/finder": "^5.4|^6.0",
  4393. "symfony/http-foundation": "^5.4|^6.0",
  4394. "symfony/http-kernel": "^6.1",
  4395. "symfony/polyfill-mbstring": "~1.0",
  4396. "symfony/routing": "^5.4|^6.0"
  4397. },
  4398. "conflict": {
  4399. "doctrine/annotations": "<1.13.1",
  4400. "doctrine/persistence": "<1.3",
  4401. "phpdocumentor/reflection-docblock": "<3.2.2",
  4402. "phpdocumentor/type-resolver": "<1.4.0",
  4403. "phpunit/phpunit": "<5.4.3",
  4404. "symfony/asset": "<5.4",
  4405. "symfony/console": "<5.4",
  4406. "symfony/dom-crawler": "<5.4",
  4407. "symfony/dotenv": "<5.4",
  4408. "symfony/form": "<5.4",
  4409. "symfony/http-client": "<5.4",
  4410. "symfony/lock": "<5.4",
  4411. "symfony/mailer": "<5.4",
  4412. "symfony/messenger": "<5.4",
  4413. "symfony/mime": "<5.4",
  4414. "symfony/property-access": "<5.4",
  4415. "symfony/property-info": "<5.4",
  4416. "symfony/security-core": "<5.4",
  4417. "symfony/security-csrf": "<5.4",
  4418. "symfony/serializer": "<6.1",
  4419. "symfony/stopwatch": "<5.4",
  4420. "symfony/translation": "<5.4",
  4421. "symfony/twig-bridge": "<5.4",
  4422. "symfony/twig-bundle": "<5.4",
  4423. "symfony/validator": "<5.4",
  4424. "symfony/web-profiler-bundle": "<5.4",
  4425. "symfony/workflow": "<5.4"
  4426. },
  4427. "require-dev": {
  4428. "doctrine/annotations": "^1.13.1",
  4429. "doctrine/persistence": "^1.3|^2|^3",
  4430. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4431. "symfony/asset": "^5.4|^6.0",
  4432. "symfony/browser-kit": "^5.4|^6.0",
  4433. "symfony/console": "^5.4.9|^6.0.9",
  4434. "symfony/css-selector": "^5.4|^6.0",
  4435. "symfony/dom-crawler": "^5.4|^6.0",
  4436. "symfony/dotenv": "^5.4|^6.0",
  4437. "symfony/expression-language": "^5.4|^6.0",
  4438. "symfony/form": "^5.4|^6.0",
  4439. "symfony/html-sanitizer": "^6.1",
  4440. "symfony/http-client": "^5.4|^6.0",
  4441. "symfony/lock": "^5.4|^6.0",
  4442. "symfony/mailer": "^5.4|^6.0",
  4443. "symfony/messenger": "^5.4|^6.0",
  4444. "symfony/mime": "^5.4|^6.0",
  4445. "symfony/notifier": "^5.4|^6.0",
  4446. "symfony/polyfill-intl-icu": "~1.0",
  4447. "symfony/process": "^5.4|^6.0",
  4448. "symfony/property-info": "^5.4|^6.0",
  4449. "symfony/rate-limiter": "^5.4|^6.0",
  4450. "symfony/security-bundle": "^5.4|^6.0",
  4451. "symfony/semaphore": "^5.4|^6.0",
  4452. "symfony/serializer": "^6.1",
  4453. "symfony/stopwatch": "^5.4|^6.0",
  4454. "symfony/string": "^5.4|^6.0",
  4455. "symfony/translation": "^5.4|^6.0",
  4456. "symfony/twig-bundle": "^5.4|^6.0",
  4457. "symfony/uid": "^5.4|^6.0",
  4458. "symfony/validator": "^5.4|^6.0",
  4459. "symfony/web-link": "^5.4|^6.0",
  4460. "symfony/workflow": "^5.4|^6.0",
  4461. "symfony/yaml": "^5.4|^6.0",
  4462. "twig/twig": "^2.10|^3.0"
  4463. },
  4464. "suggest": {
  4465. "ext-apcu": "For best performance of the system caches",
  4466. "symfony/console": "For using the console commands",
  4467. "symfony/form": "For using forms",
  4468. "symfony/property-info": "For using the property_info service",
  4469. "symfony/serializer": "For using the serializer service",
  4470. "symfony/validator": "For using validation",
  4471. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4472. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4473. },
  4474. "type": "symfony-bundle",
  4475. "autoload": {
  4476. "psr-4": {
  4477. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4478. },
  4479. "exclude-from-classmap": [
  4480. "/Tests/"
  4481. ]
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "MIT"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Fabien Potencier",
  4490. "email": "fabien@symfony.com"
  4491. },
  4492. {
  4493. "name": "Symfony Community",
  4494. "homepage": "https://symfony.com/contributors"
  4495. }
  4496. ],
  4497. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4498. "homepage": "https://symfony.com",
  4499. "support": {
  4500. "source": "https://github.com/symfony/framework-bundle/tree/v6.1.8"
  4501. },
  4502. "funding": [
  4503. {
  4504. "url": "https://symfony.com/sponsor",
  4505. "type": "custom"
  4506. },
  4507. {
  4508. "url": "https://github.com/fabpot",
  4509. "type": "github"
  4510. },
  4511. {
  4512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4513. "type": "tidelift"
  4514. }
  4515. ],
  4516. "time": "2022-11-25T18:59:16+00:00"
  4517. },
  4518. {
  4519. "name": "symfony/html-sanitizer",
  4520. "version": "v6.1.11",
  4521. "source": {
  4522. "type": "git",
  4523. "url": "https://github.com/symfony/html-sanitizer.git",
  4524. "reference": "9f7eb169f929b6f75fee7218a128856a63694cc6"
  4525. },
  4526. "dist": {
  4527. "type": "zip",
  4528. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/9f7eb169f929b6f75fee7218a128856a63694cc6",
  4529. "reference": "9f7eb169f929b6f75fee7218a128856a63694cc6",
  4530. "shasum": ""
  4531. },
  4532. "require": {
  4533. "ext-dom": "*",
  4534. "league/uri": "^6.5",
  4535. "masterminds/html5": "^2.7.2",
  4536. "php": ">=8.1"
  4537. },
  4538. "type": "library",
  4539. "autoload": {
  4540. "psr-4": {
  4541. "Symfony\\Component\\HtmlSanitizer\\": ""
  4542. },
  4543. "exclude-from-classmap": [
  4544. "/Tests/"
  4545. ]
  4546. },
  4547. "notification-url": "https://packagist.org/downloads/",
  4548. "license": [
  4549. "MIT"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "Titouan Galopin",
  4554. "email": "galopintitouan@gmail.com"
  4555. },
  4556. {
  4557. "name": "Symfony Community",
  4558. "homepage": "https://symfony.com/contributors"
  4559. }
  4560. ],
  4561. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4562. "homepage": "https://symfony.com",
  4563. "keywords": [
  4564. "Purifier",
  4565. "html",
  4566. "sanitizer"
  4567. ],
  4568. "support": {
  4569. "source": "https://github.com/symfony/html-sanitizer/tree/v6.1.11"
  4570. },
  4571. "funding": [
  4572. {
  4573. "url": "https://symfony.com/sponsor",
  4574. "type": "custom"
  4575. },
  4576. {
  4577. "url": "https://github.com/fabpot",
  4578. "type": "github"
  4579. },
  4580. {
  4581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4582. "type": "tidelift"
  4583. }
  4584. ],
  4585. "time": "2023-01-01T08:37:24+00:00"
  4586. },
  4587. {
  4588. "name": "symfony/http-client",
  4589. "version": "v6.1.8",
  4590. "source": {
  4591. "type": "git",
  4592. "url": "https://github.com/symfony/http-client.git",
  4593. "reference": "b7374c1f95714b27aeae9e4e4f573274f77a7f37"
  4594. },
  4595. "dist": {
  4596. "type": "zip",
  4597. "url": "https://api.github.com/repos/symfony/http-client/zipball/b7374c1f95714b27aeae9e4e4f573274f77a7f37",
  4598. "reference": "b7374c1f95714b27aeae9e4e4f573274f77a7f37",
  4599. "shasum": ""
  4600. },
  4601. "require": {
  4602. "php": ">=8.1",
  4603. "psr/log": "^1|^2|^3",
  4604. "symfony/http-client-contracts": "^3",
  4605. "symfony/service-contracts": "^1.0|^2|^3"
  4606. },
  4607. "provide": {
  4608. "php-http/async-client-implementation": "*",
  4609. "php-http/client-implementation": "*",
  4610. "psr/http-client-implementation": "1.0",
  4611. "symfony/http-client-implementation": "3.0"
  4612. },
  4613. "require-dev": {
  4614. "amphp/amp": "^2.5",
  4615. "amphp/http-client": "^4.2.1",
  4616. "amphp/http-tunnel": "^1.0",
  4617. "amphp/socket": "^1.1",
  4618. "guzzlehttp/promises": "^1.4",
  4619. "nyholm/psr7": "^1.0",
  4620. "php-http/httplug": "^1.0|^2.0",
  4621. "psr/http-client": "^1.0",
  4622. "symfony/dependency-injection": "^5.4|^6.0",
  4623. "symfony/http-kernel": "^5.4|^6.0",
  4624. "symfony/process": "^5.4|^6.0",
  4625. "symfony/stopwatch": "^5.4|^6.0"
  4626. },
  4627. "type": "library",
  4628. "autoload": {
  4629. "psr-4": {
  4630. "Symfony\\Component\\HttpClient\\": ""
  4631. },
  4632. "exclude-from-classmap": [
  4633. "/Tests/"
  4634. ]
  4635. },
  4636. "notification-url": "https://packagist.org/downloads/",
  4637. "license": [
  4638. "MIT"
  4639. ],
  4640. "authors": [
  4641. {
  4642. "name": "Nicolas Grekas",
  4643. "email": "p@tchwork.com"
  4644. },
  4645. {
  4646. "name": "Symfony Community",
  4647. "homepage": "https://symfony.com/contributors"
  4648. }
  4649. ],
  4650. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4651. "homepage": "https://symfony.com",
  4652. "support": {
  4653. "source": "https://github.com/symfony/http-client/tree/v6.1.8"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://symfony.com/sponsor",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/fabpot",
  4662. "type": "github"
  4663. },
  4664. {
  4665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4666. "type": "tidelift"
  4667. }
  4668. ],
  4669. "time": "2022-11-14T10:13:26+00:00"
  4670. },
  4671. {
  4672. "name": "symfony/http-client-contracts",
  4673. "version": "v3.1.1",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/symfony/http-client-contracts.git",
  4677. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/fd038f08c623ab5d22b26e9ba35afe8c79071800",
  4682. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800",
  4683. "shasum": ""
  4684. },
  4685. "require": {
  4686. "php": ">=8.1"
  4687. },
  4688. "suggest": {
  4689. "symfony/http-client-implementation": ""
  4690. },
  4691. "type": "library",
  4692. "extra": {
  4693. "branch-alias": {
  4694. "dev-main": "3.1-dev"
  4695. },
  4696. "thanks": {
  4697. "name": "symfony/contracts",
  4698. "url": "https://github.com/symfony/contracts"
  4699. }
  4700. },
  4701. "autoload": {
  4702. "psr-4": {
  4703. "Symfony\\Contracts\\HttpClient\\": ""
  4704. },
  4705. "exclude-from-classmap": [
  4706. "/Test/"
  4707. ]
  4708. },
  4709. "notification-url": "https://packagist.org/downloads/",
  4710. "license": [
  4711. "MIT"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "Nicolas Grekas",
  4716. "email": "p@tchwork.com"
  4717. },
  4718. {
  4719. "name": "Symfony Community",
  4720. "homepage": "https://symfony.com/contributors"
  4721. }
  4722. ],
  4723. "description": "Generic abstractions related to HTTP clients",
  4724. "homepage": "https://symfony.com",
  4725. "keywords": [
  4726. "abstractions",
  4727. "contracts",
  4728. "decoupling",
  4729. "interfaces",
  4730. "interoperability",
  4731. "standards"
  4732. ],
  4733. "support": {
  4734. "source": "https://github.com/symfony/http-client-contracts/tree/v3.1.1"
  4735. },
  4736. "funding": [
  4737. {
  4738. "url": "https://symfony.com/sponsor",
  4739. "type": "custom"
  4740. },
  4741. {
  4742. "url": "https://github.com/fabpot",
  4743. "type": "github"
  4744. },
  4745. {
  4746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4747. "type": "tidelift"
  4748. }
  4749. ],
  4750. "time": "2022-04-22T07:30:54+00:00"
  4751. },
  4752. {
  4753. "name": "symfony/http-foundation",
  4754. "version": "v6.1.8",
  4755. "source": {
  4756. "type": "git",
  4757. "url": "https://github.com/symfony/http-foundation.git",
  4758. "reference": "46b278fb1dae3e65ba30ead50f1c81fbd1c6a79e"
  4759. },
  4760. "dist": {
  4761. "type": "zip",
  4762. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/46b278fb1dae3e65ba30ead50f1c81fbd1c6a79e",
  4763. "reference": "46b278fb1dae3e65ba30ead50f1c81fbd1c6a79e",
  4764. "shasum": ""
  4765. },
  4766. "require": {
  4767. "php": ">=8.1",
  4768. "symfony/deprecation-contracts": "^2.1|^3",
  4769. "symfony/polyfill-mbstring": "~1.1"
  4770. },
  4771. "require-dev": {
  4772. "predis/predis": "~1.0",
  4773. "symfony/cache": "^5.4|^6.0",
  4774. "symfony/dependency-injection": "^5.4|^6.0",
  4775. "symfony/expression-language": "^5.4|^6.0",
  4776. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4777. "symfony/mime": "^5.4|^6.0",
  4778. "symfony/rate-limiter": "^5.2|^6.0"
  4779. },
  4780. "suggest": {
  4781. "symfony/mime": "To use the file extension guesser"
  4782. },
  4783. "type": "library",
  4784. "autoload": {
  4785. "psr-4": {
  4786. "Symfony\\Component\\HttpFoundation\\": ""
  4787. },
  4788. "exclude-from-classmap": [
  4789. "/Tests/"
  4790. ]
  4791. },
  4792. "notification-url": "https://packagist.org/downloads/",
  4793. "license": [
  4794. "MIT"
  4795. ],
  4796. "authors": [
  4797. {
  4798. "name": "Fabien Potencier",
  4799. "email": "fabien@symfony.com"
  4800. },
  4801. {
  4802. "name": "Symfony Community",
  4803. "homepage": "https://symfony.com/contributors"
  4804. }
  4805. ],
  4806. "description": "Defines an object-oriented layer for the HTTP specification",
  4807. "homepage": "https://symfony.com",
  4808. "support": {
  4809. "source": "https://github.com/symfony/http-foundation/tree/v6.1.8"
  4810. },
  4811. "funding": [
  4812. {
  4813. "url": "https://symfony.com/sponsor",
  4814. "type": "custom"
  4815. },
  4816. {
  4817. "url": "https://github.com/fabpot",
  4818. "type": "github"
  4819. },
  4820. {
  4821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4822. "type": "tidelift"
  4823. }
  4824. ],
  4825. "time": "2022-11-07T08:07:30+00:00"
  4826. },
  4827. {
  4828. "name": "symfony/http-kernel",
  4829. "version": "v6.1.8",
  4830. "source": {
  4831. "type": "git",
  4832. "url": "https://github.com/symfony/http-kernel.git",
  4833. "reference": "6073eaed148f4c0b8d4ae33e7332b34327ef728e"
  4834. },
  4835. "dist": {
  4836. "type": "zip",
  4837. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6073eaed148f4c0b8d4ae33e7332b34327ef728e",
  4838. "reference": "6073eaed148f4c0b8d4ae33e7332b34327ef728e",
  4839. "shasum": ""
  4840. },
  4841. "require": {
  4842. "php": ">=8.1",
  4843. "psr/log": "^1|^2|^3",
  4844. "symfony/error-handler": "^6.1",
  4845. "symfony/event-dispatcher": "^5.4|^6.0",
  4846. "symfony/http-foundation": "^5.4|^6.0",
  4847. "symfony/polyfill-ctype": "^1.8"
  4848. },
  4849. "conflict": {
  4850. "symfony/browser-kit": "<5.4",
  4851. "symfony/cache": "<5.4",
  4852. "symfony/config": "<6.1",
  4853. "symfony/console": "<5.4",
  4854. "symfony/dependency-injection": "<6.1",
  4855. "symfony/doctrine-bridge": "<5.4",
  4856. "symfony/form": "<5.4",
  4857. "symfony/http-client": "<5.4",
  4858. "symfony/mailer": "<5.4",
  4859. "symfony/messenger": "<5.4",
  4860. "symfony/translation": "<5.4",
  4861. "symfony/twig-bridge": "<5.4",
  4862. "symfony/validator": "<5.4",
  4863. "twig/twig": "<2.13"
  4864. },
  4865. "provide": {
  4866. "psr/log-implementation": "1.0|2.0|3.0"
  4867. },
  4868. "require-dev": {
  4869. "psr/cache": "^1.0|^2.0|^3.0",
  4870. "symfony/browser-kit": "^5.4|^6.0",
  4871. "symfony/config": "^6.1",
  4872. "symfony/console": "^5.4|^6.0",
  4873. "symfony/css-selector": "^5.4|^6.0",
  4874. "symfony/dependency-injection": "^6.1",
  4875. "symfony/dom-crawler": "^5.4|^6.0",
  4876. "symfony/expression-language": "^5.4|^6.0",
  4877. "symfony/finder": "^5.4|^6.0",
  4878. "symfony/http-client-contracts": "^1.1|^2|^3",
  4879. "symfony/process": "^5.4|^6.0",
  4880. "symfony/routing": "^5.4|^6.0",
  4881. "symfony/stopwatch": "^5.4|^6.0",
  4882. "symfony/translation": "^5.4|^6.0",
  4883. "symfony/translation-contracts": "^1.1|^2|^3",
  4884. "symfony/uid": "^5.4|^6.0",
  4885. "twig/twig": "^2.13|^3.0.4"
  4886. },
  4887. "suggest": {
  4888. "symfony/browser-kit": "",
  4889. "symfony/config": "",
  4890. "symfony/console": "",
  4891. "symfony/dependency-injection": ""
  4892. },
  4893. "type": "library",
  4894. "autoload": {
  4895. "psr-4": {
  4896. "Symfony\\Component\\HttpKernel\\": ""
  4897. },
  4898. "exclude-from-classmap": [
  4899. "/Tests/"
  4900. ]
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Fabien Potencier",
  4909. "email": "fabien@symfony.com"
  4910. },
  4911. {
  4912. "name": "Symfony Community",
  4913. "homepage": "https://symfony.com/contributors"
  4914. }
  4915. ],
  4916. "description": "Provides a structured process for converting a Request into a Response",
  4917. "homepage": "https://symfony.com",
  4918. "support": {
  4919. "source": "https://github.com/symfony/http-kernel/tree/v6.1.8"
  4920. },
  4921. "funding": [
  4922. {
  4923. "url": "https://symfony.com/sponsor",
  4924. "type": "custom"
  4925. },
  4926. {
  4927. "url": "https://github.com/fabpot",
  4928. "type": "github"
  4929. },
  4930. {
  4931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4932. "type": "tidelift"
  4933. }
  4934. ],
  4935. "time": "2022-11-28T18:20:59+00:00"
  4936. },
  4937. {
  4938. "name": "symfony/mailer",
  4939. "version": "v6.1.8",
  4940. "source": {
  4941. "type": "git",
  4942. "url": "https://github.com/symfony/mailer.git",
  4943. "reference": "42eb71e4bac099cff22fef1b8eae493eb4fd058f"
  4944. },
  4945. "dist": {
  4946. "type": "zip",
  4947. "url": "https://api.github.com/repos/symfony/mailer/zipball/42eb71e4bac099cff22fef1b8eae493eb4fd058f",
  4948. "reference": "42eb71e4bac099cff22fef1b8eae493eb4fd058f",
  4949. "shasum": ""
  4950. },
  4951. "require": {
  4952. "egulias/email-validator": "^2.1.10|^3",
  4953. "php": ">=8.1",
  4954. "psr/event-dispatcher": "^1",
  4955. "psr/log": "^1|^2|^3",
  4956. "symfony/event-dispatcher": "^5.4|^6.0",
  4957. "symfony/mime": "^5.4|^6.0",
  4958. "symfony/service-contracts": "^1.1|^2|^3"
  4959. },
  4960. "conflict": {
  4961. "symfony/http-kernel": "<5.4"
  4962. },
  4963. "require-dev": {
  4964. "symfony/http-client-contracts": "^1.1|^2|^3",
  4965. "symfony/messenger": "^5.4|^6.0"
  4966. },
  4967. "type": "library",
  4968. "autoload": {
  4969. "psr-4": {
  4970. "Symfony\\Component\\Mailer\\": ""
  4971. },
  4972. "exclude-from-classmap": [
  4973. "/Tests/"
  4974. ]
  4975. },
  4976. "notification-url": "https://packagist.org/downloads/",
  4977. "license": [
  4978. "MIT"
  4979. ],
  4980. "authors": [
  4981. {
  4982. "name": "Fabien Potencier",
  4983. "email": "fabien@symfony.com"
  4984. },
  4985. {
  4986. "name": "Symfony Community",
  4987. "homepage": "https://symfony.com/contributors"
  4988. }
  4989. ],
  4990. "description": "Helps sending emails",
  4991. "homepage": "https://symfony.com",
  4992. "support": {
  4993. "source": "https://github.com/symfony/mailer/tree/v6.1.8"
  4994. },
  4995. "funding": [
  4996. {
  4997. "url": "https://symfony.com/sponsor",
  4998. "type": "custom"
  4999. },
  5000. {
  5001. "url": "https://github.com/fabpot",
  5002. "type": "github"
  5003. },
  5004. {
  5005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5006. "type": "tidelift"
  5007. }
  5008. ],
  5009. "time": "2022-11-04T07:40:42+00:00"
  5010. },
  5011. {
  5012. "name": "symfony/mime",
  5013. "version": "v6.1.8",
  5014. "source": {
  5015. "type": "git",
  5016. "url": "https://github.com/symfony/mime.git",
  5017. "reference": "d02c3938a50fbc95cf8f364be1c011758270f30e"
  5018. },
  5019. "dist": {
  5020. "type": "zip",
  5021. "url": "https://api.github.com/repos/symfony/mime/zipball/d02c3938a50fbc95cf8f364be1c011758270f30e",
  5022. "reference": "d02c3938a50fbc95cf8f364be1c011758270f30e",
  5023. "shasum": ""
  5024. },
  5025. "require": {
  5026. "php": ">=8.1",
  5027. "symfony/polyfill-intl-idn": "^1.10",
  5028. "symfony/polyfill-mbstring": "^1.0"
  5029. },
  5030. "conflict": {
  5031. "egulias/email-validator": "~3.0.0",
  5032. "phpdocumentor/reflection-docblock": "<3.2.2",
  5033. "phpdocumentor/type-resolver": "<1.4.0",
  5034. "symfony/mailer": "<5.4"
  5035. },
  5036. "require-dev": {
  5037. "egulias/email-validator": "^2.1.10|^3.1",
  5038. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5039. "symfony/dependency-injection": "^5.4|^6.0",
  5040. "symfony/property-access": "^5.4|^6.0",
  5041. "symfony/property-info": "^5.4|^6.0",
  5042. "symfony/serializer": "^5.2|^6.0"
  5043. },
  5044. "type": "library",
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Symfony\\Component\\Mime\\": ""
  5048. },
  5049. "exclude-from-classmap": [
  5050. "/Tests/"
  5051. ]
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "MIT"
  5056. ],
  5057. "authors": [
  5058. {
  5059. "name": "Fabien Potencier",
  5060. "email": "fabien@symfony.com"
  5061. },
  5062. {
  5063. "name": "Symfony Community",
  5064. "homepage": "https://symfony.com/contributors"
  5065. }
  5066. ],
  5067. "description": "Allows manipulating MIME messages",
  5068. "homepage": "https://symfony.com",
  5069. "keywords": [
  5070. "mime",
  5071. "mime-type"
  5072. ],
  5073. "support": {
  5074. "source": "https://github.com/symfony/mime/tree/v6.1.8"
  5075. },
  5076. "funding": [
  5077. {
  5078. "url": "https://symfony.com/sponsor",
  5079. "type": "custom"
  5080. },
  5081. {
  5082. "url": "https://github.com/fabpot",
  5083. "type": "github"
  5084. },
  5085. {
  5086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5087. "type": "tidelift"
  5088. }
  5089. ],
  5090. "time": "2022-11-28T12:27:40+00:00"
  5091. },
  5092. {
  5093. "name": "symfony/monolog-bridge",
  5094. "version": "v6.1.2",
  5095. "source": {
  5096. "type": "git",
  5097. "url": "https://github.com/symfony/monolog-bridge.git",
  5098. "reference": "1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627"
  5099. },
  5100. "dist": {
  5101. "type": "zip",
  5102. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627",
  5103. "reference": "1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627",
  5104. "shasum": ""
  5105. },
  5106. "require": {
  5107. "monolog/monolog": "^1.25.1|^2|^3",
  5108. "php": ">=8.1",
  5109. "symfony/http-kernel": "^5.4|^6.0",
  5110. "symfony/service-contracts": "^1.1|^2|^3"
  5111. },
  5112. "conflict": {
  5113. "symfony/console": "<5.4",
  5114. "symfony/http-foundation": "<5.4",
  5115. "symfony/security-core": "<6.0"
  5116. },
  5117. "require-dev": {
  5118. "symfony/console": "^5.4|^6.0",
  5119. "symfony/http-client": "^5.4|^6.0",
  5120. "symfony/mailer": "^5.4|^6.0",
  5121. "symfony/messenger": "^5.4|^6.0",
  5122. "symfony/mime": "^5.4|^6.0",
  5123. "symfony/security-core": "^6.0",
  5124. "symfony/var-dumper": "^5.4|^6.0"
  5125. },
  5126. "suggest": {
  5127. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5128. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5129. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5130. },
  5131. "type": "symfony-bridge",
  5132. "autoload": {
  5133. "psr-4": {
  5134. "Symfony\\Bridge\\Monolog\\": ""
  5135. },
  5136. "exclude-from-classmap": [
  5137. "/Tests/"
  5138. ]
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "MIT"
  5143. ],
  5144. "authors": [
  5145. {
  5146. "name": "Fabien Potencier",
  5147. "email": "fabien@symfony.com"
  5148. },
  5149. {
  5150. "name": "Symfony Community",
  5151. "homepage": "https://symfony.com/contributors"
  5152. }
  5153. ],
  5154. "description": "Provides integration for Monolog with various Symfony components",
  5155. "homepage": "https://symfony.com",
  5156. "support": {
  5157. "source": "https://github.com/symfony/monolog-bridge/tree/v6.1.2"
  5158. },
  5159. "funding": [
  5160. {
  5161. "url": "https://symfony.com/sponsor",
  5162. "type": "custom"
  5163. },
  5164. {
  5165. "url": "https://github.com/fabpot",
  5166. "type": "github"
  5167. },
  5168. {
  5169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5170. "type": "tidelift"
  5171. }
  5172. ],
  5173. "time": "2022-06-21T08:28:57+00:00"
  5174. },
  5175. {
  5176. "name": "symfony/monolog-bundle",
  5177. "version": "v3.8.0",
  5178. "source": {
  5179. "type": "git",
  5180. "url": "https://github.com/symfony/monolog-bundle.git",
  5181. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  5182. },
  5183. "dist": {
  5184. "type": "zip",
  5185. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5186. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5187. "shasum": ""
  5188. },
  5189. "require": {
  5190. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  5191. "php": ">=7.1.3",
  5192. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  5193. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  5194. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  5195. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  5196. },
  5197. "require-dev": {
  5198. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  5199. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  5200. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  5201. },
  5202. "type": "symfony-bundle",
  5203. "extra": {
  5204. "branch-alias": {
  5205. "dev-master": "3.x-dev"
  5206. }
  5207. },
  5208. "autoload": {
  5209. "psr-4": {
  5210. "Symfony\\Bundle\\MonologBundle\\": ""
  5211. },
  5212. "exclude-from-classmap": [
  5213. "/Tests/"
  5214. ]
  5215. },
  5216. "notification-url": "https://packagist.org/downloads/",
  5217. "license": [
  5218. "MIT"
  5219. ],
  5220. "authors": [
  5221. {
  5222. "name": "Fabien Potencier",
  5223. "email": "fabien@symfony.com"
  5224. },
  5225. {
  5226. "name": "Symfony Community",
  5227. "homepage": "https://symfony.com/contributors"
  5228. }
  5229. ],
  5230. "description": "Symfony MonologBundle",
  5231. "homepage": "https://symfony.com",
  5232. "keywords": [
  5233. "log",
  5234. "logging"
  5235. ],
  5236. "support": {
  5237. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5238. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  5239. },
  5240. "funding": [
  5241. {
  5242. "url": "https://symfony.com/sponsor",
  5243. "type": "custom"
  5244. },
  5245. {
  5246. "url": "https://github.com/fabpot",
  5247. "type": "github"
  5248. },
  5249. {
  5250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5251. "type": "tidelift"
  5252. }
  5253. ],
  5254. "time": "2022-05-10T14:24:36+00:00"
  5255. },
  5256. {
  5257. "name": "symfony/options-resolver",
  5258. "version": "v6.1.0",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://github.com/symfony/options-resolver.git",
  5262. "reference": "a3016f5442e28386ded73c43a32a5b68586dd1c4"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a3016f5442e28386ded73c43a32a5b68586dd1c4",
  5267. "reference": "a3016f5442e28386ded73c43a32a5b68586dd1c4",
  5268. "shasum": ""
  5269. },
  5270. "require": {
  5271. "php": ">=8.1",
  5272. "symfony/deprecation-contracts": "^2.1|^3"
  5273. },
  5274. "type": "library",
  5275. "autoload": {
  5276. "psr-4": {
  5277. "Symfony\\Component\\OptionsResolver\\": ""
  5278. },
  5279. "exclude-from-classmap": [
  5280. "/Tests/"
  5281. ]
  5282. },
  5283. "notification-url": "https://packagist.org/downloads/",
  5284. "license": [
  5285. "MIT"
  5286. ],
  5287. "authors": [
  5288. {
  5289. "name": "Fabien Potencier",
  5290. "email": "fabien@symfony.com"
  5291. },
  5292. {
  5293. "name": "Symfony Community",
  5294. "homepage": "https://symfony.com/contributors"
  5295. }
  5296. ],
  5297. "description": "Provides an improved replacement for the array_replace PHP function",
  5298. "homepage": "https://symfony.com",
  5299. "keywords": [
  5300. "config",
  5301. "configuration",
  5302. "options"
  5303. ],
  5304. "support": {
  5305. "source": "https://github.com/symfony/options-resolver/tree/v6.1.0"
  5306. },
  5307. "funding": [
  5308. {
  5309. "url": "https://symfony.com/sponsor",
  5310. "type": "custom"
  5311. },
  5312. {
  5313. "url": "https://github.com/fabpot",
  5314. "type": "github"
  5315. },
  5316. {
  5317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5318. "type": "tidelift"
  5319. }
  5320. ],
  5321. "time": "2022-02-25T11:15:52+00:00"
  5322. },
  5323. {
  5324. "name": "symfony/password-hasher",
  5325. "version": "v6.1.3",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/symfony/password-hasher.git",
  5329. "reference": "264894821636b77bb8282db6ec33b8b07b7a0678"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/264894821636b77bb8282db6ec33b8b07b7a0678",
  5334. "reference": "264894821636b77bb8282db6ec33b8b07b7a0678",
  5335. "shasum": ""
  5336. },
  5337. "require": {
  5338. "php": ">=8.1"
  5339. },
  5340. "conflict": {
  5341. "symfony/security-core": "<5.4"
  5342. },
  5343. "require-dev": {
  5344. "symfony/console": "^5.4|^6.0",
  5345. "symfony/security-core": "^5.4|^6.0"
  5346. },
  5347. "type": "library",
  5348. "autoload": {
  5349. "psr-4": {
  5350. "Symfony\\Component\\PasswordHasher\\": ""
  5351. },
  5352. "exclude-from-classmap": [
  5353. "/Tests/"
  5354. ]
  5355. },
  5356. "notification-url": "https://packagist.org/downloads/",
  5357. "license": [
  5358. "MIT"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Robin Chalas",
  5363. "email": "robin.chalas@gmail.com"
  5364. },
  5365. {
  5366. "name": "Symfony Community",
  5367. "homepage": "https://symfony.com/contributors"
  5368. }
  5369. ],
  5370. "description": "Provides password hashing utilities",
  5371. "homepage": "https://symfony.com",
  5372. "keywords": [
  5373. "hashing",
  5374. "password"
  5375. ],
  5376. "support": {
  5377. "source": "https://github.com/symfony/password-hasher/tree/v6.1.3"
  5378. },
  5379. "funding": [
  5380. {
  5381. "url": "https://symfony.com/sponsor",
  5382. "type": "custom"
  5383. },
  5384. {
  5385. "url": "https://github.com/fabpot",
  5386. "type": "github"
  5387. },
  5388. {
  5389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5390. "type": "tidelift"
  5391. }
  5392. ],
  5393. "time": "2022-07-20T14:45:06+00:00"
  5394. },
  5395. {
  5396. "name": "symfony/polyfill-intl-grapheme",
  5397. "version": "v1.27.0",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5401. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5406. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5407. "shasum": ""
  5408. },
  5409. "require": {
  5410. "php": ">=7.1"
  5411. },
  5412. "suggest": {
  5413. "ext-intl": "For best performance"
  5414. },
  5415. "type": "library",
  5416. "extra": {
  5417. "branch-alias": {
  5418. "dev-main": "1.27-dev"
  5419. },
  5420. "thanks": {
  5421. "name": "symfony/polyfill",
  5422. "url": "https://github.com/symfony/polyfill"
  5423. }
  5424. },
  5425. "autoload": {
  5426. "files": [
  5427. "bootstrap.php"
  5428. ],
  5429. "psr-4": {
  5430. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5431. }
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "MIT"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Nicolas Grekas",
  5440. "email": "p@tchwork.com"
  5441. },
  5442. {
  5443. "name": "Symfony Community",
  5444. "homepage": "https://symfony.com/contributors"
  5445. }
  5446. ],
  5447. "description": "Symfony polyfill for intl's grapheme_* functions",
  5448. "homepage": "https://symfony.com",
  5449. "keywords": [
  5450. "compatibility",
  5451. "grapheme",
  5452. "intl",
  5453. "polyfill",
  5454. "portable",
  5455. "shim"
  5456. ],
  5457. "support": {
  5458. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5459. },
  5460. "funding": [
  5461. {
  5462. "url": "https://symfony.com/sponsor",
  5463. "type": "custom"
  5464. },
  5465. {
  5466. "url": "https://github.com/fabpot",
  5467. "type": "github"
  5468. },
  5469. {
  5470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5471. "type": "tidelift"
  5472. }
  5473. ],
  5474. "time": "2022-11-03T14:55:06+00:00"
  5475. },
  5476. {
  5477. "name": "symfony/polyfill-intl-icu",
  5478. "version": "v1.27.0",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5482. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5487. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5488. "shasum": ""
  5489. },
  5490. "require": {
  5491. "php": ">=7.1"
  5492. },
  5493. "suggest": {
  5494. "ext-intl": "For best performance and support of other locales than \"en\""
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-main": "1.27-dev"
  5500. },
  5501. "thanks": {
  5502. "name": "symfony/polyfill",
  5503. "url": "https://github.com/symfony/polyfill"
  5504. }
  5505. },
  5506. "autoload": {
  5507. "files": [
  5508. "bootstrap.php"
  5509. ],
  5510. "psr-4": {
  5511. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5512. },
  5513. "classmap": [
  5514. "Resources/stubs"
  5515. ],
  5516. "exclude-from-classmap": [
  5517. "/Tests/"
  5518. ]
  5519. },
  5520. "notification-url": "https://packagist.org/downloads/",
  5521. "license": [
  5522. "MIT"
  5523. ],
  5524. "authors": [
  5525. {
  5526. "name": "Nicolas Grekas",
  5527. "email": "p@tchwork.com"
  5528. },
  5529. {
  5530. "name": "Symfony Community",
  5531. "homepage": "https://symfony.com/contributors"
  5532. }
  5533. ],
  5534. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5535. "homepage": "https://symfony.com",
  5536. "keywords": [
  5537. "compatibility",
  5538. "icu",
  5539. "intl",
  5540. "polyfill",
  5541. "portable",
  5542. "shim"
  5543. ],
  5544. "support": {
  5545. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5546. },
  5547. "funding": [
  5548. {
  5549. "url": "https://symfony.com/sponsor",
  5550. "type": "custom"
  5551. },
  5552. {
  5553. "url": "https://github.com/fabpot",
  5554. "type": "github"
  5555. },
  5556. {
  5557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5558. "type": "tidelift"
  5559. }
  5560. ],
  5561. "time": "2022-11-03T14:55:06+00:00"
  5562. },
  5563. {
  5564. "name": "symfony/polyfill-intl-idn",
  5565. "version": "v1.27.0",
  5566. "source": {
  5567. "type": "git",
  5568. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5569. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5570. },
  5571. "dist": {
  5572. "type": "zip",
  5573. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5574. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5575. "shasum": ""
  5576. },
  5577. "require": {
  5578. "php": ">=7.1",
  5579. "symfony/polyfill-intl-normalizer": "^1.10",
  5580. "symfony/polyfill-php72": "^1.10"
  5581. },
  5582. "suggest": {
  5583. "ext-intl": "For best performance"
  5584. },
  5585. "type": "library",
  5586. "extra": {
  5587. "branch-alias": {
  5588. "dev-main": "1.27-dev"
  5589. },
  5590. "thanks": {
  5591. "name": "symfony/polyfill",
  5592. "url": "https://github.com/symfony/polyfill"
  5593. }
  5594. },
  5595. "autoload": {
  5596. "files": [
  5597. "bootstrap.php"
  5598. ],
  5599. "psr-4": {
  5600. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5601. }
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "MIT"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "Laurent Bassin",
  5610. "email": "laurent@bassin.info"
  5611. },
  5612. {
  5613. "name": "Trevor Rowbotham",
  5614. "email": "trevor.rowbotham@pm.me"
  5615. },
  5616. {
  5617. "name": "Symfony Community",
  5618. "homepage": "https://symfony.com/contributors"
  5619. }
  5620. ],
  5621. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5622. "homepage": "https://symfony.com",
  5623. "keywords": [
  5624. "compatibility",
  5625. "idn",
  5626. "intl",
  5627. "polyfill",
  5628. "portable",
  5629. "shim"
  5630. ],
  5631. "support": {
  5632. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5633. },
  5634. "funding": [
  5635. {
  5636. "url": "https://symfony.com/sponsor",
  5637. "type": "custom"
  5638. },
  5639. {
  5640. "url": "https://github.com/fabpot",
  5641. "type": "github"
  5642. },
  5643. {
  5644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5645. "type": "tidelift"
  5646. }
  5647. ],
  5648. "time": "2022-11-03T14:55:06+00:00"
  5649. },
  5650. {
  5651. "name": "symfony/polyfill-intl-normalizer",
  5652. "version": "v1.27.0",
  5653. "source": {
  5654. "type": "git",
  5655. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5656. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5657. },
  5658. "dist": {
  5659. "type": "zip",
  5660. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5661. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5662. "shasum": ""
  5663. },
  5664. "require": {
  5665. "php": ">=7.1"
  5666. },
  5667. "suggest": {
  5668. "ext-intl": "For best performance"
  5669. },
  5670. "type": "library",
  5671. "extra": {
  5672. "branch-alias": {
  5673. "dev-main": "1.27-dev"
  5674. },
  5675. "thanks": {
  5676. "name": "symfony/polyfill",
  5677. "url": "https://github.com/symfony/polyfill"
  5678. }
  5679. },
  5680. "autoload": {
  5681. "files": [
  5682. "bootstrap.php"
  5683. ],
  5684. "psr-4": {
  5685. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5686. },
  5687. "classmap": [
  5688. "Resources/stubs"
  5689. ]
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "Nicolas Grekas",
  5698. "email": "p@tchwork.com"
  5699. },
  5700. {
  5701. "name": "Symfony Community",
  5702. "homepage": "https://symfony.com/contributors"
  5703. }
  5704. ],
  5705. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5706. "homepage": "https://symfony.com",
  5707. "keywords": [
  5708. "compatibility",
  5709. "intl",
  5710. "normalizer",
  5711. "polyfill",
  5712. "portable",
  5713. "shim"
  5714. ],
  5715. "support": {
  5716. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5717. },
  5718. "funding": [
  5719. {
  5720. "url": "https://symfony.com/sponsor",
  5721. "type": "custom"
  5722. },
  5723. {
  5724. "url": "https://github.com/fabpot",
  5725. "type": "github"
  5726. },
  5727. {
  5728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5729. "type": "tidelift"
  5730. }
  5731. ],
  5732. "time": "2022-11-03T14:55:06+00:00"
  5733. },
  5734. {
  5735. "name": "symfony/polyfill-mbstring",
  5736. "version": "v1.27.0",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5740. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5745. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5746. "shasum": ""
  5747. },
  5748. "require": {
  5749. "php": ">=7.1"
  5750. },
  5751. "provide": {
  5752. "ext-mbstring": "*"
  5753. },
  5754. "suggest": {
  5755. "ext-mbstring": "For best performance"
  5756. },
  5757. "type": "library",
  5758. "extra": {
  5759. "branch-alias": {
  5760. "dev-main": "1.27-dev"
  5761. },
  5762. "thanks": {
  5763. "name": "symfony/polyfill",
  5764. "url": "https://github.com/symfony/polyfill"
  5765. }
  5766. },
  5767. "autoload": {
  5768. "files": [
  5769. "bootstrap.php"
  5770. ],
  5771. "psr-4": {
  5772. "Symfony\\Polyfill\\Mbstring\\": ""
  5773. }
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "Nicolas Grekas",
  5782. "email": "p@tchwork.com"
  5783. },
  5784. {
  5785. "name": "Symfony Community",
  5786. "homepage": "https://symfony.com/contributors"
  5787. }
  5788. ],
  5789. "description": "Symfony polyfill for the Mbstring extension",
  5790. "homepage": "https://symfony.com",
  5791. "keywords": [
  5792. "compatibility",
  5793. "mbstring",
  5794. "polyfill",
  5795. "portable",
  5796. "shim"
  5797. ],
  5798. "support": {
  5799. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5800. },
  5801. "funding": [
  5802. {
  5803. "url": "https://symfony.com/sponsor",
  5804. "type": "custom"
  5805. },
  5806. {
  5807. "url": "https://github.com/fabpot",
  5808. "type": "github"
  5809. },
  5810. {
  5811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5812. "type": "tidelift"
  5813. }
  5814. ],
  5815. "time": "2022-11-03T14:55:06+00:00"
  5816. },
  5817. {
  5818. "name": "symfony/polyfill-php72",
  5819. "version": "v1.27.0",
  5820. "source": {
  5821. "type": "git",
  5822. "url": "https://github.com/symfony/polyfill-php72.git",
  5823. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5824. },
  5825. "dist": {
  5826. "type": "zip",
  5827. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5828. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5829. "shasum": ""
  5830. },
  5831. "require": {
  5832. "php": ">=7.1"
  5833. },
  5834. "type": "library",
  5835. "extra": {
  5836. "branch-alias": {
  5837. "dev-main": "1.27-dev"
  5838. },
  5839. "thanks": {
  5840. "name": "symfony/polyfill",
  5841. "url": "https://github.com/symfony/polyfill"
  5842. }
  5843. },
  5844. "autoload": {
  5845. "files": [
  5846. "bootstrap.php"
  5847. ],
  5848. "psr-4": {
  5849. "Symfony\\Polyfill\\Php72\\": ""
  5850. }
  5851. },
  5852. "notification-url": "https://packagist.org/downloads/",
  5853. "license": [
  5854. "MIT"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "Nicolas Grekas",
  5859. "email": "p@tchwork.com"
  5860. },
  5861. {
  5862. "name": "Symfony Community",
  5863. "homepage": "https://symfony.com/contributors"
  5864. }
  5865. ],
  5866. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5867. "homepage": "https://symfony.com",
  5868. "keywords": [
  5869. "compatibility",
  5870. "polyfill",
  5871. "portable",
  5872. "shim"
  5873. ],
  5874. "support": {
  5875. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2022-11-03T14:55:06+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/polyfill-php80",
  5895. "version": "v1.27.0",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/polyfill-php80.git",
  5899. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5904. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=7.1"
  5909. },
  5910. "type": "library",
  5911. "extra": {
  5912. "branch-alias": {
  5913. "dev-main": "1.27-dev"
  5914. },
  5915. "thanks": {
  5916. "name": "symfony/polyfill",
  5917. "url": "https://github.com/symfony/polyfill"
  5918. }
  5919. },
  5920. "autoload": {
  5921. "files": [
  5922. "bootstrap.php"
  5923. ],
  5924. "psr-4": {
  5925. "Symfony\\Polyfill\\Php80\\": ""
  5926. },
  5927. "classmap": [
  5928. "Resources/stubs"
  5929. ]
  5930. },
  5931. "notification-url": "https://packagist.org/downloads/",
  5932. "license": [
  5933. "MIT"
  5934. ],
  5935. "authors": [
  5936. {
  5937. "name": "Ion Bazan",
  5938. "email": "ion.bazan@gmail.com"
  5939. },
  5940. {
  5941. "name": "Nicolas Grekas",
  5942. "email": "p@tchwork.com"
  5943. },
  5944. {
  5945. "name": "Symfony Community",
  5946. "homepage": "https://symfony.com/contributors"
  5947. }
  5948. ],
  5949. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5950. "homepage": "https://symfony.com",
  5951. "keywords": [
  5952. "compatibility",
  5953. "polyfill",
  5954. "portable",
  5955. "shim"
  5956. ],
  5957. "support": {
  5958. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5959. },
  5960. "funding": [
  5961. {
  5962. "url": "https://symfony.com/sponsor",
  5963. "type": "custom"
  5964. },
  5965. {
  5966. "url": "https://github.com/fabpot",
  5967. "type": "github"
  5968. },
  5969. {
  5970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5971. "type": "tidelift"
  5972. }
  5973. ],
  5974. "time": "2022-11-03T14:55:06+00:00"
  5975. },
  5976. {
  5977. "name": "symfony/process",
  5978. "version": "v6.1.3",
  5979. "source": {
  5980. "type": "git",
  5981. "url": "https://github.com/symfony/process.git",
  5982. "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292"
  5983. },
  5984. "dist": {
  5985. "type": "zip",
  5986. "url": "https://api.github.com/repos/symfony/process/zipball/a6506e99cfad7059b1ab5cab395854a0a0c21292",
  5987. "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292",
  5988. "shasum": ""
  5989. },
  5990. "require": {
  5991. "php": ">=8.1"
  5992. },
  5993. "type": "library",
  5994. "autoload": {
  5995. "psr-4": {
  5996. "Symfony\\Component\\Process\\": ""
  5997. },
  5998. "exclude-from-classmap": [
  5999. "/Tests/"
  6000. ]
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Fabien Potencier",
  6009. "email": "fabien@symfony.com"
  6010. },
  6011. {
  6012. "name": "Symfony Community",
  6013. "homepage": "https://symfony.com/contributors"
  6014. }
  6015. ],
  6016. "description": "Executes commands in sub-processes",
  6017. "homepage": "https://symfony.com",
  6018. "support": {
  6019. "source": "https://github.com/symfony/process/tree/v6.1.3"
  6020. },
  6021. "funding": [
  6022. {
  6023. "url": "https://symfony.com/sponsor",
  6024. "type": "custom"
  6025. },
  6026. {
  6027. "url": "https://github.com/fabpot",
  6028. "type": "github"
  6029. },
  6030. {
  6031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6032. "type": "tidelift"
  6033. }
  6034. ],
  6035. "time": "2022-06-27T17:24:16+00:00"
  6036. },
  6037. {
  6038. "name": "symfony/property-access",
  6039. "version": "v6.1.7",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/symfony/property-access.git",
  6043. "reference": "cf034c0d8d25ed285bb8f6c2528ce6fac98563eb"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/symfony/property-access/zipball/cf034c0d8d25ed285bb8f6c2528ce6fac98563eb",
  6048. "reference": "cf034c0d8d25ed285bb8f6c2528ce6fac98563eb",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=8.1",
  6053. "symfony/property-info": "^5.4|^6.0"
  6054. },
  6055. "require-dev": {
  6056. "symfony/cache": "^5.4|^6.0"
  6057. },
  6058. "suggest": {
  6059. "psr/cache-implementation": "To cache access methods."
  6060. },
  6061. "type": "library",
  6062. "autoload": {
  6063. "psr-4": {
  6064. "Symfony\\Component\\PropertyAccess\\": ""
  6065. },
  6066. "exclude-from-classmap": [
  6067. "/Tests/"
  6068. ]
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "MIT"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Fabien Potencier",
  6077. "email": "fabien@symfony.com"
  6078. },
  6079. {
  6080. "name": "Symfony Community",
  6081. "homepage": "https://symfony.com/contributors"
  6082. }
  6083. ],
  6084. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6085. "homepage": "https://symfony.com",
  6086. "keywords": [
  6087. "access",
  6088. "array",
  6089. "extraction",
  6090. "index",
  6091. "injection",
  6092. "object",
  6093. "property",
  6094. "property path",
  6095. "reflection"
  6096. ],
  6097. "support": {
  6098. "source": "https://github.com/symfony/property-access/tree/v6.1.7"
  6099. },
  6100. "funding": [
  6101. {
  6102. "url": "https://symfony.com/sponsor",
  6103. "type": "custom"
  6104. },
  6105. {
  6106. "url": "https://github.com/fabpot",
  6107. "type": "github"
  6108. },
  6109. {
  6110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6111. "type": "tidelift"
  6112. }
  6113. ],
  6114. "time": "2022-10-28T16:23:08+00:00"
  6115. },
  6116. {
  6117. "name": "symfony/property-info",
  6118. "version": "v6.1.8",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/symfony/property-info.git",
  6122. "reference": "f184c96a22554f5a1c518be4564226283ac89a52"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/symfony/property-info/zipball/f184c96a22554f5a1c518be4564226283ac89a52",
  6127. "reference": "f184c96a22554f5a1c518be4564226283ac89a52",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "php": ">=8.1",
  6132. "symfony/string": "^5.4|^6.0"
  6133. },
  6134. "conflict": {
  6135. "phpdocumentor/reflection-docblock": "<5.2",
  6136. "phpdocumentor/type-resolver": "<1.5.1",
  6137. "symfony/dependency-injection": "<5.4"
  6138. },
  6139. "require-dev": {
  6140. "doctrine/annotations": "^1.10.4",
  6141. "phpdocumentor/reflection-docblock": "^5.2",
  6142. "phpstan/phpdoc-parser": "^1.0",
  6143. "symfony/cache": "^5.4|^6.0",
  6144. "symfony/dependency-injection": "^5.4|^6.0",
  6145. "symfony/serializer": "^5.4|^6.0"
  6146. },
  6147. "suggest": {
  6148. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6149. "psr/cache-implementation": "To cache results",
  6150. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6151. "symfony/serializer": "To use Serializer metadata"
  6152. },
  6153. "type": "library",
  6154. "autoload": {
  6155. "psr-4": {
  6156. "Symfony\\Component\\PropertyInfo\\": ""
  6157. },
  6158. "exclude-from-classmap": [
  6159. "/Tests/"
  6160. ]
  6161. },
  6162. "notification-url": "https://packagist.org/downloads/",
  6163. "license": [
  6164. "MIT"
  6165. ],
  6166. "authors": [
  6167. {
  6168. "name": "Kévin Dunglas",
  6169. "email": "dunglas@gmail.com"
  6170. },
  6171. {
  6172. "name": "Symfony Community",
  6173. "homepage": "https://symfony.com/contributors"
  6174. }
  6175. ],
  6176. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6177. "homepage": "https://symfony.com",
  6178. "keywords": [
  6179. "doctrine",
  6180. "phpdoc",
  6181. "property",
  6182. "symfony",
  6183. "type",
  6184. "validator"
  6185. ],
  6186. "support": {
  6187. "source": "https://github.com/symfony/property-info/tree/v6.1.8"
  6188. },
  6189. "funding": [
  6190. {
  6191. "url": "https://symfony.com/sponsor",
  6192. "type": "custom"
  6193. },
  6194. {
  6195. "url": "https://github.com/fabpot",
  6196. "type": "github"
  6197. },
  6198. {
  6199. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6200. "type": "tidelift"
  6201. }
  6202. ],
  6203. "time": "2022-11-25T07:34:52+00:00"
  6204. },
  6205. {
  6206. "name": "symfony/proxy-manager-bridge",
  6207. "version": "v6.1.0",
  6208. "source": {
  6209. "type": "git",
  6210. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6211. "reference": "bcb3e7a28ee373bd64ecd2a2289a64c5860716af"
  6212. },
  6213. "dist": {
  6214. "type": "zip",
  6215. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/bcb3e7a28ee373bd64ecd2a2289a64c5860716af",
  6216. "reference": "bcb3e7a28ee373bd64ecd2a2289a64c5860716af",
  6217. "shasum": ""
  6218. },
  6219. "require": {
  6220. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6221. "php": ">=8.1",
  6222. "symfony/dependency-injection": "^5.4|^6.0"
  6223. },
  6224. "require-dev": {
  6225. "symfony/config": "^5.4|^6.0"
  6226. },
  6227. "type": "symfony-bridge",
  6228. "autoload": {
  6229. "psr-4": {
  6230. "Symfony\\Bridge\\ProxyManager\\": ""
  6231. },
  6232. "exclude-from-classmap": [
  6233. "/Tests/"
  6234. ]
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Fabien Potencier",
  6243. "email": "fabien@symfony.com"
  6244. },
  6245. {
  6246. "name": "Symfony Community",
  6247. "homepage": "https://symfony.com/contributors"
  6248. }
  6249. ],
  6250. "description": "Provides integration for ProxyManager with various Symfony components",
  6251. "homepage": "https://symfony.com",
  6252. "support": {
  6253. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.1.0"
  6254. },
  6255. "funding": [
  6256. {
  6257. "url": "https://symfony.com/sponsor",
  6258. "type": "custom"
  6259. },
  6260. {
  6261. "url": "https://github.com/fabpot",
  6262. "type": "github"
  6263. },
  6264. {
  6265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6266. "type": "tidelift"
  6267. }
  6268. ],
  6269. "time": "2022-03-02T13:21:45+00:00"
  6270. },
  6271. {
  6272. "name": "symfony/routing",
  6273. "version": "v6.1.7",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/symfony/routing.git",
  6277. "reference": "95effeb9d6e2cec861cee06bf5bbf82d09aea7f5"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/symfony/routing/zipball/95effeb9d6e2cec861cee06bf5bbf82d09aea7f5",
  6282. "reference": "95effeb9d6e2cec861cee06bf5bbf82d09aea7f5",
  6283. "shasum": ""
  6284. },
  6285. "require": {
  6286. "php": ">=8.1"
  6287. },
  6288. "conflict": {
  6289. "doctrine/annotations": "<1.12",
  6290. "symfony/config": "<5.4",
  6291. "symfony/dependency-injection": "<5.4",
  6292. "symfony/yaml": "<5.4"
  6293. },
  6294. "require-dev": {
  6295. "doctrine/annotations": "^1.12",
  6296. "psr/log": "^1|^2|^3",
  6297. "symfony/config": "^5.4|^6.0",
  6298. "symfony/dependency-injection": "^5.4|^6.0",
  6299. "symfony/expression-language": "^5.4|^6.0",
  6300. "symfony/http-foundation": "^5.4|^6.0",
  6301. "symfony/yaml": "^5.4|^6.0"
  6302. },
  6303. "suggest": {
  6304. "symfony/config": "For using the all-in-one router or any loader",
  6305. "symfony/expression-language": "For using expression matching",
  6306. "symfony/http-foundation": "For using a Symfony Request object",
  6307. "symfony/yaml": "For using the YAML loader"
  6308. },
  6309. "type": "library",
  6310. "autoload": {
  6311. "psr-4": {
  6312. "Symfony\\Component\\Routing\\": ""
  6313. },
  6314. "exclude-from-classmap": [
  6315. "/Tests/"
  6316. ]
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "license": [
  6320. "MIT"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Fabien Potencier",
  6325. "email": "fabien@symfony.com"
  6326. },
  6327. {
  6328. "name": "Symfony Community",
  6329. "homepage": "https://symfony.com/contributors"
  6330. }
  6331. ],
  6332. "description": "Maps an HTTP request to a set of configuration variables",
  6333. "homepage": "https://symfony.com",
  6334. "keywords": [
  6335. "router",
  6336. "routing",
  6337. "uri",
  6338. "url"
  6339. ],
  6340. "support": {
  6341. "source": "https://github.com/symfony/routing/tree/v6.1.7"
  6342. },
  6343. "funding": [
  6344. {
  6345. "url": "https://symfony.com/sponsor",
  6346. "type": "custom"
  6347. },
  6348. {
  6349. "url": "https://github.com/fabpot",
  6350. "type": "github"
  6351. },
  6352. {
  6353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6354. "type": "tidelift"
  6355. }
  6356. ],
  6357. "time": "2022-10-18T13:12:43+00:00"
  6358. },
  6359. {
  6360. "name": "symfony/runtime",
  6361. "version": "v6.1.3",
  6362. "source": {
  6363. "type": "git",
  6364. "url": "https://github.com/symfony/runtime.git",
  6365. "reference": "e5d4d848656cbb1812d5f911b1bdec205c6e2fac"
  6366. },
  6367. "dist": {
  6368. "type": "zip",
  6369. "url": "https://api.github.com/repos/symfony/runtime/zipball/e5d4d848656cbb1812d5f911b1bdec205c6e2fac",
  6370. "reference": "e5d4d848656cbb1812d5f911b1bdec205c6e2fac",
  6371. "shasum": ""
  6372. },
  6373. "require": {
  6374. "composer-plugin-api": "^1.0|^2.0",
  6375. "php": ">=8.1"
  6376. },
  6377. "conflict": {
  6378. "symfony/dotenv": "<5.4"
  6379. },
  6380. "require-dev": {
  6381. "composer/composer": "^1.0.2|^2.0",
  6382. "symfony/console": "^5.4|^6.0",
  6383. "symfony/dotenv": "^5.4|^6.0",
  6384. "symfony/http-foundation": "^5.4|^6.0",
  6385. "symfony/http-kernel": "^5.4|^6.0"
  6386. },
  6387. "type": "composer-plugin",
  6388. "extra": {
  6389. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6390. },
  6391. "autoload": {
  6392. "psr-4": {
  6393. "Symfony\\Component\\Runtime\\": "",
  6394. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6395. },
  6396. "exclude-from-classmap": [
  6397. "/Tests/"
  6398. ]
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "MIT"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Nicolas Grekas",
  6407. "email": "p@tchwork.com"
  6408. },
  6409. {
  6410. "name": "Symfony Community",
  6411. "homepage": "https://symfony.com/contributors"
  6412. }
  6413. ],
  6414. "description": "Enables decoupling PHP applications from global state",
  6415. "homepage": "https://symfony.com",
  6416. "support": {
  6417. "source": "https://github.com/symfony/runtime/tree/v6.1.3"
  6418. },
  6419. "funding": [
  6420. {
  6421. "url": "https://symfony.com/sponsor",
  6422. "type": "custom"
  6423. },
  6424. {
  6425. "url": "https://github.com/fabpot",
  6426. "type": "github"
  6427. },
  6428. {
  6429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6430. "type": "tidelift"
  6431. }
  6432. ],
  6433. "time": "2022-06-27T17:24:16+00:00"
  6434. },
  6435. {
  6436. "name": "symfony/security-bundle",
  6437. "version": "v6.1.3",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/symfony/security-bundle.git",
  6441. "reference": "1410129e36e5d0cf4bde73f4ed5d9e18acff06b3"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/1410129e36e5d0cf4bde73f4ed5d9e18acff06b3",
  6446. "reference": "1410129e36e5d0cf4bde73f4ed5d9e18acff06b3",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "composer-runtime-api": ">=2.1",
  6451. "ext-xml": "*",
  6452. "php": ">=8.1",
  6453. "symfony/config": "^5.4|^6.0",
  6454. "symfony/dependency-injection": "^5.4|^6.0",
  6455. "symfony/event-dispatcher": "^5.4|^6.0",
  6456. "symfony/http-foundation": "^5.4|^6.0",
  6457. "symfony/http-kernel": "^5.4|^6.0",
  6458. "symfony/password-hasher": "^5.4|^6.0",
  6459. "symfony/security-core": "^5.4|^6.0",
  6460. "symfony/security-csrf": "^5.4|^6.0",
  6461. "symfony/security-http": "^5.4|^6.0"
  6462. },
  6463. "conflict": {
  6464. "symfony/browser-kit": "<5.4",
  6465. "symfony/console": "<5.4",
  6466. "symfony/framework-bundle": "<5.4",
  6467. "symfony/ldap": "<5.4",
  6468. "symfony/twig-bundle": "<5.4"
  6469. },
  6470. "require-dev": {
  6471. "doctrine/annotations": "^1.10.4",
  6472. "symfony/asset": "^5.4|^6.0",
  6473. "symfony/browser-kit": "^5.4|^6.0",
  6474. "symfony/console": "^5.4|^6.0",
  6475. "symfony/css-selector": "^5.4|^6.0",
  6476. "symfony/dom-crawler": "^5.4|^6.0",
  6477. "symfony/expression-language": "^5.4|^6.0",
  6478. "symfony/form": "^5.4|^6.0",
  6479. "symfony/framework-bundle": "^5.4|^6.0",
  6480. "symfony/ldap": "^5.4|^6.0",
  6481. "symfony/process": "^5.4|^6.0",
  6482. "symfony/rate-limiter": "^5.4|^6.0",
  6483. "symfony/serializer": "^5.4|^6.0",
  6484. "symfony/translation": "^5.4|^6.0",
  6485. "symfony/twig-bridge": "^5.4|^6.0",
  6486. "symfony/twig-bundle": "^5.4|^6.0",
  6487. "symfony/validator": "^5.4|^6.0",
  6488. "symfony/yaml": "^5.4|^6.0",
  6489. "twig/twig": "^2.13|^3.0.4"
  6490. },
  6491. "type": "symfony-bundle",
  6492. "autoload": {
  6493. "psr-4": {
  6494. "Symfony\\Bundle\\SecurityBundle\\": ""
  6495. },
  6496. "exclude-from-classmap": [
  6497. "/Tests/"
  6498. ]
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "MIT"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "Fabien Potencier",
  6507. "email": "fabien@symfony.com"
  6508. },
  6509. {
  6510. "name": "Symfony Community",
  6511. "homepage": "https://symfony.com/contributors"
  6512. }
  6513. ],
  6514. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6515. "homepage": "https://symfony.com",
  6516. "support": {
  6517. "source": "https://github.com/symfony/security-bundle/tree/v6.1.3"
  6518. },
  6519. "funding": [
  6520. {
  6521. "url": "https://symfony.com/sponsor",
  6522. "type": "custom"
  6523. },
  6524. {
  6525. "url": "https://github.com/fabpot",
  6526. "type": "github"
  6527. },
  6528. {
  6529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6530. "type": "tidelift"
  6531. }
  6532. ],
  6533. "time": "2022-07-20T13:46:29+00:00"
  6534. },
  6535. {
  6536. "name": "symfony/security-core",
  6537. "version": "v6.1.7",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/symfony/security-core.git",
  6541. "reference": "c84ff026d6fa3cf9cb54cca762f14b6a449fa557"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/symfony/security-core/zipball/c84ff026d6fa3cf9cb54cca762f14b6a449fa557",
  6546. "reference": "c84ff026d6fa3cf9cb54cca762f14b6a449fa557",
  6547. "shasum": ""
  6548. },
  6549. "require": {
  6550. "php": ">=8.1",
  6551. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  6552. "symfony/password-hasher": "^5.4|^6.0",
  6553. "symfony/service-contracts": "^1.1.6|^2|^3"
  6554. },
  6555. "conflict": {
  6556. "symfony/event-dispatcher": "<5.4",
  6557. "symfony/http-foundation": "<5.4",
  6558. "symfony/ldap": "<5.4",
  6559. "symfony/security-guard": "<5.4",
  6560. "symfony/validator": "<5.4"
  6561. },
  6562. "require-dev": {
  6563. "psr/cache": "^1.0|^2.0|^3.0",
  6564. "psr/container": "^1.1|^2.0",
  6565. "psr/log": "^1|^2|^3",
  6566. "symfony/cache": "^5.4|^6.0",
  6567. "symfony/event-dispatcher": "^5.4|^6.0",
  6568. "symfony/expression-language": "^5.4|^6.0",
  6569. "symfony/http-foundation": "^5.4|^6.0",
  6570. "symfony/ldap": "^5.4|^6.0",
  6571. "symfony/translation": "^5.4|^6.0",
  6572. "symfony/validator": "^5.4|^6.0"
  6573. },
  6574. "suggest": {
  6575. "psr/container-implementation": "To instantiate the Security class",
  6576. "symfony/event-dispatcher": "",
  6577. "symfony/expression-language": "For using the expression voter",
  6578. "symfony/http-foundation": "",
  6579. "symfony/ldap": "For using LDAP integration",
  6580. "symfony/validator": "For using the user password constraint"
  6581. },
  6582. "type": "library",
  6583. "autoload": {
  6584. "psr-4": {
  6585. "Symfony\\Component\\Security\\Core\\": ""
  6586. },
  6587. "exclude-from-classmap": [
  6588. "/Tests/"
  6589. ]
  6590. },
  6591. "notification-url": "https://packagist.org/downloads/",
  6592. "license": [
  6593. "MIT"
  6594. ],
  6595. "authors": [
  6596. {
  6597. "name": "Fabien Potencier",
  6598. "email": "fabien@symfony.com"
  6599. },
  6600. {
  6601. "name": "Symfony Community",
  6602. "homepage": "https://symfony.com/contributors"
  6603. }
  6604. ],
  6605. "description": "Symfony Security Component - Core Library",
  6606. "homepage": "https://symfony.com",
  6607. "support": {
  6608. "source": "https://github.com/symfony/security-core/tree/v6.1.7"
  6609. },
  6610. "funding": [
  6611. {
  6612. "url": "https://symfony.com/sponsor",
  6613. "type": "custom"
  6614. },
  6615. {
  6616. "url": "https://github.com/fabpot",
  6617. "type": "github"
  6618. },
  6619. {
  6620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6621. "type": "tidelift"
  6622. }
  6623. ],
  6624. "time": "2022-10-23T10:33:34+00:00"
  6625. },
  6626. {
  6627. "name": "symfony/security-csrf",
  6628. "version": "v6.1.0",
  6629. "source": {
  6630. "type": "git",
  6631. "url": "https://github.com/symfony/security-csrf.git",
  6632. "reference": "b44d74295a5651298de8c2760ba50bef3b97f34b"
  6633. },
  6634. "dist": {
  6635. "type": "zip",
  6636. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b44d74295a5651298de8c2760ba50bef3b97f34b",
  6637. "reference": "b44d74295a5651298de8c2760ba50bef3b97f34b",
  6638. "shasum": ""
  6639. },
  6640. "require": {
  6641. "php": ">=8.1",
  6642. "symfony/security-core": "^5.4|^6.0"
  6643. },
  6644. "conflict": {
  6645. "symfony/http-foundation": "<5.4"
  6646. },
  6647. "require-dev": {
  6648. "symfony/http-foundation": "^5.4|^6.0"
  6649. },
  6650. "suggest": {
  6651. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6652. },
  6653. "type": "library",
  6654. "autoload": {
  6655. "psr-4": {
  6656. "Symfony\\Component\\Security\\Csrf\\": ""
  6657. },
  6658. "exclude-from-classmap": [
  6659. "/Tests/"
  6660. ]
  6661. },
  6662. "notification-url": "https://packagist.org/downloads/",
  6663. "license": [
  6664. "MIT"
  6665. ],
  6666. "authors": [
  6667. {
  6668. "name": "Fabien Potencier",
  6669. "email": "fabien@symfony.com"
  6670. },
  6671. {
  6672. "name": "Symfony Community",
  6673. "homepage": "https://symfony.com/contributors"
  6674. }
  6675. ],
  6676. "description": "Symfony Security Component - CSRF Library",
  6677. "homepage": "https://symfony.com",
  6678. "support": {
  6679. "source": "https://github.com/symfony/security-csrf/tree/v6.1.0"
  6680. },
  6681. "funding": [
  6682. {
  6683. "url": "https://symfony.com/sponsor",
  6684. "type": "custom"
  6685. },
  6686. {
  6687. "url": "https://github.com/fabpot",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6692. "type": "tidelift"
  6693. }
  6694. ],
  6695. "time": "2022-05-14T12:53:54+00:00"
  6696. },
  6697. {
  6698. "name": "symfony/security-http",
  6699. "version": "v6.1.7",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/symfony/security-http.git",
  6703. "reference": "931b037cfd98e3f8c06a311e9c04abc9ee010ab9"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/symfony/security-http/zipball/931b037cfd98e3f8c06a311e9c04abc9ee010ab9",
  6708. "reference": "931b037cfd98e3f8c06a311e9c04abc9ee010ab9",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "php": ">=8.1",
  6713. "symfony/http-foundation": "^5.4|^6.0",
  6714. "symfony/http-kernel": "^6.1",
  6715. "symfony/polyfill-mbstring": "~1.0",
  6716. "symfony/property-access": "^5.4|^6.0",
  6717. "symfony/security-core": "^5.4.7|^6.0"
  6718. },
  6719. "conflict": {
  6720. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6721. "symfony/security-bundle": "<5.4",
  6722. "symfony/security-csrf": "<5.4"
  6723. },
  6724. "require-dev": {
  6725. "psr/log": "^1|^2|^3",
  6726. "symfony/cache": "^5.4|^6.0",
  6727. "symfony/rate-limiter": "^5.4|^6.0",
  6728. "symfony/routing": "^5.4|^6.0",
  6729. "symfony/security-csrf": "^5.4|^6.0",
  6730. "symfony/translation": "^5.4|^6.0"
  6731. },
  6732. "suggest": {
  6733. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6734. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6735. },
  6736. "type": "library",
  6737. "autoload": {
  6738. "psr-4": {
  6739. "Symfony\\Component\\Security\\Http\\": ""
  6740. },
  6741. "exclude-from-classmap": [
  6742. "/Tests/"
  6743. ]
  6744. },
  6745. "notification-url": "https://packagist.org/downloads/",
  6746. "license": [
  6747. "MIT"
  6748. ],
  6749. "authors": [
  6750. {
  6751. "name": "Fabien Potencier",
  6752. "email": "fabien@symfony.com"
  6753. },
  6754. {
  6755. "name": "Symfony Community",
  6756. "homepage": "https://symfony.com/contributors"
  6757. }
  6758. ],
  6759. "description": "Symfony Security Component - HTTP Integration",
  6760. "homepage": "https://symfony.com",
  6761. "support": {
  6762. "source": "https://github.com/symfony/security-http/tree/v6.1.7"
  6763. },
  6764. "funding": [
  6765. {
  6766. "url": "https://symfony.com/sponsor",
  6767. "type": "custom"
  6768. },
  6769. {
  6770. "url": "https://github.com/fabpot",
  6771. "type": "github"
  6772. },
  6773. {
  6774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6775. "type": "tidelift"
  6776. }
  6777. ],
  6778. "time": "2022-10-23T10:33:34+00:00"
  6779. },
  6780. {
  6781. "name": "symfony/serializer",
  6782. "version": "v6.1.6",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/symfony/serializer.git",
  6786. "reference": "76af774da9daf606d6400f1445b69d23efa3b238"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/symfony/serializer/zipball/76af774da9daf606d6400f1445b69d23efa3b238",
  6791. "reference": "76af774da9daf606d6400f1445b69d23efa3b238",
  6792. "shasum": ""
  6793. },
  6794. "require": {
  6795. "php": ">=8.1",
  6796. "symfony/polyfill-ctype": "~1.8"
  6797. },
  6798. "conflict": {
  6799. "doctrine/annotations": "<1.12",
  6800. "phpdocumentor/reflection-docblock": "<3.2.2",
  6801. "phpdocumentor/type-resolver": "<1.4.0",
  6802. "symfony/dependency-injection": "<5.4",
  6803. "symfony/property-access": "<5.4",
  6804. "symfony/property-info": "<5.4",
  6805. "symfony/uid": "<5.4",
  6806. "symfony/yaml": "<5.4"
  6807. },
  6808. "require-dev": {
  6809. "doctrine/annotations": "^1.12",
  6810. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6811. "symfony/cache": "^5.4|^6.0",
  6812. "symfony/config": "^5.4|^6.0",
  6813. "symfony/dependency-injection": "^5.4|^6.0",
  6814. "symfony/error-handler": "^5.4|^6.0",
  6815. "symfony/filesystem": "^5.4|^6.0",
  6816. "symfony/form": "^5.4|^6.0",
  6817. "symfony/http-foundation": "^5.4|^6.0",
  6818. "symfony/http-kernel": "^5.4|^6.0",
  6819. "symfony/mime": "^5.4|^6.0",
  6820. "symfony/property-access": "^5.4|^6.0",
  6821. "symfony/property-info": "^5.4|^6.0",
  6822. "symfony/uid": "^5.4|^6.0",
  6823. "symfony/validator": "^5.4|^6.0",
  6824. "symfony/var-dumper": "^5.4|^6.0",
  6825. "symfony/var-exporter": "^5.4|^6.0",
  6826. "symfony/yaml": "^5.4|^6.0"
  6827. },
  6828. "suggest": {
  6829. "psr/cache-implementation": "For using the metadata cache.",
  6830. "symfony/config": "For using the XML mapping loader.",
  6831. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6832. "symfony/property-access": "For using the ObjectNormalizer.",
  6833. "symfony/property-info": "To deserialize relations.",
  6834. "symfony/var-exporter": "For using the metadata compiler.",
  6835. "symfony/yaml": "For using the default YAML mapping loader."
  6836. },
  6837. "type": "library",
  6838. "autoload": {
  6839. "psr-4": {
  6840. "Symfony\\Component\\Serializer\\": ""
  6841. },
  6842. "exclude-from-classmap": [
  6843. "/Tests/"
  6844. ]
  6845. },
  6846. "notification-url": "https://packagist.org/downloads/",
  6847. "license": [
  6848. "MIT"
  6849. ],
  6850. "authors": [
  6851. {
  6852. "name": "Fabien Potencier",
  6853. "email": "fabien@symfony.com"
  6854. },
  6855. {
  6856. "name": "Symfony Community",
  6857. "homepage": "https://symfony.com/contributors"
  6858. }
  6859. ],
  6860. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6861. "homepage": "https://symfony.com",
  6862. "support": {
  6863. "source": "https://github.com/symfony/serializer/tree/v6.1.6"
  6864. },
  6865. "funding": [
  6866. {
  6867. "url": "https://symfony.com/sponsor",
  6868. "type": "custom"
  6869. },
  6870. {
  6871. "url": "https://github.com/fabpot",
  6872. "type": "github"
  6873. },
  6874. {
  6875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6876. "type": "tidelift"
  6877. }
  6878. ],
  6879. "time": "2022-10-12T05:10:31+00:00"
  6880. },
  6881. {
  6882. "name": "symfony/service-contracts",
  6883. "version": "v3.2.0",
  6884. "source": {
  6885. "type": "git",
  6886. "url": "https://github.com/symfony/service-contracts.git",
  6887. "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75"
  6888. },
  6889. "dist": {
  6890. "type": "zip",
  6891. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/aac98028c69df04ee77eb69b96b86ee51fbf4b75",
  6892. "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75",
  6893. "shasum": ""
  6894. },
  6895. "require": {
  6896. "php": ">=8.1",
  6897. "psr/container": "^2.0"
  6898. },
  6899. "conflict": {
  6900. "ext-psr": "<1.1|>=2"
  6901. },
  6902. "suggest": {
  6903. "symfony/service-implementation": ""
  6904. },
  6905. "type": "library",
  6906. "extra": {
  6907. "branch-alias": {
  6908. "dev-main": "3.3-dev"
  6909. },
  6910. "thanks": {
  6911. "name": "symfony/contracts",
  6912. "url": "https://github.com/symfony/contracts"
  6913. }
  6914. },
  6915. "autoload": {
  6916. "psr-4": {
  6917. "Symfony\\Contracts\\Service\\": ""
  6918. },
  6919. "exclude-from-classmap": [
  6920. "/Test/"
  6921. ]
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "MIT"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Nicolas Grekas",
  6930. "email": "p@tchwork.com"
  6931. },
  6932. {
  6933. "name": "Symfony Community",
  6934. "homepage": "https://symfony.com/contributors"
  6935. }
  6936. ],
  6937. "description": "Generic abstractions related to writing services",
  6938. "homepage": "https://symfony.com",
  6939. "keywords": [
  6940. "abstractions",
  6941. "contracts",
  6942. "decoupling",
  6943. "interfaces",
  6944. "interoperability",
  6945. "standards"
  6946. ],
  6947. "support": {
  6948. "source": "https://github.com/symfony/service-contracts/tree/v3.2.0"
  6949. },
  6950. "funding": [
  6951. {
  6952. "url": "https://symfony.com/sponsor",
  6953. "type": "custom"
  6954. },
  6955. {
  6956. "url": "https://github.com/fabpot",
  6957. "type": "github"
  6958. },
  6959. {
  6960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6961. "type": "tidelift"
  6962. }
  6963. ],
  6964. "time": "2022-11-25T10:21:52+00:00"
  6965. },
  6966. {
  6967. "name": "symfony/stopwatch",
  6968. "version": "v6.1.5",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/symfony/stopwatch.git",
  6972. "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/266636bb8f3fbdccc302491df7b3a1b9a8c238a7",
  6977. "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7",
  6978. "shasum": ""
  6979. },
  6980. "require": {
  6981. "php": ">=8.1",
  6982. "symfony/service-contracts": "^1|^2|^3"
  6983. },
  6984. "type": "library",
  6985. "autoload": {
  6986. "psr-4": {
  6987. "Symfony\\Component\\Stopwatch\\": ""
  6988. },
  6989. "exclude-from-classmap": [
  6990. "/Tests/"
  6991. ]
  6992. },
  6993. "notification-url": "https://packagist.org/downloads/",
  6994. "license": [
  6995. "MIT"
  6996. ],
  6997. "authors": [
  6998. {
  6999. "name": "Fabien Potencier",
  7000. "email": "fabien@symfony.com"
  7001. },
  7002. {
  7003. "name": "Symfony Community",
  7004. "homepage": "https://symfony.com/contributors"
  7005. }
  7006. ],
  7007. "description": "Provides a way to profile code",
  7008. "homepage": "https://symfony.com",
  7009. "support": {
  7010. "source": "https://github.com/symfony/stopwatch/tree/v6.1.5"
  7011. },
  7012. "funding": [
  7013. {
  7014. "url": "https://symfony.com/sponsor",
  7015. "type": "custom"
  7016. },
  7017. {
  7018. "url": "https://github.com/fabpot",
  7019. "type": "github"
  7020. },
  7021. {
  7022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7023. "type": "tidelift"
  7024. }
  7025. ],
  7026. "time": "2022-09-28T16:00:52+00:00"
  7027. },
  7028. {
  7029. "name": "symfony/string",
  7030. "version": "v6.1.7",
  7031. "source": {
  7032. "type": "git",
  7033. "url": "https://github.com/symfony/string.git",
  7034. "reference": "823f143370880efcbdfa2dbca946b3358c4707e5"
  7035. },
  7036. "dist": {
  7037. "type": "zip",
  7038. "url": "https://api.github.com/repos/symfony/string/zipball/823f143370880efcbdfa2dbca946b3358c4707e5",
  7039. "reference": "823f143370880efcbdfa2dbca946b3358c4707e5",
  7040. "shasum": ""
  7041. },
  7042. "require": {
  7043. "php": ">=8.1",
  7044. "symfony/polyfill-ctype": "~1.8",
  7045. "symfony/polyfill-intl-grapheme": "~1.0",
  7046. "symfony/polyfill-intl-normalizer": "~1.0",
  7047. "symfony/polyfill-mbstring": "~1.0"
  7048. },
  7049. "conflict": {
  7050. "symfony/translation-contracts": "<2.0"
  7051. },
  7052. "require-dev": {
  7053. "symfony/error-handler": "^5.4|^6.0",
  7054. "symfony/http-client": "^5.4|^6.0",
  7055. "symfony/translation-contracts": "^2.0|^3.0",
  7056. "symfony/var-exporter": "^5.4|^6.0"
  7057. },
  7058. "type": "library",
  7059. "autoload": {
  7060. "files": [
  7061. "Resources/functions.php"
  7062. ],
  7063. "psr-4": {
  7064. "Symfony\\Component\\String\\": ""
  7065. },
  7066. "exclude-from-classmap": [
  7067. "/Tests/"
  7068. ]
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "MIT"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Nicolas Grekas",
  7077. "email": "p@tchwork.com"
  7078. },
  7079. {
  7080. "name": "Symfony Community",
  7081. "homepage": "https://symfony.com/contributors"
  7082. }
  7083. ],
  7084. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7085. "homepage": "https://symfony.com",
  7086. "keywords": [
  7087. "grapheme",
  7088. "i18n",
  7089. "string",
  7090. "unicode",
  7091. "utf-8",
  7092. "utf8"
  7093. ],
  7094. "support": {
  7095. "source": "https://github.com/symfony/string/tree/v6.1.7"
  7096. },
  7097. "funding": [
  7098. {
  7099. "url": "https://symfony.com/sponsor",
  7100. "type": "custom"
  7101. },
  7102. {
  7103. "url": "https://github.com/fabpot",
  7104. "type": "github"
  7105. },
  7106. {
  7107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7108. "type": "tidelift"
  7109. }
  7110. ],
  7111. "time": "2022-10-10T09:34:31+00:00"
  7112. },
  7113. {
  7114. "name": "symfony/translation",
  7115. "version": "v6.1.6",
  7116. "source": {
  7117. "type": "git",
  7118. "url": "https://github.com/symfony/translation.git",
  7119. "reference": "e6cd330e5a072518f88d65148f3f165541807494"
  7120. },
  7121. "dist": {
  7122. "type": "zip",
  7123. "url": "https://api.github.com/repos/symfony/translation/zipball/e6cd330e5a072518f88d65148f3f165541807494",
  7124. "reference": "e6cd330e5a072518f88d65148f3f165541807494",
  7125. "shasum": ""
  7126. },
  7127. "require": {
  7128. "php": ">=8.1",
  7129. "symfony/polyfill-mbstring": "~1.0",
  7130. "symfony/translation-contracts": "^2.3|^3.0"
  7131. },
  7132. "conflict": {
  7133. "symfony/config": "<5.4",
  7134. "symfony/console": "<5.4",
  7135. "symfony/dependency-injection": "<5.4",
  7136. "symfony/http-kernel": "<5.4",
  7137. "symfony/twig-bundle": "<5.4",
  7138. "symfony/yaml": "<5.4"
  7139. },
  7140. "provide": {
  7141. "symfony/translation-implementation": "2.3|3.0"
  7142. },
  7143. "require-dev": {
  7144. "psr/log": "^1|^2|^3",
  7145. "symfony/config": "^5.4|^6.0",
  7146. "symfony/console": "^5.4|^6.0",
  7147. "symfony/dependency-injection": "^5.4|^6.0",
  7148. "symfony/finder": "^5.4|^6.0",
  7149. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7150. "symfony/http-kernel": "^5.4|^6.0",
  7151. "symfony/intl": "^5.4|^6.0",
  7152. "symfony/polyfill-intl-icu": "^1.21",
  7153. "symfony/routing": "^5.4|^6.0",
  7154. "symfony/service-contracts": "^1.1.2|^2|^3",
  7155. "symfony/yaml": "^5.4|^6.0"
  7156. },
  7157. "suggest": {
  7158. "psr/log-implementation": "To use logging capability in translator",
  7159. "symfony/config": "",
  7160. "symfony/yaml": ""
  7161. },
  7162. "type": "library",
  7163. "autoload": {
  7164. "files": [
  7165. "Resources/functions.php"
  7166. ],
  7167. "psr-4": {
  7168. "Symfony\\Component\\Translation\\": ""
  7169. },
  7170. "exclude-from-classmap": [
  7171. "/Tests/"
  7172. ]
  7173. },
  7174. "notification-url": "https://packagist.org/downloads/",
  7175. "license": [
  7176. "MIT"
  7177. ],
  7178. "authors": [
  7179. {
  7180. "name": "Fabien Potencier",
  7181. "email": "fabien@symfony.com"
  7182. },
  7183. {
  7184. "name": "Symfony Community",
  7185. "homepage": "https://symfony.com/contributors"
  7186. }
  7187. ],
  7188. "description": "Provides tools to internationalize your application",
  7189. "homepage": "https://symfony.com",
  7190. "support": {
  7191. "source": "https://github.com/symfony/translation/tree/v6.1.6"
  7192. },
  7193. "funding": [
  7194. {
  7195. "url": "https://symfony.com/sponsor",
  7196. "type": "custom"
  7197. },
  7198. {
  7199. "url": "https://github.com/fabpot",
  7200. "type": "github"
  7201. },
  7202. {
  7203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7204. "type": "tidelift"
  7205. }
  7206. ],
  7207. "time": "2022-10-07T08:04:03+00:00"
  7208. },
  7209. {
  7210. "name": "symfony/translation-contracts",
  7211. "version": "v3.2.0",
  7212. "source": {
  7213. "type": "git",
  7214. "url": "https://github.com/symfony/translation-contracts.git",
  7215. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
  7216. },
  7217. "dist": {
  7218. "type": "zip",
  7219. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
  7220. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
  7221. "shasum": ""
  7222. },
  7223. "require": {
  7224. "php": ">=8.1"
  7225. },
  7226. "suggest": {
  7227. "symfony/translation-implementation": ""
  7228. },
  7229. "type": "library",
  7230. "extra": {
  7231. "branch-alias": {
  7232. "dev-main": "3.3-dev"
  7233. },
  7234. "thanks": {
  7235. "name": "symfony/contracts",
  7236. "url": "https://github.com/symfony/contracts"
  7237. }
  7238. },
  7239. "autoload": {
  7240. "psr-4": {
  7241. "Symfony\\Contracts\\Translation\\": ""
  7242. },
  7243. "exclude-from-classmap": [
  7244. "/Test/"
  7245. ]
  7246. },
  7247. "notification-url": "https://packagist.org/downloads/",
  7248. "license": [
  7249. "MIT"
  7250. ],
  7251. "authors": [
  7252. {
  7253. "name": "Nicolas Grekas",
  7254. "email": "p@tchwork.com"
  7255. },
  7256. {
  7257. "name": "Symfony Community",
  7258. "homepage": "https://symfony.com/contributors"
  7259. }
  7260. ],
  7261. "description": "Generic abstractions related to translation",
  7262. "homepage": "https://symfony.com",
  7263. "keywords": [
  7264. "abstractions",
  7265. "contracts",
  7266. "decoupling",
  7267. "interfaces",
  7268. "interoperability",
  7269. "standards"
  7270. ],
  7271. "support": {
  7272. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
  7273. },
  7274. "funding": [
  7275. {
  7276. "url": "https://symfony.com/sponsor",
  7277. "type": "custom"
  7278. },
  7279. {
  7280. "url": "https://github.com/fabpot",
  7281. "type": "github"
  7282. },
  7283. {
  7284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7285. "type": "tidelift"
  7286. }
  7287. ],
  7288. "time": "2022-11-25T10:21:52+00:00"
  7289. },
  7290. {
  7291. "name": "symfony/twig-bridge",
  7292. "version": "v6.1.8",
  7293. "source": {
  7294. "type": "git",
  7295. "url": "https://github.com/symfony/twig-bridge.git",
  7296. "reference": "fb6ae75a9a4f52fd20a7094d8cb856093b9de8fb"
  7297. },
  7298. "dist": {
  7299. "type": "zip",
  7300. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/fb6ae75a9a4f52fd20a7094d8cb856093b9de8fb",
  7301. "reference": "fb6ae75a9a4f52fd20a7094d8cb856093b9de8fb",
  7302. "shasum": ""
  7303. },
  7304. "require": {
  7305. "php": ">=8.1",
  7306. "symfony/translation-contracts": "^1.1|^2|^3",
  7307. "twig/twig": "^2.13|^3.0.4"
  7308. },
  7309. "conflict": {
  7310. "phpdocumentor/reflection-docblock": "<3.2.2",
  7311. "phpdocumentor/type-resolver": "<1.4.0",
  7312. "symfony/console": "<5.4",
  7313. "symfony/form": "<6.1",
  7314. "symfony/http-foundation": "<5.4",
  7315. "symfony/http-kernel": "<5.4",
  7316. "symfony/translation": "<5.4",
  7317. "symfony/workflow": "<5.4"
  7318. },
  7319. "require-dev": {
  7320. "doctrine/annotations": "^1.12",
  7321. "egulias/email-validator": "^2.1.10|^3",
  7322. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7323. "symfony/asset": "^5.4|^6.0",
  7324. "symfony/console": "^5.4|^6.0",
  7325. "symfony/dependency-injection": "^5.4|^6.0",
  7326. "symfony/expression-language": "^5.4|^6.0",
  7327. "symfony/finder": "^5.4|^6.0",
  7328. "symfony/form": "^6.1",
  7329. "symfony/html-sanitizer": "^6.1",
  7330. "symfony/http-foundation": "^5.4|^6.0",
  7331. "symfony/http-kernel": "^5.4|^6.0",
  7332. "symfony/intl": "^5.4|^6.0",
  7333. "symfony/mime": "^5.4|^6.0",
  7334. "symfony/polyfill-intl-icu": "~1.0",
  7335. "symfony/property-info": "^5.4|^6.0",
  7336. "symfony/routing": "^5.4|^6.0",
  7337. "symfony/security-acl": "^2.8|^3.0",
  7338. "symfony/security-core": "^5.4|^6.0",
  7339. "symfony/security-csrf": "^5.4|^6.0",
  7340. "symfony/security-http": "^5.4|^6.0",
  7341. "symfony/serializer": "^5.4|^6.0",
  7342. "symfony/stopwatch": "^5.4|^6.0",
  7343. "symfony/translation": "^5.4|^6.0",
  7344. "symfony/web-link": "^5.4|^6.0",
  7345. "symfony/workflow": "^5.4|^6.0",
  7346. "symfony/yaml": "^5.4|^6.0",
  7347. "twig/cssinliner-extra": "^2.12|^3",
  7348. "twig/inky-extra": "^2.12|^3",
  7349. "twig/markdown-extra": "^2.12|^3"
  7350. },
  7351. "suggest": {
  7352. "symfony/asset": "For using the AssetExtension",
  7353. "symfony/expression-language": "For using the ExpressionExtension",
  7354. "symfony/finder": "",
  7355. "symfony/form": "For using the FormExtension",
  7356. "symfony/html-sanitizer": "For using the HtmlSanitizerExtension",
  7357. "symfony/http-kernel": "For using the HttpKernelExtension",
  7358. "symfony/routing": "For using the RoutingExtension",
  7359. "symfony/security-core": "For using the SecurityExtension",
  7360. "symfony/security-csrf": "For using the CsrfExtension",
  7361. "symfony/security-http": "For using the LogoutUrlExtension",
  7362. "symfony/stopwatch": "For using the StopwatchExtension",
  7363. "symfony/translation": "For using the TranslationExtension",
  7364. "symfony/var-dumper": "For using the DumpExtension",
  7365. "symfony/web-link": "For using the WebLinkExtension",
  7366. "symfony/yaml": "For using the YamlExtension"
  7367. },
  7368. "type": "symfony-bridge",
  7369. "autoload": {
  7370. "psr-4": {
  7371. "Symfony\\Bridge\\Twig\\": ""
  7372. },
  7373. "exclude-from-classmap": [
  7374. "/Tests/"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Fabien Potencier",
  7384. "email": "fabien@symfony.com"
  7385. },
  7386. {
  7387. "name": "Symfony Community",
  7388. "homepage": "https://symfony.com/contributors"
  7389. }
  7390. ],
  7391. "description": "Provides integration for Twig with various Symfony components",
  7392. "homepage": "https://symfony.com",
  7393. "support": {
  7394. "source": "https://github.com/symfony/twig-bridge/tree/v6.1.8"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2022-11-04T07:40:42+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/twig-bundle",
  7414. "version": "v6.1.1",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/twig-bundle.git",
  7418. "reference": "a2abab10068525a7f5a879e40e411d369d688545"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/a2abab10068525a7f5a879e40e411d369d688545",
  7423. "reference": "a2abab10068525a7f5a879e40e411d369d688545",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "composer-runtime-api": ">=2.1",
  7428. "php": ">=8.1",
  7429. "symfony/config": "^5.4|^6.0",
  7430. "symfony/dependency-injection": "^5.4|^6.0",
  7431. "symfony/http-foundation": "^5.4|^6.0",
  7432. "symfony/http-kernel": "^5.4|^6.0",
  7433. "symfony/polyfill-ctype": "~1.8",
  7434. "symfony/twig-bridge": "^5.4|^6.0",
  7435. "twig/twig": "^2.13|^3.0.4"
  7436. },
  7437. "conflict": {
  7438. "symfony/framework-bundle": "<5.4",
  7439. "symfony/translation": "<5.4"
  7440. },
  7441. "require-dev": {
  7442. "doctrine/annotations": "^1.10.4",
  7443. "symfony/asset": "^5.4|^6.0",
  7444. "symfony/expression-language": "^5.4|^6.0",
  7445. "symfony/finder": "^5.4|^6.0",
  7446. "symfony/form": "^5.4|^6.0",
  7447. "symfony/framework-bundle": "^5.4|^6.0",
  7448. "symfony/routing": "^5.4|^6.0",
  7449. "symfony/stopwatch": "^5.4|^6.0",
  7450. "symfony/translation": "^5.4|^6.0",
  7451. "symfony/web-link": "^5.4|^6.0",
  7452. "symfony/yaml": "^5.4|^6.0"
  7453. },
  7454. "type": "symfony-bundle",
  7455. "autoload": {
  7456. "psr-4": {
  7457. "Symfony\\Bundle\\TwigBundle\\": ""
  7458. },
  7459. "exclude-from-classmap": [
  7460. "/Tests/"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Fabien Potencier",
  7470. "email": "fabien@symfony.com"
  7471. },
  7472. {
  7473. "name": "Symfony Community",
  7474. "homepage": "https://symfony.com/contributors"
  7475. }
  7476. ],
  7477. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7478. "homepage": "https://symfony.com",
  7479. "support": {
  7480. "source": "https://github.com/symfony/twig-bundle/tree/v6.1.1"
  7481. },
  7482. "funding": [
  7483. {
  7484. "url": "https://symfony.com/sponsor",
  7485. "type": "custom"
  7486. },
  7487. {
  7488. "url": "https://github.com/fabpot",
  7489. "type": "github"
  7490. },
  7491. {
  7492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7493. "type": "tidelift"
  7494. }
  7495. ],
  7496. "time": "2022-05-27T16:55:36+00:00"
  7497. },
  7498. {
  7499. "name": "symfony/validator",
  7500. "version": "v6.1.7",
  7501. "source": {
  7502. "type": "git",
  7503. "url": "https://github.com/symfony/validator.git",
  7504. "reference": "0cc147f2e4a0d78221db85545751cd8764bbc156"
  7505. },
  7506. "dist": {
  7507. "type": "zip",
  7508. "url": "https://api.github.com/repos/symfony/validator/zipball/0cc147f2e4a0d78221db85545751cd8764bbc156",
  7509. "reference": "0cc147f2e4a0d78221db85545751cd8764bbc156",
  7510. "shasum": ""
  7511. },
  7512. "require": {
  7513. "php": ">=8.1",
  7514. "symfony/deprecation-contracts": "^2.1|^3",
  7515. "symfony/polyfill-ctype": "~1.8",
  7516. "symfony/polyfill-mbstring": "~1.0",
  7517. "symfony/translation-contracts": "^1.1|^2|^3"
  7518. },
  7519. "conflict": {
  7520. "doctrine/annotations": "<1.13",
  7521. "doctrine/lexer": "<1.1",
  7522. "phpunit/phpunit": "<5.4.3",
  7523. "symfony/dependency-injection": "<5.4",
  7524. "symfony/expression-language": "<5.4",
  7525. "symfony/http-kernel": "<5.4",
  7526. "symfony/intl": "<5.4",
  7527. "symfony/property-info": "<5.4",
  7528. "symfony/translation": "<5.4",
  7529. "symfony/yaml": "<5.4"
  7530. },
  7531. "require-dev": {
  7532. "doctrine/annotations": "^1.13",
  7533. "egulias/email-validator": "^2.1.10|^3",
  7534. "symfony/cache": "^5.4|^6.0",
  7535. "symfony/config": "^5.4|^6.0",
  7536. "symfony/console": "^5.4|^6.0",
  7537. "symfony/dependency-injection": "^5.4|^6.0",
  7538. "symfony/expression-language": "^5.4|^6.0",
  7539. "symfony/finder": "^5.4|^6.0",
  7540. "symfony/http-client": "^5.4|^6.0",
  7541. "symfony/http-foundation": "^5.4|^6.0",
  7542. "symfony/http-kernel": "^5.4|^6.0",
  7543. "symfony/intl": "^5.4|^6.0",
  7544. "symfony/mime": "^5.4|^6.0",
  7545. "symfony/property-access": "^5.4|^6.0",
  7546. "symfony/property-info": "^5.4|^6.0",
  7547. "symfony/translation": "^5.4|^6.0",
  7548. "symfony/yaml": "^5.4|^6.0"
  7549. },
  7550. "suggest": {
  7551. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7552. "psr/cache-implementation": "For using the mapping cache.",
  7553. "symfony/config": "",
  7554. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7555. "symfony/http-foundation": "",
  7556. "symfony/intl": "",
  7557. "symfony/property-access": "For accessing properties within comparison constraints",
  7558. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7559. "symfony/translation": "For translating validation errors.",
  7560. "symfony/yaml": ""
  7561. },
  7562. "type": "library",
  7563. "autoload": {
  7564. "psr-4": {
  7565. "Symfony\\Component\\Validator\\": ""
  7566. },
  7567. "exclude-from-classmap": [
  7568. "/Tests/"
  7569. ]
  7570. },
  7571. "notification-url": "https://packagist.org/downloads/",
  7572. "license": [
  7573. "MIT"
  7574. ],
  7575. "authors": [
  7576. {
  7577. "name": "Fabien Potencier",
  7578. "email": "fabien@symfony.com"
  7579. },
  7580. {
  7581. "name": "Symfony Community",
  7582. "homepage": "https://symfony.com/contributors"
  7583. }
  7584. ],
  7585. "description": "Provides tools to validate values",
  7586. "homepage": "https://symfony.com",
  7587. "support": {
  7588. "source": "https://github.com/symfony/validator/tree/v6.1.7"
  7589. },
  7590. "funding": [
  7591. {
  7592. "url": "https://symfony.com/sponsor",
  7593. "type": "custom"
  7594. },
  7595. {
  7596. "url": "https://github.com/fabpot",
  7597. "type": "github"
  7598. },
  7599. {
  7600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7601. "type": "tidelift"
  7602. }
  7603. ],
  7604. "time": "2022-10-28T16:23:08+00:00"
  7605. },
  7606. {
  7607. "name": "symfony/var-dumper",
  7608. "version": "v6.1.6",
  7609. "source": {
  7610. "type": "git",
  7611. "url": "https://github.com/symfony/var-dumper.git",
  7612. "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f"
  7613. },
  7614. "dist": {
  7615. "type": "zip",
  7616. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0f0adde127f24548e23cbde83bcaeadc491c551f",
  7617. "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f",
  7618. "shasum": ""
  7619. },
  7620. "require": {
  7621. "php": ">=8.1",
  7622. "symfony/polyfill-mbstring": "~1.0"
  7623. },
  7624. "conflict": {
  7625. "phpunit/phpunit": "<5.4.3",
  7626. "symfony/console": "<5.4"
  7627. },
  7628. "require-dev": {
  7629. "ext-iconv": "*",
  7630. "symfony/console": "^5.4|^6.0",
  7631. "symfony/process": "^5.4|^6.0",
  7632. "symfony/uid": "^5.4|^6.0",
  7633. "twig/twig": "^2.13|^3.0.4"
  7634. },
  7635. "suggest": {
  7636. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7637. "ext-intl": "To show region name in time zone dump",
  7638. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7639. },
  7640. "bin": [
  7641. "Resources/bin/var-dump-server"
  7642. ],
  7643. "type": "library",
  7644. "autoload": {
  7645. "files": [
  7646. "Resources/functions/dump.php"
  7647. ],
  7648. "psr-4": {
  7649. "Symfony\\Component\\VarDumper\\": ""
  7650. },
  7651. "exclude-from-classmap": [
  7652. "/Tests/"
  7653. ]
  7654. },
  7655. "notification-url": "https://packagist.org/downloads/",
  7656. "license": [
  7657. "MIT"
  7658. ],
  7659. "authors": [
  7660. {
  7661. "name": "Nicolas Grekas",
  7662. "email": "p@tchwork.com"
  7663. },
  7664. {
  7665. "name": "Symfony Community",
  7666. "homepage": "https://symfony.com/contributors"
  7667. }
  7668. ],
  7669. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7670. "homepage": "https://symfony.com",
  7671. "keywords": [
  7672. "debug",
  7673. "dump"
  7674. ],
  7675. "support": {
  7676. "source": "https://github.com/symfony/var-dumper/tree/v6.1.6"
  7677. },
  7678. "funding": [
  7679. {
  7680. "url": "https://symfony.com/sponsor",
  7681. "type": "custom"
  7682. },
  7683. {
  7684. "url": "https://github.com/fabpot",
  7685. "type": "github"
  7686. },
  7687. {
  7688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7689. "type": "tidelift"
  7690. }
  7691. ],
  7692. "time": "2022-10-07T08:04:03+00:00"
  7693. },
  7694. {
  7695. "name": "symfony/var-exporter",
  7696. "version": "v6.1.3",
  7697. "source": {
  7698. "type": "git",
  7699. "url": "https://github.com/symfony/var-exporter.git",
  7700. "reference": "b49350f45cebbba6e5286485264b912f2bcfc9ef"
  7701. },
  7702. "dist": {
  7703. "type": "zip",
  7704. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b49350f45cebbba6e5286485264b912f2bcfc9ef",
  7705. "reference": "b49350f45cebbba6e5286485264b912f2bcfc9ef",
  7706. "shasum": ""
  7707. },
  7708. "require": {
  7709. "php": ">=8.1"
  7710. },
  7711. "require-dev": {
  7712. "symfony/var-dumper": "^5.4|^6.0"
  7713. },
  7714. "type": "library",
  7715. "autoload": {
  7716. "psr-4": {
  7717. "Symfony\\Component\\VarExporter\\": ""
  7718. },
  7719. "exclude-from-classmap": [
  7720. "/Tests/"
  7721. ]
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Nicolas Grekas",
  7730. "email": "p@tchwork.com"
  7731. },
  7732. {
  7733. "name": "Symfony Community",
  7734. "homepage": "https://symfony.com/contributors"
  7735. }
  7736. ],
  7737. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7738. "homepage": "https://symfony.com",
  7739. "keywords": [
  7740. "clone",
  7741. "construct",
  7742. "export",
  7743. "hydrate",
  7744. "instantiate",
  7745. "serialize"
  7746. ],
  7747. "support": {
  7748. "source": "https://github.com/symfony/var-exporter/tree/v6.1.3"
  7749. },
  7750. "funding": [
  7751. {
  7752. "url": "https://symfony.com/sponsor",
  7753. "type": "custom"
  7754. },
  7755. {
  7756. "url": "https://github.com/fabpot",
  7757. "type": "github"
  7758. },
  7759. {
  7760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7761. "type": "tidelift"
  7762. }
  7763. ],
  7764. "time": "2022-07-04T16:01:56+00:00"
  7765. },
  7766. {
  7767. "name": "symfony/web-link",
  7768. "version": "v6.1.0",
  7769. "source": {
  7770. "type": "git",
  7771. "url": "https://github.com/symfony/web-link.git",
  7772. "reference": "d6ef738f97b60d859652d92f10bf8645bca28cd6"
  7773. },
  7774. "dist": {
  7775. "type": "zip",
  7776. "url": "https://api.github.com/repos/symfony/web-link/zipball/d6ef738f97b60d859652d92f10bf8645bca28cd6",
  7777. "reference": "d6ef738f97b60d859652d92f10bf8645bca28cd6",
  7778. "shasum": ""
  7779. },
  7780. "require": {
  7781. "php": ">=8.1",
  7782. "psr/link": "^1.1|^2.0"
  7783. },
  7784. "conflict": {
  7785. "symfony/http-kernel": "<5.4"
  7786. },
  7787. "provide": {
  7788. "psr/link-implementation": "1.0|2.0"
  7789. },
  7790. "require-dev": {
  7791. "symfony/http-kernel": "^5.4|^6.0"
  7792. },
  7793. "suggest": {
  7794. "symfony/http-kernel": ""
  7795. },
  7796. "type": "library",
  7797. "autoload": {
  7798. "psr-4": {
  7799. "Symfony\\Component\\WebLink\\": ""
  7800. },
  7801. "exclude-from-classmap": [
  7802. "/Tests/"
  7803. ]
  7804. },
  7805. "notification-url": "https://packagist.org/downloads/",
  7806. "license": [
  7807. "MIT"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Kévin Dunglas",
  7812. "email": "dunglas@gmail.com"
  7813. },
  7814. {
  7815. "name": "Symfony Community",
  7816. "homepage": "https://symfony.com/contributors"
  7817. }
  7818. ],
  7819. "description": "Manages links between resources",
  7820. "homepage": "https://symfony.com",
  7821. "keywords": [
  7822. "dns-prefetch",
  7823. "http",
  7824. "http2",
  7825. "link",
  7826. "performance",
  7827. "prefetch",
  7828. "preload",
  7829. "prerender",
  7830. "psr13",
  7831. "push"
  7832. ],
  7833. "support": {
  7834. "source": "https://github.com/symfony/web-link/tree/v6.1.0"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://symfony.com/sponsor",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://github.com/fabpot",
  7843. "type": "github"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "time": "2022-02-25T11:15:52+00:00"
  7851. },
  7852. {
  7853. "name": "symfony/webpack-encore-bundle",
  7854. "version": "v1.16.0",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7858. "reference": "bb399930c0299866258b616a74a27b50b94c5d45"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/bb399930c0299866258b616a74a27b50b94c5d45",
  7863. "reference": "bb399930c0299866258b616a74a27b50b94c5d45",
  7864. "shasum": ""
  7865. },
  7866. "require": {
  7867. "php": ">=7.1.3",
  7868. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7869. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7870. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7871. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7872. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7873. "symfony/polyfill-php80": "^1.25.0",
  7874. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7875. },
  7876. "require-dev": {
  7877. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7878. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7879. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7880. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7881. },
  7882. "type": "symfony-bundle",
  7883. "extra": {
  7884. "thanks": {
  7885. "name": "symfony/webpack-encore",
  7886. "url": "https://github.com/symfony/webpack-encore"
  7887. }
  7888. },
  7889. "autoload": {
  7890. "psr-4": {
  7891. "Symfony\\WebpackEncoreBundle\\": "src"
  7892. }
  7893. },
  7894. "notification-url": "https://packagist.org/downloads/",
  7895. "license": [
  7896. "MIT"
  7897. ],
  7898. "authors": [
  7899. {
  7900. "name": "Symfony Community",
  7901. "homepage": "https://symfony.com/contributors"
  7902. }
  7903. ],
  7904. "description": "Integration with your Symfony app & Webpack Encore!",
  7905. "support": {
  7906. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7907. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.16.0"
  7908. },
  7909. "funding": [
  7910. {
  7911. "url": "https://symfony.com/sponsor",
  7912. "type": "custom"
  7913. },
  7914. {
  7915. "url": "https://github.com/fabpot",
  7916. "type": "github"
  7917. },
  7918. {
  7919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7920. "type": "tidelift"
  7921. }
  7922. ],
  7923. "time": "2022-10-18T15:21:06+00:00"
  7924. },
  7925. {
  7926. "name": "symfony/yaml",
  7927. "version": "v6.1.8",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/symfony/yaml.git",
  7931. "reference": "20e9985d3fc6a77289102c47b6a110b6fbd24585"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/symfony/yaml/zipball/20e9985d3fc6a77289102c47b6a110b6fbd24585",
  7936. "reference": "20e9985d3fc6a77289102c47b6a110b6fbd24585",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "php": ">=8.1",
  7941. "symfony/polyfill-ctype": "^1.8"
  7942. },
  7943. "conflict": {
  7944. "symfony/console": "<5.4"
  7945. },
  7946. "require-dev": {
  7947. "symfony/console": "^5.4|^6.0"
  7948. },
  7949. "suggest": {
  7950. "symfony/console": "For validating YAML files using the lint command"
  7951. },
  7952. "bin": [
  7953. "Resources/bin/yaml-lint"
  7954. ],
  7955. "type": "library",
  7956. "autoload": {
  7957. "psr-4": {
  7958. "Symfony\\Component\\Yaml\\": ""
  7959. },
  7960. "exclude-from-classmap": [
  7961. "/Tests/"
  7962. ]
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "MIT"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Fabien Potencier",
  7971. "email": "fabien@symfony.com"
  7972. },
  7973. {
  7974. "name": "Symfony Community",
  7975. "homepage": "https://symfony.com/contributors"
  7976. }
  7977. ],
  7978. "description": "Loads and dumps YAML files",
  7979. "homepage": "https://symfony.com",
  7980. "support": {
  7981. "source": "https://github.com/symfony/yaml/tree/v6.1.8"
  7982. },
  7983. "funding": [
  7984. {
  7985. "url": "https://symfony.com/sponsor",
  7986. "type": "custom"
  7987. },
  7988. {
  7989. "url": "https://github.com/fabpot",
  7990. "type": "github"
  7991. },
  7992. {
  7993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7994. "type": "tidelift"
  7995. }
  7996. ],
  7997. "time": "2022-11-25T18:59:16+00:00"
  7998. },
  7999. {
  8000. "name": "twig/extra-bundle",
  8001. "version": "v3.4.0",
  8002. "source": {
  8003. "type": "git",
  8004. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8005. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  8006. },
  8007. "dist": {
  8008. "type": "zip",
  8009. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  8010. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  8011. "shasum": ""
  8012. },
  8013. "require": {
  8014. "php": ">=7.2.5",
  8015. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  8016. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  8017. "twig/twig": "^2.7|^3.0"
  8018. },
  8019. "require-dev": {
  8020. "league/commonmark": "^1.0|^2.0",
  8021. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  8022. "twig/cache-extra": "^3.0",
  8023. "twig/cssinliner-extra": "^2.12|^3.0",
  8024. "twig/html-extra": "^2.12|^3.0",
  8025. "twig/inky-extra": "^2.12|^3.0",
  8026. "twig/intl-extra": "^2.12|^3.0",
  8027. "twig/markdown-extra": "^2.12|^3.0",
  8028. "twig/string-extra": "^2.12|^3.0"
  8029. },
  8030. "type": "symfony-bundle",
  8031. "extra": {
  8032. "branch-alias": {
  8033. "dev-master": "3.2-dev"
  8034. }
  8035. },
  8036. "autoload": {
  8037. "psr-4": {
  8038. "Twig\\Extra\\TwigExtraBundle\\": ""
  8039. },
  8040. "exclude-from-classmap": [
  8041. "/Tests/"
  8042. ]
  8043. },
  8044. "notification-url": "https://packagist.org/downloads/",
  8045. "license": [
  8046. "MIT"
  8047. ],
  8048. "authors": [
  8049. {
  8050. "name": "Fabien Potencier",
  8051. "email": "fabien@symfony.com",
  8052. "homepage": "http://fabien.potencier.org",
  8053. "role": "Lead Developer"
  8054. }
  8055. ],
  8056. "description": "A Symfony bundle for extra Twig extensions",
  8057. "homepage": "https://twig.symfony.com",
  8058. "keywords": [
  8059. "bundle",
  8060. "extra",
  8061. "twig"
  8062. ],
  8063. "support": {
  8064. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  8065. },
  8066. "funding": [
  8067. {
  8068. "url": "https://github.com/fabpot",
  8069. "type": "github"
  8070. },
  8071. {
  8072. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8073. "type": "tidelift"
  8074. }
  8075. ],
  8076. "time": "2022-01-04T13:58:53+00:00"
  8077. },
  8078. {
  8079. "name": "twig/markdown-extra",
  8080. "version": "v3.4.0",
  8081. "source": {
  8082. "type": "git",
  8083. "url": "https://github.com/twigphp/markdown-extra.git",
  8084. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7"
  8085. },
  8086. "dist": {
  8087. "type": "zip",
  8088. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  8089. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  8090. "shasum": ""
  8091. },
  8092. "require": {
  8093. "php": ">=7.1.3",
  8094. "twig/twig": "^2.7|^3.0"
  8095. },
  8096. "require-dev": {
  8097. "erusev/parsedown": "^1.7",
  8098. "league/commonmark": "^1.0|^2.0",
  8099. "league/html-to-markdown": "^4.8|^5.0",
  8100. "michelf/php-markdown": "^1.8",
  8101. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8102. },
  8103. "type": "library",
  8104. "extra": {
  8105. "branch-alias": {
  8106. "dev-master": "3.2-dev"
  8107. }
  8108. },
  8109. "autoload": {
  8110. "psr-4": {
  8111. "Twig\\Extra\\Markdown\\": ""
  8112. },
  8113. "exclude-from-classmap": [
  8114. "/Tests/"
  8115. ]
  8116. },
  8117. "notification-url": "https://packagist.org/downloads/",
  8118. "license": [
  8119. "MIT"
  8120. ],
  8121. "authors": [
  8122. {
  8123. "name": "Fabien Potencier",
  8124. "email": "fabien@symfony.com",
  8125. "homepage": "http://fabien.potencier.org",
  8126. "role": "Lead Developer"
  8127. }
  8128. ],
  8129. "description": "A Twig extension for Markdown",
  8130. "homepage": "https://twig.symfony.com",
  8131. "keywords": [
  8132. "html",
  8133. "markdown",
  8134. "twig"
  8135. ],
  8136. "support": {
  8137. "source": "https://github.com/twigphp/markdown-extra/tree/v3.4.0"
  8138. },
  8139. "funding": [
  8140. {
  8141. "url": "https://github.com/fabpot",
  8142. "type": "github"
  8143. },
  8144. {
  8145. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8146. "type": "tidelift"
  8147. }
  8148. ],
  8149. "time": "2022-01-29T15:34:05+00:00"
  8150. },
  8151. {
  8152. "name": "twig/twig",
  8153. "version": "v3.4.3",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/twigphp/Twig.git",
  8157. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  8162. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  8163. "shasum": ""
  8164. },
  8165. "require": {
  8166. "php": ">=7.2.5",
  8167. "symfony/polyfill-ctype": "^1.8",
  8168. "symfony/polyfill-mbstring": "^1.3"
  8169. },
  8170. "require-dev": {
  8171. "psr/container": "^1.0",
  8172. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8173. },
  8174. "type": "library",
  8175. "extra": {
  8176. "branch-alias": {
  8177. "dev-master": "3.4-dev"
  8178. }
  8179. },
  8180. "autoload": {
  8181. "psr-4": {
  8182. "Twig\\": "src/"
  8183. }
  8184. },
  8185. "notification-url": "https://packagist.org/downloads/",
  8186. "license": [
  8187. "BSD-3-Clause"
  8188. ],
  8189. "authors": [
  8190. {
  8191. "name": "Fabien Potencier",
  8192. "email": "fabien@symfony.com",
  8193. "homepage": "http://fabien.potencier.org",
  8194. "role": "Lead Developer"
  8195. },
  8196. {
  8197. "name": "Twig Team",
  8198. "role": "Contributors"
  8199. },
  8200. {
  8201. "name": "Armin Ronacher",
  8202. "email": "armin.ronacher@active-4.com",
  8203. "role": "Project Founder"
  8204. }
  8205. ],
  8206. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8207. "homepage": "https://twig.symfony.com",
  8208. "keywords": [
  8209. "templating"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/twigphp/Twig/issues",
  8213. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://github.com/fabpot",
  8218. "type": "github"
  8219. },
  8220. {
  8221. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8222. "type": "tidelift"
  8223. }
  8224. ],
  8225. "time": "2022-09-28T08:42:51+00:00"
  8226. },
  8227. {
  8228. "name": "webmozart/assert",
  8229. "version": "1.11.0",
  8230. "source": {
  8231. "type": "git",
  8232. "url": "https://github.com/webmozarts/assert.git",
  8233. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8234. },
  8235. "dist": {
  8236. "type": "zip",
  8237. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8238. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8239. "shasum": ""
  8240. },
  8241. "require": {
  8242. "ext-ctype": "*",
  8243. "php": "^7.2 || ^8.0"
  8244. },
  8245. "conflict": {
  8246. "phpstan/phpstan": "<0.12.20",
  8247. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8248. },
  8249. "require-dev": {
  8250. "phpunit/phpunit": "^8.5.13"
  8251. },
  8252. "type": "library",
  8253. "extra": {
  8254. "branch-alias": {
  8255. "dev-master": "1.10-dev"
  8256. }
  8257. },
  8258. "autoload": {
  8259. "psr-4": {
  8260. "Webmozart\\Assert\\": "src/"
  8261. }
  8262. },
  8263. "notification-url": "https://packagist.org/downloads/",
  8264. "license": [
  8265. "MIT"
  8266. ],
  8267. "authors": [
  8268. {
  8269. "name": "Bernhard Schussek",
  8270. "email": "bschussek@gmail.com"
  8271. }
  8272. ],
  8273. "description": "Assertions to validate method input/output with nice error messages.",
  8274. "keywords": [
  8275. "assert",
  8276. "check",
  8277. "validate"
  8278. ],
  8279. "support": {
  8280. "issues": "https://github.com/webmozarts/assert/issues",
  8281. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8282. },
  8283. "time": "2022-06-03T18:03:27+00:00"
  8284. }
  8285. ],
  8286. "packages-dev": [
  8287. {
  8288. "name": "myclabs/deep-copy",
  8289. "version": "1.11.0",
  8290. "source": {
  8291. "type": "git",
  8292. "url": "https://github.com/myclabs/DeepCopy.git",
  8293. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  8294. },
  8295. "dist": {
  8296. "type": "zip",
  8297. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8298. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8299. "shasum": ""
  8300. },
  8301. "require": {
  8302. "php": "^7.1 || ^8.0"
  8303. },
  8304. "conflict": {
  8305. "doctrine/collections": "<1.6.8",
  8306. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8307. },
  8308. "require-dev": {
  8309. "doctrine/collections": "^1.6.8",
  8310. "doctrine/common": "^2.13.3 || ^3.2.2",
  8311. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8312. },
  8313. "type": "library",
  8314. "autoload": {
  8315. "files": [
  8316. "src/DeepCopy/deep_copy.php"
  8317. ],
  8318. "psr-4": {
  8319. "DeepCopy\\": "src/DeepCopy/"
  8320. }
  8321. },
  8322. "notification-url": "https://packagist.org/downloads/",
  8323. "license": [
  8324. "MIT"
  8325. ],
  8326. "description": "Create deep copies (clones) of your objects",
  8327. "keywords": [
  8328. "clone",
  8329. "copy",
  8330. "duplicate",
  8331. "object",
  8332. "object graph"
  8333. ],
  8334. "support": {
  8335. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8336. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  8337. },
  8338. "funding": [
  8339. {
  8340. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8341. "type": "tidelift"
  8342. }
  8343. ],
  8344. "time": "2022-03-03T13:19:32+00:00"
  8345. },
  8346. {
  8347. "name": "nikic/php-parser",
  8348. "version": "v4.15.2",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/nikic/PHP-Parser.git",
  8352. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  8357. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "ext-tokenizer": "*",
  8362. "php": ">=7.0"
  8363. },
  8364. "require-dev": {
  8365. "ircmaxell/php-yacc": "^0.0.7",
  8366. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8367. },
  8368. "bin": [
  8369. "bin/php-parse"
  8370. ],
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-master": "4.9-dev"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "psr-4": {
  8379. "PhpParser\\": "lib/PhpParser"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "BSD-3-Clause"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Nikita Popov"
  8389. }
  8390. ],
  8391. "description": "A PHP parser written in PHP",
  8392. "keywords": [
  8393. "parser",
  8394. "php"
  8395. ],
  8396. "support": {
  8397. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8398. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
  8399. },
  8400. "time": "2022-11-12T15:38:23+00:00"
  8401. },
  8402. {
  8403. "name": "phar-io/manifest",
  8404. "version": "2.0.3",
  8405. "source": {
  8406. "type": "git",
  8407. "url": "https://github.com/phar-io/manifest.git",
  8408. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8409. },
  8410. "dist": {
  8411. "type": "zip",
  8412. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8413. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8414. "shasum": ""
  8415. },
  8416. "require": {
  8417. "ext-dom": "*",
  8418. "ext-phar": "*",
  8419. "ext-xmlwriter": "*",
  8420. "phar-io/version": "^3.0.1",
  8421. "php": "^7.2 || ^8.0"
  8422. },
  8423. "type": "library",
  8424. "extra": {
  8425. "branch-alias": {
  8426. "dev-master": "2.0.x-dev"
  8427. }
  8428. },
  8429. "autoload": {
  8430. "classmap": [
  8431. "src/"
  8432. ]
  8433. },
  8434. "notification-url": "https://packagist.org/downloads/",
  8435. "license": [
  8436. "BSD-3-Clause"
  8437. ],
  8438. "authors": [
  8439. {
  8440. "name": "Arne Blankerts",
  8441. "email": "arne@blankerts.de",
  8442. "role": "Developer"
  8443. },
  8444. {
  8445. "name": "Sebastian Heuer",
  8446. "email": "sebastian@phpeople.de",
  8447. "role": "Developer"
  8448. },
  8449. {
  8450. "name": "Sebastian Bergmann",
  8451. "email": "sebastian@phpunit.de",
  8452. "role": "Developer"
  8453. }
  8454. ],
  8455. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8456. "support": {
  8457. "issues": "https://github.com/phar-io/manifest/issues",
  8458. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8459. },
  8460. "time": "2021-07-20T11:28:43+00:00"
  8461. },
  8462. {
  8463. "name": "phar-io/version",
  8464. "version": "3.2.1",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/phar-io/version.git",
  8468. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8473. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": "^7.2 || ^8.0"
  8478. },
  8479. "type": "library",
  8480. "autoload": {
  8481. "classmap": [
  8482. "src/"
  8483. ]
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "BSD-3-Clause"
  8488. ],
  8489. "authors": [
  8490. {
  8491. "name": "Arne Blankerts",
  8492. "email": "arne@blankerts.de",
  8493. "role": "Developer"
  8494. },
  8495. {
  8496. "name": "Sebastian Heuer",
  8497. "email": "sebastian@phpeople.de",
  8498. "role": "Developer"
  8499. },
  8500. {
  8501. "name": "Sebastian Bergmann",
  8502. "email": "sebastian@phpunit.de",
  8503. "role": "Developer"
  8504. }
  8505. ],
  8506. "description": "Library for handling version information and constraints",
  8507. "support": {
  8508. "issues": "https://github.com/phar-io/version/issues",
  8509. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8510. },
  8511. "time": "2022-02-21T01:04:05+00:00"
  8512. },
  8513. {
  8514. "name": "phpunit/php-code-coverage",
  8515. "version": "9.2.22",
  8516. "source": {
  8517. "type": "git",
  8518. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8519. "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df"
  8520. },
  8521. "dist": {
  8522. "type": "zip",
  8523. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df",
  8524. "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df",
  8525. "shasum": ""
  8526. },
  8527. "require": {
  8528. "ext-dom": "*",
  8529. "ext-libxml": "*",
  8530. "ext-xmlwriter": "*",
  8531. "nikic/php-parser": "^4.14",
  8532. "php": ">=7.3",
  8533. "phpunit/php-file-iterator": "^3.0.3",
  8534. "phpunit/php-text-template": "^2.0.2",
  8535. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8536. "sebastian/complexity": "^2.0",
  8537. "sebastian/environment": "^5.1.2",
  8538. "sebastian/lines-of-code": "^1.0.3",
  8539. "sebastian/version": "^3.0.1",
  8540. "theseer/tokenizer": "^1.2.0"
  8541. },
  8542. "require-dev": {
  8543. "phpunit/phpunit": "^9.3"
  8544. },
  8545. "suggest": {
  8546. "ext-pcov": "*",
  8547. "ext-xdebug": "*"
  8548. },
  8549. "type": "library",
  8550. "extra": {
  8551. "branch-alias": {
  8552. "dev-master": "9.2-dev"
  8553. }
  8554. },
  8555. "autoload": {
  8556. "classmap": [
  8557. "src/"
  8558. ]
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "BSD-3-Clause"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Sebastian Bergmann",
  8567. "email": "sebastian@phpunit.de",
  8568. "role": "lead"
  8569. }
  8570. ],
  8571. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8572. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8573. "keywords": [
  8574. "coverage",
  8575. "testing",
  8576. "xunit"
  8577. ],
  8578. "support": {
  8579. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8580. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22"
  8581. },
  8582. "funding": [
  8583. {
  8584. "url": "https://github.com/sebastianbergmann",
  8585. "type": "github"
  8586. }
  8587. ],
  8588. "time": "2022-12-18T16:40:55+00:00"
  8589. },
  8590. {
  8591. "name": "phpunit/php-file-iterator",
  8592. "version": "3.0.6",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8596. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8601. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8602. "shasum": ""
  8603. },
  8604. "require": {
  8605. "php": ">=7.3"
  8606. },
  8607. "require-dev": {
  8608. "phpunit/phpunit": "^9.3"
  8609. },
  8610. "type": "library",
  8611. "extra": {
  8612. "branch-alias": {
  8613. "dev-master": "3.0-dev"
  8614. }
  8615. },
  8616. "autoload": {
  8617. "classmap": [
  8618. "src/"
  8619. ]
  8620. },
  8621. "notification-url": "https://packagist.org/downloads/",
  8622. "license": [
  8623. "BSD-3-Clause"
  8624. ],
  8625. "authors": [
  8626. {
  8627. "name": "Sebastian Bergmann",
  8628. "email": "sebastian@phpunit.de",
  8629. "role": "lead"
  8630. }
  8631. ],
  8632. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8633. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8634. "keywords": [
  8635. "filesystem",
  8636. "iterator"
  8637. ],
  8638. "support": {
  8639. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8640. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8641. },
  8642. "funding": [
  8643. {
  8644. "url": "https://github.com/sebastianbergmann",
  8645. "type": "github"
  8646. }
  8647. ],
  8648. "time": "2021-12-02T12:48:52+00:00"
  8649. },
  8650. {
  8651. "name": "phpunit/php-invoker",
  8652. "version": "3.1.1",
  8653. "source": {
  8654. "type": "git",
  8655. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8656. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8657. },
  8658. "dist": {
  8659. "type": "zip",
  8660. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8661. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8662. "shasum": ""
  8663. },
  8664. "require": {
  8665. "php": ">=7.3"
  8666. },
  8667. "require-dev": {
  8668. "ext-pcntl": "*",
  8669. "phpunit/phpunit": "^9.3"
  8670. },
  8671. "suggest": {
  8672. "ext-pcntl": "*"
  8673. },
  8674. "type": "library",
  8675. "extra": {
  8676. "branch-alias": {
  8677. "dev-master": "3.1-dev"
  8678. }
  8679. },
  8680. "autoload": {
  8681. "classmap": [
  8682. "src/"
  8683. ]
  8684. },
  8685. "notification-url": "https://packagist.org/downloads/",
  8686. "license": [
  8687. "BSD-3-Clause"
  8688. ],
  8689. "authors": [
  8690. {
  8691. "name": "Sebastian Bergmann",
  8692. "email": "sebastian@phpunit.de",
  8693. "role": "lead"
  8694. }
  8695. ],
  8696. "description": "Invoke callables with a timeout",
  8697. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8698. "keywords": [
  8699. "process"
  8700. ],
  8701. "support": {
  8702. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8703. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8704. },
  8705. "funding": [
  8706. {
  8707. "url": "https://github.com/sebastianbergmann",
  8708. "type": "github"
  8709. }
  8710. ],
  8711. "time": "2020-09-28T05:58:55+00:00"
  8712. },
  8713. {
  8714. "name": "phpunit/php-text-template",
  8715. "version": "2.0.4",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8719. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8724. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8725. "shasum": ""
  8726. },
  8727. "require": {
  8728. "php": ">=7.3"
  8729. },
  8730. "require-dev": {
  8731. "phpunit/phpunit": "^9.3"
  8732. },
  8733. "type": "library",
  8734. "extra": {
  8735. "branch-alias": {
  8736. "dev-master": "2.0-dev"
  8737. }
  8738. },
  8739. "autoload": {
  8740. "classmap": [
  8741. "src/"
  8742. ]
  8743. },
  8744. "notification-url": "https://packagist.org/downloads/",
  8745. "license": [
  8746. "BSD-3-Clause"
  8747. ],
  8748. "authors": [
  8749. {
  8750. "name": "Sebastian Bergmann",
  8751. "email": "sebastian@phpunit.de",
  8752. "role": "lead"
  8753. }
  8754. ],
  8755. "description": "Simple template engine.",
  8756. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8757. "keywords": [
  8758. "template"
  8759. ],
  8760. "support": {
  8761. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8762. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8763. },
  8764. "funding": [
  8765. {
  8766. "url": "https://github.com/sebastianbergmann",
  8767. "type": "github"
  8768. }
  8769. ],
  8770. "time": "2020-10-26T05:33:50+00:00"
  8771. },
  8772. {
  8773. "name": "phpunit/php-timer",
  8774. "version": "5.0.3",
  8775. "source": {
  8776. "type": "git",
  8777. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8778. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8779. },
  8780. "dist": {
  8781. "type": "zip",
  8782. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8783. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8784. "shasum": ""
  8785. },
  8786. "require": {
  8787. "php": ">=7.3"
  8788. },
  8789. "require-dev": {
  8790. "phpunit/phpunit": "^9.3"
  8791. },
  8792. "type": "library",
  8793. "extra": {
  8794. "branch-alias": {
  8795. "dev-master": "5.0-dev"
  8796. }
  8797. },
  8798. "autoload": {
  8799. "classmap": [
  8800. "src/"
  8801. ]
  8802. },
  8803. "notification-url": "https://packagist.org/downloads/",
  8804. "license": [
  8805. "BSD-3-Clause"
  8806. ],
  8807. "authors": [
  8808. {
  8809. "name": "Sebastian Bergmann",
  8810. "email": "sebastian@phpunit.de",
  8811. "role": "lead"
  8812. }
  8813. ],
  8814. "description": "Utility class for timing",
  8815. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8816. "keywords": [
  8817. "timer"
  8818. ],
  8819. "support": {
  8820. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8821. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8822. },
  8823. "funding": [
  8824. {
  8825. "url": "https://github.com/sebastianbergmann",
  8826. "type": "github"
  8827. }
  8828. ],
  8829. "time": "2020-10-26T13:16:10+00:00"
  8830. },
  8831. {
  8832. "name": "phpunit/phpunit",
  8833. "version": "9.5.27",
  8834. "source": {
  8835. "type": "git",
  8836. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8837. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
  8838. },
  8839. "dist": {
  8840. "type": "zip",
  8841. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
  8842. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
  8843. "shasum": ""
  8844. },
  8845. "require": {
  8846. "doctrine/instantiator": "^1.3.1",
  8847. "ext-dom": "*",
  8848. "ext-json": "*",
  8849. "ext-libxml": "*",
  8850. "ext-mbstring": "*",
  8851. "ext-xml": "*",
  8852. "ext-xmlwriter": "*",
  8853. "myclabs/deep-copy": "^1.10.1",
  8854. "phar-io/manifest": "^2.0.3",
  8855. "phar-io/version": "^3.0.2",
  8856. "php": ">=7.3",
  8857. "phpunit/php-code-coverage": "^9.2.13",
  8858. "phpunit/php-file-iterator": "^3.0.5",
  8859. "phpunit/php-invoker": "^3.1.1",
  8860. "phpunit/php-text-template": "^2.0.3",
  8861. "phpunit/php-timer": "^5.0.2",
  8862. "sebastian/cli-parser": "^1.0.1",
  8863. "sebastian/code-unit": "^1.0.6",
  8864. "sebastian/comparator": "^4.0.8",
  8865. "sebastian/diff": "^4.0.3",
  8866. "sebastian/environment": "^5.1.3",
  8867. "sebastian/exporter": "^4.0.5",
  8868. "sebastian/global-state": "^5.0.1",
  8869. "sebastian/object-enumerator": "^4.0.3",
  8870. "sebastian/resource-operations": "^3.0.3",
  8871. "sebastian/type": "^3.2",
  8872. "sebastian/version": "^3.0.2"
  8873. },
  8874. "suggest": {
  8875. "ext-soap": "*",
  8876. "ext-xdebug": "*"
  8877. },
  8878. "bin": [
  8879. "phpunit"
  8880. ],
  8881. "type": "library",
  8882. "extra": {
  8883. "branch-alias": {
  8884. "dev-master": "9.5-dev"
  8885. }
  8886. },
  8887. "autoload": {
  8888. "files": [
  8889. "src/Framework/Assert/Functions.php"
  8890. ],
  8891. "classmap": [
  8892. "src/"
  8893. ]
  8894. },
  8895. "notification-url": "https://packagist.org/downloads/",
  8896. "license": [
  8897. "BSD-3-Clause"
  8898. ],
  8899. "authors": [
  8900. {
  8901. "name": "Sebastian Bergmann",
  8902. "email": "sebastian@phpunit.de",
  8903. "role": "lead"
  8904. }
  8905. ],
  8906. "description": "The PHP Unit Testing framework.",
  8907. "homepage": "https://phpunit.de/",
  8908. "keywords": [
  8909. "phpunit",
  8910. "testing",
  8911. "xunit"
  8912. ],
  8913. "support": {
  8914. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8915. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
  8916. },
  8917. "funding": [
  8918. {
  8919. "url": "https://phpunit.de/sponsors.html",
  8920. "type": "custom"
  8921. },
  8922. {
  8923. "url": "https://github.com/sebastianbergmann",
  8924. "type": "github"
  8925. },
  8926. {
  8927. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8928. "type": "tidelift"
  8929. }
  8930. ],
  8931. "time": "2022-12-09T07:31:23+00:00"
  8932. },
  8933. {
  8934. "name": "sebastian/cli-parser",
  8935. "version": "1.0.1",
  8936. "source": {
  8937. "type": "git",
  8938. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8939. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8940. },
  8941. "dist": {
  8942. "type": "zip",
  8943. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8944. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8945. "shasum": ""
  8946. },
  8947. "require": {
  8948. "php": ">=7.3"
  8949. },
  8950. "require-dev": {
  8951. "phpunit/phpunit": "^9.3"
  8952. },
  8953. "type": "library",
  8954. "extra": {
  8955. "branch-alias": {
  8956. "dev-master": "1.0-dev"
  8957. }
  8958. },
  8959. "autoload": {
  8960. "classmap": [
  8961. "src/"
  8962. ]
  8963. },
  8964. "notification-url": "https://packagist.org/downloads/",
  8965. "license": [
  8966. "BSD-3-Clause"
  8967. ],
  8968. "authors": [
  8969. {
  8970. "name": "Sebastian Bergmann",
  8971. "email": "sebastian@phpunit.de",
  8972. "role": "lead"
  8973. }
  8974. ],
  8975. "description": "Library for parsing CLI options",
  8976. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8977. "support": {
  8978. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8979. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8980. },
  8981. "funding": [
  8982. {
  8983. "url": "https://github.com/sebastianbergmann",
  8984. "type": "github"
  8985. }
  8986. ],
  8987. "time": "2020-09-28T06:08:49+00:00"
  8988. },
  8989. {
  8990. "name": "sebastian/code-unit",
  8991. "version": "1.0.8",
  8992. "source": {
  8993. "type": "git",
  8994. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8995. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8996. },
  8997. "dist": {
  8998. "type": "zip",
  8999. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9000. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9001. "shasum": ""
  9002. },
  9003. "require": {
  9004. "php": ">=7.3"
  9005. },
  9006. "require-dev": {
  9007. "phpunit/phpunit": "^9.3"
  9008. },
  9009. "type": "library",
  9010. "extra": {
  9011. "branch-alias": {
  9012. "dev-master": "1.0-dev"
  9013. }
  9014. },
  9015. "autoload": {
  9016. "classmap": [
  9017. "src/"
  9018. ]
  9019. },
  9020. "notification-url": "https://packagist.org/downloads/",
  9021. "license": [
  9022. "BSD-3-Clause"
  9023. ],
  9024. "authors": [
  9025. {
  9026. "name": "Sebastian Bergmann",
  9027. "email": "sebastian@phpunit.de",
  9028. "role": "lead"
  9029. }
  9030. ],
  9031. "description": "Collection of value objects that represent the PHP code units",
  9032. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9033. "support": {
  9034. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9035. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9036. },
  9037. "funding": [
  9038. {
  9039. "url": "https://github.com/sebastianbergmann",
  9040. "type": "github"
  9041. }
  9042. ],
  9043. "time": "2020-10-26T13:08:54+00:00"
  9044. },
  9045. {
  9046. "name": "sebastian/code-unit-reverse-lookup",
  9047. "version": "2.0.3",
  9048. "source": {
  9049. "type": "git",
  9050. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9051. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9052. },
  9053. "dist": {
  9054. "type": "zip",
  9055. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9056. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9057. "shasum": ""
  9058. },
  9059. "require": {
  9060. "php": ">=7.3"
  9061. },
  9062. "require-dev": {
  9063. "phpunit/phpunit": "^9.3"
  9064. },
  9065. "type": "library",
  9066. "extra": {
  9067. "branch-alias": {
  9068. "dev-master": "2.0-dev"
  9069. }
  9070. },
  9071. "autoload": {
  9072. "classmap": [
  9073. "src/"
  9074. ]
  9075. },
  9076. "notification-url": "https://packagist.org/downloads/",
  9077. "license": [
  9078. "BSD-3-Clause"
  9079. ],
  9080. "authors": [
  9081. {
  9082. "name": "Sebastian Bergmann",
  9083. "email": "sebastian@phpunit.de"
  9084. }
  9085. ],
  9086. "description": "Looks up which function or method a line of code belongs to",
  9087. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9088. "support": {
  9089. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9090. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9091. },
  9092. "funding": [
  9093. {
  9094. "url": "https://github.com/sebastianbergmann",
  9095. "type": "github"
  9096. }
  9097. ],
  9098. "time": "2020-09-28T05:30:19+00:00"
  9099. },
  9100. {
  9101. "name": "sebastian/comparator",
  9102. "version": "4.0.8",
  9103. "source": {
  9104. "type": "git",
  9105. "url": "https://github.com/sebastianbergmann/comparator.git",
  9106. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9107. },
  9108. "dist": {
  9109. "type": "zip",
  9110. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9111. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9112. "shasum": ""
  9113. },
  9114. "require": {
  9115. "php": ">=7.3",
  9116. "sebastian/diff": "^4.0",
  9117. "sebastian/exporter": "^4.0"
  9118. },
  9119. "require-dev": {
  9120. "phpunit/phpunit": "^9.3"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "4.0-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "classmap": [
  9130. "src/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Sebastian Bergmann",
  9140. "email": "sebastian@phpunit.de"
  9141. },
  9142. {
  9143. "name": "Jeff Welch",
  9144. "email": "whatthejeff@gmail.com"
  9145. },
  9146. {
  9147. "name": "Volker Dusch",
  9148. "email": "github@wallbash.com"
  9149. },
  9150. {
  9151. "name": "Bernhard Schussek",
  9152. "email": "bschussek@2bepublished.at"
  9153. }
  9154. ],
  9155. "description": "Provides the functionality to compare PHP values for equality",
  9156. "homepage": "https://github.com/sebastianbergmann/comparator",
  9157. "keywords": [
  9158. "comparator",
  9159. "compare",
  9160. "equality"
  9161. ],
  9162. "support": {
  9163. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9164. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9165. },
  9166. "funding": [
  9167. {
  9168. "url": "https://github.com/sebastianbergmann",
  9169. "type": "github"
  9170. }
  9171. ],
  9172. "time": "2022-09-14T12:41:17+00:00"
  9173. },
  9174. {
  9175. "name": "sebastian/complexity",
  9176. "version": "2.0.2",
  9177. "source": {
  9178. "type": "git",
  9179. "url": "https://github.com/sebastianbergmann/complexity.git",
  9180. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9181. },
  9182. "dist": {
  9183. "type": "zip",
  9184. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9185. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9186. "shasum": ""
  9187. },
  9188. "require": {
  9189. "nikic/php-parser": "^4.7",
  9190. "php": ">=7.3"
  9191. },
  9192. "require-dev": {
  9193. "phpunit/phpunit": "^9.3"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-master": "2.0-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "classmap": [
  9203. "src/"
  9204. ]
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "BSD-3-Clause"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Sebastian Bergmann",
  9213. "email": "sebastian@phpunit.de",
  9214. "role": "lead"
  9215. }
  9216. ],
  9217. "description": "Library for calculating the complexity of PHP code units",
  9218. "homepage": "https://github.com/sebastianbergmann/complexity",
  9219. "support": {
  9220. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9221. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9222. },
  9223. "funding": [
  9224. {
  9225. "url": "https://github.com/sebastianbergmann",
  9226. "type": "github"
  9227. }
  9228. ],
  9229. "time": "2020-10-26T15:52:27+00:00"
  9230. },
  9231. {
  9232. "name": "sebastian/diff",
  9233. "version": "4.0.4",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/sebastianbergmann/diff.git",
  9237. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9242. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9243. "shasum": ""
  9244. },
  9245. "require": {
  9246. "php": ">=7.3"
  9247. },
  9248. "require-dev": {
  9249. "phpunit/phpunit": "^9.3",
  9250. "symfony/process": "^4.2 || ^5"
  9251. },
  9252. "type": "library",
  9253. "extra": {
  9254. "branch-alias": {
  9255. "dev-master": "4.0-dev"
  9256. }
  9257. },
  9258. "autoload": {
  9259. "classmap": [
  9260. "src/"
  9261. ]
  9262. },
  9263. "notification-url": "https://packagist.org/downloads/",
  9264. "license": [
  9265. "BSD-3-Clause"
  9266. ],
  9267. "authors": [
  9268. {
  9269. "name": "Sebastian Bergmann",
  9270. "email": "sebastian@phpunit.de"
  9271. },
  9272. {
  9273. "name": "Kore Nordmann",
  9274. "email": "mail@kore-nordmann.de"
  9275. }
  9276. ],
  9277. "description": "Diff implementation",
  9278. "homepage": "https://github.com/sebastianbergmann/diff",
  9279. "keywords": [
  9280. "diff",
  9281. "udiff",
  9282. "unidiff",
  9283. "unified diff"
  9284. ],
  9285. "support": {
  9286. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9287. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9288. },
  9289. "funding": [
  9290. {
  9291. "url": "https://github.com/sebastianbergmann",
  9292. "type": "github"
  9293. }
  9294. ],
  9295. "time": "2020-10-26T13:10:38+00:00"
  9296. },
  9297. {
  9298. "name": "sebastian/environment",
  9299. "version": "5.1.4",
  9300. "source": {
  9301. "type": "git",
  9302. "url": "https://github.com/sebastianbergmann/environment.git",
  9303. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  9304. },
  9305. "dist": {
  9306. "type": "zip",
  9307. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9308. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9309. "shasum": ""
  9310. },
  9311. "require": {
  9312. "php": ">=7.3"
  9313. },
  9314. "require-dev": {
  9315. "phpunit/phpunit": "^9.3"
  9316. },
  9317. "suggest": {
  9318. "ext-posix": "*"
  9319. },
  9320. "type": "library",
  9321. "extra": {
  9322. "branch-alias": {
  9323. "dev-master": "5.1-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "classmap": [
  9328. "src/"
  9329. ]
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "BSD-3-Clause"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Sebastian Bergmann",
  9338. "email": "sebastian@phpunit.de"
  9339. }
  9340. ],
  9341. "description": "Provides functionality to handle HHVM/PHP environments",
  9342. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9343. "keywords": [
  9344. "Xdebug",
  9345. "environment",
  9346. "hhvm"
  9347. ],
  9348. "support": {
  9349. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9350. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  9351. },
  9352. "funding": [
  9353. {
  9354. "url": "https://github.com/sebastianbergmann",
  9355. "type": "github"
  9356. }
  9357. ],
  9358. "time": "2022-04-03T09:37:03+00:00"
  9359. },
  9360. {
  9361. "name": "sebastian/exporter",
  9362. "version": "4.0.5",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/sebastianbergmann/exporter.git",
  9366. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9371. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9372. "shasum": ""
  9373. },
  9374. "require": {
  9375. "php": ">=7.3",
  9376. "sebastian/recursion-context": "^4.0"
  9377. },
  9378. "require-dev": {
  9379. "ext-mbstring": "*",
  9380. "phpunit/phpunit": "^9.3"
  9381. },
  9382. "type": "library",
  9383. "extra": {
  9384. "branch-alias": {
  9385. "dev-master": "4.0-dev"
  9386. }
  9387. },
  9388. "autoload": {
  9389. "classmap": [
  9390. "src/"
  9391. ]
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "BSD-3-Clause"
  9396. ],
  9397. "authors": [
  9398. {
  9399. "name": "Sebastian Bergmann",
  9400. "email": "sebastian@phpunit.de"
  9401. },
  9402. {
  9403. "name": "Jeff Welch",
  9404. "email": "whatthejeff@gmail.com"
  9405. },
  9406. {
  9407. "name": "Volker Dusch",
  9408. "email": "github@wallbash.com"
  9409. },
  9410. {
  9411. "name": "Adam Harvey",
  9412. "email": "aharvey@php.net"
  9413. },
  9414. {
  9415. "name": "Bernhard Schussek",
  9416. "email": "bschussek@gmail.com"
  9417. }
  9418. ],
  9419. "description": "Provides the functionality to export PHP variables for visualization",
  9420. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9421. "keywords": [
  9422. "export",
  9423. "exporter"
  9424. ],
  9425. "support": {
  9426. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9427. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://github.com/sebastianbergmann",
  9432. "type": "github"
  9433. }
  9434. ],
  9435. "time": "2022-09-14T06:03:37+00:00"
  9436. },
  9437. {
  9438. "name": "sebastian/global-state",
  9439. "version": "5.0.5",
  9440. "source": {
  9441. "type": "git",
  9442. "url": "https://github.com/sebastianbergmann/global-state.git",
  9443. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9444. },
  9445. "dist": {
  9446. "type": "zip",
  9447. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9448. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9449. "shasum": ""
  9450. },
  9451. "require": {
  9452. "php": ">=7.3",
  9453. "sebastian/object-reflector": "^2.0",
  9454. "sebastian/recursion-context": "^4.0"
  9455. },
  9456. "require-dev": {
  9457. "ext-dom": "*",
  9458. "phpunit/phpunit": "^9.3"
  9459. },
  9460. "suggest": {
  9461. "ext-uopz": "*"
  9462. },
  9463. "type": "library",
  9464. "extra": {
  9465. "branch-alias": {
  9466. "dev-master": "5.0-dev"
  9467. }
  9468. },
  9469. "autoload": {
  9470. "classmap": [
  9471. "src/"
  9472. ]
  9473. },
  9474. "notification-url": "https://packagist.org/downloads/",
  9475. "license": [
  9476. "BSD-3-Clause"
  9477. ],
  9478. "authors": [
  9479. {
  9480. "name": "Sebastian Bergmann",
  9481. "email": "sebastian@phpunit.de"
  9482. }
  9483. ],
  9484. "description": "Snapshotting of global state",
  9485. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9486. "keywords": [
  9487. "global state"
  9488. ],
  9489. "support": {
  9490. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9491. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9492. },
  9493. "funding": [
  9494. {
  9495. "url": "https://github.com/sebastianbergmann",
  9496. "type": "github"
  9497. }
  9498. ],
  9499. "time": "2022-02-14T08:28:10+00:00"
  9500. },
  9501. {
  9502. "name": "sebastian/lines-of-code",
  9503. "version": "1.0.3",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9507. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9512. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "nikic/php-parser": "^4.6",
  9517. "php": ">=7.3"
  9518. },
  9519. "require-dev": {
  9520. "phpunit/phpunit": "^9.3"
  9521. },
  9522. "type": "library",
  9523. "extra": {
  9524. "branch-alias": {
  9525. "dev-master": "1.0-dev"
  9526. }
  9527. },
  9528. "autoload": {
  9529. "classmap": [
  9530. "src/"
  9531. ]
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "BSD-3-Clause"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Sebastian Bergmann",
  9540. "email": "sebastian@phpunit.de",
  9541. "role": "lead"
  9542. }
  9543. ],
  9544. "description": "Library for counting the lines of code in PHP source code",
  9545. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9546. "support": {
  9547. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9548. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9549. },
  9550. "funding": [
  9551. {
  9552. "url": "https://github.com/sebastianbergmann",
  9553. "type": "github"
  9554. }
  9555. ],
  9556. "time": "2020-11-28T06:42:11+00:00"
  9557. },
  9558. {
  9559. "name": "sebastian/object-enumerator",
  9560. "version": "4.0.4",
  9561. "source": {
  9562. "type": "git",
  9563. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9564. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9565. },
  9566. "dist": {
  9567. "type": "zip",
  9568. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9569. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9570. "shasum": ""
  9571. },
  9572. "require": {
  9573. "php": ">=7.3",
  9574. "sebastian/object-reflector": "^2.0",
  9575. "sebastian/recursion-context": "^4.0"
  9576. },
  9577. "require-dev": {
  9578. "phpunit/phpunit": "^9.3"
  9579. },
  9580. "type": "library",
  9581. "extra": {
  9582. "branch-alias": {
  9583. "dev-master": "4.0-dev"
  9584. }
  9585. },
  9586. "autoload": {
  9587. "classmap": [
  9588. "src/"
  9589. ]
  9590. },
  9591. "notification-url": "https://packagist.org/downloads/",
  9592. "license": [
  9593. "BSD-3-Clause"
  9594. ],
  9595. "authors": [
  9596. {
  9597. "name": "Sebastian Bergmann",
  9598. "email": "sebastian@phpunit.de"
  9599. }
  9600. ],
  9601. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9602. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9603. "support": {
  9604. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9605. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://github.com/sebastianbergmann",
  9610. "type": "github"
  9611. }
  9612. ],
  9613. "time": "2020-10-26T13:12:34+00:00"
  9614. },
  9615. {
  9616. "name": "sebastian/object-reflector",
  9617. "version": "2.0.4",
  9618. "source": {
  9619. "type": "git",
  9620. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9621. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9622. },
  9623. "dist": {
  9624. "type": "zip",
  9625. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9626. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9627. "shasum": ""
  9628. },
  9629. "require": {
  9630. "php": ">=7.3"
  9631. },
  9632. "require-dev": {
  9633. "phpunit/phpunit": "^9.3"
  9634. },
  9635. "type": "library",
  9636. "extra": {
  9637. "branch-alias": {
  9638. "dev-master": "2.0-dev"
  9639. }
  9640. },
  9641. "autoload": {
  9642. "classmap": [
  9643. "src/"
  9644. ]
  9645. },
  9646. "notification-url": "https://packagist.org/downloads/",
  9647. "license": [
  9648. "BSD-3-Clause"
  9649. ],
  9650. "authors": [
  9651. {
  9652. "name": "Sebastian Bergmann",
  9653. "email": "sebastian@phpunit.de"
  9654. }
  9655. ],
  9656. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9657. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9658. "support": {
  9659. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9660. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9661. },
  9662. "funding": [
  9663. {
  9664. "url": "https://github.com/sebastianbergmann",
  9665. "type": "github"
  9666. }
  9667. ],
  9668. "time": "2020-10-26T13:14:26+00:00"
  9669. },
  9670. {
  9671. "name": "sebastian/recursion-context",
  9672. "version": "4.0.4",
  9673. "source": {
  9674. "type": "git",
  9675. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9676. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9677. },
  9678. "dist": {
  9679. "type": "zip",
  9680. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9681. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9682. "shasum": ""
  9683. },
  9684. "require": {
  9685. "php": ">=7.3"
  9686. },
  9687. "require-dev": {
  9688. "phpunit/phpunit": "^9.3"
  9689. },
  9690. "type": "library",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-master": "4.0-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "classmap": [
  9698. "src/"
  9699. ]
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "BSD-3-Clause"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Sebastian Bergmann",
  9708. "email": "sebastian@phpunit.de"
  9709. },
  9710. {
  9711. "name": "Jeff Welch",
  9712. "email": "whatthejeff@gmail.com"
  9713. },
  9714. {
  9715. "name": "Adam Harvey",
  9716. "email": "aharvey@php.net"
  9717. }
  9718. ],
  9719. "description": "Provides functionality to recursively process PHP variables",
  9720. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9721. "support": {
  9722. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9723. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9724. },
  9725. "funding": [
  9726. {
  9727. "url": "https://github.com/sebastianbergmann",
  9728. "type": "github"
  9729. }
  9730. ],
  9731. "time": "2020-10-26T13:17:30+00:00"
  9732. },
  9733. {
  9734. "name": "sebastian/resource-operations",
  9735. "version": "3.0.3",
  9736. "source": {
  9737. "type": "git",
  9738. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9739. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9740. },
  9741. "dist": {
  9742. "type": "zip",
  9743. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9744. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9745. "shasum": ""
  9746. },
  9747. "require": {
  9748. "php": ">=7.3"
  9749. },
  9750. "require-dev": {
  9751. "phpunit/phpunit": "^9.0"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-master": "3.0-dev"
  9757. }
  9758. },
  9759. "autoload": {
  9760. "classmap": [
  9761. "src/"
  9762. ]
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "BSD-3-Clause"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Sebastian Bergmann",
  9771. "email": "sebastian@phpunit.de"
  9772. }
  9773. ],
  9774. "description": "Provides a list of PHP built-in functions that operate on resources",
  9775. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9776. "support": {
  9777. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9778. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9779. },
  9780. "funding": [
  9781. {
  9782. "url": "https://github.com/sebastianbergmann",
  9783. "type": "github"
  9784. }
  9785. ],
  9786. "time": "2020-09-28T06:45:17+00:00"
  9787. },
  9788. {
  9789. "name": "sebastian/type",
  9790. "version": "3.2.0",
  9791. "source": {
  9792. "type": "git",
  9793. "url": "https://github.com/sebastianbergmann/type.git",
  9794. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  9795. },
  9796. "dist": {
  9797. "type": "zip",
  9798. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9799. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9800. "shasum": ""
  9801. },
  9802. "require": {
  9803. "php": ">=7.3"
  9804. },
  9805. "require-dev": {
  9806. "phpunit/phpunit": "^9.5"
  9807. },
  9808. "type": "library",
  9809. "extra": {
  9810. "branch-alias": {
  9811. "dev-master": "3.2-dev"
  9812. }
  9813. },
  9814. "autoload": {
  9815. "classmap": [
  9816. "src/"
  9817. ]
  9818. },
  9819. "notification-url": "https://packagist.org/downloads/",
  9820. "license": [
  9821. "BSD-3-Clause"
  9822. ],
  9823. "authors": [
  9824. {
  9825. "name": "Sebastian Bergmann",
  9826. "email": "sebastian@phpunit.de",
  9827. "role": "lead"
  9828. }
  9829. ],
  9830. "description": "Collection of value objects that represent the types of the PHP type system",
  9831. "homepage": "https://github.com/sebastianbergmann/type",
  9832. "support": {
  9833. "issues": "https://github.com/sebastianbergmann/type/issues",
  9834. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  9835. },
  9836. "funding": [
  9837. {
  9838. "url": "https://github.com/sebastianbergmann",
  9839. "type": "github"
  9840. }
  9841. ],
  9842. "time": "2022-09-12T14:47:03+00:00"
  9843. },
  9844. {
  9845. "name": "sebastian/version",
  9846. "version": "3.0.2",
  9847. "source": {
  9848. "type": "git",
  9849. "url": "https://github.com/sebastianbergmann/version.git",
  9850. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9851. },
  9852. "dist": {
  9853. "type": "zip",
  9854. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9855. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9856. "shasum": ""
  9857. },
  9858. "require": {
  9859. "php": ">=7.3"
  9860. },
  9861. "type": "library",
  9862. "extra": {
  9863. "branch-alias": {
  9864. "dev-master": "3.0-dev"
  9865. }
  9866. },
  9867. "autoload": {
  9868. "classmap": [
  9869. "src/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "BSD-3-Clause"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Sebastian Bergmann",
  9879. "email": "sebastian@phpunit.de",
  9880. "role": "lead"
  9881. }
  9882. ],
  9883. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9884. "homepage": "https://github.com/sebastianbergmann/version",
  9885. "support": {
  9886. "issues": "https://github.com/sebastianbergmann/version/issues",
  9887. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9888. },
  9889. "funding": [
  9890. {
  9891. "url": "https://github.com/sebastianbergmann",
  9892. "type": "github"
  9893. }
  9894. ],
  9895. "time": "2020-09-28T06:39:44+00:00"
  9896. },
  9897. {
  9898. "name": "symfony/browser-kit",
  9899. "version": "v6.1.3",
  9900. "source": {
  9901. "type": "git",
  9902. "url": "https://github.com/symfony/browser-kit.git",
  9903. "reference": "2e3b6a4406c2af963c634d7bd0457402b67dcc56"
  9904. },
  9905. "dist": {
  9906. "type": "zip",
  9907. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e3b6a4406c2af963c634d7bd0457402b67dcc56",
  9908. "reference": "2e3b6a4406c2af963c634d7bd0457402b67dcc56",
  9909. "shasum": ""
  9910. },
  9911. "require": {
  9912. "php": ">=8.1",
  9913. "symfony/dom-crawler": "^5.4|^6.0"
  9914. },
  9915. "require-dev": {
  9916. "symfony/css-selector": "^5.4|^6.0",
  9917. "symfony/http-client": "^5.4|^6.0",
  9918. "symfony/mime": "^5.4|^6.0",
  9919. "symfony/process": "^5.4|^6.0"
  9920. },
  9921. "suggest": {
  9922. "symfony/process": ""
  9923. },
  9924. "type": "library",
  9925. "autoload": {
  9926. "psr-4": {
  9927. "Symfony\\Component\\BrowserKit\\": ""
  9928. },
  9929. "exclude-from-classmap": [
  9930. "/Tests/"
  9931. ]
  9932. },
  9933. "notification-url": "https://packagist.org/downloads/",
  9934. "license": [
  9935. "MIT"
  9936. ],
  9937. "authors": [
  9938. {
  9939. "name": "Fabien Potencier",
  9940. "email": "fabien@symfony.com"
  9941. },
  9942. {
  9943. "name": "Symfony Community",
  9944. "homepage": "https://symfony.com/contributors"
  9945. }
  9946. ],
  9947. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9948. "homepage": "https://symfony.com",
  9949. "support": {
  9950. "source": "https://github.com/symfony/browser-kit/tree/v6.1.3"
  9951. },
  9952. "funding": [
  9953. {
  9954. "url": "https://symfony.com/sponsor",
  9955. "type": "custom"
  9956. },
  9957. {
  9958. "url": "https://github.com/fabpot",
  9959. "type": "github"
  9960. },
  9961. {
  9962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9963. "type": "tidelift"
  9964. }
  9965. ],
  9966. "time": "2022-07-27T15:50:51+00:00"
  9967. },
  9968. {
  9969. "name": "symfony/css-selector",
  9970. "version": "v6.1.3",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/symfony/css-selector.git",
  9974. "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0dd5e36b80e1de97f8f74ed7023ac2b837a36443",
  9979. "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443",
  9980. "shasum": ""
  9981. },
  9982. "require": {
  9983. "php": ">=8.1"
  9984. },
  9985. "type": "library",
  9986. "autoload": {
  9987. "psr-4": {
  9988. "Symfony\\Component\\CssSelector\\": ""
  9989. },
  9990. "exclude-from-classmap": [
  9991. "/Tests/"
  9992. ]
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "MIT"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Fabien Potencier",
  10001. "email": "fabien@symfony.com"
  10002. },
  10003. {
  10004. "name": "Jean-François Simon",
  10005. "email": "jeanfrancois.simon@sensiolabs.com"
  10006. },
  10007. {
  10008. "name": "Symfony Community",
  10009. "homepage": "https://symfony.com/contributors"
  10010. }
  10011. ],
  10012. "description": "Converts CSS selectors to XPath expressions",
  10013. "homepage": "https://symfony.com",
  10014. "support": {
  10015. "source": "https://github.com/symfony/css-selector/tree/v6.1.3"
  10016. },
  10017. "funding": [
  10018. {
  10019. "url": "https://symfony.com/sponsor",
  10020. "type": "custom"
  10021. },
  10022. {
  10023. "url": "https://github.com/fabpot",
  10024. "type": "github"
  10025. },
  10026. {
  10027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10028. "type": "tidelift"
  10029. }
  10030. ],
  10031. "time": "2022-06-27T17:24:16+00:00"
  10032. },
  10033. {
  10034. "name": "symfony/debug-bundle",
  10035. "version": "v6.1.3",
  10036. "source": {
  10037. "type": "git",
  10038. "url": "https://github.com/symfony/debug-bundle.git",
  10039. "reference": "4084f86639bf0270d6dd2225fc8d7c317780dd6b"
  10040. },
  10041. "dist": {
  10042. "type": "zip",
  10043. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/4084f86639bf0270d6dd2225fc8d7c317780dd6b",
  10044. "reference": "4084f86639bf0270d6dd2225fc8d7c317780dd6b",
  10045. "shasum": ""
  10046. },
  10047. "require": {
  10048. "ext-xml": "*",
  10049. "php": ">=8.1",
  10050. "symfony/dependency-injection": "^5.4|^6.0",
  10051. "symfony/http-kernel": "^5.4|^6.0",
  10052. "symfony/twig-bridge": "^5.4|^6.0",
  10053. "symfony/var-dumper": "^5.4|^6.0"
  10054. },
  10055. "conflict": {
  10056. "symfony/config": "<5.4",
  10057. "symfony/dependency-injection": "<5.4"
  10058. },
  10059. "require-dev": {
  10060. "symfony/config": "^5.4|^6.0",
  10061. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10062. },
  10063. "suggest": {
  10064. "symfony/config": "For service container configuration",
  10065. "symfony/dependency-injection": "For using as a service from the container"
  10066. },
  10067. "type": "symfony-bundle",
  10068. "autoload": {
  10069. "psr-4": {
  10070. "Symfony\\Bundle\\DebugBundle\\": ""
  10071. },
  10072. "exclude-from-classmap": [
  10073. "/Tests/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Fabien Potencier",
  10083. "email": "fabien@symfony.com"
  10084. },
  10085. {
  10086. "name": "Symfony Community",
  10087. "homepage": "https://symfony.com/contributors"
  10088. }
  10089. ],
  10090. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10091. "homepage": "https://symfony.com",
  10092. "support": {
  10093. "source": "https://github.com/symfony/debug-bundle/tree/v6.1.3"
  10094. },
  10095. "funding": [
  10096. {
  10097. "url": "https://symfony.com/sponsor",
  10098. "type": "custom"
  10099. },
  10100. {
  10101. "url": "https://github.com/fabpot",
  10102. "type": "github"
  10103. },
  10104. {
  10105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10106. "type": "tidelift"
  10107. }
  10108. ],
  10109. "time": "2022-07-20T13:46:29+00:00"
  10110. },
  10111. {
  10112. "name": "symfony/dom-crawler",
  10113. "version": "v6.1.7",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/symfony/dom-crawler.git",
  10117. "reference": "66be2a0ccc90105b90b9393c984cfc3ea0e320df"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/66be2a0ccc90105b90b9393c984cfc3ea0e320df",
  10122. "reference": "66be2a0ccc90105b90b9393c984cfc3ea0e320df",
  10123. "shasum": ""
  10124. },
  10125. "require": {
  10126. "masterminds/html5": "^2.6",
  10127. "php": ">=8.1",
  10128. "symfony/polyfill-ctype": "~1.8",
  10129. "symfony/polyfill-mbstring": "~1.0"
  10130. },
  10131. "require-dev": {
  10132. "symfony/css-selector": "^5.4|^6.0"
  10133. },
  10134. "suggest": {
  10135. "symfony/css-selector": ""
  10136. },
  10137. "type": "library",
  10138. "autoload": {
  10139. "psr-4": {
  10140. "Symfony\\Component\\DomCrawler\\": ""
  10141. },
  10142. "exclude-from-classmap": [
  10143. "/Tests/"
  10144. ]
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "MIT"
  10149. ],
  10150. "authors": [
  10151. {
  10152. "name": "Fabien Potencier",
  10153. "email": "fabien@symfony.com"
  10154. },
  10155. {
  10156. "name": "Symfony Community",
  10157. "homepage": "https://symfony.com/contributors"
  10158. }
  10159. ],
  10160. "description": "Eases DOM navigation for HTML and XML documents",
  10161. "homepage": "https://symfony.com",
  10162. "support": {
  10163. "source": "https://github.com/symfony/dom-crawler/tree/v6.1.7"
  10164. },
  10165. "funding": [
  10166. {
  10167. "url": "https://symfony.com/sponsor",
  10168. "type": "custom"
  10169. },
  10170. {
  10171. "url": "https://github.com/fabpot",
  10172. "type": "github"
  10173. },
  10174. {
  10175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10176. "type": "tidelift"
  10177. }
  10178. ],
  10179. "time": "2022-10-28T16:23:08+00:00"
  10180. },
  10181. {
  10182. "name": "symfony/maker-bundle",
  10183. "version": "v1.48.0",
  10184. "source": {
  10185. "type": "git",
  10186. "url": "https://github.com/symfony/maker-bundle.git",
  10187. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6"
  10188. },
  10189. "dist": {
  10190. "type": "zip",
  10191. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10192. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10193. "shasum": ""
  10194. },
  10195. "require": {
  10196. "doctrine/inflector": "^2.0",
  10197. "nikic/php-parser": "^4.11",
  10198. "php": ">=8.0",
  10199. "symfony/config": "^5.4.7|^6.0",
  10200. "symfony/console": "^5.4.7|^6.0",
  10201. "symfony/dependency-injection": "^5.4.7|^6.0",
  10202. "symfony/deprecation-contracts": "^2.2|^3",
  10203. "symfony/filesystem": "^5.4.7|^6.0",
  10204. "symfony/finder": "^5.4.3|^6.0",
  10205. "symfony/framework-bundle": "^5.4.7|^6.0",
  10206. "symfony/http-kernel": "^5.4.7|^6.0"
  10207. },
  10208. "conflict": {
  10209. "doctrine/doctrine-bundle": "<2.4",
  10210. "doctrine/orm": "<2.10",
  10211. "symfony/doctrine-bridge": "<5.4"
  10212. },
  10213. "require-dev": {
  10214. "composer/semver": "^3.0",
  10215. "doctrine/doctrine-bundle": "^2.4",
  10216. "doctrine/orm": "^2.10.0",
  10217. "symfony/http-client": "^5.4.7|^6.0",
  10218. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  10219. "symfony/polyfill-php80": "^1.16.0",
  10220. "symfony/process": "^5.4.7|^6.0",
  10221. "symfony/security-core": "^5.4.7|^6.0",
  10222. "symfony/yaml": "^5.4.3|^6.0",
  10223. "twig/twig": "^2.0|^3.0"
  10224. },
  10225. "type": "symfony-bundle",
  10226. "extra": {
  10227. "branch-alias": {
  10228. "dev-main": "1.0-dev"
  10229. }
  10230. },
  10231. "autoload": {
  10232. "psr-4": {
  10233. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10234. }
  10235. },
  10236. "notification-url": "https://packagist.org/downloads/",
  10237. "license": [
  10238. "MIT"
  10239. ],
  10240. "authors": [
  10241. {
  10242. "name": "Symfony Community",
  10243. "homepage": "https://symfony.com/contributors"
  10244. }
  10245. ],
  10246. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10247. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10248. "keywords": [
  10249. "code generator",
  10250. "generator",
  10251. "scaffold",
  10252. "scaffolding"
  10253. ],
  10254. "support": {
  10255. "issues": "https://github.com/symfony/maker-bundle/issues",
  10256. "source": "https://github.com/symfony/maker-bundle/tree/v1.48.0"
  10257. },
  10258. "funding": [
  10259. {
  10260. "url": "https://symfony.com/sponsor",
  10261. "type": "custom"
  10262. },
  10263. {
  10264. "url": "https://github.com/fabpot",
  10265. "type": "github"
  10266. },
  10267. {
  10268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10269. "type": "tidelift"
  10270. }
  10271. ],
  10272. "time": "2022-11-14T10:48:46+00:00"
  10273. },
  10274. {
  10275. "name": "symfony/phpunit-bridge",
  10276. "version": "v6.1.8",
  10277. "source": {
  10278. "type": "git",
  10279. "url": "https://github.com/symfony/phpunit-bridge.git",
  10280. "reference": "c8163ef70aaa7011bff1a0ca60138d88249a54f3"
  10281. },
  10282. "dist": {
  10283. "type": "zip",
  10284. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/c8163ef70aaa7011bff1a0ca60138d88249a54f3",
  10285. "reference": "c8163ef70aaa7011bff1a0ca60138d88249a54f3",
  10286. "shasum": ""
  10287. },
  10288. "require": {
  10289. "php": ">=7.1.3"
  10290. },
  10291. "conflict": {
  10292. "phpunit/phpunit": "<7.5|9.1.2"
  10293. },
  10294. "require-dev": {
  10295. "symfony/deprecation-contracts": "^2.1|^3.0",
  10296. "symfony/error-handler": "^5.4|^6.0"
  10297. },
  10298. "suggest": {
  10299. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10300. },
  10301. "bin": [
  10302. "bin/simple-phpunit"
  10303. ],
  10304. "type": "symfony-bridge",
  10305. "extra": {
  10306. "thanks": {
  10307. "name": "phpunit/phpunit",
  10308. "url": "https://github.com/sebastianbergmann/phpunit"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "files": [
  10313. "bootstrap.php"
  10314. ],
  10315. "psr-4": {
  10316. "Symfony\\Bridge\\PhpUnit\\": ""
  10317. },
  10318. "exclude-from-classmap": [
  10319. "/Tests/"
  10320. ]
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "MIT"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Nicolas Grekas",
  10329. "email": "p@tchwork.com"
  10330. },
  10331. {
  10332. "name": "Symfony Community",
  10333. "homepage": "https://symfony.com/contributors"
  10334. }
  10335. ],
  10336. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10337. "homepage": "https://symfony.com",
  10338. "support": {
  10339. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.1.8"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://symfony.com/sponsor",
  10344. "type": "custom"
  10345. },
  10346. {
  10347. "url": "https://github.com/fabpot",
  10348. "type": "github"
  10349. },
  10350. {
  10351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10352. "type": "tidelift"
  10353. }
  10354. ],
  10355. "time": "2022-11-14T10:13:26+00:00"
  10356. },
  10357. {
  10358. "name": "symfony/web-profiler-bundle",
  10359. "version": "v6.1.6",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10363. "reference": "45d05cd8e967fd06bb1f66f748ed308c00674d32"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/45d05cd8e967fd06bb1f66f748ed308c00674d32",
  10368. "reference": "45d05cd8e967fd06bb1f66f748ed308c00674d32",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "php": ">=8.1",
  10373. "symfony/config": "^5.4|^6.0",
  10374. "symfony/framework-bundle": "^5.4|^6.0",
  10375. "symfony/http-kernel": "^6.1",
  10376. "symfony/routing": "^5.4|^6.0",
  10377. "symfony/twig-bundle": "^5.4|^6.0",
  10378. "twig/twig": "^2.13|^3.0.4"
  10379. },
  10380. "conflict": {
  10381. "symfony/form": "<5.4",
  10382. "symfony/mailer": "<5.4",
  10383. "symfony/messenger": "<5.4"
  10384. },
  10385. "require-dev": {
  10386. "symfony/browser-kit": "^5.4|^6.0",
  10387. "symfony/console": "^5.4|^6.0",
  10388. "symfony/css-selector": "^5.4|^6.0",
  10389. "symfony/stopwatch": "^5.4|^6.0"
  10390. },
  10391. "type": "symfony-bundle",
  10392. "autoload": {
  10393. "psr-4": {
  10394. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10395. },
  10396. "exclude-from-classmap": [
  10397. "/Tests/"
  10398. ]
  10399. },
  10400. "notification-url": "https://packagist.org/downloads/",
  10401. "license": [
  10402. "MIT"
  10403. ],
  10404. "authors": [
  10405. {
  10406. "name": "Fabien Potencier",
  10407. "email": "fabien@symfony.com"
  10408. },
  10409. {
  10410. "name": "Symfony Community",
  10411. "homepage": "https://symfony.com/contributors"
  10412. }
  10413. ],
  10414. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10415. "homepage": "https://symfony.com",
  10416. "support": {
  10417. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.1.6"
  10418. },
  10419. "funding": [
  10420. {
  10421. "url": "https://symfony.com/sponsor",
  10422. "type": "custom"
  10423. },
  10424. {
  10425. "url": "https://github.com/fabpot",
  10426. "type": "github"
  10427. },
  10428. {
  10429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10430. "type": "tidelift"
  10431. }
  10432. ],
  10433. "time": "2022-10-02T08:30:52+00:00"
  10434. },
  10435. {
  10436. "name": "theseer/tokenizer",
  10437. "version": "1.2.1",
  10438. "source": {
  10439. "type": "git",
  10440. "url": "https://github.com/theseer/tokenizer.git",
  10441. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10442. },
  10443. "dist": {
  10444. "type": "zip",
  10445. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10446. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10447. "shasum": ""
  10448. },
  10449. "require": {
  10450. "ext-dom": "*",
  10451. "ext-tokenizer": "*",
  10452. "ext-xmlwriter": "*",
  10453. "php": "^7.2 || ^8.0"
  10454. },
  10455. "type": "library",
  10456. "autoload": {
  10457. "classmap": [
  10458. "src/"
  10459. ]
  10460. },
  10461. "notification-url": "https://packagist.org/downloads/",
  10462. "license": [
  10463. "BSD-3-Clause"
  10464. ],
  10465. "authors": [
  10466. {
  10467. "name": "Arne Blankerts",
  10468. "email": "arne@blankerts.de",
  10469. "role": "Developer"
  10470. }
  10471. ],
  10472. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10473. "support": {
  10474. "issues": "https://github.com/theseer/tokenizer/issues",
  10475. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10476. },
  10477. "funding": [
  10478. {
  10479. "url": "https://github.com/theseer",
  10480. "type": "github"
  10481. }
  10482. ],
  10483. "time": "2021-07-28T10:34:58+00:00"
  10484. }
  10485. ],
  10486. "aliases": [],
  10487. "minimum-stability": "stable",
  10488. "stability-flags": [],
  10489. "prefer-stable": false,
  10490. "prefer-lowest": false,
  10491. "platform": {
  10492. "php": "^8.1",
  10493. "ext-ctype": "*",
  10494. "ext-iconv": "*"
  10495. },
  10496. "platform-dev": [],
  10497. "platform-overrides": {
  10498. "php": "8.1"
  10499. },
  10500. "plugin-api-version": "2.3.0"
  10501. }