composer.lock 370 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192
  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": "3bfe5c77063946a235a67341f2bfb5b7",
  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.13.3",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  168. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "1.*",
  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": "^6.0 || ^8.1",
  180. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  182. "symfony/cache": "^4.4 || ^5.2",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "type": "library",
  186. "autoload": {
  187. "psr-4": {
  188. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Guilherme Blanco",
  198. "email": "guilhermeblanco@gmail.com"
  199. },
  200. {
  201. "name": "Roman Borschel",
  202. "email": "roman@code-factory.org"
  203. },
  204. {
  205. "name": "Benjamin Eberlei",
  206. "email": "kontakt@beberlei.de"
  207. },
  208. {
  209. "name": "Jonathan Wage",
  210. "email": "jonwage@gmail.com"
  211. },
  212. {
  213. "name": "Johannes Schmitt",
  214. "email": "schmittjoh@gmail.com"
  215. }
  216. ],
  217. "description": "Docblock Annotations Parser",
  218. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  219. "keywords": [
  220. "annotations",
  221. "docblock",
  222. "parser"
  223. ],
  224. "support": {
  225. "issues": "https://github.com/doctrine/annotations/issues",
  226. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  227. },
  228. "time": "2022-07-02T10:48:51+00:00"
  229. },
  230. {
  231. "name": "doctrine/cache",
  232. "version": "2.2.0",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/doctrine/cache.git",
  236. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  241. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": "~7.1 || ^8.0"
  246. },
  247. "conflict": {
  248. "doctrine/common": ">2.2,<2.4"
  249. },
  250. "require-dev": {
  251. "cache/integration-tests": "dev-master",
  252. "doctrine/coding-standard": "^9",
  253. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  254. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  255. "symfony/cache": "^4.4 || ^5.4 || ^6",
  256. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  257. },
  258. "type": "library",
  259. "autoload": {
  260. "psr-4": {
  261. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  262. }
  263. },
  264. "notification-url": "https://packagist.org/downloads/",
  265. "license": [
  266. "MIT"
  267. ],
  268. "authors": [
  269. {
  270. "name": "Guilherme Blanco",
  271. "email": "guilhermeblanco@gmail.com"
  272. },
  273. {
  274. "name": "Roman Borschel",
  275. "email": "roman@code-factory.org"
  276. },
  277. {
  278. "name": "Benjamin Eberlei",
  279. "email": "kontakt@beberlei.de"
  280. },
  281. {
  282. "name": "Jonathan Wage",
  283. "email": "jonwage@gmail.com"
  284. },
  285. {
  286. "name": "Johannes Schmitt",
  287. "email": "schmittjoh@gmail.com"
  288. }
  289. ],
  290. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  291. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  292. "keywords": [
  293. "abstraction",
  294. "apcu",
  295. "cache",
  296. "caching",
  297. "couchdb",
  298. "memcached",
  299. "php",
  300. "redis",
  301. "xcache"
  302. ],
  303. "support": {
  304. "issues": "https://github.com/doctrine/cache/issues",
  305. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  306. },
  307. "funding": [
  308. {
  309. "url": "https://www.doctrine-project.org/sponsorship.html",
  310. "type": "custom"
  311. },
  312. {
  313. "url": "https://www.patreon.com/phpdoctrine",
  314. "type": "patreon"
  315. },
  316. {
  317. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  318. "type": "tidelift"
  319. }
  320. ],
  321. "time": "2022-05-20T20:07:39+00:00"
  322. },
  323. {
  324. "name": "doctrine/collections",
  325. "version": "1.8.0",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/doctrine/collections.git",
  329. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  334. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  335. "shasum": ""
  336. },
  337. "require": {
  338. "doctrine/deprecations": "^0.5.3 || ^1",
  339. "php": "^7.1.3 || ^8.0"
  340. },
  341. "require-dev": {
  342. "doctrine/coding-standard": "^9.0 || ^10.0",
  343. "phpstan/phpstan": "^1.4.8",
  344. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  345. "vimeo/psalm": "^4.22"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "psr-4": {
  350. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Guilherme Blanco",
  360. "email": "guilhermeblanco@gmail.com"
  361. },
  362. {
  363. "name": "Roman Borschel",
  364. "email": "roman@code-factory.org"
  365. },
  366. {
  367. "name": "Benjamin Eberlei",
  368. "email": "kontakt@beberlei.de"
  369. },
  370. {
  371. "name": "Jonathan Wage",
  372. "email": "jonwage@gmail.com"
  373. },
  374. {
  375. "name": "Johannes Schmitt",
  376. "email": "schmittjoh@gmail.com"
  377. }
  378. ],
  379. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  380. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  381. "keywords": [
  382. "array",
  383. "collections",
  384. "iterators",
  385. "php"
  386. ],
  387. "support": {
  388. "issues": "https://github.com/doctrine/collections/issues",
  389. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  390. },
  391. "time": "2022-09-01T20:12:10+00:00"
  392. },
  393. {
  394. "name": "doctrine/common",
  395. "version": "3.4.3",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/doctrine/common.git",
  399. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  404. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "doctrine/persistence": "^2.0 || ^3.0",
  409. "php": "^7.1 || ^8.0"
  410. },
  411. "require-dev": {
  412. "doctrine/coding-standard": "^9.0 || ^10.0",
  413. "doctrine/collections": "^1",
  414. "phpstan/phpstan": "^1.4.1",
  415. "phpstan/phpstan-phpunit": "^1",
  416. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  417. "squizlabs/php_codesniffer": "^3.0",
  418. "symfony/phpunit-bridge": "^6.1",
  419. "vimeo/psalm": "^4.4"
  420. },
  421. "type": "library",
  422. "autoload": {
  423. "psr-4": {
  424. "Doctrine\\Common\\": "src"
  425. }
  426. },
  427. "notification-url": "https://packagist.org/downloads/",
  428. "license": [
  429. "MIT"
  430. ],
  431. "authors": [
  432. {
  433. "name": "Guilherme Blanco",
  434. "email": "guilhermeblanco@gmail.com"
  435. },
  436. {
  437. "name": "Roman Borschel",
  438. "email": "roman@code-factory.org"
  439. },
  440. {
  441. "name": "Benjamin Eberlei",
  442. "email": "kontakt@beberlei.de"
  443. },
  444. {
  445. "name": "Jonathan Wage",
  446. "email": "jonwage@gmail.com"
  447. },
  448. {
  449. "name": "Johannes Schmitt",
  450. "email": "schmittjoh@gmail.com"
  451. },
  452. {
  453. "name": "Marco Pivetta",
  454. "email": "ocramius@gmail.com"
  455. }
  456. ],
  457. "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.",
  458. "homepage": "https://www.doctrine-project.org/projects/common.html",
  459. "keywords": [
  460. "common",
  461. "doctrine",
  462. "php"
  463. ],
  464. "support": {
  465. "issues": "https://github.com/doctrine/common/issues",
  466. "source": "https://github.com/doctrine/common/tree/3.4.3"
  467. },
  468. "funding": [
  469. {
  470. "url": "https://www.doctrine-project.org/sponsorship.html",
  471. "type": "custom"
  472. },
  473. {
  474. "url": "https://www.patreon.com/phpdoctrine",
  475. "type": "patreon"
  476. },
  477. {
  478. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  479. "type": "tidelift"
  480. }
  481. ],
  482. "time": "2022-10-09T11:47:59+00:00"
  483. },
  484. {
  485. "name": "doctrine/dbal",
  486. "version": "3.5.1",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/doctrine/dbal.git",
  490. "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/doctrine/dbal/zipball/f38ee8aaca2d58ee88653cb34a6a3880c23f38a5",
  495. "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "composer-runtime-api": "^2",
  500. "doctrine/cache": "^1.11|^2.0",
  501. "doctrine/deprecations": "^0.5.3|^1",
  502. "doctrine/event-manager": "^1|^2",
  503. "php": "^7.4 || ^8.0",
  504. "psr/cache": "^1|^2|^3",
  505. "psr/log": "^1|^2|^3"
  506. },
  507. "require-dev": {
  508. "doctrine/coding-standard": "10.0.0",
  509. "jetbrains/phpstorm-stubs": "2022.2",
  510. "phpstan/phpstan": "1.8.10",
  511. "phpstan/phpstan-strict-rules": "^1.4",
  512. "phpunit/phpunit": "9.5.25",
  513. "psalm/plugin-phpunit": "0.17.0",
  514. "squizlabs/php_codesniffer": "3.7.1",
  515. "symfony/cache": "^5.4|^6.0",
  516. "symfony/console": "^4.4|^5.4|^6.0",
  517. "vimeo/psalm": "4.29.0"
  518. },
  519. "suggest": {
  520. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  521. },
  522. "bin": [
  523. "bin/doctrine-dbal"
  524. ],
  525. "type": "library",
  526. "autoload": {
  527. "psr-4": {
  528. "Doctrine\\DBAL\\": "src"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Guilherme Blanco",
  538. "email": "guilhermeblanco@gmail.com"
  539. },
  540. {
  541. "name": "Roman Borschel",
  542. "email": "roman@code-factory.org"
  543. },
  544. {
  545. "name": "Benjamin Eberlei",
  546. "email": "kontakt@beberlei.de"
  547. },
  548. {
  549. "name": "Jonathan Wage",
  550. "email": "jonwage@gmail.com"
  551. }
  552. ],
  553. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  554. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  555. "keywords": [
  556. "abstraction",
  557. "database",
  558. "db2",
  559. "dbal",
  560. "mariadb",
  561. "mssql",
  562. "mysql",
  563. "oci8",
  564. "oracle",
  565. "pdo",
  566. "pgsql",
  567. "postgresql",
  568. "queryobject",
  569. "sasql",
  570. "sql",
  571. "sqlite",
  572. "sqlserver",
  573. "sqlsrv"
  574. ],
  575. "support": {
  576. "issues": "https://github.com/doctrine/dbal/issues",
  577. "source": "https://github.com/doctrine/dbal/tree/3.5.1"
  578. },
  579. "funding": [
  580. {
  581. "url": "https://www.doctrine-project.org/sponsorship.html",
  582. "type": "custom"
  583. },
  584. {
  585. "url": "https://www.patreon.com/phpdoctrine",
  586. "type": "patreon"
  587. },
  588. {
  589. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  590. "type": "tidelift"
  591. }
  592. ],
  593. "time": "2022-10-24T07:26:18+00:00"
  594. },
  595. {
  596. "name": "doctrine/deprecations",
  597. "version": "v1.0.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/doctrine/deprecations.git",
  601. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  606. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "php": "^7.1|^8.0"
  611. },
  612. "require-dev": {
  613. "doctrine/coding-standard": "^9",
  614. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  615. "psr/log": "^1|^2|^3"
  616. },
  617. "suggest": {
  618. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "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.",
  631. "homepage": "https://www.doctrine-project.org/",
  632. "support": {
  633. "issues": "https://github.com/doctrine/deprecations/issues",
  634. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  635. },
  636. "time": "2022-05-02T15:47:09+00:00"
  637. },
  638. {
  639. "name": "doctrine/doctrine-bundle",
  640. "version": "2.7.1",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/doctrine/DoctrineBundle.git",
  644. "reference": "a2dcad48741c9d12fd6040398cf075025030096e"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/a2dcad48741c9d12fd6040398cf075025030096e",
  649. "reference": "a2dcad48741c9d12fd6040398cf075025030096e",
  650. "shasum": ""
  651. },
  652. "require": {
  653. "doctrine/annotations": "^1",
  654. "doctrine/cache": "^1.11 || ^2.0",
  655. "doctrine/dbal": "^2.13.1 || ^3.3.2",
  656. "doctrine/persistence": "^2.2 || ^3",
  657. "doctrine/sql-formatter": "^1.0.1",
  658. "php": "^7.1 || ^8.0",
  659. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  660. "symfony/config": "^4.4.3 || ^5.4 || ^6.0",
  661. "symfony/console": "^4.4 || ^5.4 || ^6.0",
  662. "symfony/dependency-injection": "^4.4.18 || ^5.4 || ^6.0",
  663. "symfony/deprecation-contracts": "^2.1 || ^3",
  664. "symfony/doctrine-bridge": "^4.4.22 || ^5.4 || ^6.0",
  665. "symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
  666. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  667. },
  668. "conflict": {
  669. "doctrine/orm": "<2.11 || >=3.0",
  670. "twig/twig": "<1.34 || >=2.0,<2.4"
  671. },
  672. "require-dev": {
  673. "doctrine/coding-standard": "^9.0",
  674. "doctrine/orm": "^2.11 || ^3.0",
  675. "friendsofphp/proxy-manager-lts": "^1.0",
  676. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  677. "psalm/plugin-phpunit": "^0.16.1",
  678. "psalm/plugin-symfony": "^3",
  679. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  680. "symfony/phpunit-bridge": "^6.1",
  681. "symfony/property-info": "^4.4 || ^5.4 || ^6.0",
  682. "symfony/proxy-manager-bridge": "^4.4 || ^5.4 || ^6.0",
  683. "symfony/security-bundle": "^4.4 || ^5.4 || ^6.0",
  684. "symfony/twig-bridge": "^4.4 || ^5.4 || ^6.0",
  685. "symfony/validator": "^4.4 || ^5.4 || ^6.0",
  686. "symfony/web-profiler-bundle": "^4.4 || ^5.4 || ^6.0",
  687. "symfony/yaml": "^4.4 || ^5.4 || ^6.0",
  688. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  689. "vimeo/psalm": "^4.7"
  690. },
  691. "suggest": {
  692. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  693. "ext-pdo": "*",
  694. "symfony/web-profiler-bundle": "To use the data collector."
  695. },
  696. "type": "symfony-bundle",
  697. "autoload": {
  698. "psr-4": {
  699. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Fabien Potencier",
  709. "email": "fabien@symfony.com"
  710. },
  711. {
  712. "name": "Benjamin Eberlei",
  713. "email": "kontakt@beberlei.de"
  714. },
  715. {
  716. "name": "Symfony Community",
  717. "homepage": "https://symfony.com/contributors"
  718. },
  719. {
  720. "name": "Doctrine Project",
  721. "homepage": "https://www.doctrine-project.org/"
  722. }
  723. ],
  724. "description": "Symfony DoctrineBundle",
  725. "homepage": "https://www.doctrine-project.org",
  726. "keywords": [
  727. "database",
  728. "dbal",
  729. "orm",
  730. "persistence"
  731. ],
  732. "support": {
  733. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  734. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.7.1"
  735. },
  736. "funding": [
  737. {
  738. "url": "https://www.doctrine-project.org/sponsorship.html",
  739. "type": "custom"
  740. },
  741. {
  742. "url": "https://www.patreon.com/phpdoctrine",
  743. "type": "patreon"
  744. },
  745. {
  746. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  747. "type": "tidelift"
  748. }
  749. ],
  750. "time": "2022-10-23T09:47:06+00:00"
  751. },
  752. {
  753. "name": "doctrine/doctrine-migrations-bundle",
  754. "version": "3.2.2",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  758. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  763. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  764. "shasum": ""
  765. },
  766. "require": {
  767. "doctrine/doctrine-bundle": "~1.0|~2.0",
  768. "doctrine/migrations": "^3.2",
  769. "php": "^7.2|^8.0",
  770. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  771. },
  772. "require-dev": {
  773. "doctrine/coding-standard": "^8.0",
  774. "doctrine/orm": "^2.6",
  775. "doctrine/persistence": "^1.3||^2.0",
  776. "phpstan/phpstan": "^0.12",
  777. "phpstan/phpstan-deprecation-rules": "^0.12",
  778. "phpstan/phpstan-phpunit": "^0.12",
  779. "phpstan/phpstan-strict-rules": "^0.12",
  780. "phpunit/phpunit": "^8.0|^9.0",
  781. "vimeo/psalm": "^4.11"
  782. },
  783. "type": "symfony-bundle",
  784. "autoload": {
  785. "psr-4": {
  786. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  787. },
  788. "exclude-from-classmap": [
  789. "/Tests/"
  790. ]
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Fabien Potencier",
  799. "email": "fabien@symfony.com"
  800. },
  801. {
  802. "name": "Doctrine Project",
  803. "homepage": "https://www.doctrine-project.org"
  804. },
  805. {
  806. "name": "Symfony Community",
  807. "homepage": "https://symfony.com/contributors"
  808. }
  809. ],
  810. "description": "Symfony DoctrineMigrationsBundle",
  811. "homepage": "https://www.doctrine-project.org",
  812. "keywords": [
  813. "dbal",
  814. "migrations",
  815. "schema"
  816. ],
  817. "support": {
  818. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  819. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  820. },
  821. "funding": [
  822. {
  823. "url": "https://www.doctrine-project.org/sponsorship.html",
  824. "type": "custom"
  825. },
  826. {
  827. "url": "https://www.patreon.com/phpdoctrine",
  828. "type": "patreon"
  829. },
  830. {
  831. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  832. "type": "tidelift"
  833. }
  834. ],
  835. "time": "2022-02-01T18:08:07+00:00"
  836. },
  837. {
  838. "name": "doctrine/event-manager",
  839. "version": "1.2.0",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/doctrine/event-manager.git",
  843. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  848. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "doctrine/deprecations": "^0.5.3 || ^1",
  853. "php": "^7.1 || ^8.0"
  854. },
  855. "conflict": {
  856. "doctrine/common": "<2.9"
  857. },
  858. "require-dev": {
  859. "doctrine/coding-standard": "^9 || ^10",
  860. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  861. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  862. "vimeo/psalm": "^4.24"
  863. },
  864. "type": "library",
  865. "autoload": {
  866. "psr-4": {
  867. "Doctrine\\Common\\": "src"
  868. }
  869. },
  870. "notification-url": "https://packagist.org/downloads/",
  871. "license": [
  872. "MIT"
  873. ],
  874. "authors": [
  875. {
  876. "name": "Guilherme Blanco",
  877. "email": "guilhermeblanco@gmail.com"
  878. },
  879. {
  880. "name": "Roman Borschel",
  881. "email": "roman@code-factory.org"
  882. },
  883. {
  884. "name": "Benjamin Eberlei",
  885. "email": "kontakt@beberlei.de"
  886. },
  887. {
  888. "name": "Jonathan Wage",
  889. "email": "jonwage@gmail.com"
  890. },
  891. {
  892. "name": "Johannes Schmitt",
  893. "email": "schmittjoh@gmail.com"
  894. },
  895. {
  896. "name": "Marco Pivetta",
  897. "email": "ocramius@gmail.com"
  898. }
  899. ],
  900. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  901. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  902. "keywords": [
  903. "event",
  904. "event dispatcher",
  905. "event manager",
  906. "event system",
  907. "events"
  908. ],
  909. "support": {
  910. "issues": "https://github.com/doctrine/event-manager/issues",
  911. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  912. },
  913. "funding": [
  914. {
  915. "url": "https://www.doctrine-project.org/sponsorship.html",
  916. "type": "custom"
  917. },
  918. {
  919. "url": "https://www.patreon.com/phpdoctrine",
  920. "type": "patreon"
  921. },
  922. {
  923. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  924. "type": "tidelift"
  925. }
  926. ],
  927. "time": "2022-10-12T20:51:15+00:00"
  928. },
  929. {
  930. "name": "doctrine/inflector",
  931. "version": "2.0.6",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/doctrine/inflector.git",
  935. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  940. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "php": "^7.2 || ^8.0"
  945. },
  946. "require-dev": {
  947. "doctrine/coding-standard": "^10",
  948. "phpstan/phpstan": "^1.8",
  949. "phpstan/phpstan-phpunit": "^1.1",
  950. "phpstan/phpstan-strict-rules": "^1.3",
  951. "phpunit/phpunit": "^8.5 || ^9.5",
  952. "vimeo/psalm": "^4.25"
  953. },
  954. "type": "library",
  955. "autoload": {
  956. "psr-4": {
  957. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  958. }
  959. },
  960. "notification-url": "https://packagist.org/downloads/",
  961. "license": [
  962. "MIT"
  963. ],
  964. "authors": [
  965. {
  966. "name": "Guilherme Blanco",
  967. "email": "guilhermeblanco@gmail.com"
  968. },
  969. {
  970. "name": "Roman Borschel",
  971. "email": "roman@code-factory.org"
  972. },
  973. {
  974. "name": "Benjamin Eberlei",
  975. "email": "kontakt@beberlei.de"
  976. },
  977. {
  978. "name": "Jonathan Wage",
  979. "email": "jonwage@gmail.com"
  980. },
  981. {
  982. "name": "Johannes Schmitt",
  983. "email": "schmittjoh@gmail.com"
  984. }
  985. ],
  986. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  987. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  988. "keywords": [
  989. "inflection",
  990. "inflector",
  991. "lowercase",
  992. "manipulation",
  993. "php",
  994. "plural",
  995. "singular",
  996. "strings",
  997. "uppercase",
  998. "words"
  999. ],
  1000. "support": {
  1001. "issues": "https://github.com/doctrine/inflector/issues",
  1002. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1003. },
  1004. "funding": [
  1005. {
  1006. "url": "https://www.doctrine-project.org/sponsorship.html",
  1007. "type": "custom"
  1008. },
  1009. {
  1010. "url": "https://www.patreon.com/phpdoctrine",
  1011. "type": "patreon"
  1012. },
  1013. {
  1014. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1015. "type": "tidelift"
  1016. }
  1017. ],
  1018. "time": "2022-10-20T09:10:12+00:00"
  1019. },
  1020. {
  1021. "name": "doctrine/instantiator",
  1022. "version": "1.4.1",
  1023. "source": {
  1024. "type": "git",
  1025. "url": "https://github.com/doctrine/instantiator.git",
  1026. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  1027. },
  1028. "dist": {
  1029. "type": "zip",
  1030. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  1031. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  1032. "shasum": ""
  1033. },
  1034. "require": {
  1035. "php": "^7.1 || ^8.0"
  1036. },
  1037. "require-dev": {
  1038. "doctrine/coding-standard": "^9",
  1039. "ext-pdo": "*",
  1040. "ext-phar": "*",
  1041. "phpbench/phpbench": "^0.16 || ^1",
  1042. "phpstan/phpstan": "^1.4",
  1043. "phpstan/phpstan-phpunit": "^1",
  1044. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1045. "vimeo/psalm": "^4.22"
  1046. },
  1047. "type": "library",
  1048. "autoload": {
  1049. "psr-4": {
  1050. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Marco Pivetta",
  1060. "email": "ocramius@gmail.com",
  1061. "homepage": "https://ocramius.github.io/"
  1062. }
  1063. ],
  1064. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1065. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1066. "keywords": [
  1067. "constructor",
  1068. "instantiate"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/doctrine/instantiator/issues",
  1072. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://www.doctrine-project.org/sponsorship.html",
  1077. "type": "custom"
  1078. },
  1079. {
  1080. "url": "https://www.patreon.com/phpdoctrine",
  1081. "type": "patreon"
  1082. },
  1083. {
  1084. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1085. "type": "tidelift"
  1086. }
  1087. ],
  1088. "time": "2022-03-03T08:28:38+00:00"
  1089. },
  1090. {
  1091. "name": "doctrine/lexer",
  1092. "version": "1.2.3",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/doctrine/lexer.git",
  1096. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1101. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "php": "^7.1 || ^8.0"
  1106. },
  1107. "require-dev": {
  1108. "doctrine/coding-standard": "^9.0",
  1109. "phpstan/phpstan": "^1.3",
  1110. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1111. "vimeo/psalm": "^4.11"
  1112. },
  1113. "type": "library",
  1114. "autoload": {
  1115. "psr-4": {
  1116. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1117. }
  1118. },
  1119. "notification-url": "https://packagist.org/downloads/",
  1120. "license": [
  1121. "MIT"
  1122. ],
  1123. "authors": [
  1124. {
  1125. "name": "Guilherme Blanco",
  1126. "email": "guilhermeblanco@gmail.com"
  1127. },
  1128. {
  1129. "name": "Roman Borschel",
  1130. "email": "roman@code-factory.org"
  1131. },
  1132. {
  1133. "name": "Johannes Schmitt",
  1134. "email": "schmittjoh@gmail.com"
  1135. }
  1136. ],
  1137. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1138. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1139. "keywords": [
  1140. "annotations",
  1141. "docblock",
  1142. "lexer",
  1143. "parser",
  1144. "php"
  1145. ],
  1146. "support": {
  1147. "issues": "https://github.com/doctrine/lexer/issues",
  1148. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1149. },
  1150. "funding": [
  1151. {
  1152. "url": "https://www.doctrine-project.org/sponsorship.html",
  1153. "type": "custom"
  1154. },
  1155. {
  1156. "url": "https://www.patreon.com/phpdoctrine",
  1157. "type": "patreon"
  1158. },
  1159. {
  1160. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1161. "type": "tidelift"
  1162. }
  1163. ],
  1164. "time": "2022-02-28T11:07:21+00:00"
  1165. },
  1166. {
  1167. "name": "doctrine/migrations",
  1168. "version": "3.5.2",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/doctrine/migrations.git",
  1172. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/doctrine/migrations/zipball/61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1177. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1178. "shasum": ""
  1179. },
  1180. "require": {
  1181. "composer-runtime-api": "^2",
  1182. "doctrine/dbal": "^3.3",
  1183. "doctrine/deprecations": "^0.5.3 || ^1",
  1184. "doctrine/event-manager": "^1.0",
  1185. "friendsofphp/proxy-manager-lts": "^1.0",
  1186. "php": "^7.4 || ^8.0",
  1187. "psr/log": "^1.1.3 || ^2 || ^3",
  1188. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1189. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0"
  1190. },
  1191. "conflict": {
  1192. "doctrine/orm": "<2.12"
  1193. },
  1194. "require-dev": {
  1195. "doctrine/coding-standard": "^9",
  1196. "doctrine/orm": "^2.12",
  1197. "doctrine/persistence": "^2 || ^3",
  1198. "doctrine/sql-formatter": "^1.0",
  1199. "ergebnis/composer-normalize": "^2.9",
  1200. "ext-pdo_sqlite": "*",
  1201. "phpstan/phpstan": "^1.5",
  1202. "phpstan/phpstan-deprecation-rules": "^1",
  1203. "phpstan/phpstan-phpunit": "^1.1",
  1204. "phpstan/phpstan-strict-rules": "^1.1",
  1205. "phpstan/phpstan-symfony": "^1.1",
  1206. "phpunit/phpunit": "^9.5",
  1207. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1208. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1209. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1210. },
  1211. "suggest": {
  1212. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1213. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1214. },
  1215. "bin": [
  1216. "bin/doctrine-migrations"
  1217. ],
  1218. "type": "library",
  1219. "extra": {
  1220. "composer-normalize": {
  1221. "indent-size": 4,
  1222. "indent-style": "space"
  1223. }
  1224. },
  1225. "autoload": {
  1226. "psr-4": {
  1227. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1228. }
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Benjamin Eberlei",
  1237. "email": "kontakt@beberlei.de"
  1238. },
  1239. {
  1240. "name": "Jonathan Wage",
  1241. "email": "jonwage@gmail.com"
  1242. },
  1243. {
  1244. "name": "Michael Simonson",
  1245. "email": "contact@mikesimonson.com"
  1246. }
  1247. ],
  1248. "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.",
  1249. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1250. "keywords": [
  1251. "database",
  1252. "dbal",
  1253. "migrations"
  1254. ],
  1255. "support": {
  1256. "issues": "https://github.com/doctrine/migrations/issues",
  1257. "source": "https://github.com/doctrine/migrations/tree/3.5.2"
  1258. },
  1259. "funding": [
  1260. {
  1261. "url": "https://www.doctrine-project.org/sponsorship.html",
  1262. "type": "custom"
  1263. },
  1264. {
  1265. "url": "https://www.patreon.com/phpdoctrine",
  1266. "type": "patreon"
  1267. },
  1268. {
  1269. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1270. "type": "tidelift"
  1271. }
  1272. ],
  1273. "time": "2022-08-04T14:29:49+00:00"
  1274. },
  1275. {
  1276. "name": "doctrine/orm",
  1277. "version": "2.13.3",
  1278. "source": {
  1279. "type": "git",
  1280. "url": "https://github.com/doctrine/orm.git",
  1281. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36"
  1282. },
  1283. "dist": {
  1284. "type": "zip",
  1285. "url": "https://api.github.com/repos/doctrine/orm/zipball/e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1286. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1287. "shasum": ""
  1288. },
  1289. "require": {
  1290. "composer-runtime-api": "^2",
  1291. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1292. "doctrine/collections": "^1.5",
  1293. "doctrine/common": "^3.0.3",
  1294. "doctrine/dbal": "^2.13.1 || ^3.2",
  1295. "doctrine/deprecations": "^0.5.3 || ^1",
  1296. "doctrine/event-manager": "^1.1",
  1297. "doctrine/inflector": "^1.4 || ^2.0",
  1298. "doctrine/instantiator": "^1.3",
  1299. "doctrine/lexer": "^1.2.3",
  1300. "doctrine/persistence": "^2.4 || ^3",
  1301. "ext-ctype": "*",
  1302. "php": "^7.1 || ^8.0",
  1303. "psr/cache": "^1 || ^2 || ^3",
  1304. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1305. "symfony/polyfill-php72": "^1.23",
  1306. "symfony/polyfill-php80": "^1.16"
  1307. },
  1308. "conflict": {
  1309. "doctrine/annotations": "<1.13 || >= 2.0"
  1310. },
  1311. "require-dev": {
  1312. "doctrine/annotations": "^1.13",
  1313. "doctrine/coding-standard": "^9.0.2 || ^10.0",
  1314. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1315. "phpstan/phpstan": "~1.4.10 || 1.8.5",
  1316. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1317. "psr/log": "^1 || ^2 || ^3",
  1318. "squizlabs/php_codesniffer": "3.7.1",
  1319. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1320. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1321. "vimeo/psalm": "4.27.0"
  1322. },
  1323. "suggest": {
  1324. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1325. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1326. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1327. },
  1328. "bin": [
  1329. "bin/doctrine"
  1330. ],
  1331. "type": "library",
  1332. "autoload": {
  1333. "psr-4": {
  1334. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1335. }
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "MIT"
  1340. ],
  1341. "authors": [
  1342. {
  1343. "name": "Guilherme Blanco",
  1344. "email": "guilhermeblanco@gmail.com"
  1345. },
  1346. {
  1347. "name": "Roman Borschel",
  1348. "email": "roman@code-factory.org"
  1349. },
  1350. {
  1351. "name": "Benjamin Eberlei",
  1352. "email": "kontakt@beberlei.de"
  1353. },
  1354. {
  1355. "name": "Jonathan Wage",
  1356. "email": "jonwage@gmail.com"
  1357. },
  1358. {
  1359. "name": "Marco Pivetta",
  1360. "email": "ocramius@gmail.com"
  1361. }
  1362. ],
  1363. "description": "Object-Relational-Mapper for PHP",
  1364. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1365. "keywords": [
  1366. "database",
  1367. "orm"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/orm/issues",
  1371. "source": "https://github.com/doctrine/orm/tree/2.13.3"
  1372. },
  1373. "time": "2022-10-07T06:37:17+00:00"
  1374. },
  1375. {
  1376. "name": "doctrine/persistence",
  1377. "version": "3.0.4",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/doctrine/persistence.git",
  1381. "reference": "05612da375f8a3931161f435f91d6704926e6ec5"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/doctrine/persistence/zipball/05612da375f8a3931161f435f91d6704926e6ec5",
  1386. "reference": "05612da375f8a3931161f435f91d6704926e6ec5",
  1387. "shasum": ""
  1388. },
  1389. "require": {
  1390. "doctrine/event-manager": "^1 || ^2",
  1391. "php": "^7.2 || ^8.0",
  1392. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1393. },
  1394. "conflict": {
  1395. "doctrine/annotations": "<1.7 || >=2.0",
  1396. "doctrine/common": "<2.10"
  1397. },
  1398. "require-dev": {
  1399. "composer/package-versions-deprecated": "^1.11",
  1400. "doctrine/annotations": "^1.7",
  1401. "doctrine/coding-standard": "^10",
  1402. "doctrine/common": "^3.0",
  1403. "phpstan/phpstan": "1.8.8",
  1404. "phpstan/phpstan-phpunit": "^1",
  1405. "phpstan/phpstan-strict-rules": "^1.1",
  1406. "phpunit/phpunit": "^8.5 || ^9.5",
  1407. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1408. "vimeo/psalm": "4.29.0"
  1409. },
  1410. "type": "library",
  1411. "autoload": {
  1412. "psr-4": {
  1413. "Doctrine\\Persistence\\": "src/Persistence"
  1414. }
  1415. },
  1416. "notification-url": "https://packagist.org/downloads/",
  1417. "license": [
  1418. "MIT"
  1419. ],
  1420. "authors": [
  1421. {
  1422. "name": "Guilherme Blanco",
  1423. "email": "guilhermeblanco@gmail.com"
  1424. },
  1425. {
  1426. "name": "Roman Borschel",
  1427. "email": "roman@code-factory.org"
  1428. },
  1429. {
  1430. "name": "Benjamin Eberlei",
  1431. "email": "kontakt@beberlei.de"
  1432. },
  1433. {
  1434. "name": "Jonathan Wage",
  1435. "email": "jonwage@gmail.com"
  1436. },
  1437. {
  1438. "name": "Johannes Schmitt",
  1439. "email": "schmittjoh@gmail.com"
  1440. },
  1441. {
  1442. "name": "Marco Pivetta",
  1443. "email": "ocramius@gmail.com"
  1444. }
  1445. ],
  1446. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1447. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1448. "keywords": [
  1449. "mapper",
  1450. "object",
  1451. "odm",
  1452. "orm",
  1453. "persistence"
  1454. ],
  1455. "support": {
  1456. "issues": "https://github.com/doctrine/persistence/issues",
  1457. "source": "https://github.com/doctrine/persistence/tree/3.0.4"
  1458. },
  1459. "funding": [
  1460. {
  1461. "url": "https://www.doctrine-project.org/sponsorship.html",
  1462. "type": "custom"
  1463. },
  1464. {
  1465. "url": "https://www.patreon.com/phpdoctrine",
  1466. "type": "patreon"
  1467. },
  1468. {
  1469. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1470. "type": "tidelift"
  1471. }
  1472. ],
  1473. "time": "2022-10-13T07:34:14+00:00"
  1474. },
  1475. {
  1476. "name": "doctrine/sql-formatter",
  1477. "version": "1.1.3",
  1478. "source": {
  1479. "type": "git",
  1480. "url": "https://github.com/doctrine/sql-formatter.git",
  1481. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1482. },
  1483. "dist": {
  1484. "type": "zip",
  1485. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1486. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1487. "shasum": ""
  1488. },
  1489. "require": {
  1490. "php": "^7.1 || ^8.0"
  1491. },
  1492. "require-dev": {
  1493. "bamarni/composer-bin-plugin": "^1.4"
  1494. },
  1495. "bin": [
  1496. "bin/sql-formatter"
  1497. ],
  1498. "type": "library",
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Doctrine\\SqlFormatter\\": "src"
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "MIT"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Jeremy Dorn",
  1511. "email": "jeremy@jeremydorn.com",
  1512. "homepage": "https://jeremydorn.com/"
  1513. }
  1514. ],
  1515. "description": "a PHP SQL highlighting library",
  1516. "homepage": "https://github.com/doctrine/sql-formatter/",
  1517. "keywords": [
  1518. "highlight",
  1519. "sql"
  1520. ],
  1521. "support": {
  1522. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1523. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1524. },
  1525. "time": "2022-05-23T21:33:49+00:00"
  1526. },
  1527. {
  1528. "name": "egulias/email-validator",
  1529. "version": "3.2.1",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/egulias/EmailValidator.git",
  1533. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1538. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "doctrine/lexer": "^1.2",
  1543. "php": ">=7.2",
  1544. "symfony/polyfill-intl-idn": "^1.15"
  1545. },
  1546. "require-dev": {
  1547. "php-coveralls/php-coveralls": "^2.2",
  1548. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1549. "vimeo/psalm": "^4"
  1550. },
  1551. "suggest": {
  1552. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "branch-alias": {
  1557. "dev-master": "3.0.x-dev"
  1558. }
  1559. },
  1560. "autoload": {
  1561. "psr-4": {
  1562. "Egulias\\EmailValidator\\": "src"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Eduardo Gulias Davis"
  1572. }
  1573. ],
  1574. "description": "A library for validating emails against several RFCs",
  1575. "homepage": "https://github.com/egulias/EmailValidator",
  1576. "keywords": [
  1577. "email",
  1578. "emailvalidation",
  1579. "emailvalidator",
  1580. "validation",
  1581. "validator"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/egulias/EmailValidator/issues",
  1585. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1586. },
  1587. "funding": [
  1588. {
  1589. "url": "https://github.com/egulias",
  1590. "type": "github"
  1591. }
  1592. ],
  1593. "time": "2022-06-18T20:57:19+00:00"
  1594. },
  1595. {
  1596. "name": "friendsofphp/proxy-manager-lts",
  1597. "version": "v1.0.13",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1601. "reference": "88354616f4cf4f6620910fd035e282173ba453e8"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/88354616f4cf4f6620910fd035e282173ba453e8",
  1606. "reference": "88354616f4cf4f6620910fd035e282173ba453e8",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "laminas/laminas-code": "~3.4.1|^4.0",
  1611. "php": ">=7.1",
  1612. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1613. },
  1614. "conflict": {
  1615. "laminas/laminas-stdlib": "<3.2.1",
  1616. "zendframework/zend-stdlib": "<3.2.1"
  1617. },
  1618. "replace": {
  1619. "ocramius/proxy-manager": "^2.1"
  1620. },
  1621. "require-dev": {
  1622. "ext-phar": "*",
  1623. "symfony/phpunit-bridge": "^5.4|^6.0"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "thanks": {
  1628. "name": "ocramius/proxy-manager",
  1629. "url": "https://github.com/Ocramius/ProxyManager"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "psr-4": {
  1634. "ProxyManager\\": "src/ProxyManager"
  1635. }
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "Marco Pivetta",
  1644. "email": "ocramius@gmail.com",
  1645. "homepage": "https://ocramius.github.io/"
  1646. },
  1647. {
  1648. "name": "Nicolas Grekas",
  1649. "email": "p@tchwork.com"
  1650. }
  1651. ],
  1652. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1653. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1654. "keywords": [
  1655. "aop",
  1656. "lazy loading",
  1657. "proxy",
  1658. "proxy pattern",
  1659. "service proxies"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1663. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.13"
  1664. },
  1665. "funding": [
  1666. {
  1667. "url": "https://github.com/Ocramius",
  1668. "type": "github"
  1669. },
  1670. {
  1671. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1672. "type": "tidelift"
  1673. }
  1674. ],
  1675. "time": "2022-10-17T19:48:16+00:00"
  1676. },
  1677. {
  1678. "name": "laminas/laminas-code",
  1679. "version": "4.7.0",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/laminas/laminas-code.git",
  1683. "reference": "0337d9265bc2e6376babad8c511500821620cb30"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/0337d9265bc2e6376babad8c511500821620cb30",
  1688. "reference": "0337d9265bc2e6376babad8c511500821620cb30",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": ">=7.4, <8.2"
  1693. },
  1694. "require-dev": {
  1695. "doctrine/annotations": "^1.13.2",
  1696. "ext-phar": "*",
  1697. "laminas/laminas-coding-standard": "^2.3.0",
  1698. "laminas/laminas-stdlib": "^3.6.1",
  1699. "phpunit/phpunit": "^9.5.10",
  1700. "psalm/plugin-phpunit": "^0.17.0",
  1701. "vimeo/psalm": "^4.13.1"
  1702. },
  1703. "suggest": {
  1704. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1705. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1706. },
  1707. "type": "library",
  1708. "autoload": {
  1709. "files": [
  1710. "polyfill/ReflectionEnumPolyfill.php"
  1711. ],
  1712. "psr-4": {
  1713. "Laminas\\Code\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "BSD-3-Clause"
  1719. ],
  1720. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1721. "homepage": "https://laminas.dev",
  1722. "keywords": [
  1723. "code",
  1724. "laminas",
  1725. "laminasframework"
  1726. ],
  1727. "support": {
  1728. "chat": "https://laminas.dev/chat",
  1729. "docs": "https://docs.laminas.dev/laminas-code/",
  1730. "forum": "https://discourse.laminas.dev",
  1731. "issues": "https://github.com/laminas/laminas-code/issues",
  1732. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1733. "source": "https://github.com/laminas/laminas-code"
  1734. },
  1735. "funding": [
  1736. {
  1737. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1738. "type": "community_bridge"
  1739. }
  1740. ],
  1741. "time": "2022-09-13T10:33:30+00:00"
  1742. },
  1743. {
  1744. "name": "league/commonmark",
  1745. "version": "2.3.7",
  1746. "source": {
  1747. "type": "git",
  1748. "url": "https://github.com/thephpleague/commonmark.git",
  1749. "reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf"
  1750. },
  1751. "dist": {
  1752. "type": "zip",
  1753. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/a36bd2be4f5387c0f3a8792a0d76b7d68865abbf",
  1754. "reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf",
  1755. "shasum": ""
  1756. },
  1757. "require": {
  1758. "ext-mbstring": "*",
  1759. "league/config": "^1.1.1",
  1760. "php": "^7.4 || ^8.0",
  1761. "psr/event-dispatcher": "^1.0",
  1762. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1763. "symfony/polyfill-php80": "^1.16"
  1764. },
  1765. "require-dev": {
  1766. "cebe/markdown": "^1.0",
  1767. "commonmark/cmark": "0.30.0",
  1768. "commonmark/commonmark.js": "0.30.0",
  1769. "composer/package-versions-deprecated": "^1.8",
  1770. "embed/embed": "^4.4",
  1771. "erusev/parsedown": "^1.0",
  1772. "ext-json": "*",
  1773. "github/gfm": "0.29.0",
  1774. "michelf/php-markdown": "^1.4 || ^2.0",
  1775. "nyholm/psr7": "^1.5",
  1776. "phpstan/phpstan": "^1.8.2",
  1777. "phpunit/phpunit": "^9.5.21",
  1778. "scrutinizer/ocular": "^1.8.1",
  1779. "symfony/finder": "^5.3 | ^6.0",
  1780. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1781. "unleashedtech/php-coding-standard": "^3.1.1",
  1782. "vimeo/psalm": "^4.24.0"
  1783. },
  1784. "suggest": {
  1785. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "branch-alias": {
  1790. "dev-main": "2.4-dev"
  1791. }
  1792. },
  1793. "autoload": {
  1794. "psr-4": {
  1795. "League\\CommonMark\\": "src"
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "BSD-3-Clause"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Colin O'Dell",
  1805. "email": "colinodell@gmail.com",
  1806. "homepage": "https://www.colinodell.com",
  1807. "role": "Lead Developer"
  1808. }
  1809. ],
  1810. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1811. "homepage": "https://commonmark.thephpleague.com",
  1812. "keywords": [
  1813. "commonmark",
  1814. "flavored",
  1815. "gfm",
  1816. "github",
  1817. "github-flavored",
  1818. "markdown",
  1819. "md",
  1820. "parser"
  1821. ],
  1822. "support": {
  1823. "docs": "https://commonmark.thephpleague.com/",
  1824. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1825. "issues": "https://github.com/thephpleague/commonmark/issues",
  1826. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1827. "source": "https://github.com/thephpleague/commonmark"
  1828. },
  1829. "funding": [
  1830. {
  1831. "url": "https://www.colinodell.com/sponsor",
  1832. "type": "custom"
  1833. },
  1834. {
  1835. "url": "https://www.paypal.me/colinpodell/10.00",
  1836. "type": "custom"
  1837. },
  1838. {
  1839. "url": "https://github.com/colinodell",
  1840. "type": "github"
  1841. },
  1842. {
  1843. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1844. "type": "tidelift"
  1845. }
  1846. ],
  1847. "time": "2022-11-03T17:29:46+00:00"
  1848. },
  1849. {
  1850. "name": "league/config",
  1851. "version": "v1.1.1",
  1852. "source": {
  1853. "type": "git",
  1854. "url": "https://github.com/thephpleague/config.git",
  1855. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  1856. },
  1857. "dist": {
  1858. "type": "zip",
  1859. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1860. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1861. "shasum": ""
  1862. },
  1863. "require": {
  1864. "dflydev/dot-access-data": "^3.0.1",
  1865. "nette/schema": "^1.2",
  1866. "php": "^7.4 || ^8.0"
  1867. },
  1868. "require-dev": {
  1869. "phpstan/phpstan": "^0.12.90",
  1870. "phpunit/phpunit": "^9.5.5",
  1871. "scrutinizer/ocular": "^1.8.1",
  1872. "unleashedtech/php-coding-standard": "^3.1",
  1873. "vimeo/psalm": "^4.7.3"
  1874. },
  1875. "type": "library",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-main": "1.2-dev"
  1879. }
  1880. },
  1881. "autoload": {
  1882. "psr-4": {
  1883. "League\\Config\\": "src"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "BSD-3-Clause"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Colin O'Dell",
  1893. "email": "colinodell@gmail.com",
  1894. "homepage": "https://www.colinodell.com",
  1895. "role": "Lead Developer"
  1896. }
  1897. ],
  1898. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1899. "homepage": "https://config.thephpleague.com",
  1900. "keywords": [
  1901. "array",
  1902. "config",
  1903. "configuration",
  1904. "dot",
  1905. "dot-access",
  1906. "nested",
  1907. "schema"
  1908. ],
  1909. "support": {
  1910. "docs": "https://config.thephpleague.com/",
  1911. "issues": "https://github.com/thephpleague/config/issues",
  1912. "rss": "https://github.com/thephpleague/config/releases.atom",
  1913. "source": "https://github.com/thephpleague/config"
  1914. },
  1915. "funding": [
  1916. {
  1917. "url": "https://www.colinodell.com/sponsor",
  1918. "type": "custom"
  1919. },
  1920. {
  1921. "url": "https://www.paypal.me/colinpodell/10.00",
  1922. "type": "custom"
  1923. },
  1924. {
  1925. "url": "https://github.com/colinodell",
  1926. "type": "github"
  1927. }
  1928. ],
  1929. "time": "2021-08-14T12:15:32+00:00"
  1930. },
  1931. {
  1932. "name": "monolog/monolog",
  1933. "version": "3.2.0",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/Seldaek/monolog.git",
  1937. "reference": "305444bc6fb6c89e490f4b34fa6e979584d7fa81"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/305444bc6fb6c89e490f4b34fa6e979584d7fa81",
  1942. "reference": "305444bc6fb6c89e490f4b34fa6e979584d7fa81",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "php": ">=8.1",
  1947. "psr/log": "^2.0 || ^3.0"
  1948. },
  1949. "provide": {
  1950. "psr/log-implementation": "3.0.0"
  1951. },
  1952. "require-dev": {
  1953. "aws/aws-sdk-php": "^3.0",
  1954. "doctrine/couchdb": "~1.0@dev",
  1955. "elasticsearch/elasticsearch": "^7 || ^8",
  1956. "ext-json": "*",
  1957. "graylog2/gelf-php": "^1.4.2",
  1958. "guzzlehttp/guzzle": "^7.4",
  1959. "guzzlehttp/psr7": "^2.2",
  1960. "mongodb/mongodb": "^1.8",
  1961. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1962. "phpstan/phpstan": "^1.4",
  1963. "phpstan/phpstan-deprecation-rules": "^1.0",
  1964. "phpstan/phpstan-strict-rules": "^1.1",
  1965. "phpunit/phpunit": "^9.5.16",
  1966. "predis/predis": "^1.1",
  1967. "ruflin/elastica": "^7",
  1968. "symfony/mailer": "^5.4 || ^6",
  1969. "symfony/mime": "^5.4 || ^6"
  1970. },
  1971. "suggest": {
  1972. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1973. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1974. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1975. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1976. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1977. "ext-mbstring": "Allow to work properly with unicode symbols",
  1978. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1979. "ext-openssl": "Required to send log messages using SSL",
  1980. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1981. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1982. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1983. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1984. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1985. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-main": "3.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "Monolog\\": "src/Monolog"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Jordi Boggiano",
  2005. "email": "j.boggiano@seld.be",
  2006. "homepage": "https://seld.be"
  2007. }
  2008. ],
  2009. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2010. "homepage": "https://github.com/Seldaek/monolog",
  2011. "keywords": [
  2012. "log",
  2013. "logging",
  2014. "psr-3"
  2015. ],
  2016. "support": {
  2017. "issues": "https://github.com/Seldaek/monolog/issues",
  2018. "source": "https://github.com/Seldaek/monolog/tree/3.2.0"
  2019. },
  2020. "funding": [
  2021. {
  2022. "url": "https://github.com/Seldaek",
  2023. "type": "github"
  2024. },
  2025. {
  2026. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2027. "type": "tidelift"
  2028. }
  2029. ],
  2030. "time": "2022-07-24T12:00:55+00:00"
  2031. },
  2032. {
  2033. "name": "nette/schema",
  2034. "version": "v1.2.2",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/nette/schema.git",
  2038. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2043. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2044. "shasum": ""
  2045. },
  2046. "require": {
  2047. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2048. "php": ">=7.1 <8.2"
  2049. },
  2050. "require-dev": {
  2051. "nette/tester": "^2.3 || ^2.4",
  2052. "phpstan/phpstan-nette": "^0.12",
  2053. "tracy/tracy": "^2.7"
  2054. },
  2055. "type": "library",
  2056. "extra": {
  2057. "branch-alias": {
  2058. "dev-master": "1.2-dev"
  2059. }
  2060. },
  2061. "autoload": {
  2062. "classmap": [
  2063. "src/"
  2064. ]
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "BSD-3-Clause",
  2069. "GPL-2.0-only",
  2070. "GPL-3.0-only"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "David Grudl",
  2075. "homepage": "https://davidgrudl.com"
  2076. },
  2077. {
  2078. "name": "Nette Community",
  2079. "homepage": "https://nette.org/contributors"
  2080. }
  2081. ],
  2082. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2083. "homepage": "https://nette.org",
  2084. "keywords": [
  2085. "config",
  2086. "nette"
  2087. ],
  2088. "support": {
  2089. "issues": "https://github.com/nette/schema/issues",
  2090. "source": "https://github.com/nette/schema/tree/v1.2.2"
  2091. },
  2092. "time": "2021-10-15T11:40:02+00:00"
  2093. },
  2094. {
  2095. "name": "nette/utils",
  2096. "version": "v3.2.8",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/nette/utils.git",
  2100. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  2105. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "php": ">=7.2 <8.3"
  2110. },
  2111. "conflict": {
  2112. "nette/di": "<3.0.6"
  2113. },
  2114. "require-dev": {
  2115. "nette/tester": "~2.0",
  2116. "phpstan/phpstan": "^1.0",
  2117. "tracy/tracy": "^2.3"
  2118. },
  2119. "suggest": {
  2120. "ext-gd": "to use Image",
  2121. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2122. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2123. "ext-json": "to use Nette\\Utils\\Json",
  2124. "ext-mbstring": "to use Strings::lower() etc...",
  2125. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2126. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "3.2-dev"
  2132. }
  2133. },
  2134. "autoload": {
  2135. "classmap": [
  2136. "src/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "BSD-3-Clause",
  2142. "GPL-2.0-only",
  2143. "GPL-3.0-only"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "David Grudl",
  2148. "homepage": "https://davidgrudl.com"
  2149. },
  2150. {
  2151. "name": "Nette Community",
  2152. "homepage": "https://nette.org/contributors"
  2153. }
  2154. ],
  2155. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2156. "homepage": "https://nette.org",
  2157. "keywords": [
  2158. "array",
  2159. "core",
  2160. "datetime",
  2161. "images",
  2162. "json",
  2163. "nette",
  2164. "paginator",
  2165. "password",
  2166. "slugify",
  2167. "string",
  2168. "unicode",
  2169. "utf-8",
  2170. "utility",
  2171. "validation"
  2172. ],
  2173. "support": {
  2174. "issues": "https://github.com/nette/utils/issues",
  2175. "source": "https://github.com/nette/utils/tree/v3.2.8"
  2176. },
  2177. "time": "2022-09-12T23:36:20+00:00"
  2178. },
  2179. {
  2180. "name": "phpdocumentor/reflection-common",
  2181. "version": "2.2.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2185. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2190. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2191. "shasum": ""
  2192. },
  2193. "require": {
  2194. "php": "^7.2 || ^8.0"
  2195. },
  2196. "type": "library",
  2197. "extra": {
  2198. "branch-alias": {
  2199. "dev-2.x": "2.x-dev"
  2200. }
  2201. },
  2202. "autoload": {
  2203. "psr-4": {
  2204. "phpDocumentor\\Reflection\\": "src/"
  2205. }
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Jaap van Otterdijk",
  2214. "email": "opensource@ijaap.nl"
  2215. }
  2216. ],
  2217. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2218. "homepage": "http://www.phpdoc.org",
  2219. "keywords": [
  2220. "FQSEN",
  2221. "phpDocumentor",
  2222. "phpdoc",
  2223. "reflection",
  2224. "static analysis"
  2225. ],
  2226. "support": {
  2227. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2228. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2229. },
  2230. "time": "2020-06-27T09:03:43+00:00"
  2231. },
  2232. {
  2233. "name": "phpdocumentor/reflection-docblock",
  2234. "version": "5.3.0",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2238. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2243. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "ext-filter": "*",
  2248. "php": "^7.2 || ^8.0",
  2249. "phpdocumentor/reflection-common": "^2.2",
  2250. "phpdocumentor/type-resolver": "^1.3",
  2251. "webmozart/assert": "^1.9.1"
  2252. },
  2253. "require-dev": {
  2254. "mockery/mockery": "~1.3.2",
  2255. "psalm/phar": "^4.8"
  2256. },
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "5.x-dev"
  2261. }
  2262. },
  2263. "autoload": {
  2264. "psr-4": {
  2265. "phpDocumentor\\Reflection\\": "src"
  2266. }
  2267. },
  2268. "notification-url": "https://packagist.org/downloads/",
  2269. "license": [
  2270. "MIT"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Mike van Riel",
  2275. "email": "me@mikevanriel.com"
  2276. },
  2277. {
  2278. "name": "Jaap van Otterdijk",
  2279. "email": "account@ijaap.nl"
  2280. }
  2281. ],
  2282. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2283. "support": {
  2284. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2285. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2286. },
  2287. "time": "2021-10-19T17:43:47+00:00"
  2288. },
  2289. {
  2290. "name": "phpdocumentor/type-resolver",
  2291. "version": "1.6.2",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2295. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  2300. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  2301. "shasum": ""
  2302. },
  2303. "require": {
  2304. "php": "^7.4 || ^8.0",
  2305. "phpdocumentor/reflection-common": "^2.0"
  2306. },
  2307. "require-dev": {
  2308. "ext-tokenizer": "*",
  2309. "phpstan/extension-installer": "^1.1",
  2310. "phpstan/phpstan": "^1.8",
  2311. "phpstan/phpstan-phpunit": "^1.1",
  2312. "phpunit/phpunit": "^9.5",
  2313. "rector/rector": "^0.13.9",
  2314. "vimeo/psalm": "^4.25"
  2315. },
  2316. "type": "library",
  2317. "extra": {
  2318. "branch-alias": {
  2319. "dev-1.x": "1.x-dev"
  2320. }
  2321. },
  2322. "autoload": {
  2323. "psr-4": {
  2324. "phpDocumentor\\Reflection\\": "src"
  2325. }
  2326. },
  2327. "notification-url": "https://packagist.org/downloads/",
  2328. "license": [
  2329. "MIT"
  2330. ],
  2331. "authors": [
  2332. {
  2333. "name": "Mike van Riel",
  2334. "email": "me@mikevanriel.com"
  2335. }
  2336. ],
  2337. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2338. "support": {
  2339. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2340. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
  2341. },
  2342. "time": "2022-10-14T12:47:21+00:00"
  2343. },
  2344. {
  2345. "name": "psr/cache",
  2346. "version": "3.0.0",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/php-fig/cache.git",
  2350. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2355. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "php": ">=8.0.0"
  2360. },
  2361. "type": "library",
  2362. "extra": {
  2363. "branch-alias": {
  2364. "dev-master": "1.0.x-dev"
  2365. }
  2366. },
  2367. "autoload": {
  2368. "psr-4": {
  2369. "Psr\\Cache\\": "src/"
  2370. }
  2371. },
  2372. "notification-url": "https://packagist.org/downloads/",
  2373. "license": [
  2374. "MIT"
  2375. ],
  2376. "authors": [
  2377. {
  2378. "name": "PHP-FIG",
  2379. "homepage": "https://www.php-fig.org/"
  2380. }
  2381. ],
  2382. "description": "Common interface for caching libraries",
  2383. "keywords": [
  2384. "cache",
  2385. "psr",
  2386. "psr-6"
  2387. ],
  2388. "support": {
  2389. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2390. },
  2391. "time": "2021-02-03T23:26:27+00:00"
  2392. },
  2393. {
  2394. "name": "psr/container",
  2395. "version": "2.0.2",
  2396. "source": {
  2397. "type": "git",
  2398. "url": "https://github.com/php-fig/container.git",
  2399. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2400. },
  2401. "dist": {
  2402. "type": "zip",
  2403. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2404. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2405. "shasum": ""
  2406. },
  2407. "require": {
  2408. "php": ">=7.4.0"
  2409. },
  2410. "type": "library",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-master": "2.0.x-dev"
  2414. }
  2415. },
  2416. "autoload": {
  2417. "psr-4": {
  2418. "Psr\\Container\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "PHP-FIG",
  2428. "homepage": "https://www.php-fig.org/"
  2429. }
  2430. ],
  2431. "description": "Common Container Interface (PHP FIG PSR-11)",
  2432. "homepage": "https://github.com/php-fig/container",
  2433. "keywords": [
  2434. "PSR-11",
  2435. "container",
  2436. "container-interface",
  2437. "container-interop",
  2438. "psr"
  2439. ],
  2440. "support": {
  2441. "issues": "https://github.com/php-fig/container/issues",
  2442. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2443. },
  2444. "time": "2021-11-05T16:47:00+00:00"
  2445. },
  2446. {
  2447. "name": "psr/event-dispatcher",
  2448. "version": "1.0.0",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/php-fig/event-dispatcher.git",
  2452. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2457. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": ">=7.2.0"
  2462. },
  2463. "type": "library",
  2464. "extra": {
  2465. "branch-alias": {
  2466. "dev-master": "1.0.x-dev"
  2467. }
  2468. },
  2469. "autoload": {
  2470. "psr-4": {
  2471. "Psr\\EventDispatcher\\": "src/"
  2472. }
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "PHP-FIG",
  2481. "homepage": "http://www.php-fig.org/"
  2482. }
  2483. ],
  2484. "description": "Standard interfaces for event handling.",
  2485. "keywords": [
  2486. "events",
  2487. "psr",
  2488. "psr-14"
  2489. ],
  2490. "support": {
  2491. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2492. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2493. },
  2494. "time": "2019-01-08T18:20:26+00:00"
  2495. },
  2496. {
  2497. "name": "psr/link",
  2498. "version": "2.0.1",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/php-fig/link.git",
  2502. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2507. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2508. "shasum": ""
  2509. },
  2510. "require": {
  2511. "php": ">=8.0.0"
  2512. },
  2513. "suggest": {
  2514. "fig/link-util": "Provides some useful PSR-13 utilities"
  2515. },
  2516. "type": "library",
  2517. "extra": {
  2518. "branch-alias": {
  2519. "dev-master": "2.0.x-dev"
  2520. }
  2521. },
  2522. "autoload": {
  2523. "psr-4": {
  2524. "Psr\\Link\\": "src/"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "PHP-FIG",
  2534. "homepage": "http://www.php-fig.org/"
  2535. }
  2536. ],
  2537. "description": "Common interfaces for HTTP links",
  2538. "homepage": "https://github.com/php-fig/link",
  2539. "keywords": [
  2540. "http",
  2541. "http-link",
  2542. "link",
  2543. "psr",
  2544. "psr-13",
  2545. "rest"
  2546. ],
  2547. "support": {
  2548. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2549. },
  2550. "time": "2021-03-11T23:00:27+00:00"
  2551. },
  2552. {
  2553. "name": "psr/log",
  2554. "version": "3.0.0",
  2555. "source": {
  2556. "type": "git",
  2557. "url": "https://github.com/php-fig/log.git",
  2558. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2559. },
  2560. "dist": {
  2561. "type": "zip",
  2562. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2563. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2564. "shasum": ""
  2565. },
  2566. "require": {
  2567. "php": ">=8.0.0"
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "3.x-dev"
  2573. }
  2574. },
  2575. "autoload": {
  2576. "psr-4": {
  2577. "Psr\\Log\\": "src"
  2578. }
  2579. },
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "MIT"
  2583. ],
  2584. "authors": [
  2585. {
  2586. "name": "PHP-FIG",
  2587. "homepage": "https://www.php-fig.org/"
  2588. }
  2589. ],
  2590. "description": "Common interface for logging libraries",
  2591. "homepage": "https://github.com/php-fig/log",
  2592. "keywords": [
  2593. "log",
  2594. "psr",
  2595. "psr-3"
  2596. ],
  2597. "support": {
  2598. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2599. },
  2600. "time": "2021-07-14T16:46:02+00:00"
  2601. },
  2602. {
  2603. "name": "sensio/framework-extra-bundle",
  2604. "version": "v6.2.9",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2608. "reference": "dcfac94d6bdcf95c126e8ccac2104917c7c8f135"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/dcfac94d6bdcf95c126e8ccac2104917c7c8f135",
  2613. "reference": "dcfac94d6bdcf95c126e8ccac2104917c7c8f135",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "doctrine/annotations": "^1.0",
  2618. "php": ">=7.2.5",
  2619. "symfony/config": "^4.4|^5.0|^6.0",
  2620. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2621. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2622. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2623. },
  2624. "conflict": {
  2625. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2626. "doctrine/persistence": "<1.3"
  2627. },
  2628. "require-dev": {
  2629. "doctrine/dbal": "^2.10|^3.0",
  2630. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2631. "doctrine/orm": "^2.5",
  2632. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2633. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2634. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2635. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2636. "symfony/finder": "^4.4|^5.0|^6.0",
  2637. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2638. "symfony/monolog-bundle": "^3.2",
  2639. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2640. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2641. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2642. "symfony/yaml": "^4.4|^5.0|^6.0",
  2643. "twig/twig": "^1.34|^2.4|^3.0"
  2644. },
  2645. "type": "symfony-bundle",
  2646. "extra": {
  2647. "branch-alias": {
  2648. "dev-master": "6.1.x-dev"
  2649. }
  2650. },
  2651. "autoload": {
  2652. "psr-4": {
  2653. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2654. },
  2655. "exclude-from-classmap": [
  2656. "/tests/"
  2657. ]
  2658. },
  2659. "notification-url": "https://packagist.org/downloads/",
  2660. "license": [
  2661. "MIT"
  2662. ],
  2663. "authors": [
  2664. {
  2665. "name": "Fabien Potencier",
  2666. "email": "fabien@symfony.com"
  2667. }
  2668. ],
  2669. "description": "This bundle provides a way to configure your controllers with annotations",
  2670. "keywords": [
  2671. "annotations",
  2672. "controllers"
  2673. ],
  2674. "support": {
  2675. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2676. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.9"
  2677. },
  2678. "time": "2022-11-01T17:17:13+00:00"
  2679. },
  2680. {
  2681. "name": "symfony/apache-pack",
  2682. "version": "v1.0.1",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/symfony/apache-pack.git",
  2686. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2691. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2692. "shasum": ""
  2693. },
  2694. "type": "symfony-pack",
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "description": "A pack for Apache support in Symfony",
  2700. "support": {
  2701. "issues": "https://github.com/symfony/apache-pack/issues",
  2702. "source": "https://github.com/symfony/apache-pack/tree/master"
  2703. },
  2704. "time": "2017-12-12T01:46:35+00:00"
  2705. },
  2706. {
  2707. "name": "symfony/asset",
  2708. "version": "v6.1.5",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/symfony/asset.git",
  2712. "reference": "6065b5edc36442cb1ba98dc40f7c7f6b9e154729"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/symfony/asset/zipball/6065b5edc36442cb1ba98dc40f7c7f6b9e154729",
  2717. "reference": "6065b5edc36442cb1ba98dc40f7c7f6b9e154729",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "php": ">=8.1"
  2722. },
  2723. "conflict": {
  2724. "symfony/http-foundation": "<5.4"
  2725. },
  2726. "require-dev": {
  2727. "symfony/http-client": "^5.4|^6.0",
  2728. "symfony/http-foundation": "^5.4|^6.0",
  2729. "symfony/http-kernel": "^5.4|^6.0"
  2730. },
  2731. "suggest": {
  2732. "symfony/http-foundation": ""
  2733. },
  2734. "type": "library",
  2735. "autoload": {
  2736. "psr-4": {
  2737. "Symfony\\Component\\Asset\\": ""
  2738. },
  2739. "exclude-from-classmap": [
  2740. "/Tests/"
  2741. ]
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "Fabien Potencier",
  2750. "email": "fabien@symfony.com"
  2751. },
  2752. {
  2753. "name": "Symfony Community",
  2754. "homepage": "https://symfony.com/contributors"
  2755. }
  2756. ],
  2757. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2758. "homepage": "https://symfony.com",
  2759. "support": {
  2760. "source": "https://github.com/symfony/asset/tree/v6.1.5"
  2761. },
  2762. "funding": [
  2763. {
  2764. "url": "https://symfony.com/sponsor",
  2765. "type": "custom"
  2766. },
  2767. {
  2768. "url": "https://github.com/fabpot",
  2769. "type": "github"
  2770. },
  2771. {
  2772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2773. "type": "tidelift"
  2774. }
  2775. ],
  2776. "time": "2022-08-31T08:17:45+00:00"
  2777. },
  2778. {
  2779. "name": "symfony/cache",
  2780. "version": "v6.1.7",
  2781. "source": {
  2782. "type": "git",
  2783. "url": "https://github.com/symfony/cache.git",
  2784. "reference": "ee5d5b88162684a1377706f9c25125e97685ee61"
  2785. },
  2786. "dist": {
  2787. "type": "zip",
  2788. "url": "https://api.github.com/repos/symfony/cache/zipball/ee5d5b88162684a1377706f9c25125e97685ee61",
  2789. "reference": "ee5d5b88162684a1377706f9c25125e97685ee61",
  2790. "shasum": ""
  2791. },
  2792. "require": {
  2793. "php": ">=8.1",
  2794. "psr/cache": "^2.0|^3.0",
  2795. "psr/log": "^1.1|^2|^3",
  2796. "symfony/cache-contracts": "^1.1.7|^2|^3",
  2797. "symfony/service-contracts": "^1.1|^2|^3",
  2798. "symfony/var-exporter": "^5.4|^6.0"
  2799. },
  2800. "conflict": {
  2801. "doctrine/dbal": "<2.13.1",
  2802. "symfony/dependency-injection": "<5.4",
  2803. "symfony/http-kernel": "<5.4",
  2804. "symfony/var-dumper": "<5.4"
  2805. },
  2806. "provide": {
  2807. "psr/cache-implementation": "2.0|3.0",
  2808. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2809. "symfony/cache-implementation": "1.1|2.0|3.0"
  2810. },
  2811. "require-dev": {
  2812. "cache/integration-tests": "dev-master",
  2813. "doctrine/dbal": "^2.13.1|^3.0",
  2814. "predis/predis": "^1.1",
  2815. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2816. "symfony/config": "^5.4|^6.0",
  2817. "symfony/dependency-injection": "^5.4|^6.0",
  2818. "symfony/filesystem": "^5.4|^6.0",
  2819. "symfony/http-kernel": "^5.4|^6.0",
  2820. "symfony/messenger": "^5.4|^6.0",
  2821. "symfony/var-dumper": "^5.4|^6.0"
  2822. },
  2823. "type": "library",
  2824. "autoload": {
  2825. "psr-4": {
  2826. "Symfony\\Component\\Cache\\": ""
  2827. },
  2828. "classmap": [
  2829. "Traits/ValueWrapper.php"
  2830. ],
  2831. "exclude-from-classmap": [
  2832. "/Tests/"
  2833. ]
  2834. },
  2835. "notification-url": "https://packagist.org/downloads/",
  2836. "license": [
  2837. "MIT"
  2838. ],
  2839. "authors": [
  2840. {
  2841. "name": "Nicolas Grekas",
  2842. "email": "p@tchwork.com"
  2843. },
  2844. {
  2845. "name": "Symfony Community",
  2846. "homepage": "https://symfony.com/contributors"
  2847. }
  2848. ],
  2849. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2850. "homepage": "https://symfony.com",
  2851. "keywords": [
  2852. "caching",
  2853. "psr6"
  2854. ],
  2855. "support": {
  2856. "source": "https://github.com/symfony/cache/tree/v6.1.7"
  2857. },
  2858. "funding": [
  2859. {
  2860. "url": "https://symfony.com/sponsor",
  2861. "type": "custom"
  2862. },
  2863. {
  2864. "url": "https://github.com/fabpot",
  2865. "type": "github"
  2866. },
  2867. {
  2868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2869. "type": "tidelift"
  2870. }
  2871. ],
  2872. "time": "2022-10-28T16:23:08+00:00"
  2873. },
  2874. {
  2875. "name": "symfony/cache-contracts",
  2876. "version": "v3.1.1",
  2877. "source": {
  2878. "type": "git",
  2879. "url": "https://github.com/symfony/cache-contracts.git",
  2880. "reference": "2eab7fa459af6d75c6463e63e633b667a9b761d3"
  2881. },
  2882. "dist": {
  2883. "type": "zip",
  2884. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2eab7fa459af6d75c6463e63e633b667a9b761d3",
  2885. "reference": "2eab7fa459af6d75c6463e63e633b667a9b761d3",
  2886. "shasum": ""
  2887. },
  2888. "require": {
  2889. "php": ">=8.1",
  2890. "psr/cache": "^3.0"
  2891. },
  2892. "suggest": {
  2893. "symfony/cache-implementation": ""
  2894. },
  2895. "type": "library",
  2896. "extra": {
  2897. "branch-alias": {
  2898. "dev-main": "3.1-dev"
  2899. },
  2900. "thanks": {
  2901. "name": "symfony/contracts",
  2902. "url": "https://github.com/symfony/contracts"
  2903. }
  2904. },
  2905. "autoload": {
  2906. "psr-4": {
  2907. "Symfony\\Contracts\\Cache\\": ""
  2908. }
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "MIT"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Nicolas Grekas",
  2917. "email": "p@tchwork.com"
  2918. },
  2919. {
  2920. "name": "Symfony Community",
  2921. "homepage": "https://symfony.com/contributors"
  2922. }
  2923. ],
  2924. "description": "Generic abstractions related to caching",
  2925. "homepage": "https://symfony.com",
  2926. "keywords": [
  2927. "abstractions",
  2928. "contracts",
  2929. "decoupling",
  2930. "interfaces",
  2931. "interoperability",
  2932. "standards"
  2933. ],
  2934. "support": {
  2935. "source": "https://github.com/symfony/cache-contracts/tree/v3.1.1"
  2936. },
  2937. "funding": [
  2938. {
  2939. "url": "https://symfony.com/sponsor",
  2940. "type": "custom"
  2941. },
  2942. {
  2943. "url": "https://github.com/fabpot",
  2944. "type": "github"
  2945. },
  2946. {
  2947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2948. "type": "tidelift"
  2949. }
  2950. ],
  2951. "time": "2022-02-25T11:15:52+00:00"
  2952. },
  2953. {
  2954. "name": "symfony/config",
  2955. "version": "v6.1.3",
  2956. "source": {
  2957. "type": "git",
  2958. "url": "https://github.com/symfony/config.git",
  2959. "reference": "a0645dc585d378b73c01115dd7ab9348f7d40c85"
  2960. },
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://api.github.com/repos/symfony/config/zipball/a0645dc585d378b73c01115dd7ab9348f7d40c85",
  2964. "reference": "a0645dc585d378b73c01115dd7ab9348f7d40c85",
  2965. "shasum": ""
  2966. },
  2967. "require": {
  2968. "php": ">=8.1",
  2969. "symfony/deprecation-contracts": "^2.1|^3",
  2970. "symfony/filesystem": "^5.4|^6.0",
  2971. "symfony/polyfill-ctype": "~1.8"
  2972. },
  2973. "conflict": {
  2974. "symfony/finder": "<5.4"
  2975. },
  2976. "require-dev": {
  2977. "symfony/event-dispatcher": "^5.4|^6.0",
  2978. "symfony/finder": "^5.4|^6.0",
  2979. "symfony/messenger": "^5.4|^6.0",
  2980. "symfony/service-contracts": "^1.1|^2|^3",
  2981. "symfony/yaml": "^5.4|^6.0"
  2982. },
  2983. "suggest": {
  2984. "symfony/yaml": "To use the yaml reference dumper"
  2985. },
  2986. "type": "library",
  2987. "autoload": {
  2988. "psr-4": {
  2989. "Symfony\\Component\\Config\\": ""
  2990. },
  2991. "exclude-from-classmap": [
  2992. "/Tests/"
  2993. ]
  2994. },
  2995. "notification-url": "https://packagist.org/downloads/",
  2996. "license": [
  2997. "MIT"
  2998. ],
  2999. "authors": [
  3000. {
  3001. "name": "Fabien Potencier",
  3002. "email": "fabien@symfony.com"
  3003. },
  3004. {
  3005. "name": "Symfony Community",
  3006. "homepage": "https://symfony.com/contributors"
  3007. }
  3008. ],
  3009. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3010. "homepage": "https://symfony.com",
  3011. "support": {
  3012. "source": "https://github.com/symfony/config/tree/v6.1.3"
  3013. },
  3014. "funding": [
  3015. {
  3016. "url": "https://symfony.com/sponsor",
  3017. "type": "custom"
  3018. },
  3019. {
  3020. "url": "https://github.com/fabpot",
  3021. "type": "github"
  3022. },
  3023. {
  3024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3025. "type": "tidelift"
  3026. }
  3027. ],
  3028. "time": "2022-07-20T15:00:40+00:00"
  3029. },
  3030. {
  3031. "name": "symfony/console",
  3032. "version": "v6.1.7",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/symfony/console.git",
  3036. "reference": "a1282bd0c096e0bdb8800b104177e2ce404d8815"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/symfony/console/zipball/a1282bd0c096e0bdb8800b104177e2ce404d8815",
  3041. "reference": "a1282bd0c096e0bdb8800b104177e2ce404d8815",
  3042. "shasum": ""
  3043. },
  3044. "require": {
  3045. "php": ">=8.1",
  3046. "symfony/deprecation-contracts": "^2.1|^3",
  3047. "symfony/polyfill-mbstring": "~1.0",
  3048. "symfony/service-contracts": "^1.1|^2|^3",
  3049. "symfony/string": "^5.4|^6.0"
  3050. },
  3051. "conflict": {
  3052. "symfony/dependency-injection": "<5.4",
  3053. "symfony/dotenv": "<5.4",
  3054. "symfony/event-dispatcher": "<5.4",
  3055. "symfony/lock": "<5.4",
  3056. "symfony/process": "<5.4"
  3057. },
  3058. "provide": {
  3059. "psr/log-implementation": "1.0|2.0|3.0"
  3060. },
  3061. "require-dev": {
  3062. "psr/log": "^1|^2|^3",
  3063. "symfony/config": "^5.4|^6.0",
  3064. "symfony/dependency-injection": "^5.4|^6.0",
  3065. "symfony/event-dispatcher": "^5.4|^6.0",
  3066. "symfony/lock": "^5.4|^6.0",
  3067. "symfony/process": "^5.4|^6.0",
  3068. "symfony/var-dumper": "^5.4|^6.0"
  3069. },
  3070. "suggest": {
  3071. "psr/log": "For using the console logger",
  3072. "symfony/event-dispatcher": "",
  3073. "symfony/lock": "",
  3074. "symfony/process": ""
  3075. },
  3076. "type": "library",
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Symfony\\Component\\Console\\": ""
  3080. },
  3081. "exclude-from-classmap": [
  3082. "/Tests/"
  3083. ]
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "Fabien Potencier",
  3092. "email": "fabien@symfony.com"
  3093. },
  3094. {
  3095. "name": "Symfony Community",
  3096. "homepage": "https://symfony.com/contributors"
  3097. }
  3098. ],
  3099. "description": "Eases the creation of beautiful and testable command line interfaces",
  3100. "homepage": "https://symfony.com",
  3101. "keywords": [
  3102. "cli",
  3103. "command line",
  3104. "console",
  3105. "terminal"
  3106. ],
  3107. "support": {
  3108. "source": "https://github.com/symfony/console/tree/v6.1.7"
  3109. },
  3110. "funding": [
  3111. {
  3112. "url": "https://symfony.com/sponsor",
  3113. "type": "custom"
  3114. },
  3115. {
  3116. "url": "https://github.com/fabpot",
  3117. "type": "github"
  3118. },
  3119. {
  3120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3121. "type": "tidelift"
  3122. }
  3123. ],
  3124. "time": "2022-10-26T21:42:49+00:00"
  3125. },
  3126. {
  3127. "name": "symfony/dependency-injection",
  3128. "version": "v6.1.5",
  3129. "source": {
  3130. "type": "git",
  3131. "url": "https://github.com/symfony/dependency-injection.git",
  3132. "reference": "b9c797c9d56afc290d4265854bafd01b4e379240"
  3133. },
  3134. "dist": {
  3135. "type": "zip",
  3136. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b9c797c9d56afc290d4265854bafd01b4e379240",
  3137. "reference": "b9c797c9d56afc290d4265854bafd01b4e379240",
  3138. "shasum": ""
  3139. },
  3140. "require": {
  3141. "php": ">=8.1",
  3142. "psr/container": "^1.1|^2.0",
  3143. "symfony/deprecation-contracts": "^2.1|^3",
  3144. "symfony/service-contracts": "^1.1.6|^2.0|^3.0"
  3145. },
  3146. "conflict": {
  3147. "ext-psr": "<1.1|>=2",
  3148. "symfony/config": "<6.1",
  3149. "symfony/finder": "<5.4",
  3150. "symfony/proxy-manager-bridge": "<5.4",
  3151. "symfony/yaml": "<5.4"
  3152. },
  3153. "provide": {
  3154. "psr/container-implementation": "1.1|2.0",
  3155. "symfony/service-implementation": "1.1|2.0|3.0"
  3156. },
  3157. "require-dev": {
  3158. "symfony/config": "^6.1",
  3159. "symfony/expression-language": "^5.4|^6.0",
  3160. "symfony/yaml": "^5.4|^6.0"
  3161. },
  3162. "suggest": {
  3163. "symfony/config": "",
  3164. "symfony/expression-language": "For using expressions in service container configuration",
  3165. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3166. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3167. "symfony/yaml": ""
  3168. },
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Symfony\\Component\\DependencyInjection\\": ""
  3173. },
  3174. "exclude-from-classmap": [
  3175. "/Tests/"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Fabien Potencier",
  3185. "email": "fabien@symfony.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3193. "homepage": "https://symfony.com",
  3194. "support": {
  3195. "source": "https://github.com/symfony/dependency-injection/tree/v6.1.5"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://symfony.com/sponsor",
  3200. "type": "custom"
  3201. },
  3202. {
  3203. "url": "https://github.com/fabpot",
  3204. "type": "github"
  3205. },
  3206. {
  3207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3208. "type": "tidelift"
  3209. }
  3210. ],
  3211. "time": "2022-09-28T16:00:52+00:00"
  3212. },
  3213. {
  3214. "name": "symfony/deprecation-contracts",
  3215. "version": "v3.1.1",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/deprecation-contracts.git",
  3219. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  3224. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=8.1"
  3229. },
  3230. "type": "library",
  3231. "extra": {
  3232. "branch-alias": {
  3233. "dev-main": "3.1-dev"
  3234. },
  3235. "thanks": {
  3236. "name": "symfony/contracts",
  3237. "url": "https://github.com/symfony/contracts"
  3238. }
  3239. },
  3240. "autoload": {
  3241. "files": [
  3242. "function.php"
  3243. ]
  3244. },
  3245. "notification-url": "https://packagist.org/downloads/",
  3246. "license": [
  3247. "MIT"
  3248. ],
  3249. "authors": [
  3250. {
  3251. "name": "Nicolas Grekas",
  3252. "email": "p@tchwork.com"
  3253. },
  3254. {
  3255. "name": "Symfony Community",
  3256. "homepage": "https://symfony.com/contributors"
  3257. }
  3258. ],
  3259. "description": "A generic function and convention to trigger deprecation notices",
  3260. "homepage": "https://symfony.com",
  3261. "support": {
  3262. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.1.1"
  3263. },
  3264. "funding": [
  3265. {
  3266. "url": "https://symfony.com/sponsor",
  3267. "type": "custom"
  3268. },
  3269. {
  3270. "url": "https://github.com/fabpot",
  3271. "type": "github"
  3272. },
  3273. {
  3274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3275. "type": "tidelift"
  3276. }
  3277. ],
  3278. "time": "2022-02-25T11:15:52+00:00"
  3279. },
  3280. {
  3281. "name": "symfony/doctrine-bridge",
  3282. "version": "v6.1.7",
  3283. "source": {
  3284. "type": "git",
  3285. "url": "https://github.com/symfony/doctrine-bridge.git",
  3286. "reference": "4b6b99d059333b9fec2d0abbe61ea38573319480"
  3287. },
  3288. "dist": {
  3289. "type": "zip",
  3290. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/4b6b99d059333b9fec2d0abbe61ea38573319480",
  3291. "reference": "4b6b99d059333b9fec2d0abbe61ea38573319480",
  3292. "shasum": ""
  3293. },
  3294. "require": {
  3295. "doctrine/event-manager": "^1|^2",
  3296. "doctrine/persistence": "^2|^3",
  3297. "php": ">=8.1",
  3298. "symfony/deprecation-contracts": "^2.1|^3",
  3299. "symfony/polyfill-ctype": "~1.8",
  3300. "symfony/polyfill-mbstring": "~1.0",
  3301. "symfony/service-contracts": "^1.1|^2|^3"
  3302. },
  3303. "conflict": {
  3304. "doctrine/dbal": "<2.13.1",
  3305. "doctrine/lexer": "<1.1",
  3306. "doctrine/orm": "<2.7.4",
  3307. "phpunit/phpunit": "<5.4.3",
  3308. "symfony/cache": "<5.4",
  3309. "symfony/dependency-injection": "<5.4",
  3310. "symfony/form": "<5.4",
  3311. "symfony/http-kernel": "<5.4",
  3312. "symfony/messenger": "<5.4",
  3313. "symfony/property-info": "<5.4",
  3314. "symfony/security-bundle": "<5.4",
  3315. "symfony/security-core": "<6.0",
  3316. "symfony/validator": "<5.4"
  3317. },
  3318. "require-dev": {
  3319. "doctrine/annotations": "^1.10.4",
  3320. "doctrine/collections": "~1.0",
  3321. "doctrine/data-fixtures": "^1.1",
  3322. "doctrine/dbal": "^2.13.1|^3.0",
  3323. "doctrine/orm": "^2.7.4",
  3324. "psr/log": "^1|^2|^3",
  3325. "symfony/cache": "^5.4|^6.0",
  3326. "symfony/config": "^5.4|^6.0",
  3327. "symfony/dependency-injection": "^5.4|^6.0",
  3328. "symfony/doctrine-messenger": "^5.4|^6.0",
  3329. "symfony/expression-language": "^5.4|^6.0",
  3330. "symfony/form": "^5.4.9|^6.0.9",
  3331. "symfony/http-kernel": "^5.4|^6.0",
  3332. "symfony/messenger": "^5.4|^6.0",
  3333. "symfony/property-access": "^5.4|^6.0",
  3334. "symfony/property-info": "^5.4|^6.0",
  3335. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3336. "symfony/security-core": "^6.0",
  3337. "symfony/stopwatch": "^5.4|^6.0",
  3338. "symfony/translation": "^5.4|^6.0",
  3339. "symfony/uid": "^5.4|^6.0",
  3340. "symfony/validator": "^5.4|^6.0",
  3341. "symfony/var-dumper": "^5.4|^6.0"
  3342. },
  3343. "suggest": {
  3344. "doctrine/data-fixtures": "",
  3345. "doctrine/dbal": "",
  3346. "doctrine/orm": "",
  3347. "symfony/form": "",
  3348. "symfony/property-info": "",
  3349. "symfony/validator": ""
  3350. },
  3351. "type": "symfony-bridge",
  3352. "autoload": {
  3353. "psr-4": {
  3354. "Symfony\\Bridge\\Doctrine\\": ""
  3355. },
  3356. "exclude-from-classmap": [
  3357. "/Tests/"
  3358. ]
  3359. },
  3360. "notification-url": "https://packagist.org/downloads/",
  3361. "license": [
  3362. "MIT"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "Fabien Potencier",
  3367. "email": "fabien@symfony.com"
  3368. },
  3369. {
  3370. "name": "Symfony Community",
  3371. "homepage": "https://symfony.com/contributors"
  3372. }
  3373. ],
  3374. "description": "Provides integration for Doctrine with various Symfony components",
  3375. "homepage": "https://symfony.com",
  3376. "support": {
  3377. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.1.7"
  3378. },
  3379. "funding": [
  3380. {
  3381. "url": "https://symfony.com/sponsor",
  3382. "type": "custom"
  3383. },
  3384. {
  3385. "url": "https://github.com/fabpot",
  3386. "type": "github"
  3387. },
  3388. {
  3389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3390. "type": "tidelift"
  3391. }
  3392. ],
  3393. "time": "2022-10-15T06:26:03+00:00"
  3394. },
  3395. {
  3396. "name": "symfony/dotenv",
  3397. "version": "v6.1.0",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/symfony/dotenv.git",
  3401. "reference": "568c11bcedf419e7e61f663912c3547b54de51df"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/symfony/dotenv/zipball/568c11bcedf419e7e61f663912c3547b54de51df",
  3406. "reference": "568c11bcedf419e7e61f663912c3547b54de51df",
  3407. "shasum": ""
  3408. },
  3409. "require": {
  3410. "php": ">=8.1"
  3411. },
  3412. "conflict": {
  3413. "symfony/console": "<5.4"
  3414. },
  3415. "require-dev": {
  3416. "symfony/console": "^5.4|^6.0",
  3417. "symfony/process": "^5.4|^6.0"
  3418. },
  3419. "type": "library",
  3420. "autoload": {
  3421. "psr-4": {
  3422. "Symfony\\Component\\Dotenv\\": ""
  3423. },
  3424. "exclude-from-classmap": [
  3425. "/Tests/"
  3426. ]
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "MIT"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "Fabien Potencier",
  3435. "email": "fabien@symfony.com"
  3436. },
  3437. {
  3438. "name": "Symfony Community",
  3439. "homepage": "https://symfony.com/contributors"
  3440. }
  3441. ],
  3442. "description": "Registers environment variables from a .env file",
  3443. "homepage": "https://symfony.com",
  3444. "keywords": [
  3445. "dotenv",
  3446. "env",
  3447. "environment"
  3448. ],
  3449. "support": {
  3450. "source": "https://github.com/symfony/dotenv/tree/v6.1.0"
  3451. },
  3452. "funding": [
  3453. {
  3454. "url": "https://symfony.com/sponsor",
  3455. "type": "custom"
  3456. },
  3457. {
  3458. "url": "https://github.com/fabpot",
  3459. "type": "github"
  3460. },
  3461. {
  3462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3463. "type": "tidelift"
  3464. }
  3465. ],
  3466. "time": "2022-04-01T07:15:35+00:00"
  3467. },
  3468. {
  3469. "name": "symfony/error-handler",
  3470. "version": "v6.1.7",
  3471. "source": {
  3472. "type": "git",
  3473. "url": "https://github.com/symfony/error-handler.git",
  3474. "reference": "699a26ce5ec656c198bf6e26398b0f0818c7e504"
  3475. },
  3476. "dist": {
  3477. "type": "zip",
  3478. "url": "https://api.github.com/repos/symfony/error-handler/zipball/699a26ce5ec656c198bf6e26398b0f0818c7e504",
  3479. "reference": "699a26ce5ec656c198bf6e26398b0f0818c7e504",
  3480. "shasum": ""
  3481. },
  3482. "require": {
  3483. "php": ">=8.1",
  3484. "psr/log": "^1|^2|^3",
  3485. "symfony/var-dumper": "^5.4|^6.0"
  3486. },
  3487. "require-dev": {
  3488. "symfony/deprecation-contracts": "^2.1|^3",
  3489. "symfony/http-kernel": "^5.4|^6.0",
  3490. "symfony/serializer": "^5.4|^6.0"
  3491. },
  3492. "bin": [
  3493. "Resources/bin/patch-type-declarations"
  3494. ],
  3495. "type": "library",
  3496. "autoload": {
  3497. "psr-4": {
  3498. "Symfony\\Component\\ErrorHandler\\": ""
  3499. },
  3500. "exclude-from-classmap": [
  3501. "/Tests/"
  3502. ]
  3503. },
  3504. "notification-url": "https://packagist.org/downloads/",
  3505. "license": [
  3506. "MIT"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "Fabien Potencier",
  3511. "email": "fabien@symfony.com"
  3512. },
  3513. {
  3514. "name": "Symfony Community",
  3515. "homepage": "https://symfony.com/contributors"
  3516. }
  3517. ],
  3518. "description": "Provides tools to manage errors and ease debugging PHP code",
  3519. "homepage": "https://symfony.com",
  3520. "support": {
  3521. "source": "https://github.com/symfony/error-handler/tree/v6.1.7"
  3522. },
  3523. "funding": [
  3524. {
  3525. "url": "https://symfony.com/sponsor",
  3526. "type": "custom"
  3527. },
  3528. {
  3529. "url": "https://github.com/fabpot",
  3530. "type": "github"
  3531. },
  3532. {
  3533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3534. "type": "tidelift"
  3535. }
  3536. ],
  3537. "time": "2022-10-28T16:23:08+00:00"
  3538. },
  3539. {
  3540. "name": "symfony/event-dispatcher",
  3541. "version": "v6.1.0",
  3542. "source": {
  3543. "type": "git",
  3544. "url": "https://github.com/symfony/event-dispatcher.git",
  3545. "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347"
  3546. },
  3547. "dist": {
  3548. "type": "zip",
  3549. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a0449a7ad7daa0f7c0acd508259f80544ab5a347",
  3550. "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347",
  3551. "shasum": ""
  3552. },
  3553. "require": {
  3554. "php": ">=8.1",
  3555. "symfony/event-dispatcher-contracts": "^2|^3"
  3556. },
  3557. "conflict": {
  3558. "symfony/dependency-injection": "<5.4"
  3559. },
  3560. "provide": {
  3561. "psr/event-dispatcher-implementation": "1.0",
  3562. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3563. },
  3564. "require-dev": {
  3565. "psr/log": "^1|^2|^3",
  3566. "symfony/config": "^5.4|^6.0",
  3567. "symfony/dependency-injection": "^5.4|^6.0",
  3568. "symfony/error-handler": "^5.4|^6.0",
  3569. "symfony/expression-language": "^5.4|^6.0",
  3570. "symfony/http-foundation": "^5.4|^6.0",
  3571. "symfony/service-contracts": "^1.1|^2|^3",
  3572. "symfony/stopwatch": "^5.4|^6.0"
  3573. },
  3574. "suggest": {
  3575. "symfony/dependency-injection": "",
  3576. "symfony/http-kernel": ""
  3577. },
  3578. "type": "library",
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Symfony\\Component\\EventDispatcher\\": ""
  3582. },
  3583. "exclude-from-classmap": [
  3584. "/Tests/"
  3585. ]
  3586. },
  3587. "notification-url": "https://packagist.org/downloads/",
  3588. "license": [
  3589. "MIT"
  3590. ],
  3591. "authors": [
  3592. {
  3593. "name": "Fabien Potencier",
  3594. "email": "fabien@symfony.com"
  3595. },
  3596. {
  3597. "name": "Symfony Community",
  3598. "homepage": "https://symfony.com/contributors"
  3599. }
  3600. ],
  3601. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3602. "homepage": "https://symfony.com",
  3603. "support": {
  3604. "source": "https://github.com/symfony/event-dispatcher/tree/v6.1.0"
  3605. },
  3606. "funding": [
  3607. {
  3608. "url": "https://symfony.com/sponsor",
  3609. "type": "custom"
  3610. },
  3611. {
  3612. "url": "https://github.com/fabpot",
  3613. "type": "github"
  3614. },
  3615. {
  3616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3617. "type": "tidelift"
  3618. }
  3619. ],
  3620. "time": "2022-05-05T16:51:07+00:00"
  3621. },
  3622. {
  3623. "name": "symfony/event-dispatcher-contracts",
  3624. "version": "v3.1.1",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3628. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/02ff5eea2f453731cfbc6bc215e456b781480448",
  3633. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448",
  3634. "shasum": ""
  3635. },
  3636. "require": {
  3637. "php": ">=8.1",
  3638. "psr/event-dispatcher": "^1"
  3639. },
  3640. "suggest": {
  3641. "symfony/event-dispatcher-implementation": ""
  3642. },
  3643. "type": "library",
  3644. "extra": {
  3645. "branch-alias": {
  3646. "dev-main": "3.1-dev"
  3647. },
  3648. "thanks": {
  3649. "name": "symfony/contracts",
  3650. "url": "https://github.com/symfony/contracts"
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "Symfony\\Contracts\\EventDispatcher\\": ""
  3656. }
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "Nicolas Grekas",
  3665. "email": "p@tchwork.com"
  3666. },
  3667. {
  3668. "name": "Symfony Community",
  3669. "homepage": "https://symfony.com/contributors"
  3670. }
  3671. ],
  3672. "description": "Generic abstractions related to dispatching event",
  3673. "homepage": "https://symfony.com",
  3674. "keywords": [
  3675. "abstractions",
  3676. "contracts",
  3677. "decoupling",
  3678. "interfaces",
  3679. "interoperability",
  3680. "standards"
  3681. ],
  3682. "support": {
  3683. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.1.1"
  3684. },
  3685. "funding": [
  3686. {
  3687. "url": "https://symfony.com/sponsor",
  3688. "type": "custom"
  3689. },
  3690. {
  3691. "url": "https://github.com/fabpot",
  3692. "type": "github"
  3693. },
  3694. {
  3695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3696. "type": "tidelift"
  3697. }
  3698. ],
  3699. "time": "2022-02-25T11:15:52+00:00"
  3700. },
  3701. {
  3702. "name": "symfony/expression-language",
  3703. "version": "v6.1.6",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/symfony/expression-language.git",
  3707. "reference": "d1538560c075007d3dfd1f8e3a05e43a5ff13fd6"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/symfony/expression-language/zipball/d1538560c075007d3dfd1f8e3a05e43a5ff13fd6",
  3712. "reference": "d1538560c075007d3dfd1f8e3a05e43a5ff13fd6",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "php": ">=8.1",
  3717. "symfony/cache": "^5.4|^6.0",
  3718. "symfony/service-contracts": "^1.1|^2|^3"
  3719. },
  3720. "type": "library",
  3721. "autoload": {
  3722. "psr-4": {
  3723. "Symfony\\Component\\ExpressionLanguage\\": ""
  3724. },
  3725. "exclude-from-classmap": [
  3726. "/Tests/"
  3727. ]
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Fabien Potencier",
  3736. "email": "fabien@symfony.com"
  3737. },
  3738. {
  3739. "name": "Symfony Community",
  3740. "homepage": "https://symfony.com/contributors"
  3741. }
  3742. ],
  3743. "description": "Provides an engine that can compile and evaluate expressions",
  3744. "homepage": "https://symfony.com",
  3745. "support": {
  3746. "source": "https://github.com/symfony/expression-language/tree/v6.1.6"
  3747. },
  3748. "funding": [
  3749. {
  3750. "url": "https://symfony.com/sponsor",
  3751. "type": "custom"
  3752. },
  3753. {
  3754. "url": "https://github.com/fabpot",
  3755. "type": "github"
  3756. },
  3757. {
  3758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3759. "type": "tidelift"
  3760. }
  3761. ],
  3762. "time": "2022-10-07T08:04:03+00:00"
  3763. },
  3764. {
  3765. "name": "symfony/filesystem",
  3766. "version": "v6.1.5",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/symfony/filesystem.git",
  3770. "reference": "4d216a2beef096edf040a070117c39ca2abce307"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d216a2beef096edf040a070117c39ca2abce307",
  3775. "reference": "4d216a2beef096edf040a070117c39ca2abce307",
  3776. "shasum": ""
  3777. },
  3778. "require": {
  3779. "php": ">=8.1",
  3780. "symfony/polyfill-ctype": "~1.8",
  3781. "symfony/polyfill-mbstring": "~1.8"
  3782. },
  3783. "type": "library",
  3784. "autoload": {
  3785. "psr-4": {
  3786. "Symfony\\Component\\Filesystem\\": ""
  3787. },
  3788. "exclude-from-classmap": [
  3789. "/Tests/"
  3790. ]
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "Fabien Potencier",
  3799. "email": "fabien@symfony.com"
  3800. },
  3801. {
  3802. "name": "Symfony Community",
  3803. "homepage": "https://symfony.com/contributors"
  3804. }
  3805. ],
  3806. "description": "Provides basic utilities for the filesystem",
  3807. "homepage": "https://symfony.com",
  3808. "support": {
  3809. "source": "https://github.com/symfony/filesystem/tree/v6.1.5"
  3810. },
  3811. "funding": [
  3812. {
  3813. "url": "https://symfony.com/sponsor",
  3814. "type": "custom"
  3815. },
  3816. {
  3817. "url": "https://github.com/fabpot",
  3818. "type": "github"
  3819. },
  3820. {
  3821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3822. "type": "tidelift"
  3823. }
  3824. ],
  3825. "time": "2022-09-21T20:29:40+00:00"
  3826. },
  3827. {
  3828. "name": "symfony/finder",
  3829. "version": "v6.1.3",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/symfony/finder.git",
  3833. "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/symfony/finder/zipball/39696bff2c2970b3779a5cac7bf9f0b88fc2b709",
  3838. "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709",
  3839. "shasum": ""
  3840. },
  3841. "require": {
  3842. "php": ">=8.1"
  3843. },
  3844. "require-dev": {
  3845. "symfony/filesystem": "^6.0"
  3846. },
  3847. "type": "library",
  3848. "autoload": {
  3849. "psr-4": {
  3850. "Symfony\\Component\\Finder\\": ""
  3851. },
  3852. "exclude-from-classmap": [
  3853. "/Tests/"
  3854. ]
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "MIT"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "Fabien Potencier",
  3863. "email": "fabien@symfony.com"
  3864. },
  3865. {
  3866. "name": "Symfony Community",
  3867. "homepage": "https://symfony.com/contributors"
  3868. }
  3869. ],
  3870. "description": "Finds files and directories via an intuitive fluent interface",
  3871. "homepage": "https://symfony.com",
  3872. "support": {
  3873. "source": "https://github.com/symfony/finder/tree/v6.1.3"
  3874. },
  3875. "funding": [
  3876. {
  3877. "url": "https://symfony.com/sponsor",
  3878. "type": "custom"
  3879. },
  3880. {
  3881. "url": "https://github.com/fabpot",
  3882. "type": "github"
  3883. },
  3884. {
  3885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3886. "type": "tidelift"
  3887. }
  3888. ],
  3889. "time": "2022-07-29T07:42:06+00:00"
  3890. },
  3891. {
  3892. "name": "symfony/flex",
  3893. "version": "v2.2.3",
  3894. "source": {
  3895. "type": "git",
  3896. "url": "https://github.com/symfony/flex.git",
  3897. "reference": "0763da1bdcce1d48c06778d48249905c26d34a72"
  3898. },
  3899. "dist": {
  3900. "type": "zip",
  3901. "url": "https://api.github.com/repos/symfony/flex/zipball/0763da1bdcce1d48c06778d48249905c26d34a72",
  3902. "reference": "0763da1bdcce1d48c06778d48249905c26d34a72",
  3903. "shasum": ""
  3904. },
  3905. "require": {
  3906. "composer-plugin-api": "^2.1",
  3907. "php": ">=8.0"
  3908. },
  3909. "require-dev": {
  3910. "composer/composer": "^2.1",
  3911. "symfony/dotenv": "^5.4|^6.0",
  3912. "symfony/filesystem": "^5.4|^6.0",
  3913. "symfony/phpunit-bridge": "^5.4|^6.0",
  3914. "symfony/process": "^5.4|^6.0"
  3915. },
  3916. "type": "composer-plugin",
  3917. "extra": {
  3918. "class": "Symfony\\Flex\\Flex"
  3919. },
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Symfony\\Flex\\": "src"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "Fabien Potencier",
  3932. "email": "fabien.potencier@gmail.com"
  3933. }
  3934. ],
  3935. "description": "Composer plugin for Symfony",
  3936. "support": {
  3937. "issues": "https://github.com/symfony/flex/issues",
  3938. "source": "https://github.com/symfony/flex/tree/v2.2.3"
  3939. },
  3940. "funding": [
  3941. {
  3942. "url": "https://symfony.com/sponsor",
  3943. "type": "custom"
  3944. },
  3945. {
  3946. "url": "https://github.com/fabpot",
  3947. "type": "github"
  3948. },
  3949. {
  3950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3951. "type": "tidelift"
  3952. }
  3953. ],
  3954. "time": "2022-08-07T09:39:47+00:00"
  3955. },
  3956. {
  3957. "name": "symfony/form",
  3958. "version": "v6.1.7",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://github.com/symfony/form.git",
  3962. "reference": "6f5d13bb996dea03bbb5e43e1bbd90cbfdca1a83"
  3963. },
  3964. "dist": {
  3965. "type": "zip",
  3966. "url": "https://api.github.com/repos/symfony/form/zipball/6f5d13bb996dea03bbb5e43e1bbd90cbfdca1a83",
  3967. "reference": "6f5d13bb996dea03bbb5e43e1bbd90cbfdca1a83",
  3968. "shasum": ""
  3969. },
  3970. "require": {
  3971. "php": ">=8.1",
  3972. "symfony/deprecation-contracts": "^2.1|^3",
  3973. "symfony/event-dispatcher": "^5.4|^6.0",
  3974. "symfony/options-resolver": "^5.4|^6.0",
  3975. "symfony/polyfill-ctype": "~1.8",
  3976. "symfony/polyfill-intl-icu": "^1.21",
  3977. "symfony/polyfill-mbstring": "~1.0",
  3978. "symfony/property-access": "^5.4|^6.0",
  3979. "symfony/service-contracts": "^1.1|^2|^3"
  3980. },
  3981. "conflict": {
  3982. "phpunit/phpunit": "<5.4.3",
  3983. "symfony/console": "<5.4",
  3984. "symfony/dependency-injection": "<5.4",
  3985. "symfony/doctrine-bridge": "<5.4",
  3986. "symfony/error-handler": "<5.4",
  3987. "symfony/framework-bundle": "<5.4",
  3988. "symfony/http-kernel": "<5.4",
  3989. "symfony/translation": "<5.4",
  3990. "symfony/translation-contracts": "<1.1.7",
  3991. "symfony/twig-bridge": "<5.4"
  3992. },
  3993. "require-dev": {
  3994. "doctrine/collections": "~1.0",
  3995. "symfony/config": "^5.4|^6.0",
  3996. "symfony/console": "^5.4|^6.0",
  3997. "symfony/dependency-injection": "^5.4|^6.0",
  3998. "symfony/expression-language": "^5.4|^6.0",
  3999. "symfony/html-sanitizer": "^6.1",
  4000. "symfony/http-foundation": "^5.4|^6.0",
  4001. "symfony/http-kernel": "^5.4|^6.0",
  4002. "symfony/intl": "^5.4|^6.0",
  4003. "symfony/security-csrf": "^5.4|^6.0",
  4004. "symfony/translation": "^5.4|^6.0",
  4005. "symfony/uid": "^5.4|^6.0",
  4006. "symfony/validator": "^5.4|^6.0",
  4007. "symfony/var-dumper": "^5.4|^6.0"
  4008. },
  4009. "suggest": {
  4010. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4011. "symfony/twig-bridge": "For templating with Twig.",
  4012. "symfony/validator": "For form validation."
  4013. },
  4014. "type": "library",
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Symfony\\Component\\Form\\": ""
  4018. },
  4019. "exclude-from-classmap": [
  4020. "/Tests/"
  4021. ]
  4022. },
  4023. "notification-url": "https://packagist.org/downloads/",
  4024. "license": [
  4025. "MIT"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Fabien Potencier",
  4030. "email": "fabien@symfony.com"
  4031. },
  4032. {
  4033. "name": "Symfony Community",
  4034. "homepage": "https://symfony.com/contributors"
  4035. }
  4036. ],
  4037. "description": "Allows to easily create, process and reuse HTML forms",
  4038. "homepage": "https://symfony.com",
  4039. "support": {
  4040. "source": "https://github.com/symfony/form/tree/v6.1.7"
  4041. },
  4042. "funding": [
  4043. {
  4044. "url": "https://symfony.com/sponsor",
  4045. "type": "custom"
  4046. },
  4047. {
  4048. "url": "https://github.com/fabpot",
  4049. "type": "github"
  4050. },
  4051. {
  4052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4053. "type": "tidelift"
  4054. }
  4055. ],
  4056. "time": "2022-10-23T10:33:34+00:00"
  4057. },
  4058. {
  4059. "name": "symfony/framework-bundle",
  4060. "version": "v6.1.7",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/symfony/framework-bundle.git",
  4064. "reference": "d402e86ce94bb3eb1ca3d6bb0393285c791e2b14"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/d402e86ce94bb3eb1ca3d6bb0393285c791e2b14",
  4069. "reference": "d402e86ce94bb3eb1ca3d6bb0393285c791e2b14",
  4070. "shasum": ""
  4071. },
  4072. "require": {
  4073. "composer-runtime-api": ">=2.1",
  4074. "ext-xml": "*",
  4075. "php": ">=8.1",
  4076. "symfony/cache": "^5.4|^6.0",
  4077. "symfony/config": "^6.1",
  4078. "symfony/dependency-injection": "^6.1",
  4079. "symfony/deprecation-contracts": "^2.1|^3",
  4080. "symfony/error-handler": "^6.1",
  4081. "symfony/event-dispatcher": "^5.4|^6.0",
  4082. "symfony/filesystem": "^5.4|^6.0",
  4083. "symfony/finder": "^5.4|^6.0",
  4084. "symfony/http-foundation": "^5.4|^6.0",
  4085. "symfony/http-kernel": "^6.1",
  4086. "symfony/polyfill-mbstring": "~1.0",
  4087. "symfony/routing": "^5.4|^6.0"
  4088. },
  4089. "conflict": {
  4090. "doctrine/annotations": "<1.13.1",
  4091. "doctrine/persistence": "<1.3",
  4092. "phpdocumentor/reflection-docblock": "<3.2.2",
  4093. "phpdocumentor/type-resolver": "<1.4.0",
  4094. "phpunit/phpunit": "<5.4.3",
  4095. "symfony/asset": "<5.4",
  4096. "symfony/console": "<5.4",
  4097. "symfony/dom-crawler": "<5.4",
  4098. "symfony/dotenv": "<5.4",
  4099. "symfony/form": "<5.4",
  4100. "symfony/http-client": "<5.4",
  4101. "symfony/lock": "<5.4",
  4102. "symfony/mailer": "<5.4",
  4103. "symfony/messenger": "<5.4",
  4104. "symfony/mime": "<5.4",
  4105. "symfony/property-access": "<5.4",
  4106. "symfony/property-info": "<5.4",
  4107. "symfony/security-core": "<5.4",
  4108. "symfony/security-csrf": "<5.4",
  4109. "symfony/serializer": "<6.1",
  4110. "symfony/stopwatch": "<5.4",
  4111. "symfony/translation": "<5.4",
  4112. "symfony/twig-bridge": "<5.4",
  4113. "symfony/twig-bundle": "<5.4",
  4114. "symfony/validator": "<5.4",
  4115. "symfony/web-profiler-bundle": "<5.4",
  4116. "symfony/workflow": "<5.4"
  4117. },
  4118. "require-dev": {
  4119. "doctrine/annotations": "^1.13.1",
  4120. "doctrine/persistence": "^1.3|^2|^3",
  4121. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4122. "symfony/asset": "^5.4|^6.0",
  4123. "symfony/browser-kit": "^5.4|^6.0",
  4124. "symfony/console": "^5.4.9|^6.0.9",
  4125. "symfony/css-selector": "^5.4|^6.0",
  4126. "symfony/dom-crawler": "^5.4|^6.0",
  4127. "symfony/dotenv": "^5.4|^6.0",
  4128. "symfony/expression-language": "^5.4|^6.0",
  4129. "symfony/form": "^5.4|^6.0",
  4130. "symfony/html-sanitizer": "^6.1",
  4131. "symfony/http-client": "^5.4|^6.0",
  4132. "symfony/lock": "^5.4|^6.0",
  4133. "symfony/mailer": "^5.4|^6.0",
  4134. "symfony/messenger": "^5.4|^6.0",
  4135. "symfony/mime": "^5.4|^6.0",
  4136. "symfony/notifier": "^5.4|^6.0",
  4137. "symfony/polyfill-intl-icu": "~1.0",
  4138. "symfony/process": "^5.4|^6.0",
  4139. "symfony/property-info": "^5.4|^6.0",
  4140. "symfony/rate-limiter": "^5.4|^6.0",
  4141. "symfony/security-bundle": "^5.4|^6.0",
  4142. "symfony/semaphore": "^5.4|^6.0",
  4143. "symfony/serializer": "^6.1",
  4144. "symfony/stopwatch": "^5.4|^6.0",
  4145. "symfony/string": "^5.4|^6.0",
  4146. "symfony/translation": "^5.4|^6.0",
  4147. "symfony/twig-bundle": "^5.4|^6.0",
  4148. "symfony/uid": "^5.4|^6.0",
  4149. "symfony/validator": "^5.4|^6.0",
  4150. "symfony/web-link": "^5.4|^6.0",
  4151. "symfony/workflow": "^5.4|^6.0",
  4152. "symfony/yaml": "^5.4|^6.0",
  4153. "twig/twig": "^2.10|^3.0"
  4154. },
  4155. "suggest": {
  4156. "ext-apcu": "For best performance of the system caches",
  4157. "symfony/console": "For using the console commands",
  4158. "symfony/form": "For using forms",
  4159. "symfony/property-info": "For using the property_info service",
  4160. "symfony/serializer": "For using the serializer service",
  4161. "symfony/validator": "For using validation",
  4162. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4163. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4164. },
  4165. "type": "symfony-bundle",
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4169. },
  4170. "exclude-from-classmap": [
  4171. "/Tests/"
  4172. ]
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "Fabien Potencier",
  4181. "email": "fabien@symfony.com"
  4182. },
  4183. {
  4184. "name": "Symfony Community",
  4185. "homepage": "https://symfony.com/contributors"
  4186. }
  4187. ],
  4188. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4189. "homepage": "https://symfony.com",
  4190. "support": {
  4191. "source": "https://github.com/symfony/framework-bundle/tree/v6.1.7"
  4192. },
  4193. "funding": [
  4194. {
  4195. "url": "https://symfony.com/sponsor",
  4196. "type": "custom"
  4197. },
  4198. {
  4199. "url": "https://github.com/fabpot",
  4200. "type": "github"
  4201. },
  4202. {
  4203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4204. "type": "tidelift"
  4205. }
  4206. ],
  4207. "time": "2022-10-28T16:23:08+00:00"
  4208. },
  4209. {
  4210. "name": "symfony/http-client",
  4211. "version": "v6.1.7",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/symfony/http-client.git",
  4215. "reference": "f515d066728774efb34347a87580621416ca8968"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/symfony/http-client/zipball/f515d066728774efb34347a87580621416ca8968",
  4220. "reference": "f515d066728774efb34347a87580621416ca8968",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "php": ">=8.1",
  4225. "psr/log": "^1|^2|^3",
  4226. "symfony/http-client-contracts": "^3",
  4227. "symfony/service-contracts": "^1.0|^2|^3"
  4228. },
  4229. "provide": {
  4230. "php-http/async-client-implementation": "*",
  4231. "php-http/client-implementation": "*",
  4232. "psr/http-client-implementation": "1.0",
  4233. "symfony/http-client-implementation": "3.0"
  4234. },
  4235. "require-dev": {
  4236. "amphp/amp": "^2.5",
  4237. "amphp/http-client": "^4.2.1",
  4238. "amphp/http-tunnel": "^1.0",
  4239. "amphp/socket": "^1.1",
  4240. "guzzlehttp/promises": "^1.4",
  4241. "nyholm/psr7": "^1.0",
  4242. "php-http/httplug": "^1.0|^2.0",
  4243. "psr/http-client": "^1.0",
  4244. "symfony/dependency-injection": "^5.4|^6.0",
  4245. "symfony/http-kernel": "^5.4|^6.0",
  4246. "symfony/process": "^5.4|^6.0",
  4247. "symfony/stopwatch": "^5.4|^6.0"
  4248. },
  4249. "type": "library",
  4250. "autoload": {
  4251. "psr-4": {
  4252. "Symfony\\Component\\HttpClient\\": ""
  4253. },
  4254. "exclude-from-classmap": [
  4255. "/Tests/"
  4256. ]
  4257. },
  4258. "notification-url": "https://packagist.org/downloads/",
  4259. "license": [
  4260. "MIT"
  4261. ],
  4262. "authors": [
  4263. {
  4264. "name": "Nicolas Grekas",
  4265. "email": "p@tchwork.com"
  4266. },
  4267. {
  4268. "name": "Symfony Community",
  4269. "homepage": "https://symfony.com/contributors"
  4270. }
  4271. ],
  4272. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4273. "homepage": "https://symfony.com",
  4274. "support": {
  4275. "source": "https://github.com/symfony/http-client/tree/v6.1.7"
  4276. },
  4277. "funding": [
  4278. {
  4279. "url": "https://symfony.com/sponsor",
  4280. "type": "custom"
  4281. },
  4282. {
  4283. "url": "https://github.com/fabpot",
  4284. "type": "github"
  4285. },
  4286. {
  4287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4288. "type": "tidelift"
  4289. }
  4290. ],
  4291. "time": "2022-10-28T16:23:08+00:00"
  4292. },
  4293. {
  4294. "name": "symfony/http-client-contracts",
  4295. "version": "v3.1.1",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/symfony/http-client-contracts.git",
  4299. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/fd038f08c623ab5d22b26e9ba35afe8c79071800",
  4304. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800",
  4305. "shasum": ""
  4306. },
  4307. "require": {
  4308. "php": ">=8.1"
  4309. },
  4310. "suggest": {
  4311. "symfony/http-client-implementation": ""
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-main": "3.1-dev"
  4317. },
  4318. "thanks": {
  4319. "name": "symfony/contracts",
  4320. "url": "https://github.com/symfony/contracts"
  4321. }
  4322. },
  4323. "autoload": {
  4324. "psr-4": {
  4325. "Symfony\\Contracts\\HttpClient\\": ""
  4326. },
  4327. "exclude-from-classmap": [
  4328. "/Test/"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Nicolas Grekas",
  4338. "email": "p@tchwork.com"
  4339. },
  4340. {
  4341. "name": "Symfony Community",
  4342. "homepage": "https://symfony.com/contributors"
  4343. }
  4344. ],
  4345. "description": "Generic abstractions related to HTTP clients",
  4346. "homepage": "https://symfony.com",
  4347. "keywords": [
  4348. "abstractions",
  4349. "contracts",
  4350. "decoupling",
  4351. "interfaces",
  4352. "interoperability",
  4353. "standards"
  4354. ],
  4355. "support": {
  4356. "source": "https://github.com/symfony/http-client-contracts/tree/v3.1.1"
  4357. },
  4358. "funding": [
  4359. {
  4360. "url": "https://symfony.com/sponsor",
  4361. "type": "custom"
  4362. },
  4363. {
  4364. "url": "https://github.com/fabpot",
  4365. "type": "github"
  4366. },
  4367. {
  4368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4369. "type": "tidelift"
  4370. }
  4371. ],
  4372. "time": "2022-04-22T07:30:54+00:00"
  4373. },
  4374. {
  4375. "name": "symfony/http-foundation",
  4376. "version": "v6.1.7",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/symfony/http-foundation.git",
  4380. "reference": "792a1856d2b95273f0e1c3435785f1d01a60ecc6"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/792a1856d2b95273f0e1c3435785f1d01a60ecc6",
  4385. "reference": "792a1856d2b95273f0e1c3435785f1d01a60ecc6",
  4386. "shasum": ""
  4387. },
  4388. "require": {
  4389. "php": ">=8.1",
  4390. "symfony/deprecation-contracts": "^2.1|^3",
  4391. "symfony/polyfill-mbstring": "~1.1"
  4392. },
  4393. "require-dev": {
  4394. "predis/predis": "~1.0",
  4395. "symfony/cache": "^5.4|^6.0",
  4396. "symfony/dependency-injection": "^5.4|^6.0",
  4397. "symfony/expression-language": "^5.4|^6.0",
  4398. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4399. "symfony/mime": "^5.4|^6.0",
  4400. "symfony/rate-limiter": "^5.2|^6.0"
  4401. },
  4402. "suggest": {
  4403. "symfony/mime": "To use the file extension guesser"
  4404. },
  4405. "type": "library",
  4406. "autoload": {
  4407. "psr-4": {
  4408. "Symfony\\Component\\HttpFoundation\\": ""
  4409. },
  4410. "exclude-from-classmap": [
  4411. "/Tests/"
  4412. ]
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Fabien Potencier",
  4421. "email": "fabien@symfony.com"
  4422. },
  4423. {
  4424. "name": "Symfony Community",
  4425. "homepage": "https://symfony.com/contributors"
  4426. }
  4427. ],
  4428. "description": "Defines an object-oriented layer for the HTTP specification",
  4429. "homepage": "https://symfony.com",
  4430. "support": {
  4431. "source": "https://github.com/symfony/http-foundation/tree/v6.1.7"
  4432. },
  4433. "funding": [
  4434. {
  4435. "url": "https://symfony.com/sponsor",
  4436. "type": "custom"
  4437. },
  4438. {
  4439. "url": "https://github.com/fabpot",
  4440. "type": "github"
  4441. },
  4442. {
  4443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4444. "type": "tidelift"
  4445. }
  4446. ],
  4447. "time": "2022-10-12T09:44:59+00:00"
  4448. },
  4449. {
  4450. "name": "symfony/http-kernel",
  4451. "version": "v6.1.7",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/symfony/http-kernel.git",
  4455. "reference": "8fc1ffe753948c47a103a809cdd6a4a8458b3254"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8fc1ffe753948c47a103a809cdd6a4a8458b3254",
  4460. "reference": "8fc1ffe753948c47a103a809cdd6a4a8458b3254",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "php": ">=8.1",
  4465. "psr/log": "^1|^2|^3",
  4466. "symfony/error-handler": "^6.1",
  4467. "symfony/event-dispatcher": "^5.4|^6.0",
  4468. "symfony/http-foundation": "^5.4|^6.0",
  4469. "symfony/polyfill-ctype": "^1.8"
  4470. },
  4471. "conflict": {
  4472. "symfony/browser-kit": "<5.4",
  4473. "symfony/cache": "<5.4",
  4474. "symfony/config": "<6.1",
  4475. "symfony/console": "<5.4",
  4476. "symfony/dependency-injection": "<6.1",
  4477. "symfony/doctrine-bridge": "<5.4",
  4478. "symfony/form": "<5.4",
  4479. "symfony/http-client": "<5.4",
  4480. "symfony/mailer": "<5.4",
  4481. "symfony/messenger": "<5.4",
  4482. "symfony/translation": "<5.4",
  4483. "symfony/twig-bridge": "<5.4",
  4484. "symfony/validator": "<5.4",
  4485. "twig/twig": "<2.13"
  4486. },
  4487. "provide": {
  4488. "psr/log-implementation": "1.0|2.0|3.0"
  4489. },
  4490. "require-dev": {
  4491. "psr/cache": "^1.0|^2.0|^3.0",
  4492. "symfony/browser-kit": "^5.4|^6.0",
  4493. "symfony/config": "^6.1",
  4494. "symfony/console": "^5.4|^6.0",
  4495. "symfony/css-selector": "^5.4|^6.0",
  4496. "symfony/dependency-injection": "^6.1",
  4497. "symfony/dom-crawler": "^5.4|^6.0",
  4498. "symfony/expression-language": "^5.4|^6.0",
  4499. "symfony/finder": "^5.4|^6.0",
  4500. "symfony/http-client-contracts": "^1.1|^2|^3",
  4501. "symfony/process": "^5.4|^6.0",
  4502. "symfony/routing": "^5.4|^6.0",
  4503. "symfony/stopwatch": "^5.4|^6.0",
  4504. "symfony/translation": "^5.4|^6.0",
  4505. "symfony/translation-contracts": "^1.1|^2|^3",
  4506. "symfony/uid": "^5.4|^6.0",
  4507. "twig/twig": "^2.13|^3.0.4"
  4508. },
  4509. "suggest": {
  4510. "symfony/browser-kit": "",
  4511. "symfony/config": "",
  4512. "symfony/console": "",
  4513. "symfony/dependency-injection": ""
  4514. },
  4515. "type": "library",
  4516. "autoload": {
  4517. "psr-4": {
  4518. "Symfony\\Component\\HttpKernel\\": ""
  4519. },
  4520. "exclude-from-classmap": [
  4521. "/Tests/"
  4522. ]
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Fabien Potencier",
  4531. "email": "fabien@symfony.com"
  4532. },
  4533. {
  4534. "name": "Symfony Community",
  4535. "homepage": "https://symfony.com/contributors"
  4536. }
  4537. ],
  4538. "description": "Provides a structured process for converting a Request into a Response",
  4539. "homepage": "https://symfony.com",
  4540. "support": {
  4541. "source": "https://github.com/symfony/http-kernel/tree/v6.1.7"
  4542. },
  4543. "funding": [
  4544. {
  4545. "url": "https://symfony.com/sponsor",
  4546. "type": "custom"
  4547. },
  4548. {
  4549. "url": "https://github.com/fabpot",
  4550. "type": "github"
  4551. },
  4552. {
  4553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4554. "type": "tidelift"
  4555. }
  4556. ],
  4557. "time": "2022-10-28T18:06:36+00:00"
  4558. },
  4559. {
  4560. "name": "symfony/mailer",
  4561. "version": "v6.1.7",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://github.com/symfony/mailer.git",
  4565. "reference": "7e19813c0b43387c55665780c4caea505cc48391"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://api.github.com/repos/symfony/mailer/zipball/7e19813c0b43387c55665780c4caea505cc48391",
  4570. "reference": "7e19813c0b43387c55665780c4caea505cc48391",
  4571. "shasum": ""
  4572. },
  4573. "require": {
  4574. "egulias/email-validator": "^2.1.10|^3",
  4575. "php": ">=8.1",
  4576. "psr/event-dispatcher": "^1",
  4577. "psr/log": "^1|^2|^3",
  4578. "symfony/event-dispatcher": "^5.4|^6.0",
  4579. "symfony/mime": "^5.4|^6.0",
  4580. "symfony/service-contracts": "^1.1|^2|^3"
  4581. },
  4582. "conflict": {
  4583. "symfony/http-kernel": "<5.4"
  4584. },
  4585. "require-dev": {
  4586. "symfony/http-client-contracts": "^1.1|^2|^3",
  4587. "symfony/messenger": "^5.4|^6.0"
  4588. },
  4589. "type": "library",
  4590. "autoload": {
  4591. "psr-4": {
  4592. "Symfony\\Component\\Mailer\\": ""
  4593. },
  4594. "exclude-from-classmap": [
  4595. "/Tests/"
  4596. ]
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "MIT"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "Fabien Potencier",
  4605. "email": "fabien@symfony.com"
  4606. },
  4607. {
  4608. "name": "Symfony Community",
  4609. "homepage": "https://symfony.com/contributors"
  4610. }
  4611. ],
  4612. "description": "Helps sending emails",
  4613. "homepage": "https://symfony.com",
  4614. "support": {
  4615. "source": "https://github.com/symfony/mailer/tree/v6.1.7"
  4616. },
  4617. "funding": [
  4618. {
  4619. "url": "https://symfony.com/sponsor",
  4620. "type": "custom"
  4621. },
  4622. {
  4623. "url": "https://github.com/fabpot",
  4624. "type": "github"
  4625. },
  4626. {
  4627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4628. "type": "tidelift"
  4629. }
  4630. ],
  4631. "time": "2022-10-28T16:23:08+00:00"
  4632. },
  4633. {
  4634. "name": "symfony/mime",
  4635. "version": "v6.1.7",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://github.com/symfony/mime.git",
  4639. "reference": "f440f066d57691088d998d6e437ce98771144618"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://api.github.com/repos/symfony/mime/zipball/f440f066d57691088d998d6e437ce98771144618",
  4644. "reference": "f440f066d57691088d998d6e437ce98771144618",
  4645. "shasum": ""
  4646. },
  4647. "require": {
  4648. "php": ">=8.1",
  4649. "symfony/polyfill-intl-idn": "^1.10",
  4650. "symfony/polyfill-mbstring": "^1.0"
  4651. },
  4652. "conflict": {
  4653. "egulias/email-validator": "~3.0.0",
  4654. "phpdocumentor/reflection-docblock": "<3.2.2",
  4655. "phpdocumentor/type-resolver": "<1.4.0",
  4656. "symfony/mailer": "<5.4"
  4657. },
  4658. "require-dev": {
  4659. "egulias/email-validator": "^2.1.10|^3.1",
  4660. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4661. "symfony/dependency-injection": "^5.4|^6.0",
  4662. "symfony/property-access": "^5.4|^6.0",
  4663. "symfony/property-info": "^5.4|^6.0",
  4664. "symfony/serializer": "^5.2|^6.0"
  4665. },
  4666. "type": "library",
  4667. "autoload": {
  4668. "psr-4": {
  4669. "Symfony\\Component\\Mime\\": ""
  4670. },
  4671. "exclude-from-classmap": [
  4672. "/Tests/"
  4673. ]
  4674. },
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Fabien Potencier",
  4682. "email": "fabien@symfony.com"
  4683. },
  4684. {
  4685. "name": "Symfony Community",
  4686. "homepage": "https://symfony.com/contributors"
  4687. }
  4688. ],
  4689. "description": "Allows manipulating MIME messages",
  4690. "homepage": "https://symfony.com",
  4691. "keywords": [
  4692. "mime",
  4693. "mime-type"
  4694. ],
  4695. "support": {
  4696. "source": "https://github.com/symfony/mime/tree/v6.1.7"
  4697. },
  4698. "funding": [
  4699. {
  4700. "url": "https://symfony.com/sponsor",
  4701. "type": "custom"
  4702. },
  4703. {
  4704. "url": "https://github.com/fabpot",
  4705. "type": "github"
  4706. },
  4707. {
  4708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4709. "type": "tidelift"
  4710. }
  4711. ],
  4712. "time": "2022-10-19T08:10:53+00:00"
  4713. },
  4714. {
  4715. "name": "symfony/monolog-bridge",
  4716. "version": "v6.1.2",
  4717. "source": {
  4718. "type": "git",
  4719. "url": "https://github.com/symfony/monolog-bridge.git",
  4720. "reference": "1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627"
  4721. },
  4722. "dist": {
  4723. "type": "zip",
  4724. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627",
  4725. "reference": "1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627",
  4726. "shasum": ""
  4727. },
  4728. "require": {
  4729. "monolog/monolog": "^1.25.1|^2|^3",
  4730. "php": ">=8.1",
  4731. "symfony/http-kernel": "^5.4|^6.0",
  4732. "symfony/service-contracts": "^1.1|^2|^3"
  4733. },
  4734. "conflict": {
  4735. "symfony/console": "<5.4",
  4736. "symfony/http-foundation": "<5.4",
  4737. "symfony/security-core": "<6.0"
  4738. },
  4739. "require-dev": {
  4740. "symfony/console": "^5.4|^6.0",
  4741. "symfony/http-client": "^5.4|^6.0",
  4742. "symfony/mailer": "^5.4|^6.0",
  4743. "symfony/messenger": "^5.4|^6.0",
  4744. "symfony/mime": "^5.4|^6.0",
  4745. "symfony/security-core": "^6.0",
  4746. "symfony/var-dumper": "^5.4|^6.0"
  4747. },
  4748. "suggest": {
  4749. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4750. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4751. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4752. },
  4753. "type": "symfony-bridge",
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Symfony\\Bridge\\Monolog\\": ""
  4757. },
  4758. "exclude-from-classmap": [
  4759. "/Tests/"
  4760. ]
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Fabien Potencier",
  4769. "email": "fabien@symfony.com"
  4770. },
  4771. {
  4772. "name": "Symfony Community",
  4773. "homepage": "https://symfony.com/contributors"
  4774. }
  4775. ],
  4776. "description": "Provides integration for Monolog with various Symfony components",
  4777. "homepage": "https://symfony.com",
  4778. "support": {
  4779. "source": "https://github.com/symfony/monolog-bridge/tree/v6.1.2"
  4780. },
  4781. "funding": [
  4782. {
  4783. "url": "https://symfony.com/sponsor",
  4784. "type": "custom"
  4785. },
  4786. {
  4787. "url": "https://github.com/fabpot",
  4788. "type": "github"
  4789. },
  4790. {
  4791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4792. "type": "tidelift"
  4793. }
  4794. ],
  4795. "time": "2022-06-21T08:28:57+00:00"
  4796. },
  4797. {
  4798. "name": "symfony/monolog-bundle",
  4799. "version": "v3.8.0",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/symfony/monolog-bundle.git",
  4803. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4808. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4809. "shasum": ""
  4810. },
  4811. "require": {
  4812. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  4813. "php": ">=7.1.3",
  4814. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4815. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4816. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4817. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4818. },
  4819. "require-dev": {
  4820. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4821. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4822. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4823. },
  4824. "type": "symfony-bundle",
  4825. "extra": {
  4826. "branch-alias": {
  4827. "dev-master": "3.x-dev"
  4828. }
  4829. },
  4830. "autoload": {
  4831. "psr-4": {
  4832. "Symfony\\Bundle\\MonologBundle\\": ""
  4833. },
  4834. "exclude-from-classmap": [
  4835. "/Tests/"
  4836. ]
  4837. },
  4838. "notification-url": "https://packagist.org/downloads/",
  4839. "license": [
  4840. "MIT"
  4841. ],
  4842. "authors": [
  4843. {
  4844. "name": "Fabien Potencier",
  4845. "email": "fabien@symfony.com"
  4846. },
  4847. {
  4848. "name": "Symfony Community",
  4849. "homepage": "https://symfony.com/contributors"
  4850. }
  4851. ],
  4852. "description": "Symfony MonologBundle",
  4853. "homepage": "https://symfony.com",
  4854. "keywords": [
  4855. "log",
  4856. "logging"
  4857. ],
  4858. "support": {
  4859. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4860. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  4861. },
  4862. "funding": [
  4863. {
  4864. "url": "https://symfony.com/sponsor",
  4865. "type": "custom"
  4866. },
  4867. {
  4868. "url": "https://github.com/fabpot",
  4869. "type": "github"
  4870. },
  4871. {
  4872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4873. "type": "tidelift"
  4874. }
  4875. ],
  4876. "time": "2022-05-10T14:24:36+00:00"
  4877. },
  4878. {
  4879. "name": "symfony/options-resolver",
  4880. "version": "v6.1.0",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://github.com/symfony/options-resolver.git",
  4884. "reference": "a3016f5442e28386ded73c43a32a5b68586dd1c4"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a3016f5442e28386ded73c43a32a5b68586dd1c4",
  4889. "reference": "a3016f5442e28386ded73c43a32a5b68586dd1c4",
  4890. "shasum": ""
  4891. },
  4892. "require": {
  4893. "php": ">=8.1",
  4894. "symfony/deprecation-contracts": "^2.1|^3"
  4895. },
  4896. "type": "library",
  4897. "autoload": {
  4898. "psr-4": {
  4899. "Symfony\\Component\\OptionsResolver\\": ""
  4900. },
  4901. "exclude-from-classmap": [
  4902. "/Tests/"
  4903. ]
  4904. },
  4905. "notification-url": "https://packagist.org/downloads/",
  4906. "license": [
  4907. "MIT"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "Fabien Potencier",
  4912. "email": "fabien@symfony.com"
  4913. },
  4914. {
  4915. "name": "Symfony Community",
  4916. "homepage": "https://symfony.com/contributors"
  4917. }
  4918. ],
  4919. "description": "Provides an improved replacement for the array_replace PHP function",
  4920. "homepage": "https://symfony.com",
  4921. "keywords": [
  4922. "config",
  4923. "configuration",
  4924. "options"
  4925. ],
  4926. "support": {
  4927. "source": "https://github.com/symfony/options-resolver/tree/v6.1.0"
  4928. },
  4929. "funding": [
  4930. {
  4931. "url": "https://symfony.com/sponsor",
  4932. "type": "custom"
  4933. },
  4934. {
  4935. "url": "https://github.com/fabpot",
  4936. "type": "github"
  4937. },
  4938. {
  4939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4940. "type": "tidelift"
  4941. }
  4942. ],
  4943. "time": "2022-02-25T11:15:52+00:00"
  4944. },
  4945. {
  4946. "name": "symfony/password-hasher",
  4947. "version": "v6.1.3",
  4948. "source": {
  4949. "type": "git",
  4950. "url": "https://github.com/symfony/password-hasher.git",
  4951. "reference": "264894821636b77bb8282db6ec33b8b07b7a0678"
  4952. },
  4953. "dist": {
  4954. "type": "zip",
  4955. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/264894821636b77bb8282db6ec33b8b07b7a0678",
  4956. "reference": "264894821636b77bb8282db6ec33b8b07b7a0678",
  4957. "shasum": ""
  4958. },
  4959. "require": {
  4960. "php": ">=8.1"
  4961. },
  4962. "conflict": {
  4963. "symfony/security-core": "<5.4"
  4964. },
  4965. "require-dev": {
  4966. "symfony/console": "^5.4|^6.0",
  4967. "symfony/security-core": "^5.4|^6.0"
  4968. },
  4969. "type": "library",
  4970. "autoload": {
  4971. "psr-4": {
  4972. "Symfony\\Component\\PasswordHasher\\": ""
  4973. },
  4974. "exclude-from-classmap": [
  4975. "/Tests/"
  4976. ]
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Robin Chalas",
  4985. "email": "robin.chalas@gmail.com"
  4986. },
  4987. {
  4988. "name": "Symfony Community",
  4989. "homepage": "https://symfony.com/contributors"
  4990. }
  4991. ],
  4992. "description": "Provides password hashing utilities",
  4993. "homepage": "https://symfony.com",
  4994. "keywords": [
  4995. "hashing",
  4996. "password"
  4997. ],
  4998. "support": {
  4999. "source": "https://github.com/symfony/password-hasher/tree/v6.1.3"
  5000. },
  5001. "funding": [
  5002. {
  5003. "url": "https://symfony.com/sponsor",
  5004. "type": "custom"
  5005. },
  5006. {
  5007. "url": "https://github.com/fabpot",
  5008. "type": "github"
  5009. },
  5010. {
  5011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5012. "type": "tidelift"
  5013. }
  5014. ],
  5015. "time": "2022-07-20T14:45:06+00:00"
  5016. },
  5017. {
  5018. "name": "symfony/polyfill-intl-grapheme",
  5019. "version": "v1.27.0",
  5020. "source": {
  5021. "type": "git",
  5022. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5023. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5024. },
  5025. "dist": {
  5026. "type": "zip",
  5027. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5028. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5029. "shasum": ""
  5030. },
  5031. "require": {
  5032. "php": ">=7.1"
  5033. },
  5034. "suggest": {
  5035. "ext-intl": "For best performance"
  5036. },
  5037. "type": "library",
  5038. "extra": {
  5039. "branch-alias": {
  5040. "dev-main": "1.27-dev"
  5041. },
  5042. "thanks": {
  5043. "name": "symfony/polyfill",
  5044. "url": "https://github.com/symfony/polyfill"
  5045. }
  5046. },
  5047. "autoload": {
  5048. "files": [
  5049. "bootstrap.php"
  5050. ],
  5051. "psr-4": {
  5052. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5053. }
  5054. },
  5055. "notification-url": "https://packagist.org/downloads/",
  5056. "license": [
  5057. "MIT"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "Nicolas Grekas",
  5062. "email": "p@tchwork.com"
  5063. },
  5064. {
  5065. "name": "Symfony Community",
  5066. "homepage": "https://symfony.com/contributors"
  5067. }
  5068. ],
  5069. "description": "Symfony polyfill for intl's grapheme_* functions",
  5070. "homepage": "https://symfony.com",
  5071. "keywords": [
  5072. "compatibility",
  5073. "grapheme",
  5074. "intl",
  5075. "polyfill",
  5076. "portable",
  5077. "shim"
  5078. ],
  5079. "support": {
  5080. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5081. },
  5082. "funding": [
  5083. {
  5084. "url": "https://symfony.com/sponsor",
  5085. "type": "custom"
  5086. },
  5087. {
  5088. "url": "https://github.com/fabpot",
  5089. "type": "github"
  5090. },
  5091. {
  5092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5093. "type": "tidelift"
  5094. }
  5095. ],
  5096. "time": "2022-11-03T14:55:06+00:00"
  5097. },
  5098. {
  5099. "name": "symfony/polyfill-intl-icu",
  5100. "version": "v1.27.0",
  5101. "source": {
  5102. "type": "git",
  5103. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5104. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5105. },
  5106. "dist": {
  5107. "type": "zip",
  5108. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5109. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5110. "shasum": ""
  5111. },
  5112. "require": {
  5113. "php": ">=7.1"
  5114. },
  5115. "suggest": {
  5116. "ext-intl": "For best performance and support of other locales than \"en\""
  5117. },
  5118. "type": "library",
  5119. "extra": {
  5120. "branch-alias": {
  5121. "dev-main": "1.27-dev"
  5122. },
  5123. "thanks": {
  5124. "name": "symfony/polyfill",
  5125. "url": "https://github.com/symfony/polyfill"
  5126. }
  5127. },
  5128. "autoload": {
  5129. "files": [
  5130. "bootstrap.php"
  5131. ],
  5132. "psr-4": {
  5133. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5134. },
  5135. "classmap": [
  5136. "Resources/stubs"
  5137. ],
  5138. "exclude-from-classmap": [
  5139. "/Tests/"
  5140. ]
  5141. },
  5142. "notification-url": "https://packagist.org/downloads/",
  5143. "license": [
  5144. "MIT"
  5145. ],
  5146. "authors": [
  5147. {
  5148. "name": "Nicolas Grekas",
  5149. "email": "p@tchwork.com"
  5150. },
  5151. {
  5152. "name": "Symfony Community",
  5153. "homepage": "https://symfony.com/contributors"
  5154. }
  5155. ],
  5156. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5157. "homepage": "https://symfony.com",
  5158. "keywords": [
  5159. "compatibility",
  5160. "icu",
  5161. "intl",
  5162. "polyfill",
  5163. "portable",
  5164. "shim"
  5165. ],
  5166. "support": {
  5167. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5168. },
  5169. "funding": [
  5170. {
  5171. "url": "https://symfony.com/sponsor",
  5172. "type": "custom"
  5173. },
  5174. {
  5175. "url": "https://github.com/fabpot",
  5176. "type": "github"
  5177. },
  5178. {
  5179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5180. "type": "tidelift"
  5181. }
  5182. ],
  5183. "time": "2022-11-03T14:55:06+00:00"
  5184. },
  5185. {
  5186. "name": "symfony/polyfill-intl-idn",
  5187. "version": "v1.27.0",
  5188. "source": {
  5189. "type": "git",
  5190. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5191. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5192. },
  5193. "dist": {
  5194. "type": "zip",
  5195. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5196. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5197. "shasum": ""
  5198. },
  5199. "require": {
  5200. "php": ">=7.1",
  5201. "symfony/polyfill-intl-normalizer": "^1.10",
  5202. "symfony/polyfill-php72": "^1.10"
  5203. },
  5204. "suggest": {
  5205. "ext-intl": "For best performance"
  5206. },
  5207. "type": "library",
  5208. "extra": {
  5209. "branch-alias": {
  5210. "dev-main": "1.27-dev"
  5211. },
  5212. "thanks": {
  5213. "name": "symfony/polyfill",
  5214. "url": "https://github.com/symfony/polyfill"
  5215. }
  5216. },
  5217. "autoload": {
  5218. "files": [
  5219. "bootstrap.php"
  5220. ],
  5221. "psr-4": {
  5222. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5223. }
  5224. },
  5225. "notification-url": "https://packagist.org/downloads/",
  5226. "license": [
  5227. "MIT"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Laurent Bassin",
  5232. "email": "laurent@bassin.info"
  5233. },
  5234. {
  5235. "name": "Trevor Rowbotham",
  5236. "email": "trevor.rowbotham@pm.me"
  5237. },
  5238. {
  5239. "name": "Symfony Community",
  5240. "homepage": "https://symfony.com/contributors"
  5241. }
  5242. ],
  5243. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5244. "homepage": "https://symfony.com",
  5245. "keywords": [
  5246. "compatibility",
  5247. "idn",
  5248. "intl",
  5249. "polyfill",
  5250. "portable",
  5251. "shim"
  5252. ],
  5253. "support": {
  5254. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5255. },
  5256. "funding": [
  5257. {
  5258. "url": "https://symfony.com/sponsor",
  5259. "type": "custom"
  5260. },
  5261. {
  5262. "url": "https://github.com/fabpot",
  5263. "type": "github"
  5264. },
  5265. {
  5266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5267. "type": "tidelift"
  5268. }
  5269. ],
  5270. "time": "2022-11-03T14:55:06+00:00"
  5271. },
  5272. {
  5273. "name": "symfony/polyfill-intl-normalizer",
  5274. "version": "v1.27.0",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5278. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5283. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5284. "shasum": ""
  5285. },
  5286. "require": {
  5287. "php": ">=7.1"
  5288. },
  5289. "suggest": {
  5290. "ext-intl": "For best performance"
  5291. },
  5292. "type": "library",
  5293. "extra": {
  5294. "branch-alias": {
  5295. "dev-main": "1.27-dev"
  5296. },
  5297. "thanks": {
  5298. "name": "symfony/polyfill",
  5299. "url": "https://github.com/symfony/polyfill"
  5300. }
  5301. },
  5302. "autoload": {
  5303. "files": [
  5304. "bootstrap.php"
  5305. ],
  5306. "psr-4": {
  5307. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5308. },
  5309. "classmap": [
  5310. "Resources/stubs"
  5311. ]
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Nicolas Grekas",
  5320. "email": "p@tchwork.com"
  5321. },
  5322. {
  5323. "name": "Symfony Community",
  5324. "homepage": "https://symfony.com/contributors"
  5325. }
  5326. ],
  5327. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5328. "homepage": "https://symfony.com",
  5329. "keywords": [
  5330. "compatibility",
  5331. "intl",
  5332. "normalizer",
  5333. "polyfill",
  5334. "portable",
  5335. "shim"
  5336. ],
  5337. "support": {
  5338. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5339. },
  5340. "funding": [
  5341. {
  5342. "url": "https://symfony.com/sponsor",
  5343. "type": "custom"
  5344. },
  5345. {
  5346. "url": "https://github.com/fabpot",
  5347. "type": "github"
  5348. },
  5349. {
  5350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5351. "type": "tidelift"
  5352. }
  5353. ],
  5354. "time": "2022-11-03T14:55:06+00:00"
  5355. },
  5356. {
  5357. "name": "symfony/polyfill-mbstring",
  5358. "version": "v1.27.0",
  5359. "source": {
  5360. "type": "git",
  5361. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5362. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5363. },
  5364. "dist": {
  5365. "type": "zip",
  5366. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5367. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5368. "shasum": ""
  5369. },
  5370. "require": {
  5371. "php": ">=7.1"
  5372. },
  5373. "provide": {
  5374. "ext-mbstring": "*"
  5375. },
  5376. "suggest": {
  5377. "ext-mbstring": "For best performance"
  5378. },
  5379. "type": "library",
  5380. "extra": {
  5381. "branch-alias": {
  5382. "dev-main": "1.27-dev"
  5383. },
  5384. "thanks": {
  5385. "name": "symfony/polyfill",
  5386. "url": "https://github.com/symfony/polyfill"
  5387. }
  5388. },
  5389. "autoload": {
  5390. "files": [
  5391. "bootstrap.php"
  5392. ],
  5393. "psr-4": {
  5394. "Symfony\\Polyfill\\Mbstring\\": ""
  5395. }
  5396. },
  5397. "notification-url": "https://packagist.org/downloads/",
  5398. "license": [
  5399. "MIT"
  5400. ],
  5401. "authors": [
  5402. {
  5403. "name": "Nicolas Grekas",
  5404. "email": "p@tchwork.com"
  5405. },
  5406. {
  5407. "name": "Symfony Community",
  5408. "homepage": "https://symfony.com/contributors"
  5409. }
  5410. ],
  5411. "description": "Symfony polyfill for the Mbstring extension",
  5412. "homepage": "https://symfony.com",
  5413. "keywords": [
  5414. "compatibility",
  5415. "mbstring",
  5416. "polyfill",
  5417. "portable",
  5418. "shim"
  5419. ],
  5420. "support": {
  5421. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5422. },
  5423. "funding": [
  5424. {
  5425. "url": "https://symfony.com/sponsor",
  5426. "type": "custom"
  5427. },
  5428. {
  5429. "url": "https://github.com/fabpot",
  5430. "type": "github"
  5431. },
  5432. {
  5433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5434. "type": "tidelift"
  5435. }
  5436. ],
  5437. "time": "2022-11-03T14:55:06+00:00"
  5438. },
  5439. {
  5440. "name": "symfony/polyfill-php72",
  5441. "version": "v1.27.0",
  5442. "source": {
  5443. "type": "git",
  5444. "url": "https://github.com/symfony/polyfill-php72.git",
  5445. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5446. },
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5450. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5451. "shasum": ""
  5452. },
  5453. "require": {
  5454. "php": ">=7.1"
  5455. },
  5456. "type": "library",
  5457. "extra": {
  5458. "branch-alias": {
  5459. "dev-main": "1.27-dev"
  5460. },
  5461. "thanks": {
  5462. "name": "symfony/polyfill",
  5463. "url": "https://github.com/symfony/polyfill"
  5464. }
  5465. },
  5466. "autoload": {
  5467. "files": [
  5468. "bootstrap.php"
  5469. ],
  5470. "psr-4": {
  5471. "Symfony\\Polyfill\\Php72\\": ""
  5472. }
  5473. },
  5474. "notification-url": "https://packagist.org/downloads/",
  5475. "license": [
  5476. "MIT"
  5477. ],
  5478. "authors": [
  5479. {
  5480. "name": "Nicolas Grekas",
  5481. "email": "p@tchwork.com"
  5482. },
  5483. {
  5484. "name": "Symfony Community",
  5485. "homepage": "https://symfony.com/contributors"
  5486. }
  5487. ],
  5488. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5489. "homepage": "https://symfony.com",
  5490. "keywords": [
  5491. "compatibility",
  5492. "polyfill",
  5493. "portable",
  5494. "shim"
  5495. ],
  5496. "support": {
  5497. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5498. },
  5499. "funding": [
  5500. {
  5501. "url": "https://symfony.com/sponsor",
  5502. "type": "custom"
  5503. },
  5504. {
  5505. "url": "https://github.com/fabpot",
  5506. "type": "github"
  5507. },
  5508. {
  5509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5510. "type": "tidelift"
  5511. }
  5512. ],
  5513. "time": "2022-11-03T14:55:06+00:00"
  5514. },
  5515. {
  5516. "name": "symfony/polyfill-php80",
  5517. "version": "v1.27.0",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/symfony/polyfill-php80.git",
  5521. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5526. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5527. "shasum": ""
  5528. },
  5529. "require": {
  5530. "php": ">=7.1"
  5531. },
  5532. "type": "library",
  5533. "extra": {
  5534. "branch-alias": {
  5535. "dev-main": "1.27-dev"
  5536. },
  5537. "thanks": {
  5538. "name": "symfony/polyfill",
  5539. "url": "https://github.com/symfony/polyfill"
  5540. }
  5541. },
  5542. "autoload": {
  5543. "files": [
  5544. "bootstrap.php"
  5545. ],
  5546. "psr-4": {
  5547. "Symfony\\Polyfill\\Php80\\": ""
  5548. },
  5549. "classmap": [
  5550. "Resources/stubs"
  5551. ]
  5552. },
  5553. "notification-url": "https://packagist.org/downloads/",
  5554. "license": [
  5555. "MIT"
  5556. ],
  5557. "authors": [
  5558. {
  5559. "name": "Ion Bazan",
  5560. "email": "ion.bazan@gmail.com"
  5561. },
  5562. {
  5563. "name": "Nicolas Grekas",
  5564. "email": "p@tchwork.com"
  5565. },
  5566. {
  5567. "name": "Symfony Community",
  5568. "homepage": "https://symfony.com/contributors"
  5569. }
  5570. ],
  5571. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5572. "homepage": "https://symfony.com",
  5573. "keywords": [
  5574. "compatibility",
  5575. "polyfill",
  5576. "portable",
  5577. "shim"
  5578. ],
  5579. "support": {
  5580. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5581. },
  5582. "funding": [
  5583. {
  5584. "url": "https://symfony.com/sponsor",
  5585. "type": "custom"
  5586. },
  5587. {
  5588. "url": "https://github.com/fabpot",
  5589. "type": "github"
  5590. },
  5591. {
  5592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5593. "type": "tidelift"
  5594. }
  5595. ],
  5596. "time": "2022-11-03T14:55:06+00:00"
  5597. },
  5598. {
  5599. "name": "symfony/process",
  5600. "version": "v6.1.3",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://github.com/symfony/process.git",
  5604. "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://api.github.com/repos/symfony/process/zipball/a6506e99cfad7059b1ab5cab395854a0a0c21292",
  5609. "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292",
  5610. "shasum": ""
  5611. },
  5612. "require": {
  5613. "php": ">=8.1"
  5614. },
  5615. "type": "library",
  5616. "autoload": {
  5617. "psr-4": {
  5618. "Symfony\\Component\\Process\\": ""
  5619. },
  5620. "exclude-from-classmap": [
  5621. "/Tests/"
  5622. ]
  5623. },
  5624. "notification-url": "https://packagist.org/downloads/",
  5625. "license": [
  5626. "MIT"
  5627. ],
  5628. "authors": [
  5629. {
  5630. "name": "Fabien Potencier",
  5631. "email": "fabien@symfony.com"
  5632. },
  5633. {
  5634. "name": "Symfony Community",
  5635. "homepage": "https://symfony.com/contributors"
  5636. }
  5637. ],
  5638. "description": "Executes commands in sub-processes",
  5639. "homepage": "https://symfony.com",
  5640. "support": {
  5641. "source": "https://github.com/symfony/process/tree/v6.1.3"
  5642. },
  5643. "funding": [
  5644. {
  5645. "url": "https://symfony.com/sponsor",
  5646. "type": "custom"
  5647. },
  5648. {
  5649. "url": "https://github.com/fabpot",
  5650. "type": "github"
  5651. },
  5652. {
  5653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5654. "type": "tidelift"
  5655. }
  5656. ],
  5657. "time": "2022-06-27T17:24:16+00:00"
  5658. },
  5659. {
  5660. "name": "symfony/property-access",
  5661. "version": "v6.1.7",
  5662. "source": {
  5663. "type": "git",
  5664. "url": "https://github.com/symfony/property-access.git",
  5665. "reference": "cf034c0d8d25ed285bb8f6c2528ce6fac98563eb"
  5666. },
  5667. "dist": {
  5668. "type": "zip",
  5669. "url": "https://api.github.com/repos/symfony/property-access/zipball/cf034c0d8d25ed285bb8f6c2528ce6fac98563eb",
  5670. "reference": "cf034c0d8d25ed285bb8f6c2528ce6fac98563eb",
  5671. "shasum": ""
  5672. },
  5673. "require": {
  5674. "php": ">=8.1",
  5675. "symfony/property-info": "^5.4|^6.0"
  5676. },
  5677. "require-dev": {
  5678. "symfony/cache": "^5.4|^6.0"
  5679. },
  5680. "suggest": {
  5681. "psr/cache-implementation": "To cache access methods."
  5682. },
  5683. "type": "library",
  5684. "autoload": {
  5685. "psr-4": {
  5686. "Symfony\\Component\\PropertyAccess\\": ""
  5687. },
  5688. "exclude-from-classmap": [
  5689. "/Tests/"
  5690. ]
  5691. },
  5692. "notification-url": "https://packagist.org/downloads/",
  5693. "license": [
  5694. "MIT"
  5695. ],
  5696. "authors": [
  5697. {
  5698. "name": "Fabien Potencier",
  5699. "email": "fabien@symfony.com"
  5700. },
  5701. {
  5702. "name": "Symfony Community",
  5703. "homepage": "https://symfony.com/contributors"
  5704. }
  5705. ],
  5706. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5707. "homepage": "https://symfony.com",
  5708. "keywords": [
  5709. "access",
  5710. "array",
  5711. "extraction",
  5712. "index",
  5713. "injection",
  5714. "object",
  5715. "property",
  5716. "property path",
  5717. "reflection"
  5718. ],
  5719. "support": {
  5720. "source": "https://github.com/symfony/property-access/tree/v6.1.7"
  5721. },
  5722. "funding": [
  5723. {
  5724. "url": "https://symfony.com/sponsor",
  5725. "type": "custom"
  5726. },
  5727. {
  5728. "url": "https://github.com/fabpot",
  5729. "type": "github"
  5730. },
  5731. {
  5732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5733. "type": "tidelift"
  5734. }
  5735. ],
  5736. "time": "2022-10-28T16:23:08+00:00"
  5737. },
  5738. {
  5739. "name": "symfony/property-info",
  5740. "version": "v6.1.7",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/symfony/property-info.git",
  5744. "reference": "b5a46ec66a4b77d4bd39d58c22710be888e55b68"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/symfony/property-info/zipball/b5a46ec66a4b77d4bd39d58c22710be888e55b68",
  5749. "reference": "b5a46ec66a4b77d4bd39d58c22710be888e55b68",
  5750. "shasum": ""
  5751. },
  5752. "require": {
  5753. "php": ">=8.1",
  5754. "symfony/string": "^5.4|^6.0"
  5755. },
  5756. "conflict": {
  5757. "phpdocumentor/reflection-docblock": "<5.2",
  5758. "phpdocumentor/type-resolver": "<1.5.1",
  5759. "symfony/dependency-injection": "<5.4"
  5760. },
  5761. "require-dev": {
  5762. "doctrine/annotations": "^1.10.4",
  5763. "phpdocumentor/reflection-docblock": "^5.2",
  5764. "phpstan/phpdoc-parser": "^1.0",
  5765. "symfony/cache": "^5.4|^6.0",
  5766. "symfony/dependency-injection": "^5.4|^6.0",
  5767. "symfony/serializer": "^5.4|^6.0"
  5768. },
  5769. "suggest": {
  5770. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5771. "psr/cache-implementation": "To cache results",
  5772. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5773. "symfony/serializer": "To use Serializer metadata"
  5774. },
  5775. "type": "library",
  5776. "autoload": {
  5777. "psr-4": {
  5778. "Symfony\\Component\\PropertyInfo\\": ""
  5779. },
  5780. "exclude-from-classmap": [
  5781. "/Tests/"
  5782. ]
  5783. },
  5784. "notification-url": "https://packagist.org/downloads/",
  5785. "license": [
  5786. "MIT"
  5787. ],
  5788. "authors": [
  5789. {
  5790. "name": "Kévin Dunglas",
  5791. "email": "dunglas@gmail.com"
  5792. },
  5793. {
  5794. "name": "Symfony Community",
  5795. "homepage": "https://symfony.com/contributors"
  5796. }
  5797. ],
  5798. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5799. "homepage": "https://symfony.com",
  5800. "keywords": [
  5801. "doctrine",
  5802. "phpdoc",
  5803. "property",
  5804. "symfony",
  5805. "type",
  5806. "validator"
  5807. ],
  5808. "support": {
  5809. "source": "https://github.com/symfony/property-info/tree/v6.1.7"
  5810. },
  5811. "funding": [
  5812. {
  5813. "url": "https://symfony.com/sponsor",
  5814. "type": "custom"
  5815. },
  5816. {
  5817. "url": "https://github.com/fabpot",
  5818. "type": "github"
  5819. },
  5820. {
  5821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5822. "type": "tidelift"
  5823. }
  5824. ],
  5825. "time": "2022-10-28T16:23:08+00:00"
  5826. },
  5827. {
  5828. "name": "symfony/proxy-manager-bridge",
  5829. "version": "v6.1.0",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  5833. "reference": "bcb3e7a28ee373bd64ecd2a2289a64c5860716af"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/bcb3e7a28ee373bd64ecd2a2289a64c5860716af",
  5838. "reference": "bcb3e7a28ee373bd64ecd2a2289a64c5860716af",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "friendsofphp/proxy-manager-lts": "^1.0.2",
  5843. "php": ">=8.1",
  5844. "symfony/dependency-injection": "^5.4|^6.0"
  5845. },
  5846. "require-dev": {
  5847. "symfony/config": "^5.4|^6.0"
  5848. },
  5849. "type": "symfony-bridge",
  5850. "autoload": {
  5851. "psr-4": {
  5852. "Symfony\\Bridge\\ProxyManager\\": ""
  5853. },
  5854. "exclude-from-classmap": [
  5855. "/Tests/"
  5856. ]
  5857. },
  5858. "notification-url": "https://packagist.org/downloads/",
  5859. "license": [
  5860. "MIT"
  5861. ],
  5862. "authors": [
  5863. {
  5864. "name": "Fabien Potencier",
  5865. "email": "fabien@symfony.com"
  5866. },
  5867. {
  5868. "name": "Symfony Community",
  5869. "homepage": "https://symfony.com/contributors"
  5870. }
  5871. ],
  5872. "description": "Provides integration for ProxyManager with various Symfony components",
  5873. "homepage": "https://symfony.com",
  5874. "support": {
  5875. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.1.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-03-02T13:21:45+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/routing",
  5895. "version": "v6.1.7",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/routing.git",
  5899. "reference": "95effeb9d6e2cec861cee06bf5bbf82d09aea7f5"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/routing/zipball/95effeb9d6e2cec861cee06bf5bbf82d09aea7f5",
  5904. "reference": "95effeb9d6e2cec861cee06bf5bbf82d09aea7f5",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=8.1"
  5909. },
  5910. "conflict": {
  5911. "doctrine/annotations": "<1.12",
  5912. "symfony/config": "<5.4",
  5913. "symfony/dependency-injection": "<5.4",
  5914. "symfony/yaml": "<5.4"
  5915. },
  5916. "require-dev": {
  5917. "doctrine/annotations": "^1.12",
  5918. "psr/log": "^1|^2|^3",
  5919. "symfony/config": "^5.4|^6.0",
  5920. "symfony/dependency-injection": "^5.4|^6.0",
  5921. "symfony/expression-language": "^5.4|^6.0",
  5922. "symfony/http-foundation": "^5.4|^6.0",
  5923. "symfony/yaml": "^5.4|^6.0"
  5924. },
  5925. "suggest": {
  5926. "symfony/config": "For using the all-in-one router or any loader",
  5927. "symfony/expression-language": "For using expression matching",
  5928. "symfony/http-foundation": "For using a Symfony Request object",
  5929. "symfony/yaml": "For using the YAML loader"
  5930. },
  5931. "type": "library",
  5932. "autoload": {
  5933. "psr-4": {
  5934. "Symfony\\Component\\Routing\\": ""
  5935. },
  5936. "exclude-from-classmap": [
  5937. "/Tests/"
  5938. ]
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Fabien Potencier",
  5947. "email": "fabien@symfony.com"
  5948. },
  5949. {
  5950. "name": "Symfony Community",
  5951. "homepage": "https://symfony.com/contributors"
  5952. }
  5953. ],
  5954. "description": "Maps an HTTP request to a set of configuration variables",
  5955. "homepage": "https://symfony.com",
  5956. "keywords": [
  5957. "router",
  5958. "routing",
  5959. "uri",
  5960. "url"
  5961. ],
  5962. "support": {
  5963. "source": "https://github.com/symfony/routing/tree/v6.1.7"
  5964. },
  5965. "funding": [
  5966. {
  5967. "url": "https://symfony.com/sponsor",
  5968. "type": "custom"
  5969. },
  5970. {
  5971. "url": "https://github.com/fabpot",
  5972. "type": "github"
  5973. },
  5974. {
  5975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5976. "type": "tidelift"
  5977. }
  5978. ],
  5979. "time": "2022-10-18T13:12:43+00:00"
  5980. },
  5981. {
  5982. "name": "symfony/runtime",
  5983. "version": "v6.1.3",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://github.com/symfony/runtime.git",
  5987. "reference": "e5d4d848656cbb1812d5f911b1bdec205c6e2fac"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://api.github.com/repos/symfony/runtime/zipball/e5d4d848656cbb1812d5f911b1bdec205c6e2fac",
  5992. "reference": "e5d4d848656cbb1812d5f911b1bdec205c6e2fac",
  5993. "shasum": ""
  5994. },
  5995. "require": {
  5996. "composer-plugin-api": "^1.0|^2.0",
  5997. "php": ">=8.1"
  5998. },
  5999. "conflict": {
  6000. "symfony/dotenv": "<5.4"
  6001. },
  6002. "require-dev": {
  6003. "composer/composer": "^1.0.2|^2.0",
  6004. "symfony/console": "^5.4|^6.0",
  6005. "symfony/dotenv": "^5.4|^6.0",
  6006. "symfony/http-foundation": "^5.4|^6.0",
  6007. "symfony/http-kernel": "^5.4|^6.0"
  6008. },
  6009. "type": "composer-plugin",
  6010. "extra": {
  6011. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6012. },
  6013. "autoload": {
  6014. "psr-4": {
  6015. "Symfony\\Component\\Runtime\\": "",
  6016. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6017. },
  6018. "exclude-from-classmap": [
  6019. "/Tests/"
  6020. ]
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Nicolas Grekas",
  6029. "email": "p@tchwork.com"
  6030. },
  6031. {
  6032. "name": "Symfony Community",
  6033. "homepage": "https://symfony.com/contributors"
  6034. }
  6035. ],
  6036. "description": "Enables decoupling PHP applications from global state",
  6037. "homepage": "https://symfony.com",
  6038. "support": {
  6039. "source": "https://github.com/symfony/runtime/tree/v6.1.3"
  6040. },
  6041. "funding": [
  6042. {
  6043. "url": "https://symfony.com/sponsor",
  6044. "type": "custom"
  6045. },
  6046. {
  6047. "url": "https://github.com/fabpot",
  6048. "type": "github"
  6049. },
  6050. {
  6051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6052. "type": "tidelift"
  6053. }
  6054. ],
  6055. "time": "2022-06-27T17:24:16+00:00"
  6056. },
  6057. {
  6058. "name": "symfony/security-bundle",
  6059. "version": "v6.1.3",
  6060. "source": {
  6061. "type": "git",
  6062. "url": "https://github.com/symfony/security-bundle.git",
  6063. "reference": "1410129e36e5d0cf4bde73f4ed5d9e18acff06b3"
  6064. },
  6065. "dist": {
  6066. "type": "zip",
  6067. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/1410129e36e5d0cf4bde73f4ed5d9e18acff06b3",
  6068. "reference": "1410129e36e5d0cf4bde73f4ed5d9e18acff06b3",
  6069. "shasum": ""
  6070. },
  6071. "require": {
  6072. "composer-runtime-api": ">=2.1",
  6073. "ext-xml": "*",
  6074. "php": ">=8.1",
  6075. "symfony/config": "^5.4|^6.0",
  6076. "symfony/dependency-injection": "^5.4|^6.0",
  6077. "symfony/event-dispatcher": "^5.4|^6.0",
  6078. "symfony/http-foundation": "^5.4|^6.0",
  6079. "symfony/http-kernel": "^5.4|^6.0",
  6080. "symfony/password-hasher": "^5.4|^6.0",
  6081. "symfony/security-core": "^5.4|^6.0",
  6082. "symfony/security-csrf": "^5.4|^6.0",
  6083. "symfony/security-http": "^5.4|^6.0"
  6084. },
  6085. "conflict": {
  6086. "symfony/browser-kit": "<5.4",
  6087. "symfony/console": "<5.4",
  6088. "symfony/framework-bundle": "<5.4",
  6089. "symfony/ldap": "<5.4",
  6090. "symfony/twig-bundle": "<5.4"
  6091. },
  6092. "require-dev": {
  6093. "doctrine/annotations": "^1.10.4",
  6094. "symfony/asset": "^5.4|^6.0",
  6095. "symfony/browser-kit": "^5.4|^6.0",
  6096. "symfony/console": "^5.4|^6.0",
  6097. "symfony/css-selector": "^5.4|^6.0",
  6098. "symfony/dom-crawler": "^5.4|^6.0",
  6099. "symfony/expression-language": "^5.4|^6.0",
  6100. "symfony/form": "^5.4|^6.0",
  6101. "symfony/framework-bundle": "^5.4|^6.0",
  6102. "symfony/ldap": "^5.4|^6.0",
  6103. "symfony/process": "^5.4|^6.0",
  6104. "symfony/rate-limiter": "^5.4|^6.0",
  6105. "symfony/serializer": "^5.4|^6.0",
  6106. "symfony/translation": "^5.4|^6.0",
  6107. "symfony/twig-bridge": "^5.4|^6.0",
  6108. "symfony/twig-bundle": "^5.4|^6.0",
  6109. "symfony/validator": "^5.4|^6.0",
  6110. "symfony/yaml": "^5.4|^6.0",
  6111. "twig/twig": "^2.13|^3.0.4"
  6112. },
  6113. "type": "symfony-bundle",
  6114. "autoload": {
  6115. "psr-4": {
  6116. "Symfony\\Bundle\\SecurityBundle\\": ""
  6117. },
  6118. "exclude-from-classmap": [
  6119. "/Tests/"
  6120. ]
  6121. },
  6122. "notification-url": "https://packagist.org/downloads/",
  6123. "license": [
  6124. "MIT"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "Fabien Potencier",
  6129. "email": "fabien@symfony.com"
  6130. },
  6131. {
  6132. "name": "Symfony Community",
  6133. "homepage": "https://symfony.com/contributors"
  6134. }
  6135. ],
  6136. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6137. "homepage": "https://symfony.com",
  6138. "support": {
  6139. "source": "https://github.com/symfony/security-bundle/tree/v6.1.3"
  6140. },
  6141. "funding": [
  6142. {
  6143. "url": "https://symfony.com/sponsor",
  6144. "type": "custom"
  6145. },
  6146. {
  6147. "url": "https://github.com/fabpot",
  6148. "type": "github"
  6149. },
  6150. {
  6151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6152. "type": "tidelift"
  6153. }
  6154. ],
  6155. "time": "2022-07-20T13:46:29+00:00"
  6156. },
  6157. {
  6158. "name": "symfony/security-core",
  6159. "version": "v6.1.7",
  6160. "source": {
  6161. "type": "git",
  6162. "url": "https://github.com/symfony/security-core.git",
  6163. "reference": "c84ff026d6fa3cf9cb54cca762f14b6a449fa557"
  6164. },
  6165. "dist": {
  6166. "type": "zip",
  6167. "url": "https://api.github.com/repos/symfony/security-core/zipball/c84ff026d6fa3cf9cb54cca762f14b6a449fa557",
  6168. "reference": "c84ff026d6fa3cf9cb54cca762f14b6a449fa557",
  6169. "shasum": ""
  6170. },
  6171. "require": {
  6172. "php": ">=8.1",
  6173. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  6174. "symfony/password-hasher": "^5.4|^6.0",
  6175. "symfony/service-contracts": "^1.1.6|^2|^3"
  6176. },
  6177. "conflict": {
  6178. "symfony/event-dispatcher": "<5.4",
  6179. "symfony/http-foundation": "<5.4",
  6180. "symfony/ldap": "<5.4",
  6181. "symfony/security-guard": "<5.4",
  6182. "symfony/validator": "<5.4"
  6183. },
  6184. "require-dev": {
  6185. "psr/cache": "^1.0|^2.0|^3.0",
  6186. "psr/container": "^1.1|^2.0",
  6187. "psr/log": "^1|^2|^3",
  6188. "symfony/cache": "^5.4|^6.0",
  6189. "symfony/event-dispatcher": "^5.4|^6.0",
  6190. "symfony/expression-language": "^5.4|^6.0",
  6191. "symfony/http-foundation": "^5.4|^6.0",
  6192. "symfony/ldap": "^5.4|^6.0",
  6193. "symfony/translation": "^5.4|^6.0",
  6194. "symfony/validator": "^5.4|^6.0"
  6195. },
  6196. "suggest": {
  6197. "psr/container-implementation": "To instantiate the Security class",
  6198. "symfony/event-dispatcher": "",
  6199. "symfony/expression-language": "For using the expression voter",
  6200. "symfony/http-foundation": "",
  6201. "symfony/ldap": "For using LDAP integration",
  6202. "symfony/validator": "For using the user password constraint"
  6203. },
  6204. "type": "library",
  6205. "autoload": {
  6206. "psr-4": {
  6207. "Symfony\\Component\\Security\\Core\\": ""
  6208. },
  6209. "exclude-from-classmap": [
  6210. "/Tests/"
  6211. ]
  6212. },
  6213. "notification-url": "https://packagist.org/downloads/",
  6214. "license": [
  6215. "MIT"
  6216. ],
  6217. "authors": [
  6218. {
  6219. "name": "Fabien Potencier",
  6220. "email": "fabien@symfony.com"
  6221. },
  6222. {
  6223. "name": "Symfony Community",
  6224. "homepage": "https://symfony.com/contributors"
  6225. }
  6226. ],
  6227. "description": "Symfony Security Component - Core Library",
  6228. "homepage": "https://symfony.com",
  6229. "support": {
  6230. "source": "https://github.com/symfony/security-core/tree/v6.1.7"
  6231. },
  6232. "funding": [
  6233. {
  6234. "url": "https://symfony.com/sponsor",
  6235. "type": "custom"
  6236. },
  6237. {
  6238. "url": "https://github.com/fabpot",
  6239. "type": "github"
  6240. },
  6241. {
  6242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6243. "type": "tidelift"
  6244. }
  6245. ],
  6246. "time": "2022-10-23T10:33:34+00:00"
  6247. },
  6248. {
  6249. "name": "symfony/security-csrf",
  6250. "version": "v6.1.0",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/symfony/security-csrf.git",
  6254. "reference": "b44d74295a5651298de8c2760ba50bef3b97f34b"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b44d74295a5651298de8c2760ba50bef3b97f34b",
  6259. "reference": "b44d74295a5651298de8c2760ba50bef3b97f34b",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=8.1",
  6264. "symfony/security-core": "^5.4|^6.0"
  6265. },
  6266. "conflict": {
  6267. "symfony/http-foundation": "<5.4"
  6268. },
  6269. "require-dev": {
  6270. "symfony/http-foundation": "^5.4|^6.0"
  6271. },
  6272. "suggest": {
  6273. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6274. },
  6275. "type": "library",
  6276. "autoload": {
  6277. "psr-4": {
  6278. "Symfony\\Component\\Security\\Csrf\\": ""
  6279. },
  6280. "exclude-from-classmap": [
  6281. "/Tests/"
  6282. ]
  6283. },
  6284. "notification-url": "https://packagist.org/downloads/",
  6285. "license": [
  6286. "MIT"
  6287. ],
  6288. "authors": [
  6289. {
  6290. "name": "Fabien Potencier",
  6291. "email": "fabien@symfony.com"
  6292. },
  6293. {
  6294. "name": "Symfony Community",
  6295. "homepage": "https://symfony.com/contributors"
  6296. }
  6297. ],
  6298. "description": "Symfony Security Component - CSRF Library",
  6299. "homepage": "https://symfony.com",
  6300. "support": {
  6301. "source": "https://github.com/symfony/security-csrf/tree/v6.1.0"
  6302. },
  6303. "funding": [
  6304. {
  6305. "url": "https://symfony.com/sponsor",
  6306. "type": "custom"
  6307. },
  6308. {
  6309. "url": "https://github.com/fabpot",
  6310. "type": "github"
  6311. },
  6312. {
  6313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6314. "type": "tidelift"
  6315. }
  6316. ],
  6317. "time": "2022-05-14T12:53:54+00:00"
  6318. },
  6319. {
  6320. "name": "symfony/security-http",
  6321. "version": "v6.1.7",
  6322. "source": {
  6323. "type": "git",
  6324. "url": "https://github.com/symfony/security-http.git",
  6325. "reference": "931b037cfd98e3f8c06a311e9c04abc9ee010ab9"
  6326. },
  6327. "dist": {
  6328. "type": "zip",
  6329. "url": "https://api.github.com/repos/symfony/security-http/zipball/931b037cfd98e3f8c06a311e9c04abc9ee010ab9",
  6330. "reference": "931b037cfd98e3f8c06a311e9c04abc9ee010ab9",
  6331. "shasum": ""
  6332. },
  6333. "require": {
  6334. "php": ">=8.1",
  6335. "symfony/http-foundation": "^5.4|^6.0",
  6336. "symfony/http-kernel": "^6.1",
  6337. "symfony/polyfill-mbstring": "~1.0",
  6338. "symfony/property-access": "^5.4|^6.0",
  6339. "symfony/security-core": "^5.4.7|^6.0"
  6340. },
  6341. "conflict": {
  6342. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6343. "symfony/security-bundle": "<5.4",
  6344. "symfony/security-csrf": "<5.4"
  6345. },
  6346. "require-dev": {
  6347. "psr/log": "^1|^2|^3",
  6348. "symfony/cache": "^5.4|^6.0",
  6349. "symfony/rate-limiter": "^5.4|^6.0",
  6350. "symfony/routing": "^5.4|^6.0",
  6351. "symfony/security-csrf": "^5.4|^6.0",
  6352. "symfony/translation": "^5.4|^6.0"
  6353. },
  6354. "suggest": {
  6355. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6356. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6357. },
  6358. "type": "library",
  6359. "autoload": {
  6360. "psr-4": {
  6361. "Symfony\\Component\\Security\\Http\\": ""
  6362. },
  6363. "exclude-from-classmap": [
  6364. "/Tests/"
  6365. ]
  6366. },
  6367. "notification-url": "https://packagist.org/downloads/",
  6368. "license": [
  6369. "MIT"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Fabien Potencier",
  6374. "email": "fabien@symfony.com"
  6375. },
  6376. {
  6377. "name": "Symfony Community",
  6378. "homepage": "https://symfony.com/contributors"
  6379. }
  6380. ],
  6381. "description": "Symfony Security Component - HTTP Integration",
  6382. "homepage": "https://symfony.com",
  6383. "support": {
  6384. "source": "https://github.com/symfony/security-http/tree/v6.1.7"
  6385. },
  6386. "funding": [
  6387. {
  6388. "url": "https://symfony.com/sponsor",
  6389. "type": "custom"
  6390. },
  6391. {
  6392. "url": "https://github.com/fabpot",
  6393. "type": "github"
  6394. },
  6395. {
  6396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6397. "type": "tidelift"
  6398. }
  6399. ],
  6400. "time": "2022-10-23T10:33:34+00:00"
  6401. },
  6402. {
  6403. "name": "symfony/serializer",
  6404. "version": "v6.1.6",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/symfony/serializer.git",
  6408. "reference": "76af774da9daf606d6400f1445b69d23efa3b238"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/symfony/serializer/zipball/76af774da9daf606d6400f1445b69d23efa3b238",
  6413. "reference": "76af774da9daf606d6400f1445b69d23efa3b238",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": ">=8.1",
  6418. "symfony/polyfill-ctype": "~1.8"
  6419. },
  6420. "conflict": {
  6421. "doctrine/annotations": "<1.12",
  6422. "phpdocumentor/reflection-docblock": "<3.2.2",
  6423. "phpdocumentor/type-resolver": "<1.4.0",
  6424. "symfony/dependency-injection": "<5.4",
  6425. "symfony/property-access": "<5.4",
  6426. "symfony/property-info": "<5.4",
  6427. "symfony/uid": "<5.4",
  6428. "symfony/yaml": "<5.4"
  6429. },
  6430. "require-dev": {
  6431. "doctrine/annotations": "^1.12",
  6432. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6433. "symfony/cache": "^5.4|^6.0",
  6434. "symfony/config": "^5.4|^6.0",
  6435. "symfony/dependency-injection": "^5.4|^6.0",
  6436. "symfony/error-handler": "^5.4|^6.0",
  6437. "symfony/filesystem": "^5.4|^6.0",
  6438. "symfony/form": "^5.4|^6.0",
  6439. "symfony/http-foundation": "^5.4|^6.0",
  6440. "symfony/http-kernel": "^5.4|^6.0",
  6441. "symfony/mime": "^5.4|^6.0",
  6442. "symfony/property-access": "^5.4|^6.0",
  6443. "symfony/property-info": "^5.4|^6.0",
  6444. "symfony/uid": "^5.4|^6.0",
  6445. "symfony/validator": "^5.4|^6.0",
  6446. "symfony/var-dumper": "^5.4|^6.0",
  6447. "symfony/var-exporter": "^5.4|^6.0",
  6448. "symfony/yaml": "^5.4|^6.0"
  6449. },
  6450. "suggest": {
  6451. "psr/cache-implementation": "For using the metadata cache.",
  6452. "symfony/config": "For using the XML mapping loader.",
  6453. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6454. "symfony/property-access": "For using the ObjectNormalizer.",
  6455. "symfony/property-info": "To deserialize relations.",
  6456. "symfony/var-exporter": "For using the metadata compiler.",
  6457. "symfony/yaml": "For using the default YAML mapping loader."
  6458. },
  6459. "type": "library",
  6460. "autoload": {
  6461. "psr-4": {
  6462. "Symfony\\Component\\Serializer\\": ""
  6463. },
  6464. "exclude-from-classmap": [
  6465. "/Tests/"
  6466. ]
  6467. },
  6468. "notification-url": "https://packagist.org/downloads/",
  6469. "license": [
  6470. "MIT"
  6471. ],
  6472. "authors": [
  6473. {
  6474. "name": "Fabien Potencier",
  6475. "email": "fabien@symfony.com"
  6476. },
  6477. {
  6478. "name": "Symfony Community",
  6479. "homepage": "https://symfony.com/contributors"
  6480. }
  6481. ],
  6482. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6483. "homepage": "https://symfony.com",
  6484. "support": {
  6485. "source": "https://github.com/symfony/serializer/tree/v6.1.6"
  6486. },
  6487. "funding": [
  6488. {
  6489. "url": "https://symfony.com/sponsor",
  6490. "type": "custom"
  6491. },
  6492. {
  6493. "url": "https://github.com/fabpot",
  6494. "type": "github"
  6495. },
  6496. {
  6497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6498. "type": "tidelift"
  6499. }
  6500. ],
  6501. "time": "2022-10-12T05:10:31+00:00"
  6502. },
  6503. {
  6504. "name": "symfony/service-contracts",
  6505. "version": "v3.1.1",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/symfony/service-contracts.git",
  6509. "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/925e713fe8fcacf6bc05e936edd8dd5441a21239",
  6514. "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "php": ">=8.1",
  6519. "psr/container": "^2.0"
  6520. },
  6521. "conflict": {
  6522. "ext-psr": "<1.1|>=2"
  6523. },
  6524. "suggest": {
  6525. "symfony/service-implementation": ""
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "branch-alias": {
  6530. "dev-main": "3.1-dev"
  6531. },
  6532. "thanks": {
  6533. "name": "symfony/contracts",
  6534. "url": "https://github.com/symfony/contracts"
  6535. }
  6536. },
  6537. "autoload": {
  6538. "psr-4": {
  6539. "Symfony\\Contracts\\Service\\": ""
  6540. },
  6541. "exclude-from-classmap": [
  6542. "/Test/"
  6543. ]
  6544. },
  6545. "notification-url": "https://packagist.org/downloads/",
  6546. "license": [
  6547. "MIT"
  6548. ],
  6549. "authors": [
  6550. {
  6551. "name": "Nicolas Grekas",
  6552. "email": "p@tchwork.com"
  6553. },
  6554. {
  6555. "name": "Symfony Community",
  6556. "homepage": "https://symfony.com/contributors"
  6557. }
  6558. ],
  6559. "description": "Generic abstractions related to writing services",
  6560. "homepage": "https://symfony.com",
  6561. "keywords": [
  6562. "abstractions",
  6563. "contracts",
  6564. "decoupling",
  6565. "interfaces",
  6566. "interoperability",
  6567. "standards"
  6568. ],
  6569. "support": {
  6570. "source": "https://github.com/symfony/service-contracts/tree/v3.1.1"
  6571. },
  6572. "funding": [
  6573. {
  6574. "url": "https://symfony.com/sponsor",
  6575. "type": "custom"
  6576. },
  6577. {
  6578. "url": "https://github.com/fabpot",
  6579. "type": "github"
  6580. },
  6581. {
  6582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6583. "type": "tidelift"
  6584. }
  6585. ],
  6586. "time": "2022-05-30T19:18:58+00:00"
  6587. },
  6588. {
  6589. "name": "symfony/stopwatch",
  6590. "version": "v6.1.5",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/symfony/stopwatch.git",
  6594. "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/266636bb8f3fbdccc302491df7b3a1b9a8c238a7",
  6599. "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "php": ">=8.1",
  6604. "symfony/service-contracts": "^1|^2|^3"
  6605. },
  6606. "type": "library",
  6607. "autoload": {
  6608. "psr-4": {
  6609. "Symfony\\Component\\Stopwatch\\": ""
  6610. },
  6611. "exclude-from-classmap": [
  6612. "/Tests/"
  6613. ]
  6614. },
  6615. "notification-url": "https://packagist.org/downloads/",
  6616. "license": [
  6617. "MIT"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Fabien Potencier",
  6622. "email": "fabien@symfony.com"
  6623. },
  6624. {
  6625. "name": "Symfony Community",
  6626. "homepage": "https://symfony.com/contributors"
  6627. }
  6628. ],
  6629. "description": "Provides a way to profile code",
  6630. "homepage": "https://symfony.com",
  6631. "support": {
  6632. "source": "https://github.com/symfony/stopwatch/tree/v6.1.5"
  6633. },
  6634. "funding": [
  6635. {
  6636. "url": "https://symfony.com/sponsor",
  6637. "type": "custom"
  6638. },
  6639. {
  6640. "url": "https://github.com/fabpot",
  6641. "type": "github"
  6642. },
  6643. {
  6644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6645. "type": "tidelift"
  6646. }
  6647. ],
  6648. "time": "2022-09-28T16:00:52+00:00"
  6649. },
  6650. {
  6651. "name": "symfony/string",
  6652. "version": "v6.1.7",
  6653. "source": {
  6654. "type": "git",
  6655. "url": "https://github.com/symfony/string.git",
  6656. "reference": "823f143370880efcbdfa2dbca946b3358c4707e5"
  6657. },
  6658. "dist": {
  6659. "type": "zip",
  6660. "url": "https://api.github.com/repos/symfony/string/zipball/823f143370880efcbdfa2dbca946b3358c4707e5",
  6661. "reference": "823f143370880efcbdfa2dbca946b3358c4707e5",
  6662. "shasum": ""
  6663. },
  6664. "require": {
  6665. "php": ">=8.1",
  6666. "symfony/polyfill-ctype": "~1.8",
  6667. "symfony/polyfill-intl-grapheme": "~1.0",
  6668. "symfony/polyfill-intl-normalizer": "~1.0",
  6669. "symfony/polyfill-mbstring": "~1.0"
  6670. },
  6671. "conflict": {
  6672. "symfony/translation-contracts": "<2.0"
  6673. },
  6674. "require-dev": {
  6675. "symfony/error-handler": "^5.4|^6.0",
  6676. "symfony/http-client": "^5.4|^6.0",
  6677. "symfony/translation-contracts": "^2.0|^3.0",
  6678. "symfony/var-exporter": "^5.4|^6.0"
  6679. },
  6680. "type": "library",
  6681. "autoload": {
  6682. "files": [
  6683. "Resources/functions.php"
  6684. ],
  6685. "psr-4": {
  6686. "Symfony\\Component\\String\\": ""
  6687. },
  6688. "exclude-from-classmap": [
  6689. "/Tests/"
  6690. ]
  6691. },
  6692. "notification-url": "https://packagist.org/downloads/",
  6693. "license": [
  6694. "MIT"
  6695. ],
  6696. "authors": [
  6697. {
  6698. "name": "Nicolas Grekas",
  6699. "email": "p@tchwork.com"
  6700. },
  6701. {
  6702. "name": "Symfony Community",
  6703. "homepage": "https://symfony.com/contributors"
  6704. }
  6705. ],
  6706. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6707. "homepage": "https://symfony.com",
  6708. "keywords": [
  6709. "grapheme",
  6710. "i18n",
  6711. "string",
  6712. "unicode",
  6713. "utf-8",
  6714. "utf8"
  6715. ],
  6716. "support": {
  6717. "source": "https://github.com/symfony/string/tree/v6.1.7"
  6718. },
  6719. "funding": [
  6720. {
  6721. "url": "https://symfony.com/sponsor",
  6722. "type": "custom"
  6723. },
  6724. {
  6725. "url": "https://github.com/fabpot",
  6726. "type": "github"
  6727. },
  6728. {
  6729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6730. "type": "tidelift"
  6731. }
  6732. ],
  6733. "time": "2022-10-10T09:34:31+00:00"
  6734. },
  6735. {
  6736. "name": "symfony/translation",
  6737. "version": "v6.1.6",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/symfony/translation.git",
  6741. "reference": "e6cd330e5a072518f88d65148f3f165541807494"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/symfony/translation/zipball/e6cd330e5a072518f88d65148f3f165541807494",
  6746. "reference": "e6cd330e5a072518f88d65148f3f165541807494",
  6747. "shasum": ""
  6748. },
  6749. "require": {
  6750. "php": ">=8.1",
  6751. "symfony/polyfill-mbstring": "~1.0",
  6752. "symfony/translation-contracts": "^2.3|^3.0"
  6753. },
  6754. "conflict": {
  6755. "symfony/config": "<5.4",
  6756. "symfony/console": "<5.4",
  6757. "symfony/dependency-injection": "<5.4",
  6758. "symfony/http-kernel": "<5.4",
  6759. "symfony/twig-bundle": "<5.4",
  6760. "symfony/yaml": "<5.4"
  6761. },
  6762. "provide": {
  6763. "symfony/translation-implementation": "2.3|3.0"
  6764. },
  6765. "require-dev": {
  6766. "psr/log": "^1|^2|^3",
  6767. "symfony/config": "^5.4|^6.0",
  6768. "symfony/console": "^5.4|^6.0",
  6769. "symfony/dependency-injection": "^5.4|^6.0",
  6770. "symfony/finder": "^5.4|^6.0",
  6771. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6772. "symfony/http-kernel": "^5.4|^6.0",
  6773. "symfony/intl": "^5.4|^6.0",
  6774. "symfony/polyfill-intl-icu": "^1.21",
  6775. "symfony/routing": "^5.4|^6.0",
  6776. "symfony/service-contracts": "^1.1.2|^2|^3",
  6777. "symfony/yaml": "^5.4|^6.0"
  6778. },
  6779. "suggest": {
  6780. "psr/log-implementation": "To use logging capability in translator",
  6781. "symfony/config": "",
  6782. "symfony/yaml": ""
  6783. },
  6784. "type": "library",
  6785. "autoload": {
  6786. "files": [
  6787. "Resources/functions.php"
  6788. ],
  6789. "psr-4": {
  6790. "Symfony\\Component\\Translation\\": ""
  6791. },
  6792. "exclude-from-classmap": [
  6793. "/Tests/"
  6794. ]
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "MIT"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Fabien Potencier",
  6803. "email": "fabien@symfony.com"
  6804. },
  6805. {
  6806. "name": "Symfony Community",
  6807. "homepage": "https://symfony.com/contributors"
  6808. }
  6809. ],
  6810. "description": "Provides tools to internationalize your application",
  6811. "homepage": "https://symfony.com",
  6812. "support": {
  6813. "source": "https://github.com/symfony/translation/tree/v6.1.6"
  6814. },
  6815. "funding": [
  6816. {
  6817. "url": "https://symfony.com/sponsor",
  6818. "type": "custom"
  6819. },
  6820. {
  6821. "url": "https://github.com/fabpot",
  6822. "type": "github"
  6823. },
  6824. {
  6825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6826. "type": "tidelift"
  6827. }
  6828. ],
  6829. "time": "2022-10-07T08:04:03+00:00"
  6830. },
  6831. {
  6832. "name": "symfony/translation-contracts",
  6833. "version": "v3.1.1",
  6834. "source": {
  6835. "type": "git",
  6836. "url": "https://github.com/symfony/translation-contracts.git",
  6837. "reference": "606be0f48e05116baef052f7f3abdb345c8e02cc"
  6838. },
  6839. "dist": {
  6840. "type": "zip",
  6841. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/606be0f48e05116baef052f7f3abdb345c8e02cc",
  6842. "reference": "606be0f48e05116baef052f7f3abdb345c8e02cc",
  6843. "shasum": ""
  6844. },
  6845. "require": {
  6846. "php": ">=8.1"
  6847. },
  6848. "suggest": {
  6849. "symfony/translation-implementation": ""
  6850. },
  6851. "type": "library",
  6852. "extra": {
  6853. "branch-alias": {
  6854. "dev-main": "3.1-dev"
  6855. },
  6856. "thanks": {
  6857. "name": "symfony/contracts",
  6858. "url": "https://github.com/symfony/contracts"
  6859. }
  6860. },
  6861. "autoload": {
  6862. "psr-4": {
  6863. "Symfony\\Contracts\\Translation\\": ""
  6864. },
  6865. "exclude-from-classmap": [
  6866. "/Test/"
  6867. ]
  6868. },
  6869. "notification-url": "https://packagist.org/downloads/",
  6870. "license": [
  6871. "MIT"
  6872. ],
  6873. "authors": [
  6874. {
  6875. "name": "Nicolas Grekas",
  6876. "email": "p@tchwork.com"
  6877. },
  6878. {
  6879. "name": "Symfony Community",
  6880. "homepage": "https://symfony.com/contributors"
  6881. }
  6882. ],
  6883. "description": "Generic abstractions related to translation",
  6884. "homepage": "https://symfony.com",
  6885. "keywords": [
  6886. "abstractions",
  6887. "contracts",
  6888. "decoupling",
  6889. "interfaces",
  6890. "interoperability",
  6891. "standards"
  6892. ],
  6893. "support": {
  6894. "source": "https://github.com/symfony/translation-contracts/tree/v3.1.1"
  6895. },
  6896. "funding": [
  6897. {
  6898. "url": "https://symfony.com/sponsor",
  6899. "type": "custom"
  6900. },
  6901. {
  6902. "url": "https://github.com/fabpot",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6907. "type": "tidelift"
  6908. }
  6909. ],
  6910. "time": "2022-06-27T17:24:16+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/twig-bridge",
  6914. "version": "v6.1.7",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/twig-bridge.git",
  6918. "reference": "10f4ccba086ca81bbac9ee5e065d9f99565b3983"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/10f4ccba086ca81bbac9ee5e065d9f99565b3983",
  6923. "reference": "10f4ccba086ca81bbac9ee5e065d9f99565b3983",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "php": ">=8.1",
  6928. "symfony/translation-contracts": "^1.1|^2|^3",
  6929. "twig/twig": "^2.13|^3.0.4"
  6930. },
  6931. "conflict": {
  6932. "phpdocumentor/reflection-docblock": "<3.2.2",
  6933. "phpdocumentor/type-resolver": "<1.4.0",
  6934. "symfony/console": "<5.4",
  6935. "symfony/form": "<6.1",
  6936. "symfony/http-foundation": "<5.4",
  6937. "symfony/http-kernel": "<5.4",
  6938. "symfony/translation": "<5.4",
  6939. "symfony/workflow": "<5.4"
  6940. },
  6941. "require-dev": {
  6942. "doctrine/annotations": "^1.12",
  6943. "egulias/email-validator": "^2.1.10|^3",
  6944. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6945. "symfony/asset": "^5.4|^6.0",
  6946. "symfony/console": "^5.4|^6.0",
  6947. "symfony/dependency-injection": "^5.4|^6.0",
  6948. "symfony/expression-language": "^5.4|^6.0",
  6949. "symfony/finder": "^5.4|^6.0",
  6950. "symfony/form": "^6.1",
  6951. "symfony/html-sanitizer": "^6.1",
  6952. "symfony/http-foundation": "^5.4|^6.0",
  6953. "symfony/http-kernel": "^5.4|^6.0",
  6954. "symfony/intl": "^5.4|^6.0",
  6955. "symfony/mime": "^5.4|^6.0",
  6956. "symfony/polyfill-intl-icu": "~1.0",
  6957. "symfony/property-info": "^5.4|^6.0",
  6958. "symfony/routing": "^5.4|^6.0",
  6959. "symfony/security-acl": "^2.8|^3.0",
  6960. "symfony/security-core": "^5.4|^6.0",
  6961. "symfony/security-csrf": "^5.4|^6.0",
  6962. "symfony/security-http": "^5.4|^6.0",
  6963. "symfony/serializer": "^5.4|^6.0",
  6964. "symfony/stopwatch": "^5.4|^6.0",
  6965. "symfony/translation": "^5.4|^6.0",
  6966. "symfony/web-link": "^5.4|^6.0",
  6967. "symfony/workflow": "^5.4|^6.0",
  6968. "symfony/yaml": "^5.4|^6.0",
  6969. "twig/cssinliner-extra": "^2.12|^3",
  6970. "twig/inky-extra": "^2.12|^3",
  6971. "twig/markdown-extra": "^2.12|^3"
  6972. },
  6973. "suggest": {
  6974. "symfony/asset": "For using the AssetExtension",
  6975. "symfony/expression-language": "For using the ExpressionExtension",
  6976. "symfony/finder": "",
  6977. "symfony/form": "For using the FormExtension",
  6978. "symfony/html-sanitizer": "For using the HtmlSanitizerExtension",
  6979. "symfony/http-kernel": "For using the HttpKernelExtension",
  6980. "symfony/routing": "For using the RoutingExtension",
  6981. "symfony/security-core": "For using the SecurityExtension",
  6982. "symfony/security-csrf": "For using the CsrfExtension",
  6983. "symfony/security-http": "For using the LogoutUrlExtension",
  6984. "symfony/stopwatch": "For using the StopwatchExtension",
  6985. "symfony/translation": "For using the TranslationExtension",
  6986. "symfony/var-dumper": "For using the DumpExtension",
  6987. "symfony/web-link": "For using the WebLinkExtension",
  6988. "symfony/yaml": "For using the YamlExtension"
  6989. },
  6990. "type": "symfony-bridge",
  6991. "autoload": {
  6992. "psr-4": {
  6993. "Symfony\\Bridge\\Twig\\": ""
  6994. },
  6995. "exclude-from-classmap": [
  6996. "/Tests/"
  6997. ]
  6998. },
  6999. "notification-url": "https://packagist.org/downloads/",
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Fabien Potencier",
  7006. "email": "fabien@symfony.com"
  7007. },
  7008. {
  7009. "name": "Symfony Community",
  7010. "homepage": "https://symfony.com/contributors"
  7011. }
  7012. ],
  7013. "description": "Provides integration for Twig with various Symfony components",
  7014. "homepage": "https://symfony.com",
  7015. "support": {
  7016. "source": "https://github.com/symfony/twig-bridge/tree/v6.1.7"
  7017. },
  7018. "funding": [
  7019. {
  7020. "url": "https://symfony.com/sponsor",
  7021. "type": "custom"
  7022. },
  7023. {
  7024. "url": "https://github.com/fabpot",
  7025. "type": "github"
  7026. },
  7027. {
  7028. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7029. "type": "tidelift"
  7030. }
  7031. ],
  7032. "time": "2022-10-19T08:10:53+00:00"
  7033. },
  7034. {
  7035. "name": "symfony/twig-bundle",
  7036. "version": "v6.1.1",
  7037. "source": {
  7038. "type": "git",
  7039. "url": "https://github.com/symfony/twig-bundle.git",
  7040. "reference": "a2abab10068525a7f5a879e40e411d369d688545"
  7041. },
  7042. "dist": {
  7043. "type": "zip",
  7044. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/a2abab10068525a7f5a879e40e411d369d688545",
  7045. "reference": "a2abab10068525a7f5a879e40e411d369d688545",
  7046. "shasum": ""
  7047. },
  7048. "require": {
  7049. "composer-runtime-api": ">=2.1",
  7050. "php": ">=8.1",
  7051. "symfony/config": "^5.4|^6.0",
  7052. "symfony/dependency-injection": "^5.4|^6.0",
  7053. "symfony/http-foundation": "^5.4|^6.0",
  7054. "symfony/http-kernel": "^5.4|^6.0",
  7055. "symfony/polyfill-ctype": "~1.8",
  7056. "symfony/twig-bridge": "^5.4|^6.0",
  7057. "twig/twig": "^2.13|^3.0.4"
  7058. },
  7059. "conflict": {
  7060. "symfony/framework-bundle": "<5.4",
  7061. "symfony/translation": "<5.4"
  7062. },
  7063. "require-dev": {
  7064. "doctrine/annotations": "^1.10.4",
  7065. "symfony/asset": "^5.4|^6.0",
  7066. "symfony/expression-language": "^5.4|^6.0",
  7067. "symfony/finder": "^5.4|^6.0",
  7068. "symfony/form": "^5.4|^6.0",
  7069. "symfony/framework-bundle": "^5.4|^6.0",
  7070. "symfony/routing": "^5.4|^6.0",
  7071. "symfony/stopwatch": "^5.4|^6.0",
  7072. "symfony/translation": "^5.4|^6.0",
  7073. "symfony/web-link": "^5.4|^6.0",
  7074. "symfony/yaml": "^5.4|^6.0"
  7075. },
  7076. "type": "symfony-bundle",
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Symfony\\Bundle\\TwigBundle\\": ""
  7080. },
  7081. "exclude-from-classmap": [
  7082. "/Tests/"
  7083. ]
  7084. },
  7085. "notification-url": "https://packagist.org/downloads/",
  7086. "license": [
  7087. "MIT"
  7088. ],
  7089. "authors": [
  7090. {
  7091. "name": "Fabien Potencier",
  7092. "email": "fabien@symfony.com"
  7093. },
  7094. {
  7095. "name": "Symfony Community",
  7096. "homepage": "https://symfony.com/contributors"
  7097. }
  7098. ],
  7099. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7100. "homepage": "https://symfony.com",
  7101. "support": {
  7102. "source": "https://github.com/symfony/twig-bundle/tree/v6.1.1"
  7103. },
  7104. "funding": [
  7105. {
  7106. "url": "https://symfony.com/sponsor",
  7107. "type": "custom"
  7108. },
  7109. {
  7110. "url": "https://github.com/fabpot",
  7111. "type": "github"
  7112. },
  7113. {
  7114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7115. "type": "tidelift"
  7116. }
  7117. ],
  7118. "time": "2022-05-27T16:55:36+00:00"
  7119. },
  7120. {
  7121. "name": "symfony/validator",
  7122. "version": "v6.1.7",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/symfony/validator.git",
  7126. "reference": "0cc147f2e4a0d78221db85545751cd8764bbc156"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/symfony/validator/zipball/0cc147f2e4a0d78221db85545751cd8764bbc156",
  7131. "reference": "0cc147f2e4a0d78221db85545751cd8764bbc156",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "php": ">=8.1",
  7136. "symfony/deprecation-contracts": "^2.1|^3",
  7137. "symfony/polyfill-ctype": "~1.8",
  7138. "symfony/polyfill-mbstring": "~1.0",
  7139. "symfony/translation-contracts": "^1.1|^2|^3"
  7140. },
  7141. "conflict": {
  7142. "doctrine/annotations": "<1.13",
  7143. "doctrine/lexer": "<1.1",
  7144. "phpunit/phpunit": "<5.4.3",
  7145. "symfony/dependency-injection": "<5.4",
  7146. "symfony/expression-language": "<5.4",
  7147. "symfony/http-kernel": "<5.4",
  7148. "symfony/intl": "<5.4",
  7149. "symfony/property-info": "<5.4",
  7150. "symfony/translation": "<5.4",
  7151. "symfony/yaml": "<5.4"
  7152. },
  7153. "require-dev": {
  7154. "doctrine/annotations": "^1.13",
  7155. "egulias/email-validator": "^2.1.10|^3",
  7156. "symfony/cache": "^5.4|^6.0",
  7157. "symfony/config": "^5.4|^6.0",
  7158. "symfony/console": "^5.4|^6.0",
  7159. "symfony/dependency-injection": "^5.4|^6.0",
  7160. "symfony/expression-language": "^5.4|^6.0",
  7161. "symfony/finder": "^5.4|^6.0",
  7162. "symfony/http-client": "^5.4|^6.0",
  7163. "symfony/http-foundation": "^5.4|^6.0",
  7164. "symfony/http-kernel": "^5.4|^6.0",
  7165. "symfony/intl": "^5.4|^6.0",
  7166. "symfony/mime": "^5.4|^6.0",
  7167. "symfony/property-access": "^5.4|^6.0",
  7168. "symfony/property-info": "^5.4|^6.0",
  7169. "symfony/translation": "^5.4|^6.0",
  7170. "symfony/yaml": "^5.4|^6.0"
  7171. },
  7172. "suggest": {
  7173. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7174. "psr/cache-implementation": "For using the mapping cache.",
  7175. "symfony/config": "",
  7176. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7177. "symfony/http-foundation": "",
  7178. "symfony/intl": "",
  7179. "symfony/property-access": "For accessing properties within comparison constraints",
  7180. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7181. "symfony/translation": "For translating validation errors.",
  7182. "symfony/yaml": ""
  7183. },
  7184. "type": "library",
  7185. "autoload": {
  7186. "psr-4": {
  7187. "Symfony\\Component\\Validator\\": ""
  7188. },
  7189. "exclude-from-classmap": [
  7190. "/Tests/"
  7191. ]
  7192. },
  7193. "notification-url": "https://packagist.org/downloads/",
  7194. "license": [
  7195. "MIT"
  7196. ],
  7197. "authors": [
  7198. {
  7199. "name": "Fabien Potencier",
  7200. "email": "fabien@symfony.com"
  7201. },
  7202. {
  7203. "name": "Symfony Community",
  7204. "homepage": "https://symfony.com/contributors"
  7205. }
  7206. ],
  7207. "description": "Provides tools to validate values",
  7208. "homepage": "https://symfony.com",
  7209. "support": {
  7210. "source": "https://github.com/symfony/validator/tree/v6.1.7"
  7211. },
  7212. "funding": [
  7213. {
  7214. "url": "https://symfony.com/sponsor",
  7215. "type": "custom"
  7216. },
  7217. {
  7218. "url": "https://github.com/fabpot",
  7219. "type": "github"
  7220. },
  7221. {
  7222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7223. "type": "tidelift"
  7224. }
  7225. ],
  7226. "time": "2022-10-28T16:23:08+00:00"
  7227. },
  7228. {
  7229. "name": "symfony/var-dumper",
  7230. "version": "v6.1.6",
  7231. "source": {
  7232. "type": "git",
  7233. "url": "https://github.com/symfony/var-dumper.git",
  7234. "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f"
  7235. },
  7236. "dist": {
  7237. "type": "zip",
  7238. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0f0adde127f24548e23cbde83bcaeadc491c551f",
  7239. "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f",
  7240. "shasum": ""
  7241. },
  7242. "require": {
  7243. "php": ">=8.1",
  7244. "symfony/polyfill-mbstring": "~1.0"
  7245. },
  7246. "conflict": {
  7247. "phpunit/phpunit": "<5.4.3",
  7248. "symfony/console": "<5.4"
  7249. },
  7250. "require-dev": {
  7251. "ext-iconv": "*",
  7252. "symfony/console": "^5.4|^6.0",
  7253. "symfony/process": "^5.4|^6.0",
  7254. "symfony/uid": "^5.4|^6.0",
  7255. "twig/twig": "^2.13|^3.0.4"
  7256. },
  7257. "suggest": {
  7258. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7259. "ext-intl": "To show region name in time zone dump",
  7260. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7261. },
  7262. "bin": [
  7263. "Resources/bin/var-dump-server"
  7264. ],
  7265. "type": "library",
  7266. "autoload": {
  7267. "files": [
  7268. "Resources/functions/dump.php"
  7269. ],
  7270. "psr-4": {
  7271. "Symfony\\Component\\VarDumper\\": ""
  7272. },
  7273. "exclude-from-classmap": [
  7274. "/Tests/"
  7275. ]
  7276. },
  7277. "notification-url": "https://packagist.org/downloads/",
  7278. "license": [
  7279. "MIT"
  7280. ],
  7281. "authors": [
  7282. {
  7283. "name": "Nicolas Grekas",
  7284. "email": "p@tchwork.com"
  7285. },
  7286. {
  7287. "name": "Symfony Community",
  7288. "homepage": "https://symfony.com/contributors"
  7289. }
  7290. ],
  7291. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7292. "homepage": "https://symfony.com",
  7293. "keywords": [
  7294. "debug",
  7295. "dump"
  7296. ],
  7297. "support": {
  7298. "source": "https://github.com/symfony/var-dumper/tree/v6.1.6"
  7299. },
  7300. "funding": [
  7301. {
  7302. "url": "https://symfony.com/sponsor",
  7303. "type": "custom"
  7304. },
  7305. {
  7306. "url": "https://github.com/fabpot",
  7307. "type": "github"
  7308. },
  7309. {
  7310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7311. "type": "tidelift"
  7312. }
  7313. ],
  7314. "time": "2022-10-07T08:04:03+00:00"
  7315. },
  7316. {
  7317. "name": "symfony/var-exporter",
  7318. "version": "v6.1.3",
  7319. "source": {
  7320. "type": "git",
  7321. "url": "https://github.com/symfony/var-exporter.git",
  7322. "reference": "b49350f45cebbba6e5286485264b912f2bcfc9ef"
  7323. },
  7324. "dist": {
  7325. "type": "zip",
  7326. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b49350f45cebbba6e5286485264b912f2bcfc9ef",
  7327. "reference": "b49350f45cebbba6e5286485264b912f2bcfc9ef",
  7328. "shasum": ""
  7329. },
  7330. "require": {
  7331. "php": ">=8.1"
  7332. },
  7333. "require-dev": {
  7334. "symfony/var-dumper": "^5.4|^6.0"
  7335. },
  7336. "type": "library",
  7337. "autoload": {
  7338. "psr-4": {
  7339. "Symfony\\Component\\VarExporter\\": ""
  7340. },
  7341. "exclude-from-classmap": [
  7342. "/Tests/"
  7343. ]
  7344. },
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "authors": [
  7350. {
  7351. "name": "Nicolas Grekas",
  7352. "email": "p@tchwork.com"
  7353. },
  7354. {
  7355. "name": "Symfony Community",
  7356. "homepage": "https://symfony.com/contributors"
  7357. }
  7358. ],
  7359. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7360. "homepage": "https://symfony.com",
  7361. "keywords": [
  7362. "clone",
  7363. "construct",
  7364. "export",
  7365. "hydrate",
  7366. "instantiate",
  7367. "serialize"
  7368. ],
  7369. "support": {
  7370. "source": "https://github.com/symfony/var-exporter/tree/v6.1.3"
  7371. },
  7372. "funding": [
  7373. {
  7374. "url": "https://symfony.com/sponsor",
  7375. "type": "custom"
  7376. },
  7377. {
  7378. "url": "https://github.com/fabpot",
  7379. "type": "github"
  7380. },
  7381. {
  7382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7383. "type": "tidelift"
  7384. }
  7385. ],
  7386. "time": "2022-07-04T16:01:56+00:00"
  7387. },
  7388. {
  7389. "name": "symfony/web-link",
  7390. "version": "v6.1.0",
  7391. "source": {
  7392. "type": "git",
  7393. "url": "https://github.com/symfony/web-link.git",
  7394. "reference": "d6ef738f97b60d859652d92f10bf8645bca28cd6"
  7395. },
  7396. "dist": {
  7397. "type": "zip",
  7398. "url": "https://api.github.com/repos/symfony/web-link/zipball/d6ef738f97b60d859652d92f10bf8645bca28cd6",
  7399. "reference": "d6ef738f97b60d859652d92f10bf8645bca28cd6",
  7400. "shasum": ""
  7401. },
  7402. "require": {
  7403. "php": ">=8.1",
  7404. "psr/link": "^1.1|^2.0"
  7405. },
  7406. "conflict": {
  7407. "symfony/http-kernel": "<5.4"
  7408. },
  7409. "provide": {
  7410. "psr/link-implementation": "1.0|2.0"
  7411. },
  7412. "require-dev": {
  7413. "symfony/http-kernel": "^5.4|^6.0"
  7414. },
  7415. "suggest": {
  7416. "symfony/http-kernel": ""
  7417. },
  7418. "type": "library",
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Symfony\\Component\\WebLink\\": ""
  7422. },
  7423. "exclude-from-classmap": [
  7424. "/Tests/"
  7425. ]
  7426. },
  7427. "notification-url": "https://packagist.org/downloads/",
  7428. "license": [
  7429. "MIT"
  7430. ],
  7431. "authors": [
  7432. {
  7433. "name": "Kévin Dunglas",
  7434. "email": "dunglas@gmail.com"
  7435. },
  7436. {
  7437. "name": "Symfony Community",
  7438. "homepage": "https://symfony.com/contributors"
  7439. }
  7440. ],
  7441. "description": "Manages links between resources",
  7442. "homepage": "https://symfony.com",
  7443. "keywords": [
  7444. "dns-prefetch",
  7445. "http",
  7446. "http2",
  7447. "link",
  7448. "performance",
  7449. "prefetch",
  7450. "preload",
  7451. "prerender",
  7452. "psr13",
  7453. "push"
  7454. ],
  7455. "support": {
  7456. "source": "https://github.com/symfony/web-link/tree/v6.1.0"
  7457. },
  7458. "funding": [
  7459. {
  7460. "url": "https://symfony.com/sponsor",
  7461. "type": "custom"
  7462. },
  7463. {
  7464. "url": "https://github.com/fabpot",
  7465. "type": "github"
  7466. },
  7467. {
  7468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7469. "type": "tidelift"
  7470. }
  7471. ],
  7472. "time": "2022-02-25T11:15:52+00:00"
  7473. },
  7474. {
  7475. "name": "symfony/webpack-encore-bundle",
  7476. "version": "v1.16.0",
  7477. "source": {
  7478. "type": "git",
  7479. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7480. "reference": "bb399930c0299866258b616a74a27b50b94c5d45"
  7481. },
  7482. "dist": {
  7483. "type": "zip",
  7484. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/bb399930c0299866258b616a74a27b50b94c5d45",
  7485. "reference": "bb399930c0299866258b616a74a27b50b94c5d45",
  7486. "shasum": ""
  7487. },
  7488. "require": {
  7489. "php": ">=7.1.3",
  7490. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7491. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7492. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7493. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7494. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7495. "symfony/polyfill-php80": "^1.25.0",
  7496. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7497. },
  7498. "require-dev": {
  7499. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7500. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7501. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7502. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7503. },
  7504. "type": "symfony-bundle",
  7505. "extra": {
  7506. "thanks": {
  7507. "name": "symfony/webpack-encore",
  7508. "url": "https://github.com/symfony/webpack-encore"
  7509. }
  7510. },
  7511. "autoload": {
  7512. "psr-4": {
  7513. "Symfony\\WebpackEncoreBundle\\": "src"
  7514. }
  7515. },
  7516. "notification-url": "https://packagist.org/downloads/",
  7517. "license": [
  7518. "MIT"
  7519. ],
  7520. "authors": [
  7521. {
  7522. "name": "Symfony Community",
  7523. "homepage": "https://symfony.com/contributors"
  7524. }
  7525. ],
  7526. "description": "Integration with your Symfony app & Webpack Encore!",
  7527. "support": {
  7528. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7529. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.16.0"
  7530. },
  7531. "funding": [
  7532. {
  7533. "url": "https://symfony.com/sponsor",
  7534. "type": "custom"
  7535. },
  7536. {
  7537. "url": "https://github.com/fabpot",
  7538. "type": "github"
  7539. },
  7540. {
  7541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7542. "type": "tidelift"
  7543. }
  7544. ],
  7545. "time": "2022-10-18T15:21:06+00:00"
  7546. },
  7547. {
  7548. "name": "symfony/yaml",
  7549. "version": "v6.1.6",
  7550. "source": {
  7551. "type": "git",
  7552. "url": "https://github.com/symfony/yaml.git",
  7553. "reference": "66c6b0cf52b00f74614a2cf7ae7db08ea1095931"
  7554. },
  7555. "dist": {
  7556. "type": "zip",
  7557. "url": "https://api.github.com/repos/symfony/yaml/zipball/66c6b0cf52b00f74614a2cf7ae7db08ea1095931",
  7558. "reference": "66c6b0cf52b00f74614a2cf7ae7db08ea1095931",
  7559. "shasum": ""
  7560. },
  7561. "require": {
  7562. "php": ">=8.1",
  7563. "symfony/polyfill-ctype": "^1.8"
  7564. },
  7565. "conflict": {
  7566. "symfony/console": "<5.4"
  7567. },
  7568. "require-dev": {
  7569. "symfony/console": "^5.4|^6.0"
  7570. },
  7571. "suggest": {
  7572. "symfony/console": "For validating YAML files using the lint command"
  7573. },
  7574. "bin": [
  7575. "Resources/bin/yaml-lint"
  7576. ],
  7577. "type": "library",
  7578. "autoload": {
  7579. "psr-4": {
  7580. "Symfony\\Component\\Yaml\\": ""
  7581. },
  7582. "exclude-from-classmap": [
  7583. "/Tests/"
  7584. ]
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "MIT"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Fabien Potencier",
  7593. "email": "fabien@symfony.com"
  7594. },
  7595. {
  7596. "name": "Symfony Community",
  7597. "homepage": "https://symfony.com/contributors"
  7598. }
  7599. ],
  7600. "description": "Loads and dumps YAML files",
  7601. "homepage": "https://symfony.com",
  7602. "support": {
  7603. "source": "https://github.com/symfony/yaml/tree/v6.1.6"
  7604. },
  7605. "funding": [
  7606. {
  7607. "url": "https://symfony.com/sponsor",
  7608. "type": "custom"
  7609. },
  7610. {
  7611. "url": "https://github.com/fabpot",
  7612. "type": "github"
  7613. },
  7614. {
  7615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7616. "type": "tidelift"
  7617. }
  7618. ],
  7619. "time": "2022-10-07T08:04:03+00:00"
  7620. },
  7621. {
  7622. "name": "twig/extra-bundle",
  7623. "version": "v3.4.0",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7627. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  7632. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  7633. "shasum": ""
  7634. },
  7635. "require": {
  7636. "php": ">=7.2.5",
  7637. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  7638. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  7639. "twig/twig": "^2.7|^3.0"
  7640. },
  7641. "require-dev": {
  7642. "league/commonmark": "^1.0|^2.0",
  7643. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  7644. "twig/cache-extra": "^3.0",
  7645. "twig/cssinliner-extra": "^2.12|^3.0",
  7646. "twig/html-extra": "^2.12|^3.0",
  7647. "twig/inky-extra": "^2.12|^3.0",
  7648. "twig/intl-extra": "^2.12|^3.0",
  7649. "twig/markdown-extra": "^2.12|^3.0",
  7650. "twig/string-extra": "^2.12|^3.0"
  7651. },
  7652. "type": "symfony-bundle",
  7653. "extra": {
  7654. "branch-alias": {
  7655. "dev-master": "3.2-dev"
  7656. }
  7657. },
  7658. "autoload": {
  7659. "psr-4": {
  7660. "Twig\\Extra\\TwigExtraBundle\\": ""
  7661. },
  7662. "exclude-from-classmap": [
  7663. "/Tests/"
  7664. ]
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "MIT"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Fabien Potencier",
  7673. "email": "fabien@symfony.com",
  7674. "homepage": "http://fabien.potencier.org",
  7675. "role": "Lead Developer"
  7676. }
  7677. ],
  7678. "description": "A Symfony bundle for extra Twig extensions",
  7679. "homepage": "https://twig.symfony.com",
  7680. "keywords": [
  7681. "bundle",
  7682. "extra",
  7683. "twig"
  7684. ],
  7685. "support": {
  7686. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  7687. },
  7688. "funding": [
  7689. {
  7690. "url": "https://github.com/fabpot",
  7691. "type": "github"
  7692. },
  7693. {
  7694. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7695. "type": "tidelift"
  7696. }
  7697. ],
  7698. "time": "2022-01-04T13:58:53+00:00"
  7699. },
  7700. {
  7701. "name": "twig/markdown-extra",
  7702. "version": "v3.4.0",
  7703. "source": {
  7704. "type": "git",
  7705. "url": "https://github.com/twigphp/markdown-extra.git",
  7706. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7"
  7707. },
  7708. "dist": {
  7709. "type": "zip",
  7710. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  7711. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  7712. "shasum": ""
  7713. },
  7714. "require": {
  7715. "php": ">=7.1.3",
  7716. "twig/twig": "^2.7|^3.0"
  7717. },
  7718. "require-dev": {
  7719. "erusev/parsedown": "^1.7",
  7720. "league/commonmark": "^1.0|^2.0",
  7721. "league/html-to-markdown": "^4.8|^5.0",
  7722. "michelf/php-markdown": "^1.8",
  7723. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7724. },
  7725. "type": "library",
  7726. "extra": {
  7727. "branch-alias": {
  7728. "dev-master": "3.2-dev"
  7729. }
  7730. },
  7731. "autoload": {
  7732. "psr-4": {
  7733. "Twig\\Extra\\Markdown\\": ""
  7734. },
  7735. "exclude-from-classmap": [
  7736. "/Tests/"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Fabien Potencier",
  7746. "email": "fabien@symfony.com",
  7747. "homepage": "http://fabien.potencier.org",
  7748. "role": "Lead Developer"
  7749. }
  7750. ],
  7751. "description": "A Twig extension for Markdown",
  7752. "homepage": "https://twig.symfony.com",
  7753. "keywords": [
  7754. "html",
  7755. "markdown",
  7756. "twig"
  7757. ],
  7758. "support": {
  7759. "source": "https://github.com/twigphp/markdown-extra/tree/v3.4.0"
  7760. },
  7761. "funding": [
  7762. {
  7763. "url": "https://github.com/fabpot",
  7764. "type": "github"
  7765. },
  7766. {
  7767. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7768. "type": "tidelift"
  7769. }
  7770. ],
  7771. "time": "2022-01-29T15:34:05+00:00"
  7772. },
  7773. {
  7774. "name": "twig/twig",
  7775. "version": "v3.4.3",
  7776. "source": {
  7777. "type": "git",
  7778. "url": "https://github.com/twigphp/Twig.git",
  7779. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  7780. },
  7781. "dist": {
  7782. "type": "zip",
  7783. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  7784. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  7785. "shasum": ""
  7786. },
  7787. "require": {
  7788. "php": ">=7.2.5",
  7789. "symfony/polyfill-ctype": "^1.8",
  7790. "symfony/polyfill-mbstring": "^1.3"
  7791. },
  7792. "require-dev": {
  7793. "psr/container": "^1.0",
  7794. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7795. },
  7796. "type": "library",
  7797. "extra": {
  7798. "branch-alias": {
  7799. "dev-master": "3.4-dev"
  7800. }
  7801. },
  7802. "autoload": {
  7803. "psr-4": {
  7804. "Twig\\": "src/"
  7805. }
  7806. },
  7807. "notification-url": "https://packagist.org/downloads/",
  7808. "license": [
  7809. "BSD-3-Clause"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "Fabien Potencier",
  7814. "email": "fabien@symfony.com",
  7815. "homepage": "http://fabien.potencier.org",
  7816. "role": "Lead Developer"
  7817. },
  7818. {
  7819. "name": "Twig Team",
  7820. "role": "Contributors"
  7821. },
  7822. {
  7823. "name": "Armin Ronacher",
  7824. "email": "armin.ronacher@active-4.com",
  7825. "role": "Project Founder"
  7826. }
  7827. ],
  7828. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7829. "homepage": "https://twig.symfony.com",
  7830. "keywords": [
  7831. "templating"
  7832. ],
  7833. "support": {
  7834. "issues": "https://github.com/twigphp/Twig/issues",
  7835. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  7836. },
  7837. "funding": [
  7838. {
  7839. "url": "https://github.com/fabpot",
  7840. "type": "github"
  7841. },
  7842. {
  7843. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7844. "type": "tidelift"
  7845. }
  7846. ],
  7847. "time": "2022-09-28T08:42:51+00:00"
  7848. },
  7849. {
  7850. "name": "webmozart/assert",
  7851. "version": "1.11.0",
  7852. "source": {
  7853. "type": "git",
  7854. "url": "https://github.com/webmozarts/assert.git",
  7855. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7856. },
  7857. "dist": {
  7858. "type": "zip",
  7859. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7860. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7861. "shasum": ""
  7862. },
  7863. "require": {
  7864. "ext-ctype": "*",
  7865. "php": "^7.2 || ^8.0"
  7866. },
  7867. "conflict": {
  7868. "phpstan/phpstan": "<0.12.20",
  7869. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7870. },
  7871. "require-dev": {
  7872. "phpunit/phpunit": "^8.5.13"
  7873. },
  7874. "type": "library",
  7875. "extra": {
  7876. "branch-alias": {
  7877. "dev-master": "1.10-dev"
  7878. }
  7879. },
  7880. "autoload": {
  7881. "psr-4": {
  7882. "Webmozart\\Assert\\": "src/"
  7883. }
  7884. },
  7885. "notification-url": "https://packagist.org/downloads/",
  7886. "license": [
  7887. "MIT"
  7888. ],
  7889. "authors": [
  7890. {
  7891. "name": "Bernhard Schussek",
  7892. "email": "bschussek@gmail.com"
  7893. }
  7894. ],
  7895. "description": "Assertions to validate method input/output with nice error messages.",
  7896. "keywords": [
  7897. "assert",
  7898. "check",
  7899. "validate"
  7900. ],
  7901. "support": {
  7902. "issues": "https://github.com/webmozarts/assert/issues",
  7903. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7904. },
  7905. "time": "2022-06-03T18:03:27+00:00"
  7906. }
  7907. ],
  7908. "packages-dev": [
  7909. {
  7910. "name": "masterminds/html5",
  7911. "version": "2.7.6",
  7912. "source": {
  7913. "type": "git",
  7914. "url": "https://github.com/Masterminds/html5-php.git",
  7915. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  7916. },
  7917. "dist": {
  7918. "type": "zip",
  7919. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  7920. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  7921. "shasum": ""
  7922. },
  7923. "require": {
  7924. "ext-ctype": "*",
  7925. "ext-dom": "*",
  7926. "ext-libxml": "*",
  7927. "php": ">=5.3.0"
  7928. },
  7929. "require-dev": {
  7930. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  7931. },
  7932. "type": "library",
  7933. "extra": {
  7934. "branch-alias": {
  7935. "dev-master": "2.7-dev"
  7936. }
  7937. },
  7938. "autoload": {
  7939. "psr-4": {
  7940. "Masterminds\\": "src"
  7941. }
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "MIT"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Matt Butcher",
  7950. "email": "technosophos@gmail.com"
  7951. },
  7952. {
  7953. "name": "Matt Farina",
  7954. "email": "matt@mattfarina.com"
  7955. },
  7956. {
  7957. "name": "Asmir Mustafic",
  7958. "email": "goetas@gmail.com"
  7959. }
  7960. ],
  7961. "description": "An HTML5 parser and serializer.",
  7962. "homepage": "http://masterminds.github.io/html5-php",
  7963. "keywords": [
  7964. "HTML5",
  7965. "dom",
  7966. "html",
  7967. "parser",
  7968. "querypath",
  7969. "serializer",
  7970. "xml"
  7971. ],
  7972. "support": {
  7973. "issues": "https://github.com/Masterminds/html5-php/issues",
  7974. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  7975. },
  7976. "time": "2022-08-18T16:18:26+00:00"
  7977. },
  7978. {
  7979. "name": "myclabs/deep-copy",
  7980. "version": "1.11.0",
  7981. "source": {
  7982. "type": "git",
  7983. "url": "https://github.com/myclabs/DeepCopy.git",
  7984. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7985. },
  7986. "dist": {
  7987. "type": "zip",
  7988. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7989. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7990. "shasum": ""
  7991. },
  7992. "require": {
  7993. "php": "^7.1 || ^8.0"
  7994. },
  7995. "conflict": {
  7996. "doctrine/collections": "<1.6.8",
  7997. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7998. },
  7999. "require-dev": {
  8000. "doctrine/collections": "^1.6.8",
  8001. "doctrine/common": "^2.13.3 || ^3.2.2",
  8002. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8003. },
  8004. "type": "library",
  8005. "autoload": {
  8006. "files": [
  8007. "src/DeepCopy/deep_copy.php"
  8008. ],
  8009. "psr-4": {
  8010. "DeepCopy\\": "src/DeepCopy/"
  8011. }
  8012. },
  8013. "notification-url": "https://packagist.org/downloads/",
  8014. "license": [
  8015. "MIT"
  8016. ],
  8017. "description": "Create deep copies (clones) of your objects",
  8018. "keywords": [
  8019. "clone",
  8020. "copy",
  8021. "duplicate",
  8022. "object",
  8023. "object graph"
  8024. ],
  8025. "support": {
  8026. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8027. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  8028. },
  8029. "funding": [
  8030. {
  8031. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8032. "type": "tidelift"
  8033. }
  8034. ],
  8035. "time": "2022-03-03T13:19:32+00:00"
  8036. },
  8037. {
  8038. "name": "nikic/php-parser",
  8039. "version": "v4.15.1",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/nikic/PHP-Parser.git",
  8043. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  8048. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "ext-tokenizer": "*",
  8053. "php": ">=7.0"
  8054. },
  8055. "require-dev": {
  8056. "ircmaxell/php-yacc": "^0.0.7",
  8057. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8058. },
  8059. "bin": [
  8060. "bin/php-parse"
  8061. ],
  8062. "type": "library",
  8063. "extra": {
  8064. "branch-alias": {
  8065. "dev-master": "4.9-dev"
  8066. }
  8067. },
  8068. "autoload": {
  8069. "psr-4": {
  8070. "PhpParser\\": "lib/PhpParser"
  8071. }
  8072. },
  8073. "notification-url": "https://packagist.org/downloads/",
  8074. "license": [
  8075. "BSD-3-Clause"
  8076. ],
  8077. "authors": [
  8078. {
  8079. "name": "Nikita Popov"
  8080. }
  8081. ],
  8082. "description": "A PHP parser written in PHP",
  8083. "keywords": [
  8084. "parser",
  8085. "php"
  8086. ],
  8087. "support": {
  8088. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8089. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  8090. },
  8091. "time": "2022-09-04T07:30:47+00:00"
  8092. },
  8093. {
  8094. "name": "phar-io/manifest",
  8095. "version": "2.0.3",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/phar-io/manifest.git",
  8099. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8104. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "ext-dom": "*",
  8109. "ext-phar": "*",
  8110. "ext-xmlwriter": "*",
  8111. "phar-io/version": "^3.0.1",
  8112. "php": "^7.2 || ^8.0"
  8113. },
  8114. "type": "library",
  8115. "extra": {
  8116. "branch-alias": {
  8117. "dev-master": "2.0.x-dev"
  8118. }
  8119. },
  8120. "autoload": {
  8121. "classmap": [
  8122. "src/"
  8123. ]
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "BSD-3-Clause"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Arne Blankerts",
  8132. "email": "arne@blankerts.de",
  8133. "role": "Developer"
  8134. },
  8135. {
  8136. "name": "Sebastian Heuer",
  8137. "email": "sebastian@phpeople.de",
  8138. "role": "Developer"
  8139. },
  8140. {
  8141. "name": "Sebastian Bergmann",
  8142. "email": "sebastian@phpunit.de",
  8143. "role": "Developer"
  8144. }
  8145. ],
  8146. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8147. "support": {
  8148. "issues": "https://github.com/phar-io/manifest/issues",
  8149. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8150. },
  8151. "time": "2021-07-20T11:28:43+00:00"
  8152. },
  8153. {
  8154. "name": "phar-io/version",
  8155. "version": "3.2.1",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/phar-io/version.git",
  8159. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8164. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": "^7.2 || ^8.0"
  8169. },
  8170. "type": "library",
  8171. "autoload": {
  8172. "classmap": [
  8173. "src/"
  8174. ]
  8175. },
  8176. "notification-url": "https://packagist.org/downloads/",
  8177. "license": [
  8178. "BSD-3-Clause"
  8179. ],
  8180. "authors": [
  8181. {
  8182. "name": "Arne Blankerts",
  8183. "email": "arne@blankerts.de",
  8184. "role": "Developer"
  8185. },
  8186. {
  8187. "name": "Sebastian Heuer",
  8188. "email": "sebastian@phpeople.de",
  8189. "role": "Developer"
  8190. },
  8191. {
  8192. "name": "Sebastian Bergmann",
  8193. "email": "sebastian@phpunit.de",
  8194. "role": "Developer"
  8195. }
  8196. ],
  8197. "description": "Library for handling version information and constraints",
  8198. "support": {
  8199. "issues": "https://github.com/phar-io/version/issues",
  8200. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8201. },
  8202. "time": "2022-02-21T01:04:05+00:00"
  8203. },
  8204. {
  8205. "name": "phpunit/php-code-coverage",
  8206. "version": "9.2.18",
  8207. "source": {
  8208. "type": "git",
  8209. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8210. "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a"
  8211. },
  8212. "dist": {
  8213. "type": "zip",
  8214. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
  8215. "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
  8216. "shasum": ""
  8217. },
  8218. "require": {
  8219. "ext-dom": "*",
  8220. "ext-libxml": "*",
  8221. "ext-xmlwriter": "*",
  8222. "nikic/php-parser": "^4.14",
  8223. "php": ">=7.3",
  8224. "phpunit/php-file-iterator": "^3.0.3",
  8225. "phpunit/php-text-template": "^2.0.2",
  8226. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8227. "sebastian/complexity": "^2.0",
  8228. "sebastian/environment": "^5.1.2",
  8229. "sebastian/lines-of-code": "^1.0.3",
  8230. "sebastian/version": "^3.0.1",
  8231. "theseer/tokenizer": "^1.2.0"
  8232. },
  8233. "require-dev": {
  8234. "phpunit/phpunit": "^9.3"
  8235. },
  8236. "suggest": {
  8237. "ext-pcov": "*",
  8238. "ext-xdebug": "*"
  8239. },
  8240. "type": "library",
  8241. "extra": {
  8242. "branch-alias": {
  8243. "dev-master": "9.2-dev"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "classmap": [
  8248. "src/"
  8249. ]
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "BSD-3-Clause"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Sebastian Bergmann",
  8258. "email": "sebastian@phpunit.de",
  8259. "role": "lead"
  8260. }
  8261. ],
  8262. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8263. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8264. "keywords": [
  8265. "coverage",
  8266. "testing",
  8267. "xunit"
  8268. ],
  8269. "support": {
  8270. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8271. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18"
  8272. },
  8273. "funding": [
  8274. {
  8275. "url": "https://github.com/sebastianbergmann",
  8276. "type": "github"
  8277. }
  8278. ],
  8279. "time": "2022-10-27T13:35:33+00:00"
  8280. },
  8281. {
  8282. "name": "phpunit/php-file-iterator",
  8283. "version": "3.0.6",
  8284. "source": {
  8285. "type": "git",
  8286. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8287. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8288. },
  8289. "dist": {
  8290. "type": "zip",
  8291. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8292. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8293. "shasum": ""
  8294. },
  8295. "require": {
  8296. "php": ">=7.3"
  8297. },
  8298. "require-dev": {
  8299. "phpunit/phpunit": "^9.3"
  8300. },
  8301. "type": "library",
  8302. "extra": {
  8303. "branch-alias": {
  8304. "dev-master": "3.0-dev"
  8305. }
  8306. },
  8307. "autoload": {
  8308. "classmap": [
  8309. "src/"
  8310. ]
  8311. },
  8312. "notification-url": "https://packagist.org/downloads/",
  8313. "license": [
  8314. "BSD-3-Clause"
  8315. ],
  8316. "authors": [
  8317. {
  8318. "name": "Sebastian Bergmann",
  8319. "email": "sebastian@phpunit.de",
  8320. "role": "lead"
  8321. }
  8322. ],
  8323. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8324. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8325. "keywords": [
  8326. "filesystem",
  8327. "iterator"
  8328. ],
  8329. "support": {
  8330. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8331. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8332. },
  8333. "funding": [
  8334. {
  8335. "url": "https://github.com/sebastianbergmann",
  8336. "type": "github"
  8337. }
  8338. ],
  8339. "time": "2021-12-02T12:48:52+00:00"
  8340. },
  8341. {
  8342. "name": "phpunit/php-invoker",
  8343. "version": "3.1.1",
  8344. "source": {
  8345. "type": "git",
  8346. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8347. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8348. },
  8349. "dist": {
  8350. "type": "zip",
  8351. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8352. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8353. "shasum": ""
  8354. },
  8355. "require": {
  8356. "php": ">=7.3"
  8357. },
  8358. "require-dev": {
  8359. "ext-pcntl": "*",
  8360. "phpunit/phpunit": "^9.3"
  8361. },
  8362. "suggest": {
  8363. "ext-pcntl": "*"
  8364. },
  8365. "type": "library",
  8366. "extra": {
  8367. "branch-alias": {
  8368. "dev-master": "3.1-dev"
  8369. }
  8370. },
  8371. "autoload": {
  8372. "classmap": [
  8373. "src/"
  8374. ]
  8375. },
  8376. "notification-url": "https://packagist.org/downloads/",
  8377. "license": [
  8378. "BSD-3-Clause"
  8379. ],
  8380. "authors": [
  8381. {
  8382. "name": "Sebastian Bergmann",
  8383. "email": "sebastian@phpunit.de",
  8384. "role": "lead"
  8385. }
  8386. ],
  8387. "description": "Invoke callables with a timeout",
  8388. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8389. "keywords": [
  8390. "process"
  8391. ],
  8392. "support": {
  8393. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8394. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8395. },
  8396. "funding": [
  8397. {
  8398. "url": "https://github.com/sebastianbergmann",
  8399. "type": "github"
  8400. }
  8401. ],
  8402. "time": "2020-09-28T05:58:55+00:00"
  8403. },
  8404. {
  8405. "name": "phpunit/php-text-template",
  8406. "version": "2.0.4",
  8407. "source": {
  8408. "type": "git",
  8409. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8410. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8411. },
  8412. "dist": {
  8413. "type": "zip",
  8414. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8415. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8416. "shasum": ""
  8417. },
  8418. "require": {
  8419. "php": ">=7.3"
  8420. },
  8421. "require-dev": {
  8422. "phpunit/phpunit": "^9.3"
  8423. },
  8424. "type": "library",
  8425. "extra": {
  8426. "branch-alias": {
  8427. "dev-master": "2.0-dev"
  8428. }
  8429. },
  8430. "autoload": {
  8431. "classmap": [
  8432. "src/"
  8433. ]
  8434. },
  8435. "notification-url": "https://packagist.org/downloads/",
  8436. "license": [
  8437. "BSD-3-Clause"
  8438. ],
  8439. "authors": [
  8440. {
  8441. "name": "Sebastian Bergmann",
  8442. "email": "sebastian@phpunit.de",
  8443. "role": "lead"
  8444. }
  8445. ],
  8446. "description": "Simple template engine.",
  8447. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8448. "keywords": [
  8449. "template"
  8450. ],
  8451. "support": {
  8452. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8453. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8454. },
  8455. "funding": [
  8456. {
  8457. "url": "https://github.com/sebastianbergmann",
  8458. "type": "github"
  8459. }
  8460. ],
  8461. "time": "2020-10-26T05:33:50+00:00"
  8462. },
  8463. {
  8464. "name": "phpunit/php-timer",
  8465. "version": "5.0.3",
  8466. "source": {
  8467. "type": "git",
  8468. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8469. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8470. },
  8471. "dist": {
  8472. "type": "zip",
  8473. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8474. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8475. "shasum": ""
  8476. },
  8477. "require": {
  8478. "php": ">=7.3"
  8479. },
  8480. "require-dev": {
  8481. "phpunit/phpunit": "^9.3"
  8482. },
  8483. "type": "library",
  8484. "extra": {
  8485. "branch-alias": {
  8486. "dev-master": "5.0-dev"
  8487. }
  8488. },
  8489. "autoload": {
  8490. "classmap": [
  8491. "src/"
  8492. ]
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "BSD-3-Clause"
  8497. ],
  8498. "authors": [
  8499. {
  8500. "name": "Sebastian Bergmann",
  8501. "email": "sebastian@phpunit.de",
  8502. "role": "lead"
  8503. }
  8504. ],
  8505. "description": "Utility class for timing",
  8506. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8507. "keywords": [
  8508. "timer"
  8509. ],
  8510. "support": {
  8511. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8512. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://github.com/sebastianbergmann",
  8517. "type": "github"
  8518. }
  8519. ],
  8520. "time": "2020-10-26T13:16:10+00:00"
  8521. },
  8522. {
  8523. "name": "phpunit/phpunit",
  8524. "version": "9.5.26",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8528. "reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/851867efcbb6a1b992ec515c71cdcf20d895e9d2",
  8533. "reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "doctrine/instantiator": "^1.3.1",
  8538. "ext-dom": "*",
  8539. "ext-json": "*",
  8540. "ext-libxml": "*",
  8541. "ext-mbstring": "*",
  8542. "ext-xml": "*",
  8543. "ext-xmlwriter": "*",
  8544. "myclabs/deep-copy": "^1.10.1",
  8545. "phar-io/manifest": "^2.0.3",
  8546. "phar-io/version": "^3.0.2",
  8547. "php": ">=7.3",
  8548. "phpunit/php-code-coverage": "^9.2.13",
  8549. "phpunit/php-file-iterator": "^3.0.5",
  8550. "phpunit/php-invoker": "^3.1.1",
  8551. "phpunit/php-text-template": "^2.0.3",
  8552. "phpunit/php-timer": "^5.0.2",
  8553. "sebastian/cli-parser": "^1.0.1",
  8554. "sebastian/code-unit": "^1.0.6",
  8555. "sebastian/comparator": "^4.0.8",
  8556. "sebastian/diff": "^4.0.3",
  8557. "sebastian/environment": "^5.1.3",
  8558. "sebastian/exporter": "^4.0.5",
  8559. "sebastian/global-state": "^5.0.1",
  8560. "sebastian/object-enumerator": "^4.0.3",
  8561. "sebastian/resource-operations": "^3.0.3",
  8562. "sebastian/type": "^3.2",
  8563. "sebastian/version": "^3.0.2"
  8564. },
  8565. "suggest": {
  8566. "ext-soap": "*",
  8567. "ext-xdebug": "*"
  8568. },
  8569. "bin": [
  8570. "phpunit"
  8571. ],
  8572. "type": "library",
  8573. "extra": {
  8574. "branch-alias": {
  8575. "dev-master": "9.5-dev"
  8576. }
  8577. },
  8578. "autoload": {
  8579. "files": [
  8580. "src/Framework/Assert/Functions.php"
  8581. ],
  8582. "classmap": [
  8583. "src/"
  8584. ]
  8585. },
  8586. "notification-url": "https://packagist.org/downloads/",
  8587. "license": [
  8588. "BSD-3-Clause"
  8589. ],
  8590. "authors": [
  8591. {
  8592. "name": "Sebastian Bergmann",
  8593. "email": "sebastian@phpunit.de",
  8594. "role": "lead"
  8595. }
  8596. ],
  8597. "description": "The PHP Unit Testing framework.",
  8598. "homepage": "https://phpunit.de/",
  8599. "keywords": [
  8600. "phpunit",
  8601. "testing",
  8602. "xunit"
  8603. ],
  8604. "support": {
  8605. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8606. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.26"
  8607. },
  8608. "funding": [
  8609. {
  8610. "url": "https://phpunit.de/sponsors.html",
  8611. "type": "custom"
  8612. },
  8613. {
  8614. "url": "https://github.com/sebastianbergmann",
  8615. "type": "github"
  8616. },
  8617. {
  8618. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8619. "type": "tidelift"
  8620. }
  8621. ],
  8622. "time": "2022-10-28T06:00:21+00:00"
  8623. },
  8624. {
  8625. "name": "sebastian/cli-parser",
  8626. "version": "1.0.1",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8630. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8635. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8636. "shasum": ""
  8637. },
  8638. "require": {
  8639. "php": ">=7.3"
  8640. },
  8641. "require-dev": {
  8642. "phpunit/phpunit": "^9.3"
  8643. },
  8644. "type": "library",
  8645. "extra": {
  8646. "branch-alias": {
  8647. "dev-master": "1.0-dev"
  8648. }
  8649. },
  8650. "autoload": {
  8651. "classmap": [
  8652. "src/"
  8653. ]
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "BSD-3-Clause"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Sebastian Bergmann",
  8662. "email": "sebastian@phpunit.de",
  8663. "role": "lead"
  8664. }
  8665. ],
  8666. "description": "Library for parsing CLI options",
  8667. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8668. "support": {
  8669. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8670. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8671. },
  8672. "funding": [
  8673. {
  8674. "url": "https://github.com/sebastianbergmann",
  8675. "type": "github"
  8676. }
  8677. ],
  8678. "time": "2020-09-28T06:08:49+00:00"
  8679. },
  8680. {
  8681. "name": "sebastian/code-unit",
  8682. "version": "1.0.8",
  8683. "source": {
  8684. "type": "git",
  8685. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8686. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8687. },
  8688. "dist": {
  8689. "type": "zip",
  8690. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8691. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8692. "shasum": ""
  8693. },
  8694. "require": {
  8695. "php": ">=7.3"
  8696. },
  8697. "require-dev": {
  8698. "phpunit/phpunit": "^9.3"
  8699. },
  8700. "type": "library",
  8701. "extra": {
  8702. "branch-alias": {
  8703. "dev-master": "1.0-dev"
  8704. }
  8705. },
  8706. "autoload": {
  8707. "classmap": [
  8708. "src/"
  8709. ]
  8710. },
  8711. "notification-url": "https://packagist.org/downloads/",
  8712. "license": [
  8713. "BSD-3-Clause"
  8714. ],
  8715. "authors": [
  8716. {
  8717. "name": "Sebastian Bergmann",
  8718. "email": "sebastian@phpunit.de",
  8719. "role": "lead"
  8720. }
  8721. ],
  8722. "description": "Collection of value objects that represent the PHP code units",
  8723. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8724. "support": {
  8725. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8726. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8727. },
  8728. "funding": [
  8729. {
  8730. "url": "https://github.com/sebastianbergmann",
  8731. "type": "github"
  8732. }
  8733. ],
  8734. "time": "2020-10-26T13:08:54+00:00"
  8735. },
  8736. {
  8737. "name": "sebastian/code-unit-reverse-lookup",
  8738. "version": "2.0.3",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8742. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8747. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8748. "shasum": ""
  8749. },
  8750. "require": {
  8751. "php": ">=7.3"
  8752. },
  8753. "require-dev": {
  8754. "phpunit/phpunit": "^9.3"
  8755. },
  8756. "type": "library",
  8757. "extra": {
  8758. "branch-alias": {
  8759. "dev-master": "2.0-dev"
  8760. }
  8761. },
  8762. "autoload": {
  8763. "classmap": [
  8764. "src/"
  8765. ]
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "BSD-3-Clause"
  8770. ],
  8771. "authors": [
  8772. {
  8773. "name": "Sebastian Bergmann",
  8774. "email": "sebastian@phpunit.de"
  8775. }
  8776. ],
  8777. "description": "Looks up which function or method a line of code belongs to",
  8778. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8779. "support": {
  8780. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8781. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8782. },
  8783. "funding": [
  8784. {
  8785. "url": "https://github.com/sebastianbergmann",
  8786. "type": "github"
  8787. }
  8788. ],
  8789. "time": "2020-09-28T05:30:19+00:00"
  8790. },
  8791. {
  8792. "name": "sebastian/comparator",
  8793. "version": "4.0.8",
  8794. "source": {
  8795. "type": "git",
  8796. "url": "https://github.com/sebastianbergmann/comparator.git",
  8797. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8798. },
  8799. "dist": {
  8800. "type": "zip",
  8801. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8802. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8803. "shasum": ""
  8804. },
  8805. "require": {
  8806. "php": ">=7.3",
  8807. "sebastian/diff": "^4.0",
  8808. "sebastian/exporter": "^4.0"
  8809. },
  8810. "require-dev": {
  8811. "phpunit/phpunit": "^9.3"
  8812. },
  8813. "type": "library",
  8814. "extra": {
  8815. "branch-alias": {
  8816. "dev-master": "4.0-dev"
  8817. }
  8818. },
  8819. "autoload": {
  8820. "classmap": [
  8821. "src/"
  8822. ]
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "BSD-3-Clause"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Sebastian Bergmann",
  8831. "email": "sebastian@phpunit.de"
  8832. },
  8833. {
  8834. "name": "Jeff Welch",
  8835. "email": "whatthejeff@gmail.com"
  8836. },
  8837. {
  8838. "name": "Volker Dusch",
  8839. "email": "github@wallbash.com"
  8840. },
  8841. {
  8842. "name": "Bernhard Schussek",
  8843. "email": "bschussek@2bepublished.at"
  8844. }
  8845. ],
  8846. "description": "Provides the functionality to compare PHP values for equality",
  8847. "homepage": "https://github.com/sebastianbergmann/comparator",
  8848. "keywords": [
  8849. "comparator",
  8850. "compare",
  8851. "equality"
  8852. ],
  8853. "support": {
  8854. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8855. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8856. },
  8857. "funding": [
  8858. {
  8859. "url": "https://github.com/sebastianbergmann",
  8860. "type": "github"
  8861. }
  8862. ],
  8863. "time": "2022-09-14T12:41:17+00:00"
  8864. },
  8865. {
  8866. "name": "sebastian/complexity",
  8867. "version": "2.0.2",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/sebastianbergmann/complexity.git",
  8871. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8876. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8877. "shasum": ""
  8878. },
  8879. "require": {
  8880. "nikic/php-parser": "^4.7",
  8881. "php": ">=7.3"
  8882. },
  8883. "require-dev": {
  8884. "phpunit/phpunit": "^9.3"
  8885. },
  8886. "type": "library",
  8887. "extra": {
  8888. "branch-alias": {
  8889. "dev-master": "2.0-dev"
  8890. }
  8891. },
  8892. "autoload": {
  8893. "classmap": [
  8894. "src/"
  8895. ]
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "BSD-3-Clause"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Sebastian Bergmann",
  8904. "email": "sebastian@phpunit.de",
  8905. "role": "lead"
  8906. }
  8907. ],
  8908. "description": "Library for calculating the complexity of PHP code units",
  8909. "homepage": "https://github.com/sebastianbergmann/complexity",
  8910. "support": {
  8911. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8912. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8913. },
  8914. "funding": [
  8915. {
  8916. "url": "https://github.com/sebastianbergmann",
  8917. "type": "github"
  8918. }
  8919. ],
  8920. "time": "2020-10-26T15:52:27+00:00"
  8921. },
  8922. {
  8923. "name": "sebastian/diff",
  8924. "version": "4.0.4",
  8925. "source": {
  8926. "type": "git",
  8927. "url": "https://github.com/sebastianbergmann/diff.git",
  8928. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8929. },
  8930. "dist": {
  8931. "type": "zip",
  8932. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8933. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8934. "shasum": ""
  8935. },
  8936. "require": {
  8937. "php": ">=7.3"
  8938. },
  8939. "require-dev": {
  8940. "phpunit/phpunit": "^9.3",
  8941. "symfony/process": "^4.2 || ^5"
  8942. },
  8943. "type": "library",
  8944. "extra": {
  8945. "branch-alias": {
  8946. "dev-master": "4.0-dev"
  8947. }
  8948. },
  8949. "autoload": {
  8950. "classmap": [
  8951. "src/"
  8952. ]
  8953. },
  8954. "notification-url": "https://packagist.org/downloads/",
  8955. "license": [
  8956. "BSD-3-Clause"
  8957. ],
  8958. "authors": [
  8959. {
  8960. "name": "Sebastian Bergmann",
  8961. "email": "sebastian@phpunit.de"
  8962. },
  8963. {
  8964. "name": "Kore Nordmann",
  8965. "email": "mail@kore-nordmann.de"
  8966. }
  8967. ],
  8968. "description": "Diff implementation",
  8969. "homepage": "https://github.com/sebastianbergmann/diff",
  8970. "keywords": [
  8971. "diff",
  8972. "udiff",
  8973. "unidiff",
  8974. "unified diff"
  8975. ],
  8976. "support": {
  8977. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8978. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  8979. },
  8980. "funding": [
  8981. {
  8982. "url": "https://github.com/sebastianbergmann",
  8983. "type": "github"
  8984. }
  8985. ],
  8986. "time": "2020-10-26T13:10:38+00:00"
  8987. },
  8988. {
  8989. "name": "sebastian/environment",
  8990. "version": "5.1.4",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/sebastianbergmann/environment.git",
  8994. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8999. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "php": ">=7.3"
  9004. },
  9005. "require-dev": {
  9006. "phpunit/phpunit": "^9.3"
  9007. },
  9008. "suggest": {
  9009. "ext-posix": "*"
  9010. },
  9011. "type": "library",
  9012. "extra": {
  9013. "branch-alias": {
  9014. "dev-master": "5.1-dev"
  9015. }
  9016. },
  9017. "autoload": {
  9018. "classmap": [
  9019. "src/"
  9020. ]
  9021. },
  9022. "notification-url": "https://packagist.org/downloads/",
  9023. "license": [
  9024. "BSD-3-Clause"
  9025. ],
  9026. "authors": [
  9027. {
  9028. "name": "Sebastian Bergmann",
  9029. "email": "sebastian@phpunit.de"
  9030. }
  9031. ],
  9032. "description": "Provides functionality to handle HHVM/PHP environments",
  9033. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9034. "keywords": [
  9035. "Xdebug",
  9036. "environment",
  9037. "hhvm"
  9038. ],
  9039. "support": {
  9040. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9041. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  9042. },
  9043. "funding": [
  9044. {
  9045. "url": "https://github.com/sebastianbergmann",
  9046. "type": "github"
  9047. }
  9048. ],
  9049. "time": "2022-04-03T09:37:03+00:00"
  9050. },
  9051. {
  9052. "name": "sebastian/exporter",
  9053. "version": "4.0.5",
  9054. "source": {
  9055. "type": "git",
  9056. "url": "https://github.com/sebastianbergmann/exporter.git",
  9057. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9058. },
  9059. "dist": {
  9060. "type": "zip",
  9061. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9062. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9063. "shasum": ""
  9064. },
  9065. "require": {
  9066. "php": ">=7.3",
  9067. "sebastian/recursion-context": "^4.0"
  9068. },
  9069. "require-dev": {
  9070. "ext-mbstring": "*",
  9071. "phpunit/phpunit": "^9.3"
  9072. },
  9073. "type": "library",
  9074. "extra": {
  9075. "branch-alias": {
  9076. "dev-master": "4.0-dev"
  9077. }
  9078. },
  9079. "autoload": {
  9080. "classmap": [
  9081. "src/"
  9082. ]
  9083. },
  9084. "notification-url": "https://packagist.org/downloads/",
  9085. "license": [
  9086. "BSD-3-Clause"
  9087. ],
  9088. "authors": [
  9089. {
  9090. "name": "Sebastian Bergmann",
  9091. "email": "sebastian@phpunit.de"
  9092. },
  9093. {
  9094. "name": "Jeff Welch",
  9095. "email": "whatthejeff@gmail.com"
  9096. },
  9097. {
  9098. "name": "Volker Dusch",
  9099. "email": "github@wallbash.com"
  9100. },
  9101. {
  9102. "name": "Adam Harvey",
  9103. "email": "aharvey@php.net"
  9104. },
  9105. {
  9106. "name": "Bernhard Schussek",
  9107. "email": "bschussek@gmail.com"
  9108. }
  9109. ],
  9110. "description": "Provides the functionality to export PHP variables for visualization",
  9111. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9112. "keywords": [
  9113. "export",
  9114. "exporter"
  9115. ],
  9116. "support": {
  9117. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9118. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9119. },
  9120. "funding": [
  9121. {
  9122. "url": "https://github.com/sebastianbergmann",
  9123. "type": "github"
  9124. }
  9125. ],
  9126. "time": "2022-09-14T06:03:37+00:00"
  9127. },
  9128. {
  9129. "name": "sebastian/global-state",
  9130. "version": "5.0.5",
  9131. "source": {
  9132. "type": "git",
  9133. "url": "https://github.com/sebastianbergmann/global-state.git",
  9134. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9135. },
  9136. "dist": {
  9137. "type": "zip",
  9138. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9139. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9140. "shasum": ""
  9141. },
  9142. "require": {
  9143. "php": ">=7.3",
  9144. "sebastian/object-reflector": "^2.0",
  9145. "sebastian/recursion-context": "^4.0"
  9146. },
  9147. "require-dev": {
  9148. "ext-dom": "*",
  9149. "phpunit/phpunit": "^9.3"
  9150. },
  9151. "suggest": {
  9152. "ext-uopz": "*"
  9153. },
  9154. "type": "library",
  9155. "extra": {
  9156. "branch-alias": {
  9157. "dev-master": "5.0-dev"
  9158. }
  9159. },
  9160. "autoload": {
  9161. "classmap": [
  9162. "src/"
  9163. ]
  9164. },
  9165. "notification-url": "https://packagist.org/downloads/",
  9166. "license": [
  9167. "BSD-3-Clause"
  9168. ],
  9169. "authors": [
  9170. {
  9171. "name": "Sebastian Bergmann",
  9172. "email": "sebastian@phpunit.de"
  9173. }
  9174. ],
  9175. "description": "Snapshotting of global state",
  9176. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9177. "keywords": [
  9178. "global state"
  9179. ],
  9180. "support": {
  9181. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9182. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9183. },
  9184. "funding": [
  9185. {
  9186. "url": "https://github.com/sebastianbergmann",
  9187. "type": "github"
  9188. }
  9189. ],
  9190. "time": "2022-02-14T08:28:10+00:00"
  9191. },
  9192. {
  9193. "name": "sebastian/lines-of-code",
  9194. "version": "1.0.3",
  9195. "source": {
  9196. "type": "git",
  9197. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9198. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9199. },
  9200. "dist": {
  9201. "type": "zip",
  9202. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9203. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9204. "shasum": ""
  9205. },
  9206. "require": {
  9207. "nikic/php-parser": "^4.6",
  9208. "php": ">=7.3"
  9209. },
  9210. "require-dev": {
  9211. "phpunit/phpunit": "^9.3"
  9212. },
  9213. "type": "library",
  9214. "extra": {
  9215. "branch-alias": {
  9216. "dev-master": "1.0-dev"
  9217. }
  9218. },
  9219. "autoload": {
  9220. "classmap": [
  9221. "src/"
  9222. ]
  9223. },
  9224. "notification-url": "https://packagist.org/downloads/",
  9225. "license": [
  9226. "BSD-3-Clause"
  9227. ],
  9228. "authors": [
  9229. {
  9230. "name": "Sebastian Bergmann",
  9231. "email": "sebastian@phpunit.de",
  9232. "role": "lead"
  9233. }
  9234. ],
  9235. "description": "Library for counting the lines of code in PHP source code",
  9236. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9237. "support": {
  9238. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9239. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://github.com/sebastianbergmann",
  9244. "type": "github"
  9245. }
  9246. ],
  9247. "time": "2020-11-28T06:42:11+00:00"
  9248. },
  9249. {
  9250. "name": "sebastian/object-enumerator",
  9251. "version": "4.0.4",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9255. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9260. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=7.3",
  9265. "sebastian/object-reflector": "^2.0",
  9266. "sebastian/recursion-context": "^4.0"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": "^9.3"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "4.0-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Sebastian Bergmann",
  9289. "email": "sebastian@phpunit.de"
  9290. }
  9291. ],
  9292. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9293. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9294. "support": {
  9295. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9296. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9297. },
  9298. "funding": [
  9299. {
  9300. "url": "https://github.com/sebastianbergmann",
  9301. "type": "github"
  9302. }
  9303. ],
  9304. "time": "2020-10-26T13:12:34+00:00"
  9305. },
  9306. {
  9307. "name": "sebastian/object-reflector",
  9308. "version": "2.0.4",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9312. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9317. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "php": ">=7.3"
  9322. },
  9323. "require-dev": {
  9324. "phpunit/phpunit": "^9.3"
  9325. },
  9326. "type": "library",
  9327. "extra": {
  9328. "branch-alias": {
  9329. "dev-master": "2.0-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "classmap": [
  9334. "src/"
  9335. ]
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "BSD-3-Clause"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Sebastian Bergmann",
  9344. "email": "sebastian@phpunit.de"
  9345. }
  9346. ],
  9347. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9348. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9349. "support": {
  9350. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9351. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9352. },
  9353. "funding": [
  9354. {
  9355. "url": "https://github.com/sebastianbergmann",
  9356. "type": "github"
  9357. }
  9358. ],
  9359. "time": "2020-10-26T13:14:26+00:00"
  9360. },
  9361. {
  9362. "name": "sebastian/recursion-context",
  9363. "version": "4.0.4",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9367. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9372. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9373. "shasum": ""
  9374. },
  9375. "require": {
  9376. "php": ">=7.3"
  9377. },
  9378. "require-dev": {
  9379. "phpunit/phpunit": "^9.3"
  9380. },
  9381. "type": "library",
  9382. "extra": {
  9383. "branch-alias": {
  9384. "dev-master": "4.0-dev"
  9385. }
  9386. },
  9387. "autoload": {
  9388. "classmap": [
  9389. "src/"
  9390. ]
  9391. },
  9392. "notification-url": "https://packagist.org/downloads/",
  9393. "license": [
  9394. "BSD-3-Clause"
  9395. ],
  9396. "authors": [
  9397. {
  9398. "name": "Sebastian Bergmann",
  9399. "email": "sebastian@phpunit.de"
  9400. },
  9401. {
  9402. "name": "Jeff Welch",
  9403. "email": "whatthejeff@gmail.com"
  9404. },
  9405. {
  9406. "name": "Adam Harvey",
  9407. "email": "aharvey@php.net"
  9408. }
  9409. ],
  9410. "description": "Provides functionality to recursively process PHP variables",
  9411. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9412. "support": {
  9413. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9414. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9415. },
  9416. "funding": [
  9417. {
  9418. "url": "https://github.com/sebastianbergmann",
  9419. "type": "github"
  9420. }
  9421. ],
  9422. "time": "2020-10-26T13:17:30+00:00"
  9423. },
  9424. {
  9425. "name": "sebastian/resource-operations",
  9426. "version": "3.0.3",
  9427. "source": {
  9428. "type": "git",
  9429. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9430. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9431. },
  9432. "dist": {
  9433. "type": "zip",
  9434. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9435. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9436. "shasum": ""
  9437. },
  9438. "require": {
  9439. "php": ">=7.3"
  9440. },
  9441. "require-dev": {
  9442. "phpunit/phpunit": "^9.0"
  9443. },
  9444. "type": "library",
  9445. "extra": {
  9446. "branch-alias": {
  9447. "dev-master": "3.0-dev"
  9448. }
  9449. },
  9450. "autoload": {
  9451. "classmap": [
  9452. "src/"
  9453. ]
  9454. },
  9455. "notification-url": "https://packagist.org/downloads/",
  9456. "license": [
  9457. "BSD-3-Clause"
  9458. ],
  9459. "authors": [
  9460. {
  9461. "name": "Sebastian Bergmann",
  9462. "email": "sebastian@phpunit.de"
  9463. }
  9464. ],
  9465. "description": "Provides a list of PHP built-in functions that operate on resources",
  9466. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9467. "support": {
  9468. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9469. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9470. },
  9471. "funding": [
  9472. {
  9473. "url": "https://github.com/sebastianbergmann",
  9474. "type": "github"
  9475. }
  9476. ],
  9477. "time": "2020-09-28T06:45:17+00:00"
  9478. },
  9479. {
  9480. "name": "sebastian/type",
  9481. "version": "3.2.0",
  9482. "source": {
  9483. "type": "git",
  9484. "url": "https://github.com/sebastianbergmann/type.git",
  9485. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  9486. },
  9487. "dist": {
  9488. "type": "zip",
  9489. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9490. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9491. "shasum": ""
  9492. },
  9493. "require": {
  9494. "php": ">=7.3"
  9495. },
  9496. "require-dev": {
  9497. "phpunit/phpunit": "^9.5"
  9498. },
  9499. "type": "library",
  9500. "extra": {
  9501. "branch-alias": {
  9502. "dev-master": "3.2-dev"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "classmap": [
  9507. "src/"
  9508. ]
  9509. },
  9510. "notification-url": "https://packagist.org/downloads/",
  9511. "license": [
  9512. "BSD-3-Clause"
  9513. ],
  9514. "authors": [
  9515. {
  9516. "name": "Sebastian Bergmann",
  9517. "email": "sebastian@phpunit.de",
  9518. "role": "lead"
  9519. }
  9520. ],
  9521. "description": "Collection of value objects that represent the types of the PHP type system",
  9522. "homepage": "https://github.com/sebastianbergmann/type",
  9523. "support": {
  9524. "issues": "https://github.com/sebastianbergmann/type/issues",
  9525. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  9526. },
  9527. "funding": [
  9528. {
  9529. "url": "https://github.com/sebastianbergmann",
  9530. "type": "github"
  9531. }
  9532. ],
  9533. "time": "2022-09-12T14:47:03+00:00"
  9534. },
  9535. {
  9536. "name": "sebastian/version",
  9537. "version": "3.0.2",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/sebastianbergmann/version.git",
  9541. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9546. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "php": ">=7.3"
  9551. },
  9552. "type": "library",
  9553. "extra": {
  9554. "branch-alias": {
  9555. "dev-master": "3.0-dev"
  9556. }
  9557. },
  9558. "autoload": {
  9559. "classmap": [
  9560. "src/"
  9561. ]
  9562. },
  9563. "notification-url": "https://packagist.org/downloads/",
  9564. "license": [
  9565. "BSD-3-Clause"
  9566. ],
  9567. "authors": [
  9568. {
  9569. "name": "Sebastian Bergmann",
  9570. "email": "sebastian@phpunit.de",
  9571. "role": "lead"
  9572. }
  9573. ],
  9574. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9575. "homepage": "https://github.com/sebastianbergmann/version",
  9576. "support": {
  9577. "issues": "https://github.com/sebastianbergmann/version/issues",
  9578. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9579. },
  9580. "funding": [
  9581. {
  9582. "url": "https://github.com/sebastianbergmann",
  9583. "type": "github"
  9584. }
  9585. ],
  9586. "time": "2020-09-28T06:39:44+00:00"
  9587. },
  9588. {
  9589. "name": "symfony/browser-kit",
  9590. "version": "v6.1.3",
  9591. "source": {
  9592. "type": "git",
  9593. "url": "https://github.com/symfony/browser-kit.git",
  9594. "reference": "2e3b6a4406c2af963c634d7bd0457402b67dcc56"
  9595. },
  9596. "dist": {
  9597. "type": "zip",
  9598. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e3b6a4406c2af963c634d7bd0457402b67dcc56",
  9599. "reference": "2e3b6a4406c2af963c634d7bd0457402b67dcc56",
  9600. "shasum": ""
  9601. },
  9602. "require": {
  9603. "php": ">=8.1",
  9604. "symfony/dom-crawler": "^5.4|^6.0"
  9605. },
  9606. "require-dev": {
  9607. "symfony/css-selector": "^5.4|^6.0",
  9608. "symfony/http-client": "^5.4|^6.0",
  9609. "symfony/mime": "^5.4|^6.0",
  9610. "symfony/process": "^5.4|^6.0"
  9611. },
  9612. "suggest": {
  9613. "symfony/process": ""
  9614. },
  9615. "type": "library",
  9616. "autoload": {
  9617. "psr-4": {
  9618. "Symfony\\Component\\BrowserKit\\": ""
  9619. },
  9620. "exclude-from-classmap": [
  9621. "/Tests/"
  9622. ]
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "MIT"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Fabien Potencier",
  9631. "email": "fabien@symfony.com"
  9632. },
  9633. {
  9634. "name": "Symfony Community",
  9635. "homepage": "https://symfony.com/contributors"
  9636. }
  9637. ],
  9638. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9639. "homepage": "https://symfony.com",
  9640. "support": {
  9641. "source": "https://github.com/symfony/browser-kit/tree/v6.1.3"
  9642. },
  9643. "funding": [
  9644. {
  9645. "url": "https://symfony.com/sponsor",
  9646. "type": "custom"
  9647. },
  9648. {
  9649. "url": "https://github.com/fabpot",
  9650. "type": "github"
  9651. },
  9652. {
  9653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9654. "type": "tidelift"
  9655. }
  9656. ],
  9657. "time": "2022-07-27T15:50:51+00:00"
  9658. },
  9659. {
  9660. "name": "symfony/css-selector",
  9661. "version": "v6.1.3",
  9662. "source": {
  9663. "type": "git",
  9664. "url": "https://github.com/symfony/css-selector.git",
  9665. "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443"
  9666. },
  9667. "dist": {
  9668. "type": "zip",
  9669. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0dd5e36b80e1de97f8f74ed7023ac2b837a36443",
  9670. "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443",
  9671. "shasum": ""
  9672. },
  9673. "require": {
  9674. "php": ">=8.1"
  9675. },
  9676. "type": "library",
  9677. "autoload": {
  9678. "psr-4": {
  9679. "Symfony\\Component\\CssSelector\\": ""
  9680. },
  9681. "exclude-from-classmap": [
  9682. "/Tests/"
  9683. ]
  9684. },
  9685. "notification-url": "https://packagist.org/downloads/",
  9686. "license": [
  9687. "MIT"
  9688. ],
  9689. "authors": [
  9690. {
  9691. "name": "Fabien Potencier",
  9692. "email": "fabien@symfony.com"
  9693. },
  9694. {
  9695. "name": "Jean-François Simon",
  9696. "email": "jeanfrancois.simon@sensiolabs.com"
  9697. },
  9698. {
  9699. "name": "Symfony Community",
  9700. "homepage": "https://symfony.com/contributors"
  9701. }
  9702. ],
  9703. "description": "Converts CSS selectors to XPath expressions",
  9704. "homepage": "https://symfony.com",
  9705. "support": {
  9706. "source": "https://github.com/symfony/css-selector/tree/v6.1.3"
  9707. },
  9708. "funding": [
  9709. {
  9710. "url": "https://symfony.com/sponsor",
  9711. "type": "custom"
  9712. },
  9713. {
  9714. "url": "https://github.com/fabpot",
  9715. "type": "github"
  9716. },
  9717. {
  9718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9719. "type": "tidelift"
  9720. }
  9721. ],
  9722. "time": "2022-06-27T17:24:16+00:00"
  9723. },
  9724. {
  9725. "name": "symfony/debug-bundle",
  9726. "version": "v6.1.3",
  9727. "source": {
  9728. "type": "git",
  9729. "url": "https://github.com/symfony/debug-bundle.git",
  9730. "reference": "4084f86639bf0270d6dd2225fc8d7c317780dd6b"
  9731. },
  9732. "dist": {
  9733. "type": "zip",
  9734. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/4084f86639bf0270d6dd2225fc8d7c317780dd6b",
  9735. "reference": "4084f86639bf0270d6dd2225fc8d7c317780dd6b",
  9736. "shasum": ""
  9737. },
  9738. "require": {
  9739. "ext-xml": "*",
  9740. "php": ">=8.1",
  9741. "symfony/dependency-injection": "^5.4|^6.0",
  9742. "symfony/http-kernel": "^5.4|^6.0",
  9743. "symfony/twig-bridge": "^5.4|^6.0",
  9744. "symfony/var-dumper": "^5.4|^6.0"
  9745. },
  9746. "conflict": {
  9747. "symfony/config": "<5.4",
  9748. "symfony/dependency-injection": "<5.4"
  9749. },
  9750. "require-dev": {
  9751. "symfony/config": "^5.4|^6.0",
  9752. "symfony/web-profiler-bundle": "^5.4|^6.0"
  9753. },
  9754. "suggest": {
  9755. "symfony/config": "For service container configuration",
  9756. "symfony/dependency-injection": "For using as a service from the container"
  9757. },
  9758. "type": "symfony-bundle",
  9759. "autoload": {
  9760. "psr-4": {
  9761. "Symfony\\Bundle\\DebugBundle\\": ""
  9762. },
  9763. "exclude-from-classmap": [
  9764. "/Tests/"
  9765. ]
  9766. },
  9767. "notification-url": "https://packagist.org/downloads/",
  9768. "license": [
  9769. "MIT"
  9770. ],
  9771. "authors": [
  9772. {
  9773. "name": "Fabien Potencier",
  9774. "email": "fabien@symfony.com"
  9775. },
  9776. {
  9777. "name": "Symfony Community",
  9778. "homepage": "https://symfony.com/contributors"
  9779. }
  9780. ],
  9781. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9782. "homepage": "https://symfony.com",
  9783. "support": {
  9784. "source": "https://github.com/symfony/debug-bundle/tree/v6.1.3"
  9785. },
  9786. "funding": [
  9787. {
  9788. "url": "https://symfony.com/sponsor",
  9789. "type": "custom"
  9790. },
  9791. {
  9792. "url": "https://github.com/fabpot",
  9793. "type": "github"
  9794. },
  9795. {
  9796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9797. "type": "tidelift"
  9798. }
  9799. ],
  9800. "time": "2022-07-20T13:46:29+00:00"
  9801. },
  9802. {
  9803. "name": "symfony/dom-crawler",
  9804. "version": "v6.1.7",
  9805. "source": {
  9806. "type": "git",
  9807. "url": "https://github.com/symfony/dom-crawler.git",
  9808. "reference": "66be2a0ccc90105b90b9393c984cfc3ea0e320df"
  9809. },
  9810. "dist": {
  9811. "type": "zip",
  9812. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/66be2a0ccc90105b90b9393c984cfc3ea0e320df",
  9813. "reference": "66be2a0ccc90105b90b9393c984cfc3ea0e320df",
  9814. "shasum": ""
  9815. },
  9816. "require": {
  9817. "masterminds/html5": "^2.6",
  9818. "php": ">=8.1",
  9819. "symfony/polyfill-ctype": "~1.8",
  9820. "symfony/polyfill-mbstring": "~1.0"
  9821. },
  9822. "require-dev": {
  9823. "symfony/css-selector": "^5.4|^6.0"
  9824. },
  9825. "suggest": {
  9826. "symfony/css-selector": ""
  9827. },
  9828. "type": "library",
  9829. "autoload": {
  9830. "psr-4": {
  9831. "Symfony\\Component\\DomCrawler\\": ""
  9832. },
  9833. "exclude-from-classmap": [
  9834. "/Tests/"
  9835. ]
  9836. },
  9837. "notification-url": "https://packagist.org/downloads/",
  9838. "license": [
  9839. "MIT"
  9840. ],
  9841. "authors": [
  9842. {
  9843. "name": "Fabien Potencier",
  9844. "email": "fabien@symfony.com"
  9845. },
  9846. {
  9847. "name": "Symfony Community",
  9848. "homepage": "https://symfony.com/contributors"
  9849. }
  9850. ],
  9851. "description": "Eases DOM navigation for HTML and XML documents",
  9852. "homepage": "https://symfony.com",
  9853. "support": {
  9854. "source": "https://github.com/symfony/dom-crawler/tree/v6.1.7"
  9855. },
  9856. "funding": [
  9857. {
  9858. "url": "https://symfony.com/sponsor",
  9859. "type": "custom"
  9860. },
  9861. {
  9862. "url": "https://github.com/fabpot",
  9863. "type": "github"
  9864. },
  9865. {
  9866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9867. "type": "tidelift"
  9868. }
  9869. ],
  9870. "time": "2022-10-28T16:23:08+00:00"
  9871. },
  9872. {
  9873. "name": "symfony/maker-bundle",
  9874. "version": "v1.47.0",
  9875. "source": {
  9876. "type": "git",
  9877. "url": "https://github.com/symfony/maker-bundle.git",
  9878. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3"
  9879. },
  9880. "dist": {
  9881. "type": "zip",
  9882. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  9883. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  9884. "shasum": ""
  9885. },
  9886. "require": {
  9887. "doctrine/inflector": "^2.0",
  9888. "nikic/php-parser": "^4.11",
  9889. "php": ">=8.0",
  9890. "symfony/config": "^5.4.7|^6.0",
  9891. "symfony/console": "^5.4.7|^6.0",
  9892. "symfony/dependency-injection": "^5.4.7|^6.0",
  9893. "symfony/deprecation-contracts": "^2.2|^3",
  9894. "symfony/filesystem": "^5.4.7|^6.0",
  9895. "symfony/finder": "^5.4.3|^6.0",
  9896. "symfony/framework-bundle": "^5.4.7|^6.0",
  9897. "symfony/http-kernel": "^5.4.7|^6.0"
  9898. },
  9899. "conflict": {
  9900. "doctrine/doctrine-bundle": "<2.4",
  9901. "doctrine/orm": "<2.10",
  9902. "symfony/doctrine-bridge": "<5.4"
  9903. },
  9904. "require-dev": {
  9905. "composer/semver": "^3.0",
  9906. "doctrine/doctrine-bundle": "^2.4",
  9907. "doctrine/orm": "^2.10.0",
  9908. "symfony/http-client": "^5.4.7|^6.0",
  9909. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  9910. "symfony/polyfill-php80": "^1.16.0",
  9911. "symfony/process": "^5.4.7|^6.0",
  9912. "symfony/security-core": "^5.4.7|^6.0",
  9913. "symfony/yaml": "^5.4.3|^6.0",
  9914. "twig/twig": "^2.0|^3.0"
  9915. },
  9916. "type": "symfony-bundle",
  9917. "extra": {
  9918. "branch-alias": {
  9919. "dev-main": "1.0-dev"
  9920. }
  9921. },
  9922. "autoload": {
  9923. "psr-4": {
  9924. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9925. }
  9926. },
  9927. "notification-url": "https://packagist.org/downloads/",
  9928. "license": [
  9929. "MIT"
  9930. ],
  9931. "authors": [
  9932. {
  9933. "name": "Symfony Community",
  9934. "homepage": "https://symfony.com/contributors"
  9935. }
  9936. ],
  9937. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9938. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9939. "keywords": [
  9940. "code generator",
  9941. "generator",
  9942. "scaffold",
  9943. "scaffolding"
  9944. ],
  9945. "support": {
  9946. "issues": "https://github.com/symfony/maker-bundle/issues",
  9947. "source": "https://github.com/symfony/maker-bundle/tree/v1.47.0"
  9948. },
  9949. "funding": [
  9950. {
  9951. "url": "https://symfony.com/sponsor",
  9952. "type": "custom"
  9953. },
  9954. {
  9955. "url": "https://github.com/fabpot",
  9956. "type": "github"
  9957. },
  9958. {
  9959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9960. "type": "tidelift"
  9961. }
  9962. ],
  9963. "time": "2022-10-04T15:05:10+00:00"
  9964. },
  9965. {
  9966. "name": "symfony/phpunit-bridge",
  9967. "version": "v6.1.6",
  9968. "source": {
  9969. "type": "git",
  9970. "url": "https://github.com/symfony/phpunit-bridge.git",
  9971. "reference": "07cf788ac9ae83b59d46599bb5098c3add88c68b"
  9972. },
  9973. "dist": {
  9974. "type": "zip",
  9975. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/07cf788ac9ae83b59d46599bb5098c3add88c68b",
  9976. "reference": "07cf788ac9ae83b59d46599bb5098c3add88c68b",
  9977. "shasum": ""
  9978. },
  9979. "require": {
  9980. "php": ">=7.1.3"
  9981. },
  9982. "conflict": {
  9983. "phpunit/phpunit": "<7.5|9.1.2"
  9984. },
  9985. "require-dev": {
  9986. "symfony/deprecation-contracts": "^2.1|^3.0",
  9987. "symfony/error-handler": "^5.4|^6.0"
  9988. },
  9989. "suggest": {
  9990. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9991. },
  9992. "bin": [
  9993. "bin/simple-phpunit"
  9994. ],
  9995. "type": "symfony-bridge",
  9996. "extra": {
  9997. "thanks": {
  9998. "name": "phpunit/phpunit",
  9999. "url": "https://github.com/sebastianbergmann/phpunit"
  10000. }
  10001. },
  10002. "autoload": {
  10003. "files": [
  10004. "bootstrap.php"
  10005. ],
  10006. "psr-4": {
  10007. "Symfony\\Bridge\\PhpUnit\\": ""
  10008. },
  10009. "exclude-from-classmap": [
  10010. "/Tests/"
  10011. ]
  10012. },
  10013. "notification-url": "https://packagist.org/downloads/",
  10014. "license": [
  10015. "MIT"
  10016. ],
  10017. "authors": [
  10018. {
  10019. "name": "Nicolas Grekas",
  10020. "email": "p@tchwork.com"
  10021. },
  10022. {
  10023. "name": "Symfony Community",
  10024. "homepage": "https://symfony.com/contributors"
  10025. }
  10026. ],
  10027. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10028. "homepage": "https://symfony.com",
  10029. "support": {
  10030. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.1.6"
  10031. },
  10032. "funding": [
  10033. {
  10034. "url": "https://symfony.com/sponsor",
  10035. "type": "custom"
  10036. },
  10037. {
  10038. "url": "https://github.com/fabpot",
  10039. "type": "github"
  10040. },
  10041. {
  10042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10043. "type": "tidelift"
  10044. }
  10045. ],
  10046. "time": "2022-10-07T08:04:03+00:00"
  10047. },
  10048. {
  10049. "name": "symfony/web-profiler-bundle",
  10050. "version": "v6.1.6",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10054. "reference": "45d05cd8e967fd06bb1f66f748ed308c00674d32"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/45d05cd8e967fd06bb1f66f748ed308c00674d32",
  10059. "reference": "45d05cd8e967fd06bb1f66f748ed308c00674d32",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "php": ">=8.1",
  10064. "symfony/config": "^5.4|^6.0",
  10065. "symfony/framework-bundle": "^5.4|^6.0",
  10066. "symfony/http-kernel": "^6.1",
  10067. "symfony/routing": "^5.4|^6.0",
  10068. "symfony/twig-bundle": "^5.4|^6.0",
  10069. "twig/twig": "^2.13|^3.0.4"
  10070. },
  10071. "conflict": {
  10072. "symfony/form": "<5.4",
  10073. "symfony/mailer": "<5.4",
  10074. "symfony/messenger": "<5.4"
  10075. },
  10076. "require-dev": {
  10077. "symfony/browser-kit": "^5.4|^6.0",
  10078. "symfony/console": "^5.4|^6.0",
  10079. "symfony/css-selector": "^5.4|^6.0",
  10080. "symfony/stopwatch": "^5.4|^6.0"
  10081. },
  10082. "type": "symfony-bundle",
  10083. "autoload": {
  10084. "psr-4": {
  10085. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10086. },
  10087. "exclude-from-classmap": [
  10088. "/Tests/"
  10089. ]
  10090. },
  10091. "notification-url": "https://packagist.org/downloads/",
  10092. "license": [
  10093. "MIT"
  10094. ],
  10095. "authors": [
  10096. {
  10097. "name": "Fabien Potencier",
  10098. "email": "fabien@symfony.com"
  10099. },
  10100. {
  10101. "name": "Symfony Community",
  10102. "homepage": "https://symfony.com/contributors"
  10103. }
  10104. ],
  10105. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10106. "homepage": "https://symfony.com",
  10107. "support": {
  10108. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.1.6"
  10109. },
  10110. "funding": [
  10111. {
  10112. "url": "https://symfony.com/sponsor",
  10113. "type": "custom"
  10114. },
  10115. {
  10116. "url": "https://github.com/fabpot",
  10117. "type": "github"
  10118. },
  10119. {
  10120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10121. "type": "tidelift"
  10122. }
  10123. ],
  10124. "time": "2022-10-02T08:30:52+00:00"
  10125. },
  10126. {
  10127. "name": "theseer/tokenizer",
  10128. "version": "1.2.1",
  10129. "source": {
  10130. "type": "git",
  10131. "url": "https://github.com/theseer/tokenizer.git",
  10132. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10133. },
  10134. "dist": {
  10135. "type": "zip",
  10136. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10137. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10138. "shasum": ""
  10139. },
  10140. "require": {
  10141. "ext-dom": "*",
  10142. "ext-tokenizer": "*",
  10143. "ext-xmlwriter": "*",
  10144. "php": "^7.2 || ^8.0"
  10145. },
  10146. "type": "library",
  10147. "autoload": {
  10148. "classmap": [
  10149. "src/"
  10150. ]
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "BSD-3-Clause"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Arne Blankerts",
  10159. "email": "arne@blankerts.de",
  10160. "role": "Developer"
  10161. }
  10162. ],
  10163. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10164. "support": {
  10165. "issues": "https://github.com/theseer/tokenizer/issues",
  10166. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10167. },
  10168. "funding": [
  10169. {
  10170. "url": "https://github.com/theseer",
  10171. "type": "github"
  10172. }
  10173. ],
  10174. "time": "2021-07-28T10:34:58+00:00"
  10175. }
  10176. ],
  10177. "aliases": [],
  10178. "minimum-stability": "stable",
  10179. "stability-flags": [],
  10180. "prefer-stable": false,
  10181. "prefer-lowest": false,
  10182. "platform": {
  10183. "php": "^8.1",
  10184. "ext-ctype": "*",
  10185. "ext-iconv": "*"
  10186. },
  10187. "platform-dev": [],
  10188. "platform-overrides": {
  10189. "php": "8.1"
  10190. },
  10191. "plugin-api-version": "2.3.0"
  10192. }