composer.lock 384 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642
  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": "5a90042f109c816ed3c78d10e51a23eb",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  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.5"
  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": "2022-01-17T14:14:24+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": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.1.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
  337. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^10.0",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^4.22"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.1.2"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2022-12-27T23:41:38+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.6.4",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
  514. "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "12.0.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2022.3",
  530. "phpstan/phpstan": "1.10.14",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.7",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "squizlabs/php_codesniffer": "3.7.2",
  535. "symfony/cache": "^5.4|^6.0",
  536. "symfony/console": "^4.4|^5.4|^6.0",
  537. "vimeo/psalm": "4.30.0"
  538. },
  539. "suggest": {
  540. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  541. },
  542. "bin": [
  543. "bin/doctrine-dbal"
  544. ],
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "Doctrine\\DBAL\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Guilherme Blanco",
  558. "email": "guilhermeblanco@gmail.com"
  559. },
  560. {
  561. "name": "Roman Borschel",
  562. "email": "roman@code-factory.org"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Jonathan Wage",
  570. "email": "jonwage@gmail.com"
  571. }
  572. ],
  573. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  574. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  575. "keywords": [
  576. "abstraction",
  577. "database",
  578. "db2",
  579. "dbal",
  580. "mariadb",
  581. "mssql",
  582. "mysql",
  583. "oci8",
  584. "oracle",
  585. "pdo",
  586. "pgsql",
  587. "postgresql",
  588. "queryobject",
  589. "sasql",
  590. "sql",
  591. "sqlite",
  592. "sqlserver",
  593. "sqlsrv"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/dbal/issues",
  597. "source": "https://github.com/doctrine/dbal/tree/3.6.4"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2023-06-15T07:40:12+00:00"
  614. },
  615. {
  616. "name": "doctrine/deprecations",
  617. "version": "v1.1.1",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/deprecations.git",
  621. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  626. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  627. "shasum": ""
  628. },
  629. "require": {
  630. "php": "^7.1 || ^8.0"
  631. },
  632. "require-dev": {
  633. "doctrine/coding-standard": "^9",
  634. "phpstan/phpstan": "1.4.10 || 1.10.15",
  635. "phpstan/phpstan-phpunit": "^1.0",
  636. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  637. "psalm/plugin-phpunit": "0.18.4",
  638. "psr/log": "^1 || ^2 || ^3",
  639. "vimeo/psalm": "4.30.0 || 5.12.0"
  640. },
  641. "suggest": {
  642. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  643. },
  644. "type": "library",
  645. "autoload": {
  646. "psr-4": {
  647. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "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.",
  655. "homepage": "https://www.doctrine-project.org/",
  656. "support": {
  657. "issues": "https://github.com/doctrine/deprecations/issues",
  658. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  659. },
  660. "time": "2023-06-03T09:27:29+00:00"
  661. },
  662. {
  663. "name": "doctrine/doctrine-bundle",
  664. "version": "2.10.1",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/doctrine/DoctrineBundle.git",
  668. "reference": "f9d59c90b6f525dfc2a2064a695cb56e0ab40311"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/f9d59c90b6f525dfc2a2064a695cb56e0ab40311",
  673. "reference": "f9d59c90b6f525dfc2a2064a695cb56e0ab40311",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "doctrine/cache": "^1.11 || ^2.0",
  678. "doctrine/dbal": "^3.6.0",
  679. "doctrine/persistence": "^2.2 || ^3",
  680. "doctrine/sql-formatter": "^1.0.1",
  681. "php": "^7.4 || ^8.0",
  682. "symfony/cache": "^5.4 || ^6.0",
  683. "symfony/config": "^5.4 || ^6.0",
  684. "symfony/console": "^5.4 || ^6.0",
  685. "symfony/dependency-injection": "^5.4 || ^6.0",
  686. "symfony/deprecation-contracts": "^2.1 || ^3",
  687. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7",
  688. "symfony/framework-bundle": "^5.4 || ^6.0",
  689. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  690. },
  691. "conflict": {
  692. "doctrine/annotations": ">=3.0",
  693. "doctrine/orm": "<2.11 || >=3.0",
  694. "twig/twig": "<1.34 || >=2.0 <2.4"
  695. },
  696. "require-dev": {
  697. "doctrine/annotations": "^1 || ^2",
  698. "doctrine/coding-standard": "^9.0",
  699. "doctrine/deprecations": "^1.0",
  700. "doctrine/orm": "^2.11 || ^3.0",
  701. "friendsofphp/proxy-manager-lts": "^1.0",
  702. "phpunit/phpunit": "^9.5.26 || ^10.0",
  703. "psalm/plugin-phpunit": "^0.18.4",
  704. "psalm/plugin-symfony": "^4",
  705. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  706. "symfony/phpunit-bridge": "^6.1",
  707. "symfony/property-info": "^5.4 || ^6.0",
  708. "symfony/proxy-manager-bridge": "^5.4 || ^6.0",
  709. "symfony/security-bundle": "^5.4 || ^6.0",
  710. "symfony/twig-bridge": "^5.4 || ^6.0",
  711. "symfony/validator": "^5.4 || ^6.0",
  712. "symfony/web-profiler-bundle": "^5.4 || ^6.0",
  713. "symfony/yaml": "^5.4 || ^6.0",
  714. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  715. "vimeo/psalm": "^4.30"
  716. },
  717. "suggest": {
  718. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  719. "ext-pdo": "*",
  720. "symfony/web-profiler-bundle": "To use the data collector."
  721. },
  722. "type": "symfony-bundle",
  723. "autoload": {
  724. "psr-4": {
  725. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  726. }
  727. },
  728. "notification-url": "https://packagist.org/downloads/",
  729. "license": [
  730. "MIT"
  731. ],
  732. "authors": [
  733. {
  734. "name": "Fabien Potencier",
  735. "email": "fabien@symfony.com"
  736. },
  737. {
  738. "name": "Benjamin Eberlei",
  739. "email": "kontakt@beberlei.de"
  740. },
  741. {
  742. "name": "Symfony Community",
  743. "homepage": "https://symfony.com/contributors"
  744. },
  745. {
  746. "name": "Doctrine Project",
  747. "homepage": "https://www.doctrine-project.org/"
  748. }
  749. ],
  750. "description": "Symfony DoctrineBundle",
  751. "homepage": "https://www.doctrine-project.org",
  752. "keywords": [
  753. "database",
  754. "dbal",
  755. "orm",
  756. "persistence"
  757. ],
  758. "support": {
  759. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  760. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.10.1"
  761. },
  762. "funding": [
  763. {
  764. "url": "https://www.doctrine-project.org/sponsorship.html",
  765. "type": "custom"
  766. },
  767. {
  768. "url": "https://www.patreon.com/phpdoctrine",
  769. "type": "patreon"
  770. },
  771. {
  772. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  773. "type": "tidelift"
  774. }
  775. ],
  776. "time": "2023-06-28T07:47:41+00:00"
  777. },
  778. {
  779. "name": "doctrine/doctrine-migrations-bundle",
  780. "version": "3.2.4",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  784. "reference": "94e6b0fe1a50901d52f59dbb9b4b0737718b2c1e"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/94e6b0fe1a50901d52f59dbb9b4b0737718b2c1e",
  789. "reference": "94e6b0fe1a50901d52f59dbb9b4b0737718b2c1e",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "doctrine/doctrine-bundle": "~1.0|~2.0",
  794. "doctrine/migrations": "^3.2",
  795. "php": "^7.2|^8.0",
  796. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  797. },
  798. "require-dev": {
  799. "doctrine/coding-standard": "^9",
  800. "doctrine/orm": "^2.6",
  801. "doctrine/persistence": "^1.3||^2.0",
  802. "phpstan/phpstan": "^1.4",
  803. "phpstan/phpstan-deprecation-rules": "^1",
  804. "phpstan/phpstan-phpunit": "^1",
  805. "phpstan/phpstan-strict-rules": "^1.1",
  806. "phpunit/phpunit": "^8.5|^9.5",
  807. "vimeo/psalm": "^4.22"
  808. },
  809. "type": "symfony-bundle",
  810. "autoload": {
  811. "psr-4": {
  812. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  813. },
  814. "exclude-from-classmap": [
  815. "/Tests/"
  816. ]
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Fabien Potencier",
  825. "email": "fabien@symfony.com"
  826. },
  827. {
  828. "name": "Doctrine Project",
  829. "homepage": "https://www.doctrine-project.org"
  830. },
  831. {
  832. "name": "Symfony Community",
  833. "homepage": "https://symfony.com/contributors"
  834. }
  835. ],
  836. "description": "Symfony DoctrineMigrationsBundle",
  837. "homepage": "https://www.doctrine-project.org",
  838. "keywords": [
  839. "dbal",
  840. "migrations",
  841. "schema"
  842. ],
  843. "support": {
  844. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  845. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.4"
  846. },
  847. "funding": [
  848. {
  849. "url": "https://www.doctrine-project.org/sponsorship.html",
  850. "type": "custom"
  851. },
  852. {
  853. "url": "https://www.patreon.com/phpdoctrine",
  854. "type": "patreon"
  855. },
  856. {
  857. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  858. "type": "tidelift"
  859. }
  860. ],
  861. "time": "2023-06-02T08:19:26+00:00"
  862. },
  863. {
  864. "name": "doctrine/event-manager",
  865. "version": "2.0.0",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/doctrine/event-manager.git",
  869. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  874. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "php": "^8.1"
  879. },
  880. "conflict": {
  881. "doctrine/common": "<2.9"
  882. },
  883. "require-dev": {
  884. "doctrine/coding-standard": "^10",
  885. "phpstan/phpstan": "^1.8.8",
  886. "phpunit/phpunit": "^9.5",
  887. "vimeo/psalm": "^4.28"
  888. },
  889. "type": "library",
  890. "autoload": {
  891. "psr-4": {
  892. "Doctrine\\Common\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Guilherme Blanco",
  902. "email": "guilhermeblanco@gmail.com"
  903. },
  904. {
  905. "name": "Roman Borschel",
  906. "email": "roman@code-factory.org"
  907. },
  908. {
  909. "name": "Benjamin Eberlei",
  910. "email": "kontakt@beberlei.de"
  911. },
  912. {
  913. "name": "Jonathan Wage",
  914. "email": "jonwage@gmail.com"
  915. },
  916. {
  917. "name": "Johannes Schmitt",
  918. "email": "schmittjoh@gmail.com"
  919. },
  920. {
  921. "name": "Marco Pivetta",
  922. "email": "ocramius@gmail.com"
  923. }
  924. ],
  925. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  926. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  927. "keywords": [
  928. "event",
  929. "event dispatcher",
  930. "event manager",
  931. "event system",
  932. "events"
  933. ],
  934. "support": {
  935. "issues": "https://github.com/doctrine/event-manager/issues",
  936. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  937. },
  938. "funding": [
  939. {
  940. "url": "https://www.doctrine-project.org/sponsorship.html",
  941. "type": "custom"
  942. },
  943. {
  944. "url": "https://www.patreon.com/phpdoctrine",
  945. "type": "patreon"
  946. },
  947. {
  948. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  949. "type": "tidelift"
  950. }
  951. ],
  952. "time": "2022-10-12T20:59:15+00:00"
  953. },
  954. {
  955. "name": "doctrine/inflector",
  956. "version": "2.0.8",
  957. "source": {
  958. "type": "git",
  959. "url": "https://github.com/doctrine/inflector.git",
  960. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  961. },
  962. "dist": {
  963. "type": "zip",
  964. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  965. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  966. "shasum": ""
  967. },
  968. "require": {
  969. "php": "^7.2 || ^8.0"
  970. },
  971. "require-dev": {
  972. "doctrine/coding-standard": "^11.0",
  973. "phpstan/phpstan": "^1.8",
  974. "phpstan/phpstan-phpunit": "^1.1",
  975. "phpstan/phpstan-strict-rules": "^1.3",
  976. "phpunit/phpunit": "^8.5 || ^9.5",
  977. "vimeo/psalm": "^4.25 || ^5.4"
  978. },
  979. "type": "library",
  980. "autoload": {
  981. "psr-4": {
  982. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  983. }
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Guilherme Blanco",
  992. "email": "guilhermeblanco@gmail.com"
  993. },
  994. {
  995. "name": "Roman Borschel",
  996. "email": "roman@code-factory.org"
  997. },
  998. {
  999. "name": "Benjamin Eberlei",
  1000. "email": "kontakt@beberlei.de"
  1001. },
  1002. {
  1003. "name": "Jonathan Wage",
  1004. "email": "jonwage@gmail.com"
  1005. },
  1006. {
  1007. "name": "Johannes Schmitt",
  1008. "email": "schmittjoh@gmail.com"
  1009. }
  1010. ],
  1011. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1012. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1013. "keywords": [
  1014. "inflection",
  1015. "inflector",
  1016. "lowercase",
  1017. "manipulation",
  1018. "php",
  1019. "plural",
  1020. "singular",
  1021. "strings",
  1022. "uppercase",
  1023. "words"
  1024. ],
  1025. "support": {
  1026. "issues": "https://github.com/doctrine/inflector/issues",
  1027. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1028. },
  1029. "funding": [
  1030. {
  1031. "url": "https://www.doctrine-project.org/sponsorship.html",
  1032. "type": "custom"
  1033. },
  1034. {
  1035. "url": "https://www.patreon.com/phpdoctrine",
  1036. "type": "patreon"
  1037. },
  1038. {
  1039. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1040. "type": "tidelift"
  1041. }
  1042. ],
  1043. "time": "2023-06-16T13:40:37+00:00"
  1044. },
  1045. {
  1046. "name": "doctrine/instantiator",
  1047. "version": "2.0.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/doctrine/instantiator.git",
  1051. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1056. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "php": "^8.1"
  1061. },
  1062. "require-dev": {
  1063. "doctrine/coding-standard": "^11",
  1064. "ext-pdo": "*",
  1065. "ext-phar": "*",
  1066. "phpbench/phpbench": "^1.2",
  1067. "phpstan/phpstan": "^1.9.4",
  1068. "phpstan/phpstan-phpunit": "^1.3",
  1069. "phpunit/phpunit": "^9.5.27",
  1070. "vimeo/psalm": "^5.4"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Marco Pivetta",
  1085. "email": "ocramius@gmail.com",
  1086. "homepage": "https://ocramius.github.io/"
  1087. }
  1088. ],
  1089. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1090. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1091. "keywords": [
  1092. "constructor",
  1093. "instantiate"
  1094. ],
  1095. "support": {
  1096. "issues": "https://github.com/doctrine/instantiator/issues",
  1097. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1098. },
  1099. "funding": [
  1100. {
  1101. "url": "https://www.doctrine-project.org/sponsorship.html",
  1102. "type": "custom"
  1103. },
  1104. {
  1105. "url": "https://www.patreon.com/phpdoctrine",
  1106. "type": "patreon"
  1107. },
  1108. {
  1109. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1110. "type": "tidelift"
  1111. }
  1112. ],
  1113. "time": "2022-12-30T00:23:10+00:00"
  1114. },
  1115. {
  1116. "name": "doctrine/lexer",
  1117. "version": "2.1.0",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/doctrine/lexer.git",
  1121. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1126. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1127. "shasum": ""
  1128. },
  1129. "require": {
  1130. "doctrine/deprecations": "^1.0",
  1131. "php": "^7.1 || ^8.0"
  1132. },
  1133. "require-dev": {
  1134. "doctrine/coding-standard": "^9 || ^10",
  1135. "phpstan/phpstan": "^1.3",
  1136. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1137. "psalm/plugin-phpunit": "^0.18.3",
  1138. "vimeo/psalm": "^4.11 || ^5.0"
  1139. },
  1140. "type": "library",
  1141. "autoload": {
  1142. "psr-4": {
  1143. "Doctrine\\Common\\Lexer\\": "src"
  1144. }
  1145. },
  1146. "notification-url": "https://packagist.org/downloads/",
  1147. "license": [
  1148. "MIT"
  1149. ],
  1150. "authors": [
  1151. {
  1152. "name": "Guilherme Blanco",
  1153. "email": "guilhermeblanco@gmail.com"
  1154. },
  1155. {
  1156. "name": "Roman Borschel",
  1157. "email": "roman@code-factory.org"
  1158. },
  1159. {
  1160. "name": "Johannes Schmitt",
  1161. "email": "schmittjoh@gmail.com"
  1162. }
  1163. ],
  1164. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1165. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1166. "keywords": [
  1167. "annotations",
  1168. "docblock",
  1169. "lexer",
  1170. "parser",
  1171. "php"
  1172. ],
  1173. "support": {
  1174. "issues": "https://github.com/doctrine/lexer/issues",
  1175. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://www.doctrine-project.org/sponsorship.html",
  1180. "type": "custom"
  1181. },
  1182. {
  1183. "url": "https://www.patreon.com/phpdoctrine",
  1184. "type": "patreon"
  1185. },
  1186. {
  1187. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1188. "type": "tidelift"
  1189. }
  1190. ],
  1191. "time": "2022-12-14T08:49:07+00:00"
  1192. },
  1193. {
  1194. "name": "doctrine/migrations",
  1195. "version": "3.6.0",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/doctrine/migrations.git",
  1199. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1204. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1205. "shasum": ""
  1206. },
  1207. "require": {
  1208. "composer-runtime-api": "^2",
  1209. "doctrine/dbal": "^3.5.1",
  1210. "doctrine/deprecations": "^0.5.3 || ^1",
  1211. "doctrine/event-manager": "^1.2 || ^2.0",
  1212. "php": "^8.1",
  1213. "psr/log": "^1.1.3 || ^2 || ^3",
  1214. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1215. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0",
  1216. "symfony/var-exporter": "^6.2"
  1217. },
  1218. "conflict": {
  1219. "doctrine/orm": "<2.12"
  1220. },
  1221. "require-dev": {
  1222. "doctrine/coding-standard": "^9",
  1223. "doctrine/orm": "^2.13",
  1224. "doctrine/persistence": "^2 || ^3",
  1225. "doctrine/sql-formatter": "^1.0",
  1226. "ext-pdo_sqlite": "*",
  1227. "phpstan/phpstan": "^1.5",
  1228. "phpstan/phpstan-deprecation-rules": "^1",
  1229. "phpstan/phpstan-phpunit": "^1.1",
  1230. "phpstan/phpstan-strict-rules": "^1.1",
  1231. "phpstan/phpstan-symfony": "^1.1",
  1232. "phpunit/phpunit": "^9.5.24",
  1233. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1234. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1235. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1236. },
  1237. "suggest": {
  1238. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1239. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1240. },
  1241. "bin": [
  1242. "bin/doctrine-migrations"
  1243. ],
  1244. "type": "library",
  1245. "autoload": {
  1246. "psr-4": {
  1247. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1248. }
  1249. },
  1250. "notification-url": "https://packagist.org/downloads/",
  1251. "license": [
  1252. "MIT"
  1253. ],
  1254. "authors": [
  1255. {
  1256. "name": "Benjamin Eberlei",
  1257. "email": "kontakt@beberlei.de"
  1258. },
  1259. {
  1260. "name": "Jonathan Wage",
  1261. "email": "jonwage@gmail.com"
  1262. },
  1263. {
  1264. "name": "Michael Simonson",
  1265. "email": "contact@mikesimonson.com"
  1266. }
  1267. ],
  1268. "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.",
  1269. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1270. "keywords": [
  1271. "database",
  1272. "dbal",
  1273. "migrations"
  1274. ],
  1275. "support": {
  1276. "issues": "https://github.com/doctrine/migrations/issues",
  1277. "source": "https://github.com/doctrine/migrations/tree/3.6.0"
  1278. },
  1279. "funding": [
  1280. {
  1281. "url": "https://www.doctrine-project.org/sponsorship.html",
  1282. "type": "custom"
  1283. },
  1284. {
  1285. "url": "https://www.patreon.com/phpdoctrine",
  1286. "type": "patreon"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2023-02-15T18:49:46+00:00"
  1294. },
  1295. {
  1296. "name": "doctrine/orm",
  1297. "version": "2.15.3",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/doctrine/orm.git",
  1301. "reference": "4c3bd208018c26498e5f682aaad45fa00ea307d5"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/doctrine/orm/zipball/4c3bd208018c26498e5f682aaad45fa00ea307d5",
  1306. "reference": "4c3bd208018c26498e5f682aaad45fa00ea307d5",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "composer-runtime-api": "^2",
  1311. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1312. "doctrine/collections": "^1.5 || ^2.1",
  1313. "doctrine/common": "^3.0.3",
  1314. "doctrine/dbal": "^2.13.1 || ^3.2",
  1315. "doctrine/deprecations": "^0.5.3 || ^1",
  1316. "doctrine/event-manager": "^1.2 || ^2",
  1317. "doctrine/inflector": "^1.4 || ^2.0",
  1318. "doctrine/instantiator": "^1.3 || ^2",
  1319. "doctrine/lexer": "^2",
  1320. "doctrine/persistence": "^2.4 || ^3",
  1321. "ext-ctype": "*",
  1322. "php": "^7.1 || ^8.0",
  1323. "psr/cache": "^1 || ^2 || ^3",
  1324. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  1325. "symfony/polyfill-php72": "^1.23",
  1326. "symfony/polyfill-php80": "^1.16"
  1327. },
  1328. "conflict": {
  1329. "doctrine/annotations": "<1.13 || >= 3.0"
  1330. },
  1331. "require-dev": {
  1332. "doctrine/annotations": "^1.13 || ^2",
  1333. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  1334. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1335. "phpstan/phpstan": "~1.4.10 || 1.10.18",
  1336. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1337. "psr/log": "^1 || ^2 || ^3",
  1338. "squizlabs/php_codesniffer": "3.7.2",
  1339. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1340. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2",
  1341. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1342. "vimeo/psalm": "4.30.0 || 5.12.0"
  1343. },
  1344. "suggest": {
  1345. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1346. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1347. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1348. },
  1349. "bin": [
  1350. "bin/doctrine"
  1351. ],
  1352. "type": "library",
  1353. "autoload": {
  1354. "psr-4": {
  1355. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1356. }
  1357. },
  1358. "notification-url": "https://packagist.org/downloads/",
  1359. "license": [
  1360. "MIT"
  1361. ],
  1362. "authors": [
  1363. {
  1364. "name": "Guilherme Blanco",
  1365. "email": "guilhermeblanco@gmail.com"
  1366. },
  1367. {
  1368. "name": "Roman Borschel",
  1369. "email": "roman@code-factory.org"
  1370. },
  1371. {
  1372. "name": "Benjamin Eberlei",
  1373. "email": "kontakt@beberlei.de"
  1374. },
  1375. {
  1376. "name": "Jonathan Wage",
  1377. "email": "jonwage@gmail.com"
  1378. },
  1379. {
  1380. "name": "Marco Pivetta",
  1381. "email": "ocramius@gmail.com"
  1382. }
  1383. ],
  1384. "description": "Object-Relational-Mapper for PHP",
  1385. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1386. "keywords": [
  1387. "database",
  1388. "orm"
  1389. ],
  1390. "support": {
  1391. "issues": "https://github.com/doctrine/orm/issues",
  1392. "source": "https://github.com/doctrine/orm/tree/2.15.3"
  1393. },
  1394. "time": "2023-06-22T12:36:06+00:00"
  1395. },
  1396. {
  1397. "name": "doctrine/persistence",
  1398. "version": "3.2.0",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/doctrine/persistence.git",
  1402. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1407. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "doctrine/event-manager": "^1 || ^2",
  1412. "php": "^7.2 || ^8.0",
  1413. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1414. },
  1415. "conflict": {
  1416. "doctrine/common": "<2.10"
  1417. },
  1418. "require-dev": {
  1419. "composer/package-versions-deprecated": "^1.11",
  1420. "doctrine/coding-standard": "^11",
  1421. "doctrine/common": "^3.0",
  1422. "phpstan/phpstan": "1.9.4",
  1423. "phpstan/phpstan-phpunit": "^1",
  1424. "phpstan/phpstan-strict-rules": "^1.1",
  1425. "phpunit/phpunit": "^8.5 || ^9.5",
  1426. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1427. "vimeo/psalm": "4.30.0 || 5.3.0"
  1428. },
  1429. "type": "library",
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Doctrine\\Persistence\\": "src/Persistence"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Guilherme Blanco",
  1442. "email": "guilhermeblanco@gmail.com"
  1443. },
  1444. {
  1445. "name": "Roman Borschel",
  1446. "email": "roman@code-factory.org"
  1447. },
  1448. {
  1449. "name": "Benjamin Eberlei",
  1450. "email": "kontakt@beberlei.de"
  1451. },
  1452. {
  1453. "name": "Jonathan Wage",
  1454. "email": "jonwage@gmail.com"
  1455. },
  1456. {
  1457. "name": "Johannes Schmitt",
  1458. "email": "schmittjoh@gmail.com"
  1459. },
  1460. {
  1461. "name": "Marco Pivetta",
  1462. "email": "ocramius@gmail.com"
  1463. }
  1464. ],
  1465. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1466. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1467. "keywords": [
  1468. "mapper",
  1469. "object",
  1470. "odm",
  1471. "orm",
  1472. "persistence"
  1473. ],
  1474. "support": {
  1475. "issues": "https://github.com/doctrine/persistence/issues",
  1476. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1477. },
  1478. "funding": [
  1479. {
  1480. "url": "https://www.doctrine-project.org/sponsorship.html",
  1481. "type": "custom"
  1482. },
  1483. {
  1484. "url": "https://www.patreon.com/phpdoctrine",
  1485. "type": "patreon"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "time": "2023-05-17T18:32:04+00:00"
  1493. },
  1494. {
  1495. "name": "doctrine/sql-formatter",
  1496. "version": "1.1.3",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/doctrine/sql-formatter.git",
  1500. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1505. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": "^7.1 || ^8.0"
  1510. },
  1511. "require-dev": {
  1512. "bamarni/composer-bin-plugin": "^1.4"
  1513. },
  1514. "bin": [
  1515. "bin/sql-formatter"
  1516. ],
  1517. "type": "library",
  1518. "autoload": {
  1519. "psr-4": {
  1520. "Doctrine\\SqlFormatter\\": "src"
  1521. }
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Jeremy Dorn",
  1530. "email": "jeremy@jeremydorn.com",
  1531. "homepage": "https://jeremydorn.com/"
  1532. }
  1533. ],
  1534. "description": "a PHP SQL highlighting library",
  1535. "homepage": "https://github.com/doctrine/sql-formatter/",
  1536. "keywords": [
  1537. "highlight",
  1538. "sql"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1542. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1543. },
  1544. "time": "2022-05-23T21:33:49+00:00"
  1545. },
  1546. {
  1547. "name": "egulias/email-validator",
  1548. "version": "4.0.1",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/egulias/EmailValidator.git",
  1552. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1557. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "doctrine/lexer": "^2.0 || ^3.0",
  1562. "php": ">=8.1",
  1563. "symfony/polyfill-intl-idn": "^1.26"
  1564. },
  1565. "require-dev": {
  1566. "phpunit/phpunit": "^9.5.27",
  1567. "vimeo/psalm": "^4.30"
  1568. },
  1569. "suggest": {
  1570. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "4.0.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "psr-4": {
  1580. "Egulias\\EmailValidator\\": "src"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Eduardo Gulias Davis"
  1590. }
  1591. ],
  1592. "description": "A library for validating emails against several RFCs",
  1593. "homepage": "https://github.com/egulias/EmailValidator",
  1594. "keywords": [
  1595. "email",
  1596. "emailvalidation",
  1597. "emailvalidator",
  1598. "validation",
  1599. "validator"
  1600. ],
  1601. "support": {
  1602. "issues": "https://github.com/egulias/EmailValidator/issues",
  1603. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1604. },
  1605. "funding": [
  1606. {
  1607. "url": "https://github.com/egulias",
  1608. "type": "github"
  1609. }
  1610. ],
  1611. "time": "2023-01-14T14:17:03+00:00"
  1612. },
  1613. {
  1614. "name": "friendsofphp/proxy-manager-lts",
  1615. "version": "v1.0.16",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1619. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1624. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "laminas/laminas-code": "~3.4.1|^4.0",
  1629. "php": ">=7.1",
  1630. "symfony/filesystem": "^4.4.17|^5.0|^6.0|^7.0"
  1631. },
  1632. "conflict": {
  1633. "laminas/laminas-stdlib": "<3.2.1",
  1634. "zendframework/zend-stdlib": "<3.2.1"
  1635. },
  1636. "replace": {
  1637. "ocramius/proxy-manager": "^2.1"
  1638. },
  1639. "require-dev": {
  1640. "ext-phar": "*",
  1641. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
  1642. },
  1643. "type": "library",
  1644. "extra": {
  1645. "thanks": {
  1646. "name": "ocramius/proxy-manager",
  1647. "url": "https://github.com/Ocramius/ProxyManager"
  1648. }
  1649. },
  1650. "autoload": {
  1651. "psr-4": {
  1652. "ProxyManager\\": "src/ProxyManager"
  1653. }
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "MIT"
  1658. ],
  1659. "authors": [
  1660. {
  1661. "name": "Marco Pivetta",
  1662. "email": "ocramius@gmail.com",
  1663. "homepage": "https://ocramius.github.io/"
  1664. },
  1665. {
  1666. "name": "Nicolas Grekas",
  1667. "email": "p@tchwork.com"
  1668. }
  1669. ],
  1670. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1671. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1672. "keywords": [
  1673. "aop",
  1674. "lazy loading",
  1675. "proxy",
  1676. "proxy pattern",
  1677. "service proxies"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1681. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.16"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://github.com/Ocramius",
  1686. "type": "github"
  1687. },
  1688. {
  1689. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1690. "type": "tidelift"
  1691. }
  1692. ],
  1693. "time": "2023-05-24T07:17:17+00:00"
  1694. },
  1695. {
  1696. "name": "laminas/laminas-code",
  1697. "version": "4.11.0",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/laminas/laminas-code.git",
  1701. "reference": "169123b3ede20a9193480c53de2a8194f8c073ec"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/169123b3ede20a9193480c53de2a8194f8c073ec",
  1706. "reference": "169123b3ede20a9193480c53de2a8194f8c073ec",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "php": "~8.1.0 || ~8.2.0"
  1711. },
  1712. "require-dev": {
  1713. "doctrine/annotations": "^2.0.0",
  1714. "ext-phar": "*",
  1715. "laminas/laminas-coding-standard": "^2.3.0",
  1716. "laminas/laminas-stdlib": "^3.6.1",
  1717. "phpunit/phpunit": "^10.0.9",
  1718. "psalm/plugin-phpunit": "^0.18.4",
  1719. "vimeo/psalm": "^5.7.1"
  1720. },
  1721. "suggest": {
  1722. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1723. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1724. },
  1725. "type": "library",
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Laminas\\Code\\": "src/"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1736. "homepage": "https://laminas.dev",
  1737. "keywords": [
  1738. "code",
  1739. "laminas",
  1740. "laminasframework"
  1741. ],
  1742. "support": {
  1743. "chat": "https://laminas.dev/chat",
  1744. "docs": "https://docs.laminas.dev/laminas-code/",
  1745. "forum": "https://discourse.laminas.dev",
  1746. "issues": "https://github.com/laminas/laminas-code/issues",
  1747. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1748. "source": "https://github.com/laminas/laminas-code"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1753. "type": "community_bridge"
  1754. }
  1755. ],
  1756. "time": "2023-05-14T12:05:38+00:00"
  1757. },
  1758. {
  1759. "name": "league/commonmark",
  1760. "version": "2.4.0",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/thephpleague/commonmark.git",
  1764. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1769. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "ext-mbstring": "*",
  1774. "league/config": "^1.1.1",
  1775. "php": "^7.4 || ^8.0",
  1776. "psr/event-dispatcher": "^1.0",
  1777. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1778. "symfony/polyfill-php80": "^1.16"
  1779. },
  1780. "require-dev": {
  1781. "cebe/markdown": "^1.0",
  1782. "commonmark/cmark": "0.30.0",
  1783. "commonmark/commonmark.js": "0.30.0",
  1784. "composer/package-versions-deprecated": "^1.8",
  1785. "embed/embed": "^4.4",
  1786. "erusev/parsedown": "^1.0",
  1787. "ext-json": "*",
  1788. "github/gfm": "0.29.0",
  1789. "michelf/php-markdown": "^1.4 || ^2.0",
  1790. "nyholm/psr7": "^1.5",
  1791. "phpstan/phpstan": "^1.8.2",
  1792. "phpunit/phpunit": "^9.5.21",
  1793. "scrutinizer/ocular": "^1.8.1",
  1794. "symfony/finder": "^5.3 | ^6.0",
  1795. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1796. "unleashedtech/php-coding-standard": "^3.1.1",
  1797. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1798. },
  1799. "suggest": {
  1800. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1801. },
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-main": "2.5-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "psr-4": {
  1810. "League\\CommonMark\\": "src"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "BSD-3-Clause"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Colin O'Dell",
  1820. "email": "colinodell@gmail.com",
  1821. "homepage": "https://www.colinodell.com",
  1822. "role": "Lead Developer"
  1823. }
  1824. ],
  1825. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1826. "homepage": "https://commonmark.thephpleague.com",
  1827. "keywords": [
  1828. "commonmark",
  1829. "flavored",
  1830. "gfm",
  1831. "github",
  1832. "github-flavored",
  1833. "markdown",
  1834. "md",
  1835. "parser"
  1836. ],
  1837. "support": {
  1838. "docs": "https://commonmark.thephpleague.com/",
  1839. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1840. "issues": "https://github.com/thephpleague/commonmark/issues",
  1841. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1842. "source": "https://github.com/thephpleague/commonmark"
  1843. },
  1844. "funding": [
  1845. {
  1846. "url": "https://www.colinodell.com/sponsor",
  1847. "type": "custom"
  1848. },
  1849. {
  1850. "url": "https://www.paypal.me/colinpodell/10.00",
  1851. "type": "custom"
  1852. },
  1853. {
  1854. "url": "https://github.com/colinodell",
  1855. "type": "github"
  1856. },
  1857. {
  1858. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1859. "type": "tidelift"
  1860. }
  1861. ],
  1862. "time": "2023-03-24T15:16:10+00:00"
  1863. },
  1864. {
  1865. "name": "league/config",
  1866. "version": "v1.2.0",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/thephpleague/config.git",
  1870. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1875. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1876. "shasum": ""
  1877. },
  1878. "require": {
  1879. "dflydev/dot-access-data": "^3.0.1",
  1880. "nette/schema": "^1.2",
  1881. "php": "^7.4 || ^8.0"
  1882. },
  1883. "require-dev": {
  1884. "phpstan/phpstan": "^1.8.2",
  1885. "phpunit/phpunit": "^9.5.5",
  1886. "scrutinizer/ocular": "^1.8.1",
  1887. "unleashedtech/php-coding-standard": "^3.1",
  1888. "vimeo/psalm": "^4.7.3"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "branch-alias": {
  1893. "dev-main": "1.2-dev"
  1894. }
  1895. },
  1896. "autoload": {
  1897. "psr-4": {
  1898. "League\\Config\\": "src"
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "BSD-3-Clause"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "Colin O'Dell",
  1908. "email": "colinodell@gmail.com",
  1909. "homepage": "https://www.colinodell.com",
  1910. "role": "Lead Developer"
  1911. }
  1912. ],
  1913. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1914. "homepage": "https://config.thephpleague.com",
  1915. "keywords": [
  1916. "array",
  1917. "config",
  1918. "configuration",
  1919. "dot",
  1920. "dot-access",
  1921. "nested",
  1922. "schema"
  1923. ],
  1924. "support": {
  1925. "docs": "https://config.thephpleague.com/",
  1926. "issues": "https://github.com/thephpleague/config/issues",
  1927. "rss": "https://github.com/thephpleague/config/releases.atom",
  1928. "source": "https://github.com/thephpleague/config"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://www.colinodell.com/sponsor",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://www.paypal.me/colinpodell/10.00",
  1937. "type": "custom"
  1938. },
  1939. {
  1940. "url": "https://github.com/colinodell",
  1941. "type": "github"
  1942. }
  1943. ],
  1944. "time": "2022-12-11T20:36:23+00:00"
  1945. },
  1946. {
  1947. "name": "league/uri",
  1948. "version": "6.8.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/thephpleague/uri.git",
  1952. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1957. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "ext-json": "*",
  1962. "league/uri-interfaces": "^2.3",
  1963. "php": "^8.1",
  1964. "psr/http-message": "^1.0.1"
  1965. },
  1966. "conflict": {
  1967. "league/uri-schemes": "^1.0"
  1968. },
  1969. "require-dev": {
  1970. "friendsofphp/php-cs-fixer": "^v3.9.5",
  1971. "nyholm/psr7": "^1.5.1",
  1972. "php-http/psr7-integration-tests": "^1.1.1",
  1973. "phpbench/phpbench": "^1.2.6",
  1974. "phpstan/phpstan": "^1.8.5",
  1975. "phpstan/phpstan-deprecation-rules": "^1.0",
  1976. "phpstan/phpstan-phpunit": "^1.1.1",
  1977. "phpstan/phpstan-strict-rules": "^1.4.3",
  1978. "phpunit/phpunit": "^9.5.24",
  1979. "psr/http-factory": "^1.0.1"
  1980. },
  1981. "suggest": {
  1982. "ext-fileinfo": "Needed to create Data URI from a filepath",
  1983. "ext-intl": "Needed to improve host validation",
  1984. "league/uri-components": "Needed to easily manipulate URI objects",
  1985. "psr/http-factory": "Needed to use the URI factory"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "6.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "League\\Uri\\": "src"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Ignace Nyamagana Butera",
  2005. "email": "nyamsprod@gmail.com",
  2006. "homepage": "https://nyamsprod.com"
  2007. }
  2008. ],
  2009. "description": "URI manipulation library",
  2010. "homepage": "https://uri.thephpleague.com",
  2011. "keywords": [
  2012. "data-uri",
  2013. "file-uri",
  2014. "ftp",
  2015. "hostname",
  2016. "http",
  2017. "https",
  2018. "middleware",
  2019. "parse_str",
  2020. "parse_url",
  2021. "psr-7",
  2022. "query-string",
  2023. "querystring",
  2024. "rfc3986",
  2025. "rfc3987",
  2026. "rfc6570",
  2027. "uri",
  2028. "uri-template",
  2029. "url",
  2030. "ws"
  2031. ],
  2032. "support": {
  2033. "docs": "https://uri.thephpleague.com",
  2034. "forum": "https://thephpleague.slack.com",
  2035. "issues": "https://github.com/thephpleague/uri/issues",
  2036. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2037. },
  2038. "funding": [
  2039. {
  2040. "url": "https://github.com/sponsors/nyamsprod",
  2041. "type": "github"
  2042. }
  2043. ],
  2044. "time": "2022-09-13T19:58:47+00:00"
  2045. },
  2046. {
  2047. "name": "league/uri-interfaces",
  2048. "version": "2.3.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2052. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2057. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "ext-json": "*",
  2062. "php": "^7.2 || ^8.0"
  2063. },
  2064. "require-dev": {
  2065. "friendsofphp/php-cs-fixer": "^2.19",
  2066. "phpstan/phpstan": "^0.12.90",
  2067. "phpstan/phpstan-phpunit": "^0.12.19",
  2068. "phpstan/phpstan-strict-rules": "^0.12.9",
  2069. "phpunit/phpunit": "^8.5.15 || ^9.5"
  2070. },
  2071. "suggest": {
  2072. "ext-intl": "to use the IDNA feature",
  2073. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  2074. },
  2075. "type": "library",
  2076. "extra": {
  2077. "branch-alias": {
  2078. "dev-master": "2.x-dev"
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "League\\Uri\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Ignace Nyamagana Butera",
  2093. "email": "nyamsprod@gmail.com",
  2094. "homepage": "https://nyamsprod.com"
  2095. }
  2096. ],
  2097. "description": "Common interface for URI representation",
  2098. "homepage": "http://github.com/thephpleague/uri-interfaces",
  2099. "keywords": [
  2100. "rfc3986",
  2101. "rfc3987",
  2102. "uri",
  2103. "url"
  2104. ],
  2105. "support": {
  2106. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  2107. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  2108. },
  2109. "funding": [
  2110. {
  2111. "url": "https://github.com/sponsors/nyamsprod",
  2112. "type": "github"
  2113. }
  2114. ],
  2115. "time": "2021-06-28T04:27:21+00:00"
  2116. },
  2117. {
  2118. "name": "masterminds/html5",
  2119. "version": "2.8.0",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://github.com/Masterminds/html5-php.git",
  2123. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2128. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2129. "shasum": ""
  2130. },
  2131. "require": {
  2132. "ext-dom": "*",
  2133. "php": ">=5.3.0"
  2134. },
  2135. "require-dev": {
  2136. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2137. },
  2138. "type": "library",
  2139. "extra": {
  2140. "branch-alias": {
  2141. "dev-master": "2.7-dev"
  2142. }
  2143. },
  2144. "autoload": {
  2145. "psr-4": {
  2146. "Masterminds\\": "src"
  2147. }
  2148. },
  2149. "notification-url": "https://packagist.org/downloads/",
  2150. "license": [
  2151. "MIT"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Matt Butcher",
  2156. "email": "technosophos@gmail.com"
  2157. },
  2158. {
  2159. "name": "Matt Farina",
  2160. "email": "matt@mattfarina.com"
  2161. },
  2162. {
  2163. "name": "Asmir Mustafic",
  2164. "email": "goetas@gmail.com"
  2165. }
  2166. ],
  2167. "description": "An HTML5 parser and serializer.",
  2168. "homepage": "http://masterminds.github.io/html5-php",
  2169. "keywords": [
  2170. "HTML5",
  2171. "dom",
  2172. "html",
  2173. "parser",
  2174. "querypath",
  2175. "serializer",
  2176. "xml"
  2177. ],
  2178. "support": {
  2179. "issues": "https://github.com/Masterminds/html5-php/issues",
  2180. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  2181. },
  2182. "time": "2023-04-26T07:27:39+00:00"
  2183. },
  2184. {
  2185. "name": "monolog/monolog",
  2186. "version": "3.4.0",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/Seldaek/monolog.git",
  2190. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  2195. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "php": ">=8.1",
  2200. "psr/log": "^2.0 || ^3.0"
  2201. },
  2202. "provide": {
  2203. "psr/log-implementation": "3.0.0"
  2204. },
  2205. "require-dev": {
  2206. "aws/aws-sdk-php": "^3.0",
  2207. "doctrine/couchdb": "~1.0@dev",
  2208. "elasticsearch/elasticsearch": "^7 || ^8",
  2209. "ext-json": "*",
  2210. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2211. "guzzlehttp/guzzle": "^7.4.5",
  2212. "guzzlehttp/psr7": "^2.2",
  2213. "mongodb/mongodb": "^1.8",
  2214. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2215. "phpstan/phpstan": "^1.9",
  2216. "phpstan/phpstan-deprecation-rules": "^1.0",
  2217. "phpstan/phpstan-strict-rules": "^1.4",
  2218. "phpunit/phpunit": "^10.1",
  2219. "predis/predis": "^1.1 || ^2",
  2220. "ruflin/elastica": "^7",
  2221. "symfony/mailer": "^5.4 || ^6",
  2222. "symfony/mime": "^5.4 || ^6"
  2223. },
  2224. "suggest": {
  2225. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2226. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2227. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2228. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2229. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2230. "ext-mbstring": "Allow to work properly with unicode symbols",
  2231. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2232. "ext-openssl": "Required to send log messages using SSL",
  2233. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2234. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2235. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2236. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2237. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2238. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2239. },
  2240. "type": "library",
  2241. "extra": {
  2242. "branch-alias": {
  2243. "dev-main": "3.x-dev"
  2244. }
  2245. },
  2246. "autoload": {
  2247. "psr-4": {
  2248. "Monolog\\": "src/Monolog"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Jordi Boggiano",
  2258. "email": "j.boggiano@seld.be",
  2259. "homepage": "https://seld.be"
  2260. }
  2261. ],
  2262. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2263. "homepage": "https://github.com/Seldaek/monolog",
  2264. "keywords": [
  2265. "log",
  2266. "logging",
  2267. "psr-3"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/Seldaek/monolog/issues",
  2271. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  2272. },
  2273. "funding": [
  2274. {
  2275. "url": "https://github.com/Seldaek",
  2276. "type": "github"
  2277. },
  2278. {
  2279. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2280. "type": "tidelift"
  2281. }
  2282. ],
  2283. "time": "2023-06-21T08:46:11+00:00"
  2284. },
  2285. {
  2286. "name": "nette/schema",
  2287. "version": "v1.2.3",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://github.com/nette/schema.git",
  2291. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2296. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2297. "shasum": ""
  2298. },
  2299. "require": {
  2300. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2301. "php": ">=7.1 <8.3"
  2302. },
  2303. "require-dev": {
  2304. "nette/tester": "^2.3 || ^2.4",
  2305. "phpstan/phpstan-nette": "^1.0",
  2306. "tracy/tracy": "^2.7"
  2307. },
  2308. "type": "library",
  2309. "extra": {
  2310. "branch-alias": {
  2311. "dev-master": "1.2-dev"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "classmap": [
  2316. "src/"
  2317. ]
  2318. },
  2319. "notification-url": "https://packagist.org/downloads/",
  2320. "license": [
  2321. "BSD-3-Clause",
  2322. "GPL-2.0-only",
  2323. "GPL-3.0-only"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "David Grudl",
  2328. "homepage": "https://davidgrudl.com"
  2329. },
  2330. {
  2331. "name": "Nette Community",
  2332. "homepage": "https://nette.org/contributors"
  2333. }
  2334. ],
  2335. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2336. "homepage": "https://nette.org",
  2337. "keywords": [
  2338. "config",
  2339. "nette"
  2340. ],
  2341. "support": {
  2342. "issues": "https://github.com/nette/schema/issues",
  2343. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2344. },
  2345. "time": "2022-10-13T01:24:26+00:00"
  2346. },
  2347. {
  2348. "name": "nette/utils",
  2349. "version": "v4.0.0",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/nette/utils.git",
  2353. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2358. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "php": ">=8.0 <8.3"
  2363. },
  2364. "conflict": {
  2365. "nette/finder": "<3",
  2366. "nette/schema": "<1.2.2"
  2367. },
  2368. "require-dev": {
  2369. "jetbrains/phpstorm-attributes": "dev-master",
  2370. "nette/tester": "^2.4",
  2371. "phpstan/phpstan": "^1.0",
  2372. "tracy/tracy": "^2.9"
  2373. },
  2374. "suggest": {
  2375. "ext-gd": "to use Image",
  2376. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2377. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2378. "ext-json": "to use Nette\\Utils\\Json",
  2379. "ext-mbstring": "to use Strings::lower() etc...",
  2380. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2381. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "4.0-dev"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "classmap": [
  2391. "src/"
  2392. ]
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "BSD-3-Clause",
  2397. "GPL-2.0-only",
  2398. "GPL-3.0-only"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "David Grudl",
  2403. "homepage": "https://davidgrudl.com"
  2404. },
  2405. {
  2406. "name": "Nette Community",
  2407. "homepage": "https://nette.org/contributors"
  2408. }
  2409. ],
  2410. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2411. "homepage": "https://nette.org",
  2412. "keywords": [
  2413. "array",
  2414. "core",
  2415. "datetime",
  2416. "images",
  2417. "json",
  2418. "nette",
  2419. "paginator",
  2420. "password",
  2421. "slugify",
  2422. "string",
  2423. "unicode",
  2424. "utf-8",
  2425. "utility",
  2426. "validation"
  2427. ],
  2428. "support": {
  2429. "issues": "https://github.com/nette/utils/issues",
  2430. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2431. },
  2432. "time": "2023-02-02T10:41:53+00:00"
  2433. },
  2434. {
  2435. "name": "phpdocumentor/reflection-common",
  2436. "version": "2.2.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2440. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2445. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "php": "^7.2 || ^8.0"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-2.x": "2.x-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "psr-4": {
  2459. "phpDocumentor\\Reflection\\": "src/"
  2460. }
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "MIT"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "Jaap van Otterdijk",
  2469. "email": "opensource@ijaap.nl"
  2470. }
  2471. ],
  2472. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2473. "homepage": "http://www.phpdoc.org",
  2474. "keywords": [
  2475. "FQSEN",
  2476. "phpDocumentor",
  2477. "phpdoc",
  2478. "reflection",
  2479. "static analysis"
  2480. ],
  2481. "support": {
  2482. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2483. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2484. },
  2485. "time": "2020-06-27T09:03:43+00:00"
  2486. },
  2487. {
  2488. "name": "phpdocumentor/reflection-docblock",
  2489. "version": "5.3.0",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2493. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2498. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2499. "shasum": ""
  2500. },
  2501. "require": {
  2502. "ext-filter": "*",
  2503. "php": "^7.2 || ^8.0",
  2504. "phpdocumentor/reflection-common": "^2.2",
  2505. "phpdocumentor/type-resolver": "^1.3",
  2506. "webmozart/assert": "^1.9.1"
  2507. },
  2508. "require-dev": {
  2509. "mockery/mockery": "~1.3.2",
  2510. "psalm/phar": "^4.8"
  2511. },
  2512. "type": "library",
  2513. "extra": {
  2514. "branch-alias": {
  2515. "dev-master": "5.x-dev"
  2516. }
  2517. },
  2518. "autoload": {
  2519. "psr-4": {
  2520. "phpDocumentor\\Reflection\\": "src"
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "Mike van Riel",
  2530. "email": "me@mikevanriel.com"
  2531. },
  2532. {
  2533. "name": "Jaap van Otterdijk",
  2534. "email": "account@ijaap.nl"
  2535. }
  2536. ],
  2537. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2538. "support": {
  2539. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2540. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2541. },
  2542. "time": "2021-10-19T17:43:47+00:00"
  2543. },
  2544. {
  2545. "name": "phpdocumentor/type-resolver",
  2546. "version": "1.7.2",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2550. "reference": "b2fe4d22a5426f38e014855322200b97b5362c0d"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b2fe4d22a5426f38e014855322200b97b5362c0d",
  2555. "reference": "b2fe4d22a5426f38e014855322200b97b5362c0d",
  2556. "shasum": ""
  2557. },
  2558. "require": {
  2559. "doctrine/deprecations": "^1.0",
  2560. "php": "^7.4 || ^8.0",
  2561. "phpdocumentor/reflection-common": "^2.0",
  2562. "phpstan/phpdoc-parser": "^1.13"
  2563. },
  2564. "require-dev": {
  2565. "ext-tokenizer": "*",
  2566. "phpbench/phpbench": "^1.2",
  2567. "phpstan/extension-installer": "^1.1",
  2568. "phpstan/phpstan": "^1.8",
  2569. "phpstan/phpstan-phpunit": "^1.1",
  2570. "phpunit/phpunit": "^9.5",
  2571. "rector/rector": "^0.13.9",
  2572. "vimeo/psalm": "^4.25"
  2573. },
  2574. "type": "library",
  2575. "extra": {
  2576. "branch-alias": {
  2577. "dev-1.x": "1.x-dev"
  2578. }
  2579. },
  2580. "autoload": {
  2581. "psr-4": {
  2582. "phpDocumentor\\Reflection\\": "src"
  2583. }
  2584. },
  2585. "notification-url": "https://packagist.org/downloads/",
  2586. "license": [
  2587. "MIT"
  2588. ],
  2589. "authors": [
  2590. {
  2591. "name": "Mike van Riel",
  2592. "email": "me@mikevanriel.com"
  2593. }
  2594. ],
  2595. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2596. "support": {
  2597. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2598. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.2"
  2599. },
  2600. "time": "2023-05-30T18:13:47+00:00"
  2601. },
  2602. {
  2603. "name": "phpstan/phpdoc-parser",
  2604. "version": "1.22.1",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2608. "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/65c39594fbd8c67abfc68bb323f86447bab79cc0",
  2613. "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "php": "^7.2 || ^8.0"
  2618. },
  2619. "require-dev": {
  2620. "doctrine/annotations": "^2.0",
  2621. "nikic/php-parser": "^4.15",
  2622. "php-parallel-lint/php-parallel-lint": "^1.2",
  2623. "phpstan/extension-installer": "^1.0",
  2624. "phpstan/phpstan": "^1.5",
  2625. "phpstan/phpstan-phpunit": "^1.1",
  2626. "phpstan/phpstan-strict-rules": "^1.0",
  2627. "phpunit/phpunit": "^9.5",
  2628. "symfony/process": "^5.2"
  2629. },
  2630. "type": "library",
  2631. "autoload": {
  2632. "psr-4": {
  2633. "PHPStan\\PhpDocParser\\": [
  2634. "src/"
  2635. ]
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2643. "support": {
  2644. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2645. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.22.1"
  2646. },
  2647. "time": "2023-06-29T20:46:06+00:00"
  2648. },
  2649. {
  2650. "name": "psr/cache",
  2651. "version": "3.0.0",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://github.com/php-fig/cache.git",
  2655. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2660. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2661. "shasum": ""
  2662. },
  2663. "require": {
  2664. "php": ">=8.0.0"
  2665. },
  2666. "type": "library",
  2667. "extra": {
  2668. "branch-alias": {
  2669. "dev-master": "1.0.x-dev"
  2670. }
  2671. },
  2672. "autoload": {
  2673. "psr-4": {
  2674. "Psr\\Cache\\": "src/"
  2675. }
  2676. },
  2677. "notification-url": "https://packagist.org/downloads/",
  2678. "license": [
  2679. "MIT"
  2680. ],
  2681. "authors": [
  2682. {
  2683. "name": "PHP-FIG",
  2684. "homepage": "https://www.php-fig.org/"
  2685. }
  2686. ],
  2687. "description": "Common interface for caching libraries",
  2688. "keywords": [
  2689. "cache",
  2690. "psr",
  2691. "psr-6"
  2692. ],
  2693. "support": {
  2694. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2695. },
  2696. "time": "2021-02-03T23:26:27+00:00"
  2697. },
  2698. {
  2699. "name": "psr/clock",
  2700. "version": "1.0.0",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://github.com/php-fig/clock.git",
  2704. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2709. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2710. "shasum": ""
  2711. },
  2712. "require": {
  2713. "php": "^7.0 || ^8.0"
  2714. },
  2715. "type": "library",
  2716. "autoload": {
  2717. "psr-4": {
  2718. "Psr\\Clock\\": "src/"
  2719. }
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "PHP-FIG",
  2728. "homepage": "https://www.php-fig.org/"
  2729. }
  2730. ],
  2731. "description": "Common interface for reading the clock.",
  2732. "homepage": "https://github.com/php-fig/clock",
  2733. "keywords": [
  2734. "clock",
  2735. "now",
  2736. "psr",
  2737. "psr-20",
  2738. "time"
  2739. ],
  2740. "support": {
  2741. "issues": "https://github.com/php-fig/clock/issues",
  2742. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2743. },
  2744. "time": "2022-11-25T14:36:26+00:00"
  2745. },
  2746. {
  2747. "name": "psr/container",
  2748. "version": "2.0.2",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/php-fig/container.git",
  2752. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2757. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "php": ">=7.4.0"
  2762. },
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-master": "2.0.x-dev"
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Psr\\Container\\": "src/"
  2772. }
  2773. },
  2774. "notification-url": "https://packagist.org/downloads/",
  2775. "license": [
  2776. "MIT"
  2777. ],
  2778. "authors": [
  2779. {
  2780. "name": "PHP-FIG",
  2781. "homepage": "https://www.php-fig.org/"
  2782. }
  2783. ],
  2784. "description": "Common Container Interface (PHP FIG PSR-11)",
  2785. "homepage": "https://github.com/php-fig/container",
  2786. "keywords": [
  2787. "PSR-11",
  2788. "container",
  2789. "container-interface",
  2790. "container-interop",
  2791. "psr"
  2792. ],
  2793. "support": {
  2794. "issues": "https://github.com/php-fig/container/issues",
  2795. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2796. },
  2797. "time": "2021-11-05T16:47:00+00:00"
  2798. },
  2799. {
  2800. "name": "psr/event-dispatcher",
  2801. "version": "1.0.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://github.com/php-fig/event-dispatcher.git",
  2805. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2810. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2811. "shasum": ""
  2812. },
  2813. "require": {
  2814. "php": ">=7.2.0"
  2815. },
  2816. "type": "library",
  2817. "extra": {
  2818. "branch-alias": {
  2819. "dev-master": "1.0.x-dev"
  2820. }
  2821. },
  2822. "autoload": {
  2823. "psr-4": {
  2824. "Psr\\EventDispatcher\\": "src/"
  2825. }
  2826. },
  2827. "notification-url": "https://packagist.org/downloads/",
  2828. "license": [
  2829. "MIT"
  2830. ],
  2831. "authors": [
  2832. {
  2833. "name": "PHP-FIG",
  2834. "homepage": "http://www.php-fig.org/"
  2835. }
  2836. ],
  2837. "description": "Standard interfaces for event handling.",
  2838. "keywords": [
  2839. "events",
  2840. "psr",
  2841. "psr-14"
  2842. ],
  2843. "support": {
  2844. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2845. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2846. },
  2847. "time": "2019-01-08T18:20:26+00:00"
  2848. },
  2849. {
  2850. "name": "psr/http-message",
  2851. "version": "1.1",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/php-fig/http-message.git",
  2855. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2860. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2861. "shasum": ""
  2862. },
  2863. "require": {
  2864. "php": "^7.2 || ^8.0"
  2865. },
  2866. "type": "library",
  2867. "extra": {
  2868. "branch-alias": {
  2869. "dev-master": "1.1.x-dev"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Psr\\Http\\Message\\": "src/"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "PHP-FIG",
  2884. "homepage": "http://www.php-fig.org/"
  2885. }
  2886. ],
  2887. "description": "Common interface for HTTP messages",
  2888. "homepage": "https://github.com/php-fig/http-message",
  2889. "keywords": [
  2890. "http",
  2891. "http-message",
  2892. "psr",
  2893. "psr-7",
  2894. "request",
  2895. "response"
  2896. ],
  2897. "support": {
  2898. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2899. },
  2900. "time": "2023-04-04T09:50:52+00:00"
  2901. },
  2902. {
  2903. "name": "psr/link",
  2904. "version": "2.0.1",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/php-fig/link.git",
  2908. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2913. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "php": ">=8.0.0"
  2918. },
  2919. "suggest": {
  2920. "fig/link-util": "Provides some useful PSR-13 utilities"
  2921. },
  2922. "type": "library",
  2923. "extra": {
  2924. "branch-alias": {
  2925. "dev-master": "2.0.x-dev"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Psr\\Link\\": "src/"
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "PHP-FIG",
  2940. "homepage": "http://www.php-fig.org/"
  2941. }
  2942. ],
  2943. "description": "Common interfaces for HTTP links",
  2944. "homepage": "https://github.com/php-fig/link",
  2945. "keywords": [
  2946. "http",
  2947. "http-link",
  2948. "link",
  2949. "psr",
  2950. "psr-13",
  2951. "rest"
  2952. ],
  2953. "support": {
  2954. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2955. },
  2956. "time": "2021-03-11T23:00:27+00:00"
  2957. },
  2958. {
  2959. "name": "psr/log",
  2960. "version": "3.0.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/php-fig/log.git",
  2964. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2969. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "php": ">=8.0.0"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-master": "3.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Psr\\Log\\": "src"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "PHP-FIG",
  2993. "homepage": "https://www.php-fig.org/"
  2994. }
  2995. ],
  2996. "description": "Common interface for logging libraries",
  2997. "homepage": "https://github.com/php-fig/log",
  2998. "keywords": [
  2999. "log",
  3000. "psr",
  3001. "psr-3"
  3002. ],
  3003. "support": {
  3004. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3005. },
  3006. "time": "2021-07-14T16:46:02+00:00"
  3007. },
  3008. {
  3009. "name": "sensio/framework-extra-bundle",
  3010. "version": "v6.2.10",
  3011. "source": {
  3012. "type": "git",
  3013. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3014. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f"
  3015. },
  3016. "dist": {
  3017. "type": "zip",
  3018. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/2f886f4b31f23c76496901acaedfedb6936ba61f",
  3019. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f",
  3020. "shasum": ""
  3021. },
  3022. "require": {
  3023. "doctrine/annotations": "^1.0|^2.0",
  3024. "php": ">=7.2.5",
  3025. "symfony/config": "^4.4|^5.0|^6.0",
  3026. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3027. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  3028. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  3029. },
  3030. "conflict": {
  3031. "doctrine/doctrine-cache-bundle": "<1.3.1",
  3032. "doctrine/persistence": "<1.3"
  3033. },
  3034. "require-dev": {
  3035. "doctrine/dbal": "^2.10|^3.0",
  3036. "doctrine/doctrine-bundle": "^1.11|^2.0",
  3037. "doctrine/orm": "^2.5",
  3038. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  3039. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  3040. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3041. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3042. "symfony/finder": "^4.4|^5.0|^6.0",
  3043. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  3044. "symfony/monolog-bundle": "^3.2",
  3045. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  3046. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  3047. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  3048. "symfony/yaml": "^4.4|^5.0|^6.0",
  3049. "twig/twig": "^1.34|^2.4|^3.0"
  3050. },
  3051. "type": "symfony-bundle",
  3052. "extra": {
  3053. "branch-alias": {
  3054. "dev-master": "6.1.x-dev"
  3055. }
  3056. },
  3057. "autoload": {
  3058. "psr-4": {
  3059. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3060. },
  3061. "exclude-from-classmap": [
  3062. "/tests/"
  3063. ]
  3064. },
  3065. "notification-url": "https://packagist.org/downloads/",
  3066. "license": [
  3067. "MIT"
  3068. ],
  3069. "authors": [
  3070. {
  3071. "name": "Fabien Potencier",
  3072. "email": "fabien@symfony.com"
  3073. }
  3074. ],
  3075. "description": "This bundle provides a way to configure your controllers with annotations",
  3076. "keywords": [
  3077. "annotations",
  3078. "controllers"
  3079. ],
  3080. "support": {
  3081. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.10"
  3082. },
  3083. "abandoned": "Symfony",
  3084. "time": "2023-02-24T14:57:12+00:00"
  3085. },
  3086. {
  3087. "name": "symfony/apache-pack",
  3088. "version": "v1.0.1",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/symfony/apache-pack.git",
  3092. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3097. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3098. "shasum": ""
  3099. },
  3100. "type": "symfony-pack",
  3101. "notification-url": "https://packagist.org/downloads/",
  3102. "license": [
  3103. "MIT"
  3104. ],
  3105. "description": "A pack for Apache support in Symfony",
  3106. "support": {
  3107. "issues": "https://github.com/symfony/apache-pack/issues",
  3108. "source": "https://github.com/symfony/apache-pack/tree/master"
  3109. },
  3110. "time": "2017-12-12T01:46:35+00:00"
  3111. },
  3112. {
  3113. "name": "symfony/asset",
  3114. "version": "v6.3.0",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/symfony/asset.git",
  3118. "reference": "b77a4cc8e266b7e0db688de740f9ee7253aa411c"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/symfony/asset/zipball/b77a4cc8e266b7e0db688de740f9ee7253aa411c",
  3123. "reference": "b77a4cc8e266b7e0db688de740f9ee7253aa411c",
  3124. "shasum": ""
  3125. },
  3126. "require": {
  3127. "php": ">=8.1"
  3128. },
  3129. "conflict": {
  3130. "symfony/http-foundation": "<5.4"
  3131. },
  3132. "require-dev": {
  3133. "symfony/http-client": "^5.4|^6.0",
  3134. "symfony/http-foundation": "^5.4|^6.0",
  3135. "symfony/http-kernel": "^5.4|^6.0"
  3136. },
  3137. "type": "library",
  3138. "autoload": {
  3139. "psr-4": {
  3140. "Symfony\\Component\\Asset\\": ""
  3141. },
  3142. "exclude-from-classmap": [
  3143. "/Tests/"
  3144. ]
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Fabien Potencier",
  3153. "email": "fabien@symfony.com"
  3154. },
  3155. {
  3156. "name": "Symfony Community",
  3157. "homepage": "https://symfony.com/contributors"
  3158. }
  3159. ],
  3160. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3161. "homepage": "https://symfony.com",
  3162. "support": {
  3163. "source": "https://github.com/symfony/asset/tree/v6.3.0"
  3164. },
  3165. "funding": [
  3166. {
  3167. "url": "https://symfony.com/sponsor",
  3168. "type": "custom"
  3169. },
  3170. {
  3171. "url": "https://github.com/fabpot",
  3172. "type": "github"
  3173. },
  3174. {
  3175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3176. "type": "tidelift"
  3177. }
  3178. ],
  3179. "time": "2023-04-21T14:41:17+00:00"
  3180. },
  3181. {
  3182. "name": "symfony/cache",
  3183. "version": "v6.3.1",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/symfony/cache.git",
  3187. "reference": "52cff7608ef6e38376ac11bd1fbb0a220107f066"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/symfony/cache/zipball/52cff7608ef6e38376ac11bd1fbb0a220107f066",
  3192. "reference": "52cff7608ef6e38376ac11bd1fbb0a220107f066",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "php": ">=8.1",
  3197. "psr/cache": "^2.0|^3.0",
  3198. "psr/log": "^1.1|^2|^3",
  3199. "symfony/cache-contracts": "^2.5|^3",
  3200. "symfony/service-contracts": "^2.5|^3",
  3201. "symfony/var-exporter": "^6.2.10"
  3202. },
  3203. "conflict": {
  3204. "doctrine/dbal": "<2.13.1",
  3205. "symfony/dependency-injection": "<5.4",
  3206. "symfony/http-kernel": "<5.4",
  3207. "symfony/var-dumper": "<5.4"
  3208. },
  3209. "provide": {
  3210. "psr/cache-implementation": "2.0|3.0",
  3211. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3212. "symfony/cache-implementation": "1.1|2.0|3.0"
  3213. },
  3214. "require-dev": {
  3215. "cache/integration-tests": "dev-master",
  3216. "doctrine/dbal": "^2.13.1|^3.0",
  3217. "predis/predis": "^1.1|^2.0",
  3218. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3219. "symfony/config": "^5.4|^6.0",
  3220. "symfony/dependency-injection": "^5.4|^6.0",
  3221. "symfony/filesystem": "^5.4|^6.0",
  3222. "symfony/http-kernel": "^5.4|^6.0",
  3223. "symfony/messenger": "^5.4|^6.0",
  3224. "symfony/var-dumper": "^5.4|^6.0"
  3225. },
  3226. "type": "library",
  3227. "autoload": {
  3228. "psr-4": {
  3229. "Symfony\\Component\\Cache\\": ""
  3230. },
  3231. "classmap": [
  3232. "Traits/ValueWrapper.php"
  3233. ],
  3234. "exclude-from-classmap": [
  3235. "/Tests/"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "MIT"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Nicolas Grekas",
  3245. "email": "p@tchwork.com"
  3246. },
  3247. {
  3248. "name": "Symfony Community",
  3249. "homepage": "https://symfony.com/contributors"
  3250. }
  3251. ],
  3252. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3253. "homepage": "https://symfony.com",
  3254. "keywords": [
  3255. "caching",
  3256. "psr6"
  3257. ],
  3258. "support": {
  3259. "source": "https://github.com/symfony/cache/tree/v6.3.1"
  3260. },
  3261. "funding": [
  3262. {
  3263. "url": "https://symfony.com/sponsor",
  3264. "type": "custom"
  3265. },
  3266. {
  3267. "url": "https://github.com/fabpot",
  3268. "type": "github"
  3269. },
  3270. {
  3271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3272. "type": "tidelift"
  3273. }
  3274. ],
  3275. "time": "2023-06-24T11:51:27+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/cache-contracts",
  3279. "version": "v3.3.0",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/cache-contracts.git",
  3283. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  3288. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "php": ">=8.1",
  3293. "psr/cache": "^3.0"
  3294. },
  3295. "type": "library",
  3296. "extra": {
  3297. "branch-alias": {
  3298. "dev-main": "3.4-dev"
  3299. },
  3300. "thanks": {
  3301. "name": "symfony/contracts",
  3302. "url": "https://github.com/symfony/contracts"
  3303. }
  3304. },
  3305. "autoload": {
  3306. "psr-4": {
  3307. "Symfony\\Contracts\\Cache\\": ""
  3308. }
  3309. },
  3310. "notification-url": "https://packagist.org/downloads/",
  3311. "license": [
  3312. "MIT"
  3313. ],
  3314. "authors": [
  3315. {
  3316. "name": "Nicolas Grekas",
  3317. "email": "p@tchwork.com"
  3318. },
  3319. {
  3320. "name": "Symfony Community",
  3321. "homepage": "https://symfony.com/contributors"
  3322. }
  3323. ],
  3324. "description": "Generic abstractions related to caching",
  3325. "homepage": "https://symfony.com",
  3326. "keywords": [
  3327. "abstractions",
  3328. "contracts",
  3329. "decoupling",
  3330. "interfaces",
  3331. "interoperability",
  3332. "standards"
  3333. ],
  3334. "support": {
  3335. "source": "https://github.com/symfony/cache-contracts/tree/v3.3.0"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://symfony.com/sponsor",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://github.com/fabpot",
  3344. "type": "github"
  3345. },
  3346. {
  3347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3348. "type": "tidelift"
  3349. }
  3350. ],
  3351. "time": "2023-05-23T14:45:45+00:00"
  3352. },
  3353. {
  3354. "name": "symfony/clock",
  3355. "version": "v6.3.1",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/symfony/clock.git",
  3359. "reference": "2c72817f85cbdd0ae4e49643514a889004934296"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/symfony/clock/zipball/2c72817f85cbdd0ae4e49643514a889004934296",
  3364. "reference": "2c72817f85cbdd0ae4e49643514a889004934296",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": ">=8.1",
  3369. "psr/clock": "^1.0"
  3370. },
  3371. "provide": {
  3372. "psr/clock-implementation": "1.0"
  3373. },
  3374. "type": "library",
  3375. "autoload": {
  3376. "files": [
  3377. "Resources/now.php"
  3378. ],
  3379. "psr-4": {
  3380. "Symfony\\Component\\Clock\\": ""
  3381. },
  3382. "exclude-from-classmap": [
  3383. "/Tests/"
  3384. ]
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Nicolas Grekas",
  3393. "email": "p@tchwork.com"
  3394. },
  3395. {
  3396. "name": "Symfony Community",
  3397. "homepage": "https://symfony.com/contributors"
  3398. }
  3399. ],
  3400. "description": "Decouples applications from the system clock",
  3401. "homepage": "https://symfony.com",
  3402. "keywords": [
  3403. "clock",
  3404. "psr20",
  3405. "time"
  3406. ],
  3407. "support": {
  3408. "source": "https://github.com/symfony/clock/tree/v6.3.1"
  3409. },
  3410. "funding": [
  3411. {
  3412. "url": "https://symfony.com/sponsor",
  3413. "type": "custom"
  3414. },
  3415. {
  3416. "url": "https://github.com/fabpot",
  3417. "type": "github"
  3418. },
  3419. {
  3420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3421. "type": "tidelift"
  3422. }
  3423. ],
  3424. "time": "2023-06-08T23:46:55+00:00"
  3425. },
  3426. {
  3427. "name": "symfony/config",
  3428. "version": "v6.3.0",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/symfony/config.git",
  3432. "reference": "a5e00dec161b08c946a2c16eed02adbeedf827ae"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/symfony/config/zipball/a5e00dec161b08c946a2c16eed02adbeedf827ae",
  3437. "reference": "a5e00dec161b08c946a2c16eed02adbeedf827ae",
  3438. "shasum": ""
  3439. },
  3440. "require": {
  3441. "php": ">=8.1",
  3442. "symfony/deprecation-contracts": "^2.5|^3",
  3443. "symfony/filesystem": "^5.4|^6.0",
  3444. "symfony/polyfill-ctype": "~1.8"
  3445. },
  3446. "conflict": {
  3447. "symfony/finder": "<5.4",
  3448. "symfony/service-contracts": "<2.5"
  3449. },
  3450. "require-dev": {
  3451. "symfony/event-dispatcher": "^5.4|^6.0",
  3452. "symfony/finder": "^5.4|^6.0",
  3453. "symfony/messenger": "^5.4|^6.0",
  3454. "symfony/service-contracts": "^2.5|^3",
  3455. "symfony/yaml": "^5.4|^6.0"
  3456. },
  3457. "type": "library",
  3458. "autoload": {
  3459. "psr-4": {
  3460. "Symfony\\Component\\Config\\": ""
  3461. },
  3462. "exclude-from-classmap": [
  3463. "/Tests/"
  3464. ]
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "MIT"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "Fabien Potencier",
  3473. "email": "fabien@symfony.com"
  3474. },
  3475. {
  3476. "name": "Symfony Community",
  3477. "homepage": "https://symfony.com/contributors"
  3478. }
  3479. ],
  3480. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3481. "homepage": "https://symfony.com",
  3482. "support": {
  3483. "source": "https://github.com/symfony/config/tree/v6.3.0"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://symfony.com/sponsor",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://github.com/fabpot",
  3492. "type": "github"
  3493. },
  3494. {
  3495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3496. "type": "tidelift"
  3497. }
  3498. ],
  3499. "time": "2023-04-25T10:46:17+00:00"
  3500. },
  3501. {
  3502. "name": "symfony/console",
  3503. "version": "v6.3.0",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/symfony/console.git",
  3507. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  3512. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "php": ">=8.1",
  3517. "symfony/deprecation-contracts": "^2.5|^3",
  3518. "symfony/polyfill-mbstring": "~1.0",
  3519. "symfony/service-contracts": "^2.5|^3",
  3520. "symfony/string": "^5.4|^6.0"
  3521. },
  3522. "conflict": {
  3523. "symfony/dependency-injection": "<5.4",
  3524. "symfony/dotenv": "<5.4",
  3525. "symfony/event-dispatcher": "<5.4",
  3526. "symfony/lock": "<5.4",
  3527. "symfony/process": "<5.4"
  3528. },
  3529. "provide": {
  3530. "psr/log-implementation": "1.0|2.0|3.0"
  3531. },
  3532. "require-dev": {
  3533. "psr/log": "^1|^2|^3",
  3534. "symfony/config": "^5.4|^6.0",
  3535. "symfony/dependency-injection": "^5.4|^6.0",
  3536. "symfony/event-dispatcher": "^5.4|^6.0",
  3537. "symfony/lock": "^5.4|^6.0",
  3538. "symfony/process": "^5.4|^6.0",
  3539. "symfony/var-dumper": "^5.4|^6.0"
  3540. },
  3541. "type": "library",
  3542. "autoload": {
  3543. "psr-4": {
  3544. "Symfony\\Component\\Console\\": ""
  3545. },
  3546. "exclude-from-classmap": [
  3547. "/Tests/"
  3548. ]
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "MIT"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Fabien Potencier",
  3557. "email": "fabien@symfony.com"
  3558. },
  3559. {
  3560. "name": "Symfony Community",
  3561. "homepage": "https://symfony.com/contributors"
  3562. }
  3563. ],
  3564. "description": "Eases the creation of beautiful and testable command line interfaces",
  3565. "homepage": "https://symfony.com",
  3566. "keywords": [
  3567. "cli",
  3568. "command-line",
  3569. "console",
  3570. "terminal"
  3571. ],
  3572. "support": {
  3573. "source": "https://github.com/symfony/console/tree/v6.3.0"
  3574. },
  3575. "funding": [
  3576. {
  3577. "url": "https://symfony.com/sponsor",
  3578. "type": "custom"
  3579. },
  3580. {
  3581. "url": "https://github.com/fabpot",
  3582. "type": "github"
  3583. },
  3584. {
  3585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3586. "type": "tidelift"
  3587. }
  3588. ],
  3589. "time": "2023-05-29T12:49:39+00:00"
  3590. },
  3591. {
  3592. "name": "symfony/dependency-injection",
  3593. "version": "v6.3.1",
  3594. "source": {
  3595. "type": "git",
  3596. "url": "https://github.com/symfony/dependency-injection.git",
  3597. "reference": "7abf242af21f196b65f20ab00ff251fdf3889b8d"
  3598. },
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/7abf242af21f196b65f20ab00ff251fdf3889b8d",
  3602. "reference": "7abf242af21f196b65f20ab00ff251fdf3889b8d",
  3603. "shasum": ""
  3604. },
  3605. "require": {
  3606. "php": ">=8.1",
  3607. "psr/container": "^1.1|^2.0",
  3608. "symfony/deprecation-contracts": "^2.5|^3",
  3609. "symfony/service-contracts": "^2.5|^3.0",
  3610. "symfony/var-exporter": "^6.2.10"
  3611. },
  3612. "conflict": {
  3613. "ext-psr": "<1.1|>=2",
  3614. "symfony/config": "<6.1",
  3615. "symfony/finder": "<5.4",
  3616. "symfony/proxy-manager-bridge": "<6.3",
  3617. "symfony/yaml": "<5.4"
  3618. },
  3619. "provide": {
  3620. "psr/container-implementation": "1.1|2.0",
  3621. "symfony/service-implementation": "1.1|2.0|3.0"
  3622. },
  3623. "require-dev": {
  3624. "symfony/config": "^6.1",
  3625. "symfony/expression-language": "^5.4|^6.0",
  3626. "symfony/yaml": "^5.4|^6.0"
  3627. },
  3628. "type": "library",
  3629. "autoload": {
  3630. "psr-4": {
  3631. "Symfony\\Component\\DependencyInjection\\": ""
  3632. },
  3633. "exclude-from-classmap": [
  3634. "/Tests/"
  3635. ]
  3636. },
  3637. "notification-url": "https://packagist.org/downloads/",
  3638. "license": [
  3639. "MIT"
  3640. ],
  3641. "authors": [
  3642. {
  3643. "name": "Fabien Potencier",
  3644. "email": "fabien@symfony.com"
  3645. },
  3646. {
  3647. "name": "Symfony Community",
  3648. "homepage": "https://symfony.com/contributors"
  3649. }
  3650. ],
  3651. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3652. "homepage": "https://symfony.com",
  3653. "support": {
  3654. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.1"
  3655. },
  3656. "funding": [
  3657. {
  3658. "url": "https://symfony.com/sponsor",
  3659. "type": "custom"
  3660. },
  3661. {
  3662. "url": "https://github.com/fabpot",
  3663. "type": "github"
  3664. },
  3665. {
  3666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3667. "type": "tidelift"
  3668. }
  3669. ],
  3670. "time": "2023-06-24T11:51:27+00:00"
  3671. },
  3672. {
  3673. "name": "symfony/deprecation-contracts",
  3674. "version": "v3.3.0",
  3675. "source": {
  3676. "type": "git",
  3677. "url": "https://github.com/symfony/deprecation-contracts.git",
  3678. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  3679. },
  3680. "dist": {
  3681. "type": "zip",
  3682. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  3683. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  3684. "shasum": ""
  3685. },
  3686. "require": {
  3687. "php": ">=8.1"
  3688. },
  3689. "type": "library",
  3690. "extra": {
  3691. "branch-alias": {
  3692. "dev-main": "3.4-dev"
  3693. },
  3694. "thanks": {
  3695. "name": "symfony/contracts",
  3696. "url": "https://github.com/symfony/contracts"
  3697. }
  3698. },
  3699. "autoload": {
  3700. "files": [
  3701. "function.php"
  3702. ]
  3703. },
  3704. "notification-url": "https://packagist.org/downloads/",
  3705. "license": [
  3706. "MIT"
  3707. ],
  3708. "authors": [
  3709. {
  3710. "name": "Nicolas Grekas",
  3711. "email": "p@tchwork.com"
  3712. },
  3713. {
  3714. "name": "Symfony Community",
  3715. "homepage": "https://symfony.com/contributors"
  3716. }
  3717. ],
  3718. "description": "A generic function and convention to trigger deprecation notices",
  3719. "homepage": "https://symfony.com",
  3720. "support": {
  3721. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  3722. },
  3723. "funding": [
  3724. {
  3725. "url": "https://symfony.com/sponsor",
  3726. "type": "custom"
  3727. },
  3728. {
  3729. "url": "https://github.com/fabpot",
  3730. "type": "github"
  3731. },
  3732. {
  3733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3734. "type": "tidelift"
  3735. }
  3736. ],
  3737. "time": "2023-05-23T14:45:45+00:00"
  3738. },
  3739. {
  3740. "name": "symfony/doctrine-bridge",
  3741. "version": "v6.3.1",
  3742. "source": {
  3743. "type": "git",
  3744. "url": "https://github.com/symfony/doctrine-bridge.git",
  3745. "reference": "594263c7d2677022a16e4f39d20070463ba03888"
  3746. },
  3747. "dist": {
  3748. "type": "zip",
  3749. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/594263c7d2677022a16e4f39d20070463ba03888",
  3750. "reference": "594263c7d2677022a16e4f39d20070463ba03888",
  3751. "shasum": ""
  3752. },
  3753. "require": {
  3754. "doctrine/event-manager": "^1.2|^2",
  3755. "doctrine/persistence": "^2|^3",
  3756. "php": ">=8.1",
  3757. "symfony/deprecation-contracts": "^2.5|^3",
  3758. "symfony/polyfill-ctype": "~1.8",
  3759. "symfony/polyfill-mbstring": "~1.0",
  3760. "symfony/service-contracts": "^2.5|^3"
  3761. },
  3762. "conflict": {
  3763. "doctrine/annotations": "<1.13.1",
  3764. "doctrine/dbal": "<2.13.1",
  3765. "doctrine/lexer": "<1.1",
  3766. "doctrine/orm": "<2.12",
  3767. "symfony/cache": "<5.4",
  3768. "symfony/dependency-injection": "<6.2",
  3769. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3770. "symfony/http-foundation": "<6.3",
  3771. "symfony/http-kernel": "<6.2",
  3772. "symfony/lock": "<6.3",
  3773. "symfony/messenger": "<5.4",
  3774. "symfony/property-info": "<5.4",
  3775. "symfony/security-bundle": "<5.4",
  3776. "symfony/security-core": "<6.0",
  3777. "symfony/validator": "<5.4.25|>=6,<6.2.12|>=6.3,<6.3.1"
  3778. },
  3779. "require-dev": {
  3780. "doctrine/annotations": "^1.13.1|^2",
  3781. "doctrine/collections": "^1.0|^2.0",
  3782. "doctrine/data-fixtures": "^1.1",
  3783. "doctrine/dbal": "^2.13.1|^3.0",
  3784. "doctrine/orm": "^2.12",
  3785. "psr/log": "^1|^2|^3",
  3786. "symfony/cache": "^5.4|^6.0",
  3787. "symfony/config": "^5.4|^6.0",
  3788. "symfony/dependency-injection": "^6.2",
  3789. "symfony/doctrine-messenger": "^5.4|^6.0",
  3790. "symfony/expression-language": "^5.4|^6.0",
  3791. "symfony/form": "^5.4.21|^6.2.7",
  3792. "symfony/http-kernel": "^6.3",
  3793. "symfony/lock": "^6.3",
  3794. "symfony/messenger": "^5.4|^6.0",
  3795. "symfony/property-access": "^5.4|^6.0",
  3796. "symfony/property-info": "^5.4|^6.0",
  3797. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3798. "symfony/security-core": "^6.0",
  3799. "symfony/stopwatch": "^5.4|^6.0",
  3800. "symfony/translation": "^5.4|^6.0",
  3801. "symfony/uid": "^5.4|^6.0",
  3802. "symfony/validator": "^5.4.25|~6.2.12|^6.3.1",
  3803. "symfony/var-dumper": "^5.4|^6.0"
  3804. },
  3805. "type": "symfony-bridge",
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Symfony\\Bridge\\Doctrine\\": ""
  3809. },
  3810. "exclude-from-classmap": [
  3811. "/Tests/"
  3812. ]
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Fabien Potencier",
  3821. "email": "fabien@symfony.com"
  3822. },
  3823. {
  3824. "name": "Symfony Community",
  3825. "homepage": "https://symfony.com/contributors"
  3826. }
  3827. ],
  3828. "description": "Provides integration for Doctrine with various Symfony components",
  3829. "homepage": "https://symfony.com",
  3830. "support": {
  3831. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.3.1"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://symfony.com/sponsor",
  3836. "type": "custom"
  3837. },
  3838. {
  3839. "url": "https://github.com/fabpot",
  3840. "type": "github"
  3841. },
  3842. {
  3843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3844. "type": "tidelift"
  3845. }
  3846. ],
  3847. "time": "2023-06-18T20:33:34+00:00"
  3848. },
  3849. {
  3850. "name": "symfony/dotenv",
  3851. "version": "v6.3.0",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/symfony/dotenv.git",
  3855. "reference": "ceadb434fe2a6763a03d2d110441745834f3dd1e"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/symfony/dotenv/zipball/ceadb434fe2a6763a03d2d110441745834f3dd1e",
  3860. "reference": "ceadb434fe2a6763a03d2d110441745834f3dd1e",
  3861. "shasum": ""
  3862. },
  3863. "require": {
  3864. "php": ">=8.1"
  3865. },
  3866. "conflict": {
  3867. "symfony/console": "<5.4",
  3868. "symfony/process": "<5.4"
  3869. },
  3870. "require-dev": {
  3871. "symfony/console": "^5.4|^6.0",
  3872. "symfony/process": "^5.4|^6.0"
  3873. },
  3874. "type": "library",
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Symfony\\Component\\Dotenv\\": ""
  3878. },
  3879. "exclude-from-classmap": [
  3880. "/Tests/"
  3881. ]
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "MIT"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "Fabien Potencier",
  3890. "email": "fabien@symfony.com"
  3891. },
  3892. {
  3893. "name": "Symfony Community",
  3894. "homepage": "https://symfony.com/contributors"
  3895. }
  3896. ],
  3897. "description": "Registers environment variables from a .env file",
  3898. "homepage": "https://symfony.com",
  3899. "keywords": [
  3900. "dotenv",
  3901. "env",
  3902. "environment"
  3903. ],
  3904. "support": {
  3905. "source": "https://github.com/symfony/dotenv/tree/v6.3.0"
  3906. },
  3907. "funding": [
  3908. {
  3909. "url": "https://symfony.com/sponsor",
  3910. "type": "custom"
  3911. },
  3912. {
  3913. "url": "https://github.com/fabpot",
  3914. "type": "github"
  3915. },
  3916. {
  3917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3918. "type": "tidelift"
  3919. }
  3920. ],
  3921. "time": "2023-04-21T14:41:17+00:00"
  3922. },
  3923. {
  3924. "name": "symfony/error-handler",
  3925. "version": "v6.3.0",
  3926. "source": {
  3927. "type": "git",
  3928. "url": "https://github.com/symfony/error-handler.git",
  3929. "reference": "99d2d814a6351461af350ead4d963bd67451236f"
  3930. },
  3931. "dist": {
  3932. "type": "zip",
  3933. "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f",
  3934. "reference": "99d2d814a6351461af350ead4d963bd67451236f",
  3935. "shasum": ""
  3936. },
  3937. "require": {
  3938. "php": ">=8.1",
  3939. "psr/log": "^1|^2|^3",
  3940. "symfony/var-dumper": "^5.4|^6.0"
  3941. },
  3942. "conflict": {
  3943. "symfony/deprecation-contracts": "<2.5"
  3944. },
  3945. "require-dev": {
  3946. "symfony/deprecation-contracts": "^2.5|^3",
  3947. "symfony/http-kernel": "^5.4|^6.0",
  3948. "symfony/serializer": "^5.4|^6.0"
  3949. },
  3950. "bin": [
  3951. "Resources/bin/patch-type-declarations"
  3952. ],
  3953. "type": "library",
  3954. "autoload": {
  3955. "psr-4": {
  3956. "Symfony\\Component\\ErrorHandler\\": ""
  3957. },
  3958. "exclude-from-classmap": [
  3959. "/Tests/"
  3960. ]
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "MIT"
  3965. ],
  3966. "authors": [
  3967. {
  3968. "name": "Fabien Potencier",
  3969. "email": "fabien@symfony.com"
  3970. },
  3971. {
  3972. "name": "Symfony Community",
  3973. "homepage": "https://symfony.com/contributors"
  3974. }
  3975. ],
  3976. "description": "Provides tools to manage errors and ease debugging PHP code",
  3977. "homepage": "https://symfony.com",
  3978. "support": {
  3979. "source": "https://github.com/symfony/error-handler/tree/v6.3.0"
  3980. },
  3981. "funding": [
  3982. {
  3983. "url": "https://symfony.com/sponsor",
  3984. "type": "custom"
  3985. },
  3986. {
  3987. "url": "https://github.com/fabpot",
  3988. "type": "github"
  3989. },
  3990. {
  3991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3992. "type": "tidelift"
  3993. }
  3994. ],
  3995. "time": "2023-05-10T12:03:13+00:00"
  3996. },
  3997. {
  3998. "name": "symfony/event-dispatcher",
  3999. "version": "v6.3.0",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/symfony/event-dispatcher.git",
  4003. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  4008. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "php": ">=8.1",
  4013. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4014. },
  4015. "conflict": {
  4016. "symfony/dependency-injection": "<5.4",
  4017. "symfony/service-contracts": "<2.5"
  4018. },
  4019. "provide": {
  4020. "psr/event-dispatcher-implementation": "1.0",
  4021. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4022. },
  4023. "require-dev": {
  4024. "psr/log": "^1|^2|^3",
  4025. "symfony/config": "^5.4|^6.0",
  4026. "symfony/dependency-injection": "^5.4|^6.0",
  4027. "symfony/error-handler": "^5.4|^6.0",
  4028. "symfony/expression-language": "^5.4|^6.0",
  4029. "symfony/http-foundation": "^5.4|^6.0",
  4030. "symfony/service-contracts": "^2.5|^3",
  4031. "symfony/stopwatch": "^5.4|^6.0"
  4032. },
  4033. "type": "library",
  4034. "autoload": {
  4035. "psr-4": {
  4036. "Symfony\\Component\\EventDispatcher\\": ""
  4037. },
  4038. "exclude-from-classmap": [
  4039. "/Tests/"
  4040. ]
  4041. },
  4042. "notification-url": "https://packagist.org/downloads/",
  4043. "license": [
  4044. "MIT"
  4045. ],
  4046. "authors": [
  4047. {
  4048. "name": "Fabien Potencier",
  4049. "email": "fabien@symfony.com"
  4050. },
  4051. {
  4052. "name": "Symfony Community",
  4053. "homepage": "https://symfony.com/contributors"
  4054. }
  4055. ],
  4056. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4057. "homepage": "https://symfony.com",
  4058. "support": {
  4059. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0"
  4060. },
  4061. "funding": [
  4062. {
  4063. "url": "https://symfony.com/sponsor",
  4064. "type": "custom"
  4065. },
  4066. {
  4067. "url": "https://github.com/fabpot",
  4068. "type": "github"
  4069. },
  4070. {
  4071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4072. "type": "tidelift"
  4073. }
  4074. ],
  4075. "time": "2023-04-21T14:41:17+00:00"
  4076. },
  4077. {
  4078. "name": "symfony/event-dispatcher-contracts",
  4079. "version": "v3.3.0",
  4080. "source": {
  4081. "type": "git",
  4082. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4083. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  4084. },
  4085. "dist": {
  4086. "type": "zip",
  4087. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  4088. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  4089. "shasum": ""
  4090. },
  4091. "require": {
  4092. "php": ">=8.1",
  4093. "psr/event-dispatcher": "^1"
  4094. },
  4095. "type": "library",
  4096. "extra": {
  4097. "branch-alias": {
  4098. "dev-main": "3.4-dev"
  4099. },
  4100. "thanks": {
  4101. "name": "symfony/contracts",
  4102. "url": "https://github.com/symfony/contracts"
  4103. }
  4104. },
  4105. "autoload": {
  4106. "psr-4": {
  4107. "Symfony\\Contracts\\EventDispatcher\\": ""
  4108. }
  4109. },
  4110. "notification-url": "https://packagist.org/downloads/",
  4111. "license": [
  4112. "MIT"
  4113. ],
  4114. "authors": [
  4115. {
  4116. "name": "Nicolas Grekas",
  4117. "email": "p@tchwork.com"
  4118. },
  4119. {
  4120. "name": "Symfony Community",
  4121. "homepage": "https://symfony.com/contributors"
  4122. }
  4123. ],
  4124. "description": "Generic abstractions related to dispatching event",
  4125. "homepage": "https://symfony.com",
  4126. "keywords": [
  4127. "abstractions",
  4128. "contracts",
  4129. "decoupling",
  4130. "interfaces",
  4131. "interoperability",
  4132. "standards"
  4133. ],
  4134. "support": {
  4135. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  4136. },
  4137. "funding": [
  4138. {
  4139. "url": "https://symfony.com/sponsor",
  4140. "type": "custom"
  4141. },
  4142. {
  4143. "url": "https://github.com/fabpot",
  4144. "type": "github"
  4145. },
  4146. {
  4147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4148. "type": "tidelift"
  4149. }
  4150. ],
  4151. "time": "2023-05-23T14:45:45+00:00"
  4152. },
  4153. {
  4154. "name": "symfony/expression-language",
  4155. "version": "v6.3.0",
  4156. "source": {
  4157. "type": "git",
  4158. "url": "https://github.com/symfony/expression-language.git",
  4159. "reference": "6d560c4c80e7e328708efd923f93ad67e6a0c1c0"
  4160. },
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://api.github.com/repos/symfony/expression-language/zipball/6d560c4c80e7e328708efd923f93ad67e6a0c1c0",
  4164. "reference": "6d560c4c80e7e328708efd923f93ad67e6a0c1c0",
  4165. "shasum": ""
  4166. },
  4167. "require": {
  4168. "php": ">=8.1",
  4169. "symfony/cache": "^5.4|^6.0",
  4170. "symfony/deprecation-contracts": "^2.5|^3",
  4171. "symfony/service-contracts": "^2.5|^3"
  4172. },
  4173. "type": "library",
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Symfony\\Component\\ExpressionLanguage\\": ""
  4177. },
  4178. "exclude-from-classmap": [
  4179. "/Tests/"
  4180. ]
  4181. },
  4182. "notification-url": "https://packagist.org/downloads/",
  4183. "license": [
  4184. "MIT"
  4185. ],
  4186. "authors": [
  4187. {
  4188. "name": "Fabien Potencier",
  4189. "email": "fabien@symfony.com"
  4190. },
  4191. {
  4192. "name": "Symfony Community",
  4193. "homepage": "https://symfony.com/contributors"
  4194. }
  4195. ],
  4196. "description": "Provides an engine that can compile and evaluate expressions",
  4197. "homepage": "https://symfony.com",
  4198. "support": {
  4199. "source": "https://github.com/symfony/expression-language/tree/v6.3.0"
  4200. },
  4201. "funding": [
  4202. {
  4203. "url": "https://symfony.com/sponsor",
  4204. "type": "custom"
  4205. },
  4206. {
  4207. "url": "https://github.com/fabpot",
  4208. "type": "github"
  4209. },
  4210. {
  4211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4212. "type": "tidelift"
  4213. }
  4214. ],
  4215. "time": "2023-04-28T16:05:33+00:00"
  4216. },
  4217. {
  4218. "name": "symfony/filesystem",
  4219. "version": "v6.3.1",
  4220. "source": {
  4221. "type": "git",
  4222. "url": "https://github.com/symfony/filesystem.git",
  4223. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  4224. },
  4225. "dist": {
  4226. "type": "zip",
  4227. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  4228. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  4229. "shasum": ""
  4230. },
  4231. "require": {
  4232. "php": ">=8.1",
  4233. "symfony/polyfill-ctype": "~1.8",
  4234. "symfony/polyfill-mbstring": "~1.8"
  4235. },
  4236. "type": "library",
  4237. "autoload": {
  4238. "psr-4": {
  4239. "Symfony\\Component\\Filesystem\\": ""
  4240. },
  4241. "exclude-from-classmap": [
  4242. "/Tests/"
  4243. ]
  4244. },
  4245. "notification-url": "https://packagist.org/downloads/",
  4246. "license": [
  4247. "MIT"
  4248. ],
  4249. "authors": [
  4250. {
  4251. "name": "Fabien Potencier",
  4252. "email": "fabien@symfony.com"
  4253. },
  4254. {
  4255. "name": "Symfony Community",
  4256. "homepage": "https://symfony.com/contributors"
  4257. }
  4258. ],
  4259. "description": "Provides basic utilities for the filesystem",
  4260. "homepage": "https://symfony.com",
  4261. "support": {
  4262. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  4263. },
  4264. "funding": [
  4265. {
  4266. "url": "https://symfony.com/sponsor",
  4267. "type": "custom"
  4268. },
  4269. {
  4270. "url": "https://github.com/fabpot",
  4271. "type": "github"
  4272. },
  4273. {
  4274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4275. "type": "tidelift"
  4276. }
  4277. ],
  4278. "time": "2023-06-01T08:30:39+00:00"
  4279. },
  4280. {
  4281. "name": "symfony/finder",
  4282. "version": "v6.3.0",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/symfony/finder.git",
  4286. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  4291. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  4292. "shasum": ""
  4293. },
  4294. "require": {
  4295. "php": ">=8.1"
  4296. },
  4297. "require-dev": {
  4298. "symfony/filesystem": "^6.0"
  4299. },
  4300. "type": "library",
  4301. "autoload": {
  4302. "psr-4": {
  4303. "Symfony\\Component\\Finder\\": ""
  4304. },
  4305. "exclude-from-classmap": [
  4306. "/Tests/"
  4307. ]
  4308. },
  4309. "notification-url": "https://packagist.org/downloads/",
  4310. "license": [
  4311. "MIT"
  4312. ],
  4313. "authors": [
  4314. {
  4315. "name": "Fabien Potencier",
  4316. "email": "fabien@symfony.com"
  4317. },
  4318. {
  4319. "name": "Symfony Community",
  4320. "homepage": "https://symfony.com/contributors"
  4321. }
  4322. ],
  4323. "description": "Finds files and directories via an intuitive fluent interface",
  4324. "homepage": "https://symfony.com",
  4325. "support": {
  4326. "source": "https://github.com/symfony/finder/tree/v6.3.0"
  4327. },
  4328. "funding": [
  4329. {
  4330. "url": "https://symfony.com/sponsor",
  4331. "type": "custom"
  4332. },
  4333. {
  4334. "url": "https://github.com/fabpot",
  4335. "type": "github"
  4336. },
  4337. {
  4338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4339. "type": "tidelift"
  4340. }
  4341. ],
  4342. "time": "2023-04-02T01:25:41+00:00"
  4343. },
  4344. {
  4345. "name": "symfony/flex",
  4346. "version": "v2.3.1",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://github.com/symfony/flex.git",
  4350. "reference": "3c9c3424efdafe33e0e3cfb5e87e50b34711fedf"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://api.github.com/repos/symfony/flex/zipball/3c9c3424efdafe33e0e3cfb5e87e50b34711fedf",
  4355. "reference": "3c9c3424efdafe33e0e3cfb5e87e50b34711fedf",
  4356. "shasum": ""
  4357. },
  4358. "require": {
  4359. "composer-plugin-api": "^2.1",
  4360. "php": ">=8.0"
  4361. },
  4362. "require-dev": {
  4363. "composer/composer": "^2.1",
  4364. "symfony/dotenv": "^5.4|^6.0",
  4365. "symfony/filesystem": "^5.4|^6.0",
  4366. "symfony/phpunit-bridge": "^5.4|^6.0",
  4367. "symfony/process": "^5.4|^6.0"
  4368. },
  4369. "type": "composer-plugin",
  4370. "extra": {
  4371. "class": "Symfony\\Flex\\Flex"
  4372. },
  4373. "autoload": {
  4374. "psr-4": {
  4375. "Symfony\\Flex\\": "src"
  4376. }
  4377. },
  4378. "notification-url": "https://packagist.org/downloads/",
  4379. "license": [
  4380. "MIT"
  4381. ],
  4382. "authors": [
  4383. {
  4384. "name": "Fabien Potencier",
  4385. "email": "fabien.potencier@gmail.com"
  4386. }
  4387. ],
  4388. "description": "Composer plugin for Symfony",
  4389. "support": {
  4390. "issues": "https://github.com/symfony/flex/issues",
  4391. "source": "https://github.com/symfony/flex/tree/v2.3.1"
  4392. },
  4393. "funding": [
  4394. {
  4395. "url": "https://symfony.com/sponsor",
  4396. "type": "custom"
  4397. },
  4398. {
  4399. "url": "https://github.com/fabpot",
  4400. "type": "github"
  4401. },
  4402. {
  4403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4404. "type": "tidelift"
  4405. }
  4406. ],
  4407. "time": "2023-05-27T07:38:25+00:00"
  4408. },
  4409. {
  4410. "name": "symfony/form",
  4411. "version": "v6.3.0",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/symfony/form.git",
  4415. "reference": "59e7c5afef32b9ff735e83e5fc74d63044833a2b"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/symfony/form/zipball/59e7c5afef32b9ff735e83e5fc74d63044833a2b",
  4420. "reference": "59e7c5afef32b9ff735e83e5fc74d63044833a2b",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "php": ">=8.1",
  4425. "symfony/deprecation-contracts": "^2.5|^3",
  4426. "symfony/event-dispatcher": "^5.4|^6.0",
  4427. "symfony/options-resolver": "^5.4|^6.0",
  4428. "symfony/polyfill-ctype": "~1.8",
  4429. "symfony/polyfill-intl-icu": "^1.21",
  4430. "symfony/polyfill-mbstring": "~1.0",
  4431. "symfony/property-access": "^5.4|^6.0",
  4432. "symfony/service-contracts": "^2.5|^3"
  4433. },
  4434. "conflict": {
  4435. "symfony/console": "<5.4",
  4436. "symfony/dependency-injection": "<5.4",
  4437. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4438. "symfony/error-handler": "<5.4",
  4439. "symfony/framework-bundle": "<5.4",
  4440. "symfony/http-kernel": "<5.4",
  4441. "symfony/translation": "<5.4",
  4442. "symfony/translation-contracts": "<2.5",
  4443. "symfony/twig-bridge": "<6.3"
  4444. },
  4445. "require-dev": {
  4446. "doctrine/collections": "^1.0|^2.0",
  4447. "symfony/config": "^5.4|^6.0",
  4448. "symfony/console": "^5.4|^6.0",
  4449. "symfony/dependency-injection": "^5.4|^6.0",
  4450. "symfony/expression-language": "^5.4|^6.0",
  4451. "symfony/html-sanitizer": "^6.1",
  4452. "symfony/http-foundation": "^5.4|^6.0",
  4453. "symfony/http-kernel": "^5.4|^6.0",
  4454. "symfony/intl": "^5.4|^6.0",
  4455. "symfony/security-core": "^6.2",
  4456. "symfony/security-csrf": "^5.4|^6.0",
  4457. "symfony/translation": "^5.4|^6.0",
  4458. "symfony/uid": "^5.4|^6.0",
  4459. "symfony/validator": "^5.4|^6.0",
  4460. "symfony/var-dumper": "^5.4|^6.0"
  4461. },
  4462. "type": "library",
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Symfony\\Component\\Form\\": ""
  4466. },
  4467. "exclude-from-classmap": [
  4468. "/Tests/"
  4469. ]
  4470. },
  4471. "notification-url": "https://packagist.org/downloads/",
  4472. "license": [
  4473. "MIT"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "Fabien Potencier",
  4478. "email": "fabien@symfony.com"
  4479. },
  4480. {
  4481. "name": "Symfony Community",
  4482. "homepage": "https://symfony.com/contributors"
  4483. }
  4484. ],
  4485. "description": "Allows to easily create, process and reuse HTML forms",
  4486. "homepage": "https://symfony.com",
  4487. "support": {
  4488. "source": "https://github.com/symfony/form/tree/v6.3.0"
  4489. },
  4490. "funding": [
  4491. {
  4492. "url": "https://symfony.com/sponsor",
  4493. "type": "custom"
  4494. },
  4495. {
  4496. "url": "https://github.com/fabpot",
  4497. "type": "github"
  4498. },
  4499. {
  4500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4501. "type": "tidelift"
  4502. }
  4503. ],
  4504. "time": "2023-05-25T13:09:35+00:00"
  4505. },
  4506. {
  4507. "name": "symfony/framework-bundle",
  4508. "version": "v6.3.1",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/symfony/framework-bundle.git",
  4512. "reference": "42b0707efba17ca7c6af7373cb1b1a1b4f24f772"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/42b0707efba17ca7c6af7373cb1b1a1b4f24f772",
  4517. "reference": "42b0707efba17ca7c6af7373cb1b1a1b4f24f772",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "composer-runtime-api": ">=2.1",
  4522. "ext-xml": "*",
  4523. "php": ">=8.1",
  4524. "symfony/cache": "^5.4|^6.0",
  4525. "symfony/config": "^6.1",
  4526. "symfony/dependency-injection": "^6.3.1",
  4527. "symfony/deprecation-contracts": "^2.5|^3",
  4528. "symfony/error-handler": "^6.1",
  4529. "symfony/event-dispatcher": "^5.4|^6.0",
  4530. "symfony/filesystem": "^5.4|^6.0",
  4531. "symfony/finder": "^5.4|^6.0",
  4532. "symfony/http-foundation": "^6.3",
  4533. "symfony/http-kernel": "^6.3",
  4534. "symfony/polyfill-mbstring": "~1.0",
  4535. "symfony/routing": "^5.4|^6.0"
  4536. },
  4537. "conflict": {
  4538. "doctrine/annotations": "<1.13.1",
  4539. "doctrine/persistence": "<1.3",
  4540. "phpdocumentor/reflection-docblock": "<3.2.2",
  4541. "phpdocumentor/type-resolver": "<1.4.0",
  4542. "symfony/asset": "<5.4",
  4543. "symfony/clock": "<6.3",
  4544. "symfony/console": "<5.4",
  4545. "symfony/dom-crawler": "<6.3",
  4546. "symfony/dotenv": "<5.4",
  4547. "symfony/form": "<5.4",
  4548. "symfony/http-client": "<6.3",
  4549. "symfony/lock": "<5.4",
  4550. "symfony/mailer": "<5.4",
  4551. "symfony/messenger": "<6.3",
  4552. "symfony/mime": "<6.2",
  4553. "symfony/property-access": "<5.4",
  4554. "symfony/property-info": "<5.4",
  4555. "symfony/security-core": "<5.4",
  4556. "symfony/security-csrf": "<5.4",
  4557. "symfony/serializer": "<6.3",
  4558. "symfony/stopwatch": "<5.4",
  4559. "symfony/translation": "<6.2.8",
  4560. "symfony/twig-bridge": "<5.4",
  4561. "symfony/twig-bundle": "<5.4",
  4562. "symfony/validator": "<6.3",
  4563. "symfony/web-profiler-bundle": "<5.4",
  4564. "symfony/workflow": "<5.4"
  4565. },
  4566. "require-dev": {
  4567. "doctrine/annotations": "^1.13.1|^2",
  4568. "doctrine/persistence": "^1.3|^2|^3",
  4569. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4570. "symfony/asset": "^5.4|^6.0",
  4571. "symfony/asset-mapper": "^6.3",
  4572. "symfony/browser-kit": "^5.4|^6.0",
  4573. "symfony/clock": "^6.2",
  4574. "symfony/console": "^5.4.9|^6.0.9",
  4575. "symfony/css-selector": "^5.4|^6.0",
  4576. "symfony/dom-crawler": "^6.3",
  4577. "symfony/dotenv": "^5.4|^6.0",
  4578. "symfony/expression-language": "^5.4|^6.0",
  4579. "symfony/form": "^5.4|^6.0",
  4580. "symfony/html-sanitizer": "^6.1",
  4581. "symfony/http-client": "^6.3",
  4582. "symfony/lock": "^5.4|^6.0",
  4583. "symfony/mailer": "^5.4|^6.0",
  4584. "symfony/messenger": "^6.3",
  4585. "symfony/mime": "^6.2",
  4586. "symfony/notifier": "^5.4|^6.0",
  4587. "symfony/polyfill-intl-icu": "~1.0",
  4588. "symfony/process": "^5.4|^6.0",
  4589. "symfony/property-info": "^5.4|^6.0",
  4590. "symfony/rate-limiter": "^5.4|^6.0",
  4591. "symfony/scheduler": "^6.3",
  4592. "symfony/security-bundle": "^5.4|^6.0",
  4593. "symfony/semaphore": "^5.4|^6.0",
  4594. "symfony/serializer": "^6.3",
  4595. "symfony/stopwatch": "^5.4|^6.0",
  4596. "symfony/string": "^5.4|^6.0",
  4597. "symfony/translation": "^6.2.8",
  4598. "symfony/twig-bundle": "^5.4|^6.0",
  4599. "symfony/uid": "^5.4|^6.0",
  4600. "symfony/validator": "^6.3",
  4601. "symfony/web-link": "^5.4|^6.0",
  4602. "symfony/workflow": "^5.4|^6.0",
  4603. "symfony/yaml": "^5.4|^6.0",
  4604. "twig/twig": "^2.10|^3.0"
  4605. },
  4606. "type": "symfony-bundle",
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4610. },
  4611. "exclude-from-classmap": [
  4612. "/Tests/"
  4613. ]
  4614. },
  4615. "notification-url": "https://packagist.org/downloads/",
  4616. "license": [
  4617. "MIT"
  4618. ],
  4619. "authors": [
  4620. {
  4621. "name": "Fabien Potencier",
  4622. "email": "fabien@symfony.com"
  4623. },
  4624. {
  4625. "name": "Symfony Community",
  4626. "homepage": "https://symfony.com/contributors"
  4627. }
  4628. ],
  4629. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4630. "homepage": "https://symfony.com",
  4631. "support": {
  4632. "source": "https://github.com/symfony/framework-bundle/tree/v6.3.1"
  4633. },
  4634. "funding": [
  4635. {
  4636. "url": "https://symfony.com/sponsor",
  4637. "type": "custom"
  4638. },
  4639. {
  4640. "url": "https://github.com/fabpot",
  4641. "type": "github"
  4642. },
  4643. {
  4644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4645. "type": "tidelift"
  4646. }
  4647. ],
  4648. "time": "2023-06-24T09:59:31+00:00"
  4649. },
  4650. {
  4651. "name": "symfony/html-sanitizer",
  4652. "version": "v6.3.0",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/symfony/html-sanitizer.git",
  4656. "reference": "eae9b0a9ad7a2ed1963f819547d59ff99ad9e0fd"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/eae9b0a9ad7a2ed1963f819547d59ff99ad9e0fd",
  4661. "reference": "eae9b0a9ad7a2ed1963f819547d59ff99ad9e0fd",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "ext-dom": "*",
  4666. "league/uri": "^6.5",
  4667. "masterminds/html5": "^2.7.2",
  4668. "php": ">=8.1"
  4669. },
  4670. "type": "library",
  4671. "autoload": {
  4672. "psr-4": {
  4673. "Symfony\\Component\\HtmlSanitizer\\": ""
  4674. },
  4675. "exclude-from-classmap": [
  4676. "/Tests/"
  4677. ]
  4678. },
  4679. "notification-url": "https://packagist.org/downloads/",
  4680. "license": [
  4681. "MIT"
  4682. ],
  4683. "authors": [
  4684. {
  4685. "name": "Titouan Galopin",
  4686. "email": "galopintitouan@gmail.com"
  4687. },
  4688. {
  4689. "name": "Symfony Community",
  4690. "homepage": "https://symfony.com/contributors"
  4691. }
  4692. ],
  4693. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4694. "homepage": "https://symfony.com",
  4695. "keywords": [
  4696. "Purifier",
  4697. "html",
  4698. "sanitizer"
  4699. ],
  4700. "support": {
  4701. "source": "https://github.com/symfony/html-sanitizer/tree/v6.3.0"
  4702. },
  4703. "funding": [
  4704. {
  4705. "url": "https://symfony.com/sponsor",
  4706. "type": "custom"
  4707. },
  4708. {
  4709. "url": "https://github.com/fabpot",
  4710. "type": "github"
  4711. },
  4712. {
  4713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4714. "type": "tidelift"
  4715. }
  4716. ],
  4717. "time": "2023-02-14T09:04:20+00:00"
  4718. },
  4719. {
  4720. "name": "symfony/http-client",
  4721. "version": "v6.3.1",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/symfony/http-client.git",
  4725. "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/symfony/http-client/zipball/1c828a06aef2f5eeba42026dfc532d4fc5406123",
  4730. "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123",
  4731. "shasum": ""
  4732. },
  4733. "require": {
  4734. "php": ">=8.1",
  4735. "psr/log": "^1|^2|^3",
  4736. "symfony/deprecation-contracts": "^2.5|^3",
  4737. "symfony/http-client-contracts": "^3",
  4738. "symfony/service-contracts": "^2.5|^3"
  4739. },
  4740. "conflict": {
  4741. "php-http/discovery": "<1.15",
  4742. "symfony/http-foundation": "<6.3"
  4743. },
  4744. "provide": {
  4745. "php-http/async-client-implementation": "*",
  4746. "php-http/client-implementation": "*",
  4747. "psr/http-client-implementation": "1.0",
  4748. "symfony/http-client-implementation": "3.0"
  4749. },
  4750. "require-dev": {
  4751. "amphp/amp": "^2.5",
  4752. "amphp/http-client": "^4.2.1",
  4753. "amphp/http-tunnel": "^1.0",
  4754. "amphp/socket": "^1.1",
  4755. "guzzlehttp/promises": "^1.4",
  4756. "nyholm/psr7": "^1.0",
  4757. "php-http/httplug": "^1.0|^2.0",
  4758. "psr/http-client": "^1.0",
  4759. "symfony/dependency-injection": "^5.4|^6.0",
  4760. "symfony/http-kernel": "^5.4|^6.0",
  4761. "symfony/process": "^5.4|^6.0",
  4762. "symfony/stopwatch": "^5.4|^6.0"
  4763. },
  4764. "type": "library",
  4765. "autoload": {
  4766. "psr-4": {
  4767. "Symfony\\Component\\HttpClient\\": ""
  4768. },
  4769. "exclude-from-classmap": [
  4770. "/Tests/"
  4771. ]
  4772. },
  4773. "notification-url": "https://packagist.org/downloads/",
  4774. "license": [
  4775. "MIT"
  4776. ],
  4777. "authors": [
  4778. {
  4779. "name": "Nicolas Grekas",
  4780. "email": "p@tchwork.com"
  4781. },
  4782. {
  4783. "name": "Symfony Community",
  4784. "homepage": "https://symfony.com/contributors"
  4785. }
  4786. ],
  4787. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4788. "homepage": "https://symfony.com",
  4789. "keywords": [
  4790. "http"
  4791. ],
  4792. "support": {
  4793. "source": "https://github.com/symfony/http-client/tree/v6.3.1"
  4794. },
  4795. "funding": [
  4796. {
  4797. "url": "https://symfony.com/sponsor",
  4798. "type": "custom"
  4799. },
  4800. {
  4801. "url": "https://github.com/fabpot",
  4802. "type": "github"
  4803. },
  4804. {
  4805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4806. "type": "tidelift"
  4807. }
  4808. ],
  4809. "time": "2023-06-24T11:51:27+00:00"
  4810. },
  4811. {
  4812. "name": "symfony/http-client-contracts",
  4813. "version": "v3.3.0",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/symfony/http-client-contracts.git",
  4817. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
  4822. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
  4823. "shasum": ""
  4824. },
  4825. "require": {
  4826. "php": ">=8.1"
  4827. },
  4828. "type": "library",
  4829. "extra": {
  4830. "branch-alias": {
  4831. "dev-main": "3.4-dev"
  4832. },
  4833. "thanks": {
  4834. "name": "symfony/contracts",
  4835. "url": "https://github.com/symfony/contracts"
  4836. }
  4837. },
  4838. "autoload": {
  4839. "psr-4": {
  4840. "Symfony\\Contracts\\HttpClient\\": ""
  4841. },
  4842. "exclude-from-classmap": [
  4843. "/Test/"
  4844. ]
  4845. },
  4846. "notification-url": "https://packagist.org/downloads/",
  4847. "license": [
  4848. "MIT"
  4849. ],
  4850. "authors": [
  4851. {
  4852. "name": "Nicolas Grekas",
  4853. "email": "p@tchwork.com"
  4854. },
  4855. {
  4856. "name": "Symfony Community",
  4857. "homepage": "https://symfony.com/contributors"
  4858. }
  4859. ],
  4860. "description": "Generic abstractions related to HTTP clients",
  4861. "homepage": "https://symfony.com",
  4862. "keywords": [
  4863. "abstractions",
  4864. "contracts",
  4865. "decoupling",
  4866. "interfaces",
  4867. "interoperability",
  4868. "standards"
  4869. ],
  4870. "support": {
  4871. "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
  4872. },
  4873. "funding": [
  4874. {
  4875. "url": "https://symfony.com/sponsor",
  4876. "type": "custom"
  4877. },
  4878. {
  4879. "url": "https://github.com/fabpot",
  4880. "type": "github"
  4881. },
  4882. {
  4883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4884. "type": "tidelift"
  4885. }
  4886. ],
  4887. "time": "2023-05-23T14:45:45+00:00"
  4888. },
  4889. {
  4890. "name": "symfony/http-foundation",
  4891. "version": "v6.3.1",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://github.com/symfony/http-foundation.git",
  4895. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  4900. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  4901. "shasum": ""
  4902. },
  4903. "require": {
  4904. "php": ">=8.1",
  4905. "symfony/deprecation-contracts": "^2.5|^3",
  4906. "symfony/polyfill-mbstring": "~1.1",
  4907. "symfony/polyfill-php83": "^1.27"
  4908. },
  4909. "conflict": {
  4910. "symfony/cache": "<6.2"
  4911. },
  4912. "require-dev": {
  4913. "doctrine/dbal": "^2.13.1|^3.0",
  4914. "predis/predis": "^1.1|^2.0",
  4915. "symfony/cache": "^5.4|^6.0",
  4916. "symfony/dependency-injection": "^5.4|^6.0",
  4917. "symfony/expression-language": "^5.4|^6.0",
  4918. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4919. "symfony/mime": "^5.4|^6.0",
  4920. "symfony/rate-limiter": "^5.2|^6.0"
  4921. },
  4922. "type": "library",
  4923. "autoload": {
  4924. "psr-4": {
  4925. "Symfony\\Component\\HttpFoundation\\": ""
  4926. },
  4927. "exclude-from-classmap": [
  4928. "/Tests/"
  4929. ]
  4930. },
  4931. "notification-url": "https://packagist.org/downloads/",
  4932. "license": [
  4933. "MIT"
  4934. ],
  4935. "authors": [
  4936. {
  4937. "name": "Fabien Potencier",
  4938. "email": "fabien@symfony.com"
  4939. },
  4940. {
  4941. "name": "Symfony Community",
  4942. "homepage": "https://symfony.com/contributors"
  4943. }
  4944. ],
  4945. "description": "Defines an object-oriented layer for the HTTP specification",
  4946. "homepage": "https://symfony.com",
  4947. "support": {
  4948. "source": "https://github.com/symfony/http-foundation/tree/v6.3.1"
  4949. },
  4950. "funding": [
  4951. {
  4952. "url": "https://symfony.com/sponsor",
  4953. "type": "custom"
  4954. },
  4955. {
  4956. "url": "https://github.com/fabpot",
  4957. "type": "github"
  4958. },
  4959. {
  4960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4961. "type": "tidelift"
  4962. }
  4963. ],
  4964. "time": "2023-06-24T11:51:27+00:00"
  4965. },
  4966. {
  4967. "name": "symfony/http-kernel",
  4968. "version": "v6.3.1",
  4969. "source": {
  4970. "type": "git",
  4971. "url": "https://github.com/symfony/http-kernel.git",
  4972. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374"
  4973. },
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  4977. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  4978. "shasum": ""
  4979. },
  4980. "require": {
  4981. "php": ">=8.1",
  4982. "psr/log": "^1|^2|^3",
  4983. "symfony/deprecation-contracts": "^2.5|^3",
  4984. "symfony/error-handler": "^6.3",
  4985. "symfony/event-dispatcher": "^5.4|^6.0",
  4986. "symfony/http-foundation": "^6.2.7",
  4987. "symfony/polyfill-ctype": "^1.8"
  4988. },
  4989. "conflict": {
  4990. "symfony/browser-kit": "<5.4",
  4991. "symfony/cache": "<5.4",
  4992. "symfony/config": "<6.1",
  4993. "symfony/console": "<5.4",
  4994. "symfony/dependency-injection": "<6.3",
  4995. "symfony/doctrine-bridge": "<5.4",
  4996. "symfony/form": "<5.4",
  4997. "symfony/http-client": "<5.4",
  4998. "symfony/http-client-contracts": "<2.5",
  4999. "symfony/mailer": "<5.4",
  5000. "symfony/messenger": "<5.4",
  5001. "symfony/translation": "<5.4",
  5002. "symfony/translation-contracts": "<2.5",
  5003. "symfony/twig-bridge": "<5.4",
  5004. "symfony/validator": "<5.4",
  5005. "symfony/var-dumper": "<6.3",
  5006. "twig/twig": "<2.13"
  5007. },
  5008. "provide": {
  5009. "psr/log-implementation": "1.0|2.0|3.0"
  5010. },
  5011. "require-dev": {
  5012. "psr/cache": "^1.0|^2.0|^3.0",
  5013. "symfony/browser-kit": "^5.4|^6.0",
  5014. "symfony/clock": "^6.2",
  5015. "symfony/config": "^6.1",
  5016. "symfony/console": "^5.4|^6.0",
  5017. "symfony/css-selector": "^5.4|^6.0",
  5018. "symfony/dependency-injection": "^6.3",
  5019. "symfony/dom-crawler": "^5.4|^6.0",
  5020. "symfony/expression-language": "^5.4|^6.0",
  5021. "symfony/finder": "^5.4|^6.0",
  5022. "symfony/http-client-contracts": "^2.5|^3",
  5023. "symfony/process": "^5.4|^6.0",
  5024. "symfony/property-access": "^5.4.5|^6.0.5",
  5025. "symfony/routing": "^5.4|^6.0",
  5026. "symfony/serializer": "^6.3",
  5027. "symfony/stopwatch": "^5.4|^6.0",
  5028. "symfony/translation": "^5.4|^6.0",
  5029. "symfony/translation-contracts": "^2.5|^3",
  5030. "symfony/uid": "^5.4|^6.0",
  5031. "symfony/validator": "^6.3",
  5032. "symfony/var-exporter": "^6.2",
  5033. "twig/twig": "^2.13|^3.0.4"
  5034. },
  5035. "type": "library",
  5036. "autoload": {
  5037. "psr-4": {
  5038. "Symfony\\Component\\HttpKernel\\": ""
  5039. },
  5040. "exclude-from-classmap": [
  5041. "/Tests/"
  5042. ]
  5043. },
  5044. "notification-url": "https://packagist.org/downloads/",
  5045. "license": [
  5046. "MIT"
  5047. ],
  5048. "authors": [
  5049. {
  5050. "name": "Fabien Potencier",
  5051. "email": "fabien@symfony.com"
  5052. },
  5053. {
  5054. "name": "Symfony Community",
  5055. "homepage": "https://symfony.com/contributors"
  5056. }
  5057. ],
  5058. "description": "Provides a structured process for converting a Request into a Response",
  5059. "homepage": "https://symfony.com",
  5060. "support": {
  5061. "source": "https://github.com/symfony/http-kernel/tree/v6.3.1"
  5062. },
  5063. "funding": [
  5064. {
  5065. "url": "https://symfony.com/sponsor",
  5066. "type": "custom"
  5067. },
  5068. {
  5069. "url": "https://github.com/fabpot",
  5070. "type": "github"
  5071. },
  5072. {
  5073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5074. "type": "tidelift"
  5075. }
  5076. ],
  5077. "time": "2023-06-26T06:07:32+00:00"
  5078. },
  5079. {
  5080. "name": "symfony/mailer",
  5081. "version": "v6.3.0",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://github.com/symfony/mailer.git",
  5085. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  5090. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  5091. "shasum": ""
  5092. },
  5093. "require": {
  5094. "egulias/email-validator": "^2.1.10|^3|^4",
  5095. "php": ">=8.1",
  5096. "psr/event-dispatcher": "^1",
  5097. "psr/log": "^1|^2|^3",
  5098. "symfony/event-dispatcher": "^5.4|^6.0",
  5099. "symfony/mime": "^6.2",
  5100. "symfony/service-contracts": "^2.5|^3"
  5101. },
  5102. "conflict": {
  5103. "symfony/http-client-contracts": "<2.5",
  5104. "symfony/http-kernel": "<5.4",
  5105. "symfony/messenger": "<6.2",
  5106. "symfony/mime": "<6.2",
  5107. "symfony/twig-bridge": "<6.2.1"
  5108. },
  5109. "require-dev": {
  5110. "symfony/console": "^5.4|^6.0",
  5111. "symfony/http-client": "^5.4|^6.0",
  5112. "symfony/messenger": "^6.2",
  5113. "symfony/twig-bridge": "^6.2"
  5114. },
  5115. "type": "library",
  5116. "autoload": {
  5117. "psr-4": {
  5118. "Symfony\\Component\\Mailer\\": ""
  5119. },
  5120. "exclude-from-classmap": [
  5121. "/Tests/"
  5122. ]
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Fabien Potencier",
  5131. "email": "fabien@symfony.com"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Helps sending emails",
  5139. "homepage": "https://symfony.com",
  5140. "support": {
  5141. "source": "https://github.com/symfony/mailer/tree/v6.3.0"
  5142. },
  5143. "funding": [
  5144. {
  5145. "url": "https://symfony.com/sponsor",
  5146. "type": "custom"
  5147. },
  5148. {
  5149. "url": "https://github.com/fabpot",
  5150. "type": "github"
  5151. },
  5152. {
  5153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5154. "type": "tidelift"
  5155. }
  5156. ],
  5157. "time": "2023-05-29T12:49:39+00:00"
  5158. },
  5159. {
  5160. "name": "symfony/mime",
  5161. "version": "v6.3.0",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/symfony/mime.git",
  5165. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  5170. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": ">=8.1",
  5175. "symfony/polyfill-intl-idn": "^1.10",
  5176. "symfony/polyfill-mbstring": "^1.0"
  5177. },
  5178. "conflict": {
  5179. "egulias/email-validator": "~3.0.0",
  5180. "phpdocumentor/reflection-docblock": "<3.2.2",
  5181. "phpdocumentor/type-resolver": "<1.4.0",
  5182. "symfony/mailer": "<5.4",
  5183. "symfony/serializer": "<6.2"
  5184. },
  5185. "require-dev": {
  5186. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5187. "league/html-to-markdown": "^5.0",
  5188. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5189. "symfony/dependency-injection": "^5.4|^6.0",
  5190. "symfony/property-access": "^5.4|^6.0",
  5191. "symfony/property-info": "^5.4|^6.0",
  5192. "symfony/serializer": "^6.2"
  5193. },
  5194. "type": "library",
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Component\\Mime\\": ""
  5198. },
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Fabien Potencier",
  5210. "email": "fabien@symfony.com"
  5211. },
  5212. {
  5213. "name": "Symfony Community",
  5214. "homepage": "https://symfony.com/contributors"
  5215. }
  5216. ],
  5217. "description": "Allows manipulating MIME messages",
  5218. "homepage": "https://symfony.com",
  5219. "keywords": [
  5220. "mime",
  5221. "mime-type"
  5222. ],
  5223. "support": {
  5224. "source": "https://github.com/symfony/mime/tree/v6.3.0"
  5225. },
  5226. "funding": [
  5227. {
  5228. "url": "https://symfony.com/sponsor",
  5229. "type": "custom"
  5230. },
  5231. {
  5232. "url": "https://github.com/fabpot",
  5233. "type": "github"
  5234. },
  5235. {
  5236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5237. "type": "tidelift"
  5238. }
  5239. ],
  5240. "time": "2023-04-28T15:57:00+00:00"
  5241. },
  5242. {
  5243. "name": "symfony/monolog-bridge",
  5244. "version": "v6.3.1",
  5245. "source": {
  5246. "type": "git",
  5247. "url": "https://github.com/symfony/monolog-bridge.git",
  5248. "reference": "04b04b8e465e0fa84940e5609b6796a8b4e51bf1"
  5249. },
  5250. "dist": {
  5251. "type": "zip",
  5252. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/04b04b8e465e0fa84940e5609b6796a8b4e51bf1",
  5253. "reference": "04b04b8e465e0fa84940e5609b6796a8b4e51bf1",
  5254. "shasum": ""
  5255. },
  5256. "require": {
  5257. "monolog/monolog": "^1.25.1|^2|^3",
  5258. "php": ">=8.1",
  5259. "symfony/http-kernel": "^5.4|^6.0",
  5260. "symfony/service-contracts": "^2.5|^3"
  5261. },
  5262. "conflict": {
  5263. "symfony/console": "<5.4",
  5264. "symfony/http-foundation": "<5.4",
  5265. "symfony/security-core": "<6.0"
  5266. },
  5267. "require-dev": {
  5268. "symfony/console": "^5.4|^6.0",
  5269. "symfony/http-client": "^5.4|^6.0",
  5270. "symfony/mailer": "^5.4|^6.0",
  5271. "symfony/messenger": "^5.4|^6.0",
  5272. "symfony/mime": "^5.4|^6.0",
  5273. "symfony/security-core": "^6.0",
  5274. "symfony/var-dumper": "^5.4|^6.0"
  5275. },
  5276. "type": "symfony-bridge",
  5277. "autoload": {
  5278. "psr-4": {
  5279. "Symfony\\Bridge\\Monolog\\": ""
  5280. },
  5281. "exclude-from-classmap": [
  5282. "/Tests/"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "MIT"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Fabien Potencier",
  5292. "email": "fabien@symfony.com"
  5293. },
  5294. {
  5295. "name": "Symfony Community",
  5296. "homepage": "https://symfony.com/contributors"
  5297. }
  5298. ],
  5299. "description": "Provides integration for Monolog with various Symfony components",
  5300. "homepage": "https://symfony.com",
  5301. "support": {
  5302. "source": "https://github.com/symfony/monolog-bridge/tree/v6.3.1"
  5303. },
  5304. "funding": [
  5305. {
  5306. "url": "https://symfony.com/sponsor",
  5307. "type": "custom"
  5308. },
  5309. {
  5310. "url": "https://github.com/fabpot",
  5311. "type": "github"
  5312. },
  5313. {
  5314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5315. "type": "tidelift"
  5316. }
  5317. ],
  5318. "time": "2023-06-08T11:13:32+00:00"
  5319. },
  5320. {
  5321. "name": "symfony/monolog-bundle",
  5322. "version": "v3.8.0",
  5323. "source": {
  5324. "type": "git",
  5325. "url": "https://github.com/symfony/monolog-bundle.git",
  5326. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  5327. },
  5328. "dist": {
  5329. "type": "zip",
  5330. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5331. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5332. "shasum": ""
  5333. },
  5334. "require": {
  5335. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  5336. "php": ">=7.1.3",
  5337. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  5338. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  5339. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  5340. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  5341. },
  5342. "require-dev": {
  5343. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  5344. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  5345. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  5346. },
  5347. "type": "symfony-bundle",
  5348. "extra": {
  5349. "branch-alias": {
  5350. "dev-master": "3.x-dev"
  5351. }
  5352. },
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Symfony\\Bundle\\MonologBundle\\": ""
  5356. },
  5357. "exclude-from-classmap": [
  5358. "/Tests/"
  5359. ]
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Fabien Potencier",
  5368. "email": "fabien@symfony.com"
  5369. },
  5370. {
  5371. "name": "Symfony Community",
  5372. "homepage": "https://symfony.com/contributors"
  5373. }
  5374. ],
  5375. "description": "Symfony MonologBundle",
  5376. "homepage": "https://symfony.com",
  5377. "keywords": [
  5378. "log",
  5379. "logging"
  5380. ],
  5381. "support": {
  5382. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5383. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  5384. },
  5385. "funding": [
  5386. {
  5387. "url": "https://symfony.com/sponsor",
  5388. "type": "custom"
  5389. },
  5390. {
  5391. "url": "https://github.com/fabpot",
  5392. "type": "github"
  5393. },
  5394. {
  5395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5396. "type": "tidelift"
  5397. }
  5398. ],
  5399. "time": "2022-05-10T14:24:36+00:00"
  5400. },
  5401. {
  5402. "name": "symfony/options-resolver",
  5403. "version": "v6.3.0",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/symfony/options-resolver.git",
  5407. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a10f19f5198d589d5c33333cffe98dc9820332dd",
  5412. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd",
  5413. "shasum": ""
  5414. },
  5415. "require": {
  5416. "php": ">=8.1",
  5417. "symfony/deprecation-contracts": "^2.5|^3"
  5418. },
  5419. "type": "library",
  5420. "autoload": {
  5421. "psr-4": {
  5422. "Symfony\\Component\\OptionsResolver\\": ""
  5423. },
  5424. "exclude-from-classmap": [
  5425. "/Tests/"
  5426. ]
  5427. },
  5428. "notification-url": "https://packagist.org/downloads/",
  5429. "license": [
  5430. "MIT"
  5431. ],
  5432. "authors": [
  5433. {
  5434. "name": "Fabien Potencier",
  5435. "email": "fabien@symfony.com"
  5436. },
  5437. {
  5438. "name": "Symfony Community",
  5439. "homepage": "https://symfony.com/contributors"
  5440. }
  5441. ],
  5442. "description": "Provides an improved replacement for the array_replace PHP function",
  5443. "homepage": "https://symfony.com",
  5444. "keywords": [
  5445. "config",
  5446. "configuration",
  5447. "options"
  5448. ],
  5449. "support": {
  5450. "source": "https://github.com/symfony/options-resolver/tree/v6.3.0"
  5451. },
  5452. "funding": [
  5453. {
  5454. "url": "https://symfony.com/sponsor",
  5455. "type": "custom"
  5456. },
  5457. {
  5458. "url": "https://github.com/fabpot",
  5459. "type": "github"
  5460. },
  5461. {
  5462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5463. "type": "tidelift"
  5464. }
  5465. ],
  5466. "time": "2023-05-12T14:21:09+00:00"
  5467. },
  5468. {
  5469. "name": "symfony/password-hasher",
  5470. "version": "v6.3.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/symfony/password-hasher.git",
  5474. "reference": "d23ad221989e6b8278d050cabfd7b569eee84590"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/d23ad221989e6b8278d050cabfd7b569eee84590",
  5479. "reference": "d23ad221989e6b8278d050cabfd7b569eee84590",
  5480. "shasum": ""
  5481. },
  5482. "require": {
  5483. "php": ">=8.1"
  5484. },
  5485. "conflict": {
  5486. "symfony/security-core": "<5.4"
  5487. },
  5488. "require-dev": {
  5489. "symfony/console": "^5.4|^6.0",
  5490. "symfony/security-core": "^5.4|^6.0"
  5491. },
  5492. "type": "library",
  5493. "autoload": {
  5494. "psr-4": {
  5495. "Symfony\\Component\\PasswordHasher\\": ""
  5496. },
  5497. "exclude-from-classmap": [
  5498. "/Tests/"
  5499. ]
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Robin Chalas",
  5508. "email": "robin.chalas@gmail.com"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Provides password hashing utilities",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "hashing",
  5519. "password"
  5520. ],
  5521. "support": {
  5522. "source": "https://github.com/symfony/password-hasher/tree/v6.3.0"
  5523. },
  5524. "funding": [
  5525. {
  5526. "url": "https://symfony.com/sponsor",
  5527. "type": "custom"
  5528. },
  5529. {
  5530. "url": "https://github.com/fabpot",
  5531. "type": "github"
  5532. },
  5533. {
  5534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5535. "type": "tidelift"
  5536. }
  5537. ],
  5538. "time": "2023-02-14T09:04:20+00:00"
  5539. },
  5540. {
  5541. "name": "symfony/polyfill-intl-grapheme",
  5542. "version": "v1.27.0",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5546. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5551. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=7.1"
  5556. },
  5557. "suggest": {
  5558. "ext-intl": "For best performance"
  5559. },
  5560. "type": "library",
  5561. "extra": {
  5562. "branch-alias": {
  5563. "dev-main": "1.27-dev"
  5564. },
  5565. "thanks": {
  5566. "name": "symfony/polyfill",
  5567. "url": "https://github.com/symfony/polyfill"
  5568. }
  5569. },
  5570. "autoload": {
  5571. "files": [
  5572. "bootstrap.php"
  5573. ],
  5574. "psr-4": {
  5575. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5576. }
  5577. },
  5578. "notification-url": "https://packagist.org/downloads/",
  5579. "license": [
  5580. "MIT"
  5581. ],
  5582. "authors": [
  5583. {
  5584. "name": "Nicolas Grekas",
  5585. "email": "p@tchwork.com"
  5586. },
  5587. {
  5588. "name": "Symfony Community",
  5589. "homepage": "https://symfony.com/contributors"
  5590. }
  5591. ],
  5592. "description": "Symfony polyfill for intl's grapheme_* functions",
  5593. "homepage": "https://symfony.com",
  5594. "keywords": [
  5595. "compatibility",
  5596. "grapheme",
  5597. "intl",
  5598. "polyfill",
  5599. "portable",
  5600. "shim"
  5601. ],
  5602. "support": {
  5603. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5604. },
  5605. "funding": [
  5606. {
  5607. "url": "https://symfony.com/sponsor",
  5608. "type": "custom"
  5609. },
  5610. {
  5611. "url": "https://github.com/fabpot",
  5612. "type": "github"
  5613. },
  5614. {
  5615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5616. "type": "tidelift"
  5617. }
  5618. ],
  5619. "time": "2022-11-03T14:55:06+00:00"
  5620. },
  5621. {
  5622. "name": "symfony/polyfill-intl-icu",
  5623. "version": "v1.27.0",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5627. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5632. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5633. "shasum": ""
  5634. },
  5635. "require": {
  5636. "php": ">=7.1"
  5637. },
  5638. "suggest": {
  5639. "ext-intl": "For best performance and support of other locales than \"en\""
  5640. },
  5641. "type": "library",
  5642. "extra": {
  5643. "branch-alias": {
  5644. "dev-main": "1.27-dev"
  5645. },
  5646. "thanks": {
  5647. "name": "symfony/polyfill",
  5648. "url": "https://github.com/symfony/polyfill"
  5649. }
  5650. },
  5651. "autoload": {
  5652. "files": [
  5653. "bootstrap.php"
  5654. ],
  5655. "psr-4": {
  5656. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5657. },
  5658. "classmap": [
  5659. "Resources/stubs"
  5660. ],
  5661. "exclude-from-classmap": [
  5662. "/Tests/"
  5663. ]
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "MIT"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Nicolas Grekas",
  5672. "email": "p@tchwork.com"
  5673. },
  5674. {
  5675. "name": "Symfony Community",
  5676. "homepage": "https://symfony.com/contributors"
  5677. }
  5678. ],
  5679. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5680. "homepage": "https://symfony.com",
  5681. "keywords": [
  5682. "compatibility",
  5683. "icu",
  5684. "intl",
  5685. "polyfill",
  5686. "portable",
  5687. "shim"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2022-11-03T14:55:06+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/polyfill-intl-idn",
  5710. "version": "v1.27.0",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5714. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5719. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5720. "shasum": ""
  5721. },
  5722. "require": {
  5723. "php": ">=7.1",
  5724. "symfony/polyfill-intl-normalizer": "^1.10",
  5725. "symfony/polyfill-php72": "^1.10"
  5726. },
  5727. "suggest": {
  5728. "ext-intl": "For best performance"
  5729. },
  5730. "type": "library",
  5731. "extra": {
  5732. "branch-alias": {
  5733. "dev-main": "1.27-dev"
  5734. },
  5735. "thanks": {
  5736. "name": "symfony/polyfill",
  5737. "url": "https://github.com/symfony/polyfill"
  5738. }
  5739. },
  5740. "autoload": {
  5741. "files": [
  5742. "bootstrap.php"
  5743. ],
  5744. "psr-4": {
  5745. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5746. }
  5747. },
  5748. "notification-url": "https://packagist.org/downloads/",
  5749. "license": [
  5750. "MIT"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Laurent Bassin",
  5755. "email": "laurent@bassin.info"
  5756. },
  5757. {
  5758. "name": "Trevor Rowbotham",
  5759. "email": "trevor.rowbotham@pm.me"
  5760. },
  5761. {
  5762. "name": "Symfony Community",
  5763. "homepage": "https://symfony.com/contributors"
  5764. }
  5765. ],
  5766. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5767. "homepage": "https://symfony.com",
  5768. "keywords": [
  5769. "compatibility",
  5770. "idn",
  5771. "intl",
  5772. "polyfill",
  5773. "portable",
  5774. "shim"
  5775. ],
  5776. "support": {
  5777. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5778. },
  5779. "funding": [
  5780. {
  5781. "url": "https://symfony.com/sponsor",
  5782. "type": "custom"
  5783. },
  5784. {
  5785. "url": "https://github.com/fabpot",
  5786. "type": "github"
  5787. },
  5788. {
  5789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5790. "type": "tidelift"
  5791. }
  5792. ],
  5793. "time": "2022-11-03T14:55:06+00:00"
  5794. },
  5795. {
  5796. "name": "symfony/polyfill-intl-normalizer",
  5797. "version": "v1.27.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5801. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5806. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5807. "shasum": ""
  5808. },
  5809. "require": {
  5810. "php": ">=7.1"
  5811. },
  5812. "suggest": {
  5813. "ext-intl": "For best performance"
  5814. },
  5815. "type": "library",
  5816. "extra": {
  5817. "branch-alias": {
  5818. "dev-main": "1.27-dev"
  5819. },
  5820. "thanks": {
  5821. "name": "symfony/polyfill",
  5822. "url": "https://github.com/symfony/polyfill"
  5823. }
  5824. },
  5825. "autoload": {
  5826. "files": [
  5827. "bootstrap.php"
  5828. ],
  5829. "psr-4": {
  5830. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5831. },
  5832. "classmap": [
  5833. "Resources/stubs"
  5834. ]
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "Nicolas Grekas",
  5843. "email": "p@tchwork.com"
  5844. },
  5845. {
  5846. "name": "Symfony Community",
  5847. "homepage": "https://symfony.com/contributors"
  5848. }
  5849. ],
  5850. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5851. "homepage": "https://symfony.com",
  5852. "keywords": [
  5853. "compatibility",
  5854. "intl",
  5855. "normalizer",
  5856. "polyfill",
  5857. "portable",
  5858. "shim"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5862. },
  5863. "funding": [
  5864. {
  5865. "url": "https://symfony.com/sponsor",
  5866. "type": "custom"
  5867. },
  5868. {
  5869. "url": "https://github.com/fabpot",
  5870. "type": "github"
  5871. },
  5872. {
  5873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5874. "type": "tidelift"
  5875. }
  5876. ],
  5877. "time": "2022-11-03T14:55:06+00:00"
  5878. },
  5879. {
  5880. "name": "symfony/polyfill-mbstring",
  5881. "version": "v1.27.0",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5885. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5890. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5891. "shasum": ""
  5892. },
  5893. "require": {
  5894. "php": ">=7.1"
  5895. },
  5896. "provide": {
  5897. "ext-mbstring": "*"
  5898. },
  5899. "suggest": {
  5900. "ext-mbstring": "For best performance"
  5901. },
  5902. "type": "library",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-main": "1.27-dev"
  5906. },
  5907. "thanks": {
  5908. "name": "symfony/polyfill",
  5909. "url": "https://github.com/symfony/polyfill"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "files": [
  5914. "bootstrap.php"
  5915. ],
  5916. "psr-4": {
  5917. "Symfony\\Polyfill\\Mbstring\\": ""
  5918. }
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "Nicolas Grekas",
  5927. "email": "p@tchwork.com"
  5928. },
  5929. {
  5930. "name": "Symfony Community",
  5931. "homepage": "https://symfony.com/contributors"
  5932. }
  5933. ],
  5934. "description": "Symfony polyfill for the Mbstring extension",
  5935. "homepage": "https://symfony.com",
  5936. "keywords": [
  5937. "compatibility",
  5938. "mbstring",
  5939. "polyfill",
  5940. "portable",
  5941. "shim"
  5942. ],
  5943. "support": {
  5944. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://symfony.com/sponsor",
  5949. "type": "custom"
  5950. },
  5951. {
  5952. "url": "https://github.com/fabpot",
  5953. "type": "github"
  5954. },
  5955. {
  5956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5957. "type": "tidelift"
  5958. }
  5959. ],
  5960. "time": "2022-11-03T14:55:06+00:00"
  5961. },
  5962. {
  5963. "name": "symfony/polyfill-php72",
  5964. "version": "v1.27.0",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/symfony/polyfill-php72.git",
  5968. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5973. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=7.1"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "branch-alias": {
  5982. "dev-main": "1.27-dev"
  5983. },
  5984. "thanks": {
  5985. "name": "symfony/polyfill",
  5986. "url": "https://github.com/symfony/polyfill"
  5987. }
  5988. },
  5989. "autoload": {
  5990. "files": [
  5991. "bootstrap.php"
  5992. ],
  5993. "psr-4": {
  5994. "Symfony\\Polyfill\\Php72\\": ""
  5995. }
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Nicolas Grekas",
  6004. "email": "p@tchwork.com"
  6005. },
  6006. {
  6007. "name": "Symfony Community",
  6008. "homepage": "https://symfony.com/contributors"
  6009. }
  6010. ],
  6011. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6012. "homepage": "https://symfony.com",
  6013. "keywords": [
  6014. "compatibility",
  6015. "polyfill",
  6016. "portable",
  6017. "shim"
  6018. ],
  6019. "support": {
  6020. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6021. },
  6022. "funding": [
  6023. {
  6024. "url": "https://symfony.com/sponsor",
  6025. "type": "custom"
  6026. },
  6027. {
  6028. "url": "https://github.com/fabpot",
  6029. "type": "github"
  6030. },
  6031. {
  6032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6033. "type": "tidelift"
  6034. }
  6035. ],
  6036. "time": "2022-11-03T14:55:06+00:00"
  6037. },
  6038. {
  6039. "name": "symfony/polyfill-php80",
  6040. "version": "v1.27.0",
  6041. "source": {
  6042. "type": "git",
  6043. "url": "https://github.com/symfony/polyfill-php80.git",
  6044. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6045. },
  6046. "dist": {
  6047. "type": "zip",
  6048. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6049. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6050. "shasum": ""
  6051. },
  6052. "require": {
  6053. "php": ">=7.1"
  6054. },
  6055. "type": "library",
  6056. "extra": {
  6057. "branch-alias": {
  6058. "dev-main": "1.27-dev"
  6059. },
  6060. "thanks": {
  6061. "name": "symfony/polyfill",
  6062. "url": "https://github.com/symfony/polyfill"
  6063. }
  6064. },
  6065. "autoload": {
  6066. "files": [
  6067. "bootstrap.php"
  6068. ],
  6069. "psr-4": {
  6070. "Symfony\\Polyfill\\Php80\\": ""
  6071. },
  6072. "classmap": [
  6073. "Resources/stubs"
  6074. ]
  6075. },
  6076. "notification-url": "https://packagist.org/downloads/",
  6077. "license": [
  6078. "MIT"
  6079. ],
  6080. "authors": [
  6081. {
  6082. "name": "Ion Bazan",
  6083. "email": "ion.bazan@gmail.com"
  6084. },
  6085. {
  6086. "name": "Nicolas Grekas",
  6087. "email": "p@tchwork.com"
  6088. },
  6089. {
  6090. "name": "Symfony Community",
  6091. "homepage": "https://symfony.com/contributors"
  6092. }
  6093. ],
  6094. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6095. "homepage": "https://symfony.com",
  6096. "keywords": [
  6097. "compatibility",
  6098. "polyfill",
  6099. "portable",
  6100. "shim"
  6101. ],
  6102. "support": {
  6103. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6104. },
  6105. "funding": [
  6106. {
  6107. "url": "https://symfony.com/sponsor",
  6108. "type": "custom"
  6109. },
  6110. {
  6111. "url": "https://github.com/fabpot",
  6112. "type": "github"
  6113. },
  6114. {
  6115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6116. "type": "tidelift"
  6117. }
  6118. ],
  6119. "time": "2022-11-03T14:55:06+00:00"
  6120. },
  6121. {
  6122. "name": "symfony/polyfill-php83",
  6123. "version": "v1.27.0",
  6124. "source": {
  6125. "type": "git",
  6126. "url": "https://github.com/symfony/polyfill-php83.git",
  6127. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  6128. },
  6129. "dist": {
  6130. "type": "zip",
  6131. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  6132. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  6133. "shasum": ""
  6134. },
  6135. "require": {
  6136. "php": ">=7.1",
  6137. "symfony/polyfill-php80": "^1.14"
  6138. },
  6139. "type": "library",
  6140. "extra": {
  6141. "branch-alias": {
  6142. "dev-main": "1.27-dev"
  6143. },
  6144. "thanks": {
  6145. "name": "symfony/polyfill",
  6146. "url": "https://github.com/symfony/polyfill"
  6147. }
  6148. },
  6149. "autoload": {
  6150. "files": [
  6151. "bootstrap.php"
  6152. ],
  6153. "psr-4": {
  6154. "Symfony\\Polyfill\\Php83\\": ""
  6155. }
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "MIT"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "Nicolas Grekas",
  6164. "email": "p@tchwork.com"
  6165. },
  6166. {
  6167. "name": "Symfony Community",
  6168. "homepage": "https://symfony.com/contributors"
  6169. }
  6170. ],
  6171. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6172. "homepage": "https://symfony.com",
  6173. "keywords": [
  6174. "compatibility",
  6175. "polyfill",
  6176. "portable",
  6177. "shim"
  6178. ],
  6179. "support": {
  6180. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  6181. },
  6182. "funding": [
  6183. {
  6184. "url": "https://symfony.com/sponsor",
  6185. "type": "custom"
  6186. },
  6187. {
  6188. "url": "https://github.com/fabpot",
  6189. "type": "github"
  6190. },
  6191. {
  6192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6193. "type": "tidelift"
  6194. }
  6195. ],
  6196. "time": "2022-11-03T14:55:06+00:00"
  6197. },
  6198. {
  6199. "name": "symfony/process",
  6200. "version": "v6.3.0",
  6201. "source": {
  6202. "type": "git",
  6203. "url": "https://github.com/symfony/process.git",
  6204. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628"
  6205. },
  6206. "dist": {
  6207. "type": "zip",
  6208. "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  6209. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  6210. "shasum": ""
  6211. },
  6212. "require": {
  6213. "php": ">=8.1"
  6214. },
  6215. "type": "library",
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Symfony\\Component\\Process\\": ""
  6219. },
  6220. "exclude-from-classmap": [
  6221. "/Tests/"
  6222. ]
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "MIT"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Fabien Potencier",
  6231. "email": "fabien@symfony.com"
  6232. },
  6233. {
  6234. "name": "Symfony Community",
  6235. "homepage": "https://symfony.com/contributors"
  6236. }
  6237. ],
  6238. "description": "Executes commands in sub-processes",
  6239. "homepage": "https://symfony.com",
  6240. "support": {
  6241. "source": "https://github.com/symfony/process/tree/v6.3.0"
  6242. },
  6243. "funding": [
  6244. {
  6245. "url": "https://symfony.com/sponsor",
  6246. "type": "custom"
  6247. },
  6248. {
  6249. "url": "https://github.com/fabpot",
  6250. "type": "github"
  6251. },
  6252. {
  6253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6254. "type": "tidelift"
  6255. }
  6256. ],
  6257. "time": "2023-05-19T08:06:44+00:00"
  6258. },
  6259. {
  6260. "name": "symfony/property-access",
  6261. "version": "v6.3.0",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/symfony/property-access.git",
  6265. "reference": "db9358571ce63f09c439c2fee6c12e5b090b69ac"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/symfony/property-access/zipball/db9358571ce63f09c439c2fee6c12e5b090b69ac",
  6270. "reference": "db9358571ce63f09c439c2fee6c12e5b090b69ac",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=8.1",
  6275. "symfony/deprecation-contracts": "^2.5|^3",
  6276. "symfony/property-info": "^5.4|^6.0"
  6277. },
  6278. "require-dev": {
  6279. "symfony/cache": "^5.4|^6.0"
  6280. },
  6281. "type": "library",
  6282. "autoload": {
  6283. "psr-4": {
  6284. "Symfony\\Component\\PropertyAccess\\": ""
  6285. },
  6286. "exclude-from-classmap": [
  6287. "/Tests/"
  6288. ]
  6289. },
  6290. "notification-url": "https://packagist.org/downloads/",
  6291. "license": [
  6292. "MIT"
  6293. ],
  6294. "authors": [
  6295. {
  6296. "name": "Fabien Potencier",
  6297. "email": "fabien@symfony.com"
  6298. },
  6299. {
  6300. "name": "Symfony Community",
  6301. "homepage": "https://symfony.com/contributors"
  6302. }
  6303. ],
  6304. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6305. "homepage": "https://symfony.com",
  6306. "keywords": [
  6307. "access",
  6308. "array",
  6309. "extraction",
  6310. "index",
  6311. "injection",
  6312. "object",
  6313. "property",
  6314. "property-path",
  6315. "reflection"
  6316. ],
  6317. "support": {
  6318. "source": "https://github.com/symfony/property-access/tree/v6.3.0"
  6319. },
  6320. "funding": [
  6321. {
  6322. "url": "https://symfony.com/sponsor",
  6323. "type": "custom"
  6324. },
  6325. {
  6326. "url": "https://github.com/fabpot",
  6327. "type": "github"
  6328. },
  6329. {
  6330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6331. "type": "tidelift"
  6332. }
  6333. ],
  6334. "time": "2023-05-19T08:06:44+00:00"
  6335. },
  6336. {
  6337. "name": "symfony/property-info",
  6338. "version": "v6.3.0",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/symfony/property-info.git",
  6342. "reference": "7f3a03716112269741fe2a809f8f791a371d1fcd"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/symfony/property-info/zipball/7f3a03716112269741fe2a809f8f791a371d1fcd",
  6347. "reference": "7f3a03716112269741fe2a809f8f791a371d1fcd",
  6348. "shasum": ""
  6349. },
  6350. "require": {
  6351. "php": ">=8.1",
  6352. "symfony/string": "^5.4|^6.0"
  6353. },
  6354. "conflict": {
  6355. "phpdocumentor/reflection-docblock": "<5.2",
  6356. "phpdocumentor/type-resolver": "<1.5.1",
  6357. "symfony/dependency-injection": "<5.4"
  6358. },
  6359. "require-dev": {
  6360. "doctrine/annotations": "^1.10.4|^2",
  6361. "phpdocumentor/reflection-docblock": "^5.2",
  6362. "phpstan/phpdoc-parser": "^1.0",
  6363. "symfony/cache": "^5.4|^6.0",
  6364. "symfony/dependency-injection": "^5.4|^6.0",
  6365. "symfony/serializer": "^5.4|^6.0"
  6366. },
  6367. "type": "library",
  6368. "autoload": {
  6369. "psr-4": {
  6370. "Symfony\\Component\\PropertyInfo\\": ""
  6371. },
  6372. "exclude-from-classmap": [
  6373. "/Tests/"
  6374. ]
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "MIT"
  6379. ],
  6380. "authors": [
  6381. {
  6382. "name": "Kévin Dunglas",
  6383. "email": "dunglas@gmail.com"
  6384. },
  6385. {
  6386. "name": "Symfony Community",
  6387. "homepage": "https://symfony.com/contributors"
  6388. }
  6389. ],
  6390. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6391. "homepage": "https://symfony.com",
  6392. "keywords": [
  6393. "doctrine",
  6394. "phpdoc",
  6395. "property",
  6396. "symfony",
  6397. "type",
  6398. "validator"
  6399. ],
  6400. "support": {
  6401. "source": "https://github.com/symfony/property-info/tree/v6.3.0"
  6402. },
  6403. "funding": [
  6404. {
  6405. "url": "https://symfony.com/sponsor",
  6406. "type": "custom"
  6407. },
  6408. {
  6409. "url": "https://github.com/fabpot",
  6410. "type": "github"
  6411. },
  6412. {
  6413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6414. "type": "tidelift"
  6415. }
  6416. ],
  6417. "time": "2023-05-19T08:06:44+00:00"
  6418. },
  6419. {
  6420. "name": "symfony/proxy-manager-bridge",
  6421. "version": "v6.3.0",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6425. "reference": "7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39",
  6430. "reference": "7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6435. "php": ">=8.1",
  6436. "symfony/dependency-injection": "^6.3",
  6437. "symfony/deprecation-contracts": "^2.5|^3"
  6438. },
  6439. "require-dev": {
  6440. "symfony/config": "^6.1"
  6441. },
  6442. "type": "symfony-bridge",
  6443. "autoload": {
  6444. "psr-4": {
  6445. "Symfony\\Bridge\\ProxyManager\\": ""
  6446. },
  6447. "exclude-from-classmap": [
  6448. "/Tests/"
  6449. ]
  6450. },
  6451. "notification-url": "https://packagist.org/downloads/",
  6452. "license": [
  6453. "MIT"
  6454. ],
  6455. "authors": [
  6456. {
  6457. "name": "Fabien Potencier",
  6458. "email": "fabien@symfony.com"
  6459. },
  6460. {
  6461. "name": "Symfony Community",
  6462. "homepage": "https://symfony.com/contributors"
  6463. }
  6464. ],
  6465. "description": "Provides integration for ProxyManager with various Symfony components",
  6466. "homepage": "https://symfony.com",
  6467. "support": {
  6468. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.3.0"
  6469. },
  6470. "funding": [
  6471. {
  6472. "url": "https://symfony.com/sponsor",
  6473. "type": "custom"
  6474. },
  6475. {
  6476. "url": "https://github.com/fabpot",
  6477. "type": "github"
  6478. },
  6479. {
  6480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6481. "type": "tidelift"
  6482. }
  6483. ],
  6484. "time": "2023-05-26T07:49:33+00:00"
  6485. },
  6486. {
  6487. "name": "symfony/routing",
  6488. "version": "v6.3.1",
  6489. "source": {
  6490. "type": "git",
  6491. "url": "https://github.com/symfony/routing.git",
  6492. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5"
  6493. },
  6494. "dist": {
  6495. "type": "zip",
  6496. "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  6497. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  6498. "shasum": ""
  6499. },
  6500. "require": {
  6501. "php": ">=8.1"
  6502. },
  6503. "conflict": {
  6504. "doctrine/annotations": "<1.12",
  6505. "symfony/config": "<6.2",
  6506. "symfony/dependency-injection": "<5.4",
  6507. "symfony/yaml": "<5.4"
  6508. },
  6509. "require-dev": {
  6510. "doctrine/annotations": "^1.12|^2",
  6511. "psr/log": "^1|^2|^3",
  6512. "symfony/config": "^6.2",
  6513. "symfony/dependency-injection": "^5.4|^6.0",
  6514. "symfony/expression-language": "^5.4|^6.0",
  6515. "symfony/http-foundation": "^5.4|^6.0",
  6516. "symfony/yaml": "^5.4|^6.0"
  6517. },
  6518. "type": "library",
  6519. "autoload": {
  6520. "psr-4": {
  6521. "Symfony\\Component\\Routing\\": ""
  6522. },
  6523. "exclude-from-classmap": [
  6524. "/Tests/"
  6525. ]
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Fabien Potencier",
  6534. "email": "fabien@symfony.com"
  6535. },
  6536. {
  6537. "name": "Symfony Community",
  6538. "homepage": "https://symfony.com/contributors"
  6539. }
  6540. ],
  6541. "description": "Maps an HTTP request to a set of configuration variables",
  6542. "homepage": "https://symfony.com",
  6543. "keywords": [
  6544. "router",
  6545. "routing",
  6546. "uri",
  6547. "url"
  6548. ],
  6549. "support": {
  6550. "source": "https://github.com/symfony/routing/tree/v6.3.1"
  6551. },
  6552. "funding": [
  6553. {
  6554. "url": "https://symfony.com/sponsor",
  6555. "type": "custom"
  6556. },
  6557. {
  6558. "url": "https://github.com/fabpot",
  6559. "type": "github"
  6560. },
  6561. {
  6562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6563. "type": "tidelift"
  6564. }
  6565. ],
  6566. "time": "2023-06-05T15:30:22+00:00"
  6567. },
  6568. {
  6569. "name": "symfony/runtime",
  6570. "version": "v6.3.1",
  6571. "source": {
  6572. "type": "git",
  6573. "url": "https://github.com/symfony/runtime.git",
  6574. "reference": "8e83b5d8e0ace903e1a91dedfe08a84ed2a54b0d"
  6575. },
  6576. "dist": {
  6577. "type": "zip",
  6578. "url": "https://api.github.com/repos/symfony/runtime/zipball/8e83b5d8e0ace903e1a91dedfe08a84ed2a54b0d",
  6579. "reference": "8e83b5d8e0ace903e1a91dedfe08a84ed2a54b0d",
  6580. "shasum": ""
  6581. },
  6582. "require": {
  6583. "composer-plugin-api": "^1.0|^2.0",
  6584. "php": ">=8.1"
  6585. },
  6586. "conflict": {
  6587. "symfony/dotenv": "<5.4"
  6588. },
  6589. "require-dev": {
  6590. "composer/composer": "^1.0.2|^2.0",
  6591. "symfony/console": "^5.4.9|^6.0.9",
  6592. "symfony/dotenv": "^5.4|^6.0",
  6593. "symfony/http-foundation": "^5.4|^6.0",
  6594. "symfony/http-kernel": "^5.4|^6.0"
  6595. },
  6596. "type": "composer-plugin",
  6597. "extra": {
  6598. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6599. },
  6600. "autoload": {
  6601. "psr-4": {
  6602. "Symfony\\Component\\Runtime\\": "",
  6603. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6604. },
  6605. "exclude-from-classmap": [
  6606. "/Tests/"
  6607. ]
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Nicolas Grekas",
  6616. "email": "p@tchwork.com"
  6617. },
  6618. {
  6619. "name": "Symfony Community",
  6620. "homepage": "https://symfony.com/contributors"
  6621. }
  6622. ],
  6623. "description": "Enables decoupling PHP applications from global state",
  6624. "homepage": "https://symfony.com",
  6625. "keywords": [
  6626. "runtime"
  6627. ],
  6628. "support": {
  6629. "source": "https://github.com/symfony/runtime/tree/v6.3.1"
  6630. },
  6631. "funding": [
  6632. {
  6633. "url": "https://symfony.com/sponsor",
  6634. "type": "custom"
  6635. },
  6636. {
  6637. "url": "https://github.com/fabpot",
  6638. "type": "github"
  6639. },
  6640. {
  6641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6642. "type": "tidelift"
  6643. }
  6644. ],
  6645. "time": "2023-06-21T12:08:28+00:00"
  6646. },
  6647. {
  6648. "name": "symfony/security-bundle",
  6649. "version": "v6.3.1",
  6650. "source": {
  6651. "type": "git",
  6652. "url": "https://github.com/symfony/security-bundle.git",
  6653. "reference": "f4fe79d7ebafd406e1a6f646839bfbbed641d8b2"
  6654. },
  6655. "dist": {
  6656. "type": "zip",
  6657. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/f4fe79d7ebafd406e1a6f646839bfbbed641d8b2",
  6658. "reference": "f4fe79d7ebafd406e1a6f646839bfbbed641d8b2",
  6659. "shasum": ""
  6660. },
  6661. "require": {
  6662. "composer-runtime-api": ">=2.1",
  6663. "ext-xml": "*",
  6664. "php": ">=8.1",
  6665. "symfony/clock": "^6.3",
  6666. "symfony/config": "^6.1",
  6667. "symfony/dependency-injection": "^6.2",
  6668. "symfony/event-dispatcher": "^5.4|^6.0",
  6669. "symfony/http-foundation": "^6.2",
  6670. "symfony/http-kernel": "^6.2",
  6671. "symfony/password-hasher": "^5.4|^6.0",
  6672. "symfony/security-core": "^6.2",
  6673. "symfony/security-csrf": "^5.4|^6.0",
  6674. "symfony/security-http": "^6.3"
  6675. },
  6676. "conflict": {
  6677. "symfony/browser-kit": "<5.4",
  6678. "symfony/console": "<5.4",
  6679. "symfony/framework-bundle": "<6.3",
  6680. "symfony/http-client": "<5.4",
  6681. "symfony/ldap": "<5.4",
  6682. "symfony/twig-bundle": "<5.4"
  6683. },
  6684. "require-dev": {
  6685. "doctrine/annotations": "^1.10.4|^2",
  6686. "symfony/asset": "^5.4|^6.0",
  6687. "symfony/browser-kit": "^5.4|^6.0",
  6688. "symfony/console": "^5.4|^6.0",
  6689. "symfony/css-selector": "^5.4|^6.0",
  6690. "symfony/dom-crawler": "^5.4|^6.0",
  6691. "symfony/expression-language": "^5.4|^6.0",
  6692. "symfony/form": "^5.4|^6.0",
  6693. "symfony/framework-bundle": "^6.3",
  6694. "symfony/http-client": "^5.4|^6.0",
  6695. "symfony/ldap": "^5.4|^6.0",
  6696. "symfony/process": "^5.4|^6.0",
  6697. "symfony/rate-limiter": "^5.4|^6.0",
  6698. "symfony/serializer": "^5.4|^6.0",
  6699. "symfony/translation": "^5.4|^6.0",
  6700. "symfony/twig-bridge": "^5.4|^6.0",
  6701. "symfony/twig-bundle": "^5.4|^6.0",
  6702. "symfony/validator": "^5.4|^6.0",
  6703. "symfony/yaml": "^5.4|^6.0",
  6704. "twig/twig": "^2.13|^3.0.4",
  6705. "web-token/jwt-checker": "^3.1",
  6706. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  6707. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  6708. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  6709. "web-token/jwt-signature-algorithm-none": "^3.1",
  6710. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  6711. },
  6712. "type": "symfony-bundle",
  6713. "autoload": {
  6714. "psr-4": {
  6715. "Symfony\\Bundle\\SecurityBundle\\": ""
  6716. },
  6717. "exclude-from-classmap": [
  6718. "/Tests/"
  6719. ]
  6720. },
  6721. "notification-url": "https://packagist.org/downloads/",
  6722. "license": [
  6723. "MIT"
  6724. ],
  6725. "authors": [
  6726. {
  6727. "name": "Fabien Potencier",
  6728. "email": "fabien@symfony.com"
  6729. },
  6730. {
  6731. "name": "Symfony Community",
  6732. "homepage": "https://symfony.com/contributors"
  6733. }
  6734. ],
  6735. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6736. "homepage": "https://symfony.com",
  6737. "support": {
  6738. "source": "https://github.com/symfony/security-bundle/tree/v6.3.1"
  6739. },
  6740. "funding": [
  6741. {
  6742. "url": "https://symfony.com/sponsor",
  6743. "type": "custom"
  6744. },
  6745. {
  6746. "url": "https://github.com/fabpot",
  6747. "type": "github"
  6748. },
  6749. {
  6750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6751. "type": "tidelift"
  6752. }
  6753. ],
  6754. "time": "2023-06-21T12:08:28+00:00"
  6755. },
  6756. {
  6757. "name": "symfony/security-core",
  6758. "version": "v6.3.0",
  6759. "source": {
  6760. "type": "git",
  6761. "url": "https://github.com/symfony/security-core.git",
  6762. "reference": "9cb74232e978be1440d2bb7daf91eb40a9363890"
  6763. },
  6764. "dist": {
  6765. "type": "zip",
  6766. "url": "https://api.github.com/repos/symfony/security-core/zipball/9cb74232e978be1440d2bb7daf91eb40a9363890",
  6767. "reference": "9cb74232e978be1440d2bb7daf91eb40a9363890",
  6768. "shasum": ""
  6769. },
  6770. "require": {
  6771. "php": ">=8.1",
  6772. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6773. "symfony/password-hasher": "^5.4|^6.0",
  6774. "symfony/service-contracts": "^2.5|^3"
  6775. },
  6776. "conflict": {
  6777. "symfony/event-dispatcher": "<5.4",
  6778. "symfony/http-foundation": "<5.4",
  6779. "symfony/ldap": "<5.4",
  6780. "symfony/security-guard": "<5.4",
  6781. "symfony/validator": "<5.4"
  6782. },
  6783. "require-dev": {
  6784. "psr/cache": "^1.0|^2.0|^3.0",
  6785. "psr/container": "^1.1|^2.0",
  6786. "psr/log": "^1|^2|^3",
  6787. "symfony/cache": "^5.4|^6.0",
  6788. "symfony/event-dispatcher": "^5.4|^6.0",
  6789. "symfony/expression-language": "^5.4|^6.0",
  6790. "symfony/http-foundation": "^5.4|^6.0",
  6791. "symfony/ldap": "^5.4|^6.0",
  6792. "symfony/string": "^5.4|^6.0",
  6793. "symfony/translation": "^5.4|^6.0",
  6794. "symfony/validator": "^5.4|^6.0"
  6795. },
  6796. "type": "library",
  6797. "autoload": {
  6798. "psr-4": {
  6799. "Symfony\\Component\\Security\\Core\\": ""
  6800. },
  6801. "exclude-from-classmap": [
  6802. "/Tests/"
  6803. ]
  6804. },
  6805. "notification-url": "https://packagist.org/downloads/",
  6806. "license": [
  6807. "MIT"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Fabien Potencier",
  6812. "email": "fabien@symfony.com"
  6813. },
  6814. {
  6815. "name": "Symfony Community",
  6816. "homepage": "https://symfony.com/contributors"
  6817. }
  6818. ],
  6819. "description": "Symfony Security Component - Core Library",
  6820. "homepage": "https://symfony.com",
  6821. "support": {
  6822. "source": "https://github.com/symfony/security-core/tree/v6.3.0"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://symfony.com/sponsor",
  6827. "type": "custom"
  6828. },
  6829. {
  6830. "url": "https://github.com/fabpot",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2023-04-28T15:57:00+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/security-csrf",
  6842. "version": "v6.3.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/security-csrf.git",
  6846. "reference": "1f505c9060bde692eb37718c78a91d95d9abeeec"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/1f505c9060bde692eb37718c78a91d95d9abeeec",
  6851. "reference": "1f505c9060bde692eb37718c78a91d95d9abeeec",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": ">=8.1",
  6856. "symfony/security-core": "^5.4|^6.0"
  6857. },
  6858. "conflict": {
  6859. "symfony/http-foundation": "<5.4"
  6860. },
  6861. "require-dev": {
  6862. "symfony/http-foundation": "^5.4|^6.0"
  6863. },
  6864. "type": "library",
  6865. "autoload": {
  6866. "psr-4": {
  6867. "Symfony\\Component\\Security\\Csrf\\": ""
  6868. },
  6869. "exclude-from-classmap": [
  6870. "/Tests/"
  6871. ]
  6872. },
  6873. "notification-url": "https://packagist.org/downloads/",
  6874. "license": [
  6875. "MIT"
  6876. ],
  6877. "authors": [
  6878. {
  6879. "name": "Fabien Potencier",
  6880. "email": "fabien@symfony.com"
  6881. },
  6882. {
  6883. "name": "Symfony Community",
  6884. "homepage": "https://symfony.com/contributors"
  6885. }
  6886. ],
  6887. "description": "Symfony Security Component - CSRF Library",
  6888. "homepage": "https://symfony.com",
  6889. "support": {
  6890. "source": "https://github.com/symfony/security-csrf/tree/v6.3.0"
  6891. },
  6892. "funding": [
  6893. {
  6894. "url": "https://symfony.com/sponsor",
  6895. "type": "custom"
  6896. },
  6897. {
  6898. "url": "https://github.com/fabpot",
  6899. "type": "github"
  6900. },
  6901. {
  6902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6903. "type": "tidelift"
  6904. }
  6905. ],
  6906. "time": "2023-04-21T14:41:17+00:00"
  6907. },
  6908. {
  6909. "name": "symfony/security-http",
  6910. "version": "v6.3.1",
  6911. "source": {
  6912. "type": "git",
  6913. "url": "https://github.com/symfony/security-http.git",
  6914. "reference": "36d2bdd09c33f63014dc65f164a77ff099d256c6"
  6915. },
  6916. "dist": {
  6917. "type": "zip",
  6918. "url": "https://api.github.com/repos/symfony/security-http/zipball/36d2bdd09c33f63014dc65f164a77ff099d256c6",
  6919. "reference": "36d2bdd09c33f63014dc65f164a77ff099d256c6",
  6920. "shasum": ""
  6921. },
  6922. "require": {
  6923. "php": ">=8.1",
  6924. "symfony/deprecation-contracts": "^2.5|^3",
  6925. "symfony/http-foundation": "^5.4|^6.0",
  6926. "symfony/http-kernel": "^6.3",
  6927. "symfony/polyfill-mbstring": "~1.0",
  6928. "symfony/property-access": "^5.4|^6.0",
  6929. "symfony/security-core": "^6.3"
  6930. },
  6931. "conflict": {
  6932. "symfony/clock": "<6.3",
  6933. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6934. "symfony/http-client-contracts": "<3.0",
  6935. "symfony/security-bundle": "<5.4",
  6936. "symfony/security-csrf": "<5.4"
  6937. },
  6938. "require-dev": {
  6939. "psr/log": "^1|^2|^3",
  6940. "symfony/cache": "^5.4|^6.0",
  6941. "symfony/clock": "^6.3",
  6942. "symfony/expression-language": "^5.4|^6.0",
  6943. "symfony/http-client-contracts": "^3.0",
  6944. "symfony/rate-limiter": "^5.4|^6.0",
  6945. "symfony/routing": "^5.4|^6.0",
  6946. "symfony/security-csrf": "^5.4|^6.0",
  6947. "symfony/translation": "^5.4|^6.0",
  6948. "web-token/jwt-checker": "^3.1",
  6949. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6950. },
  6951. "type": "library",
  6952. "autoload": {
  6953. "psr-4": {
  6954. "Symfony\\Component\\Security\\Http\\": ""
  6955. },
  6956. "exclude-from-classmap": [
  6957. "/Tests/"
  6958. ]
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Fabien Potencier",
  6967. "email": "fabien@symfony.com"
  6968. },
  6969. {
  6970. "name": "Symfony Community",
  6971. "homepage": "https://symfony.com/contributors"
  6972. }
  6973. ],
  6974. "description": "Symfony Security Component - HTTP Integration",
  6975. "homepage": "https://symfony.com",
  6976. "support": {
  6977. "source": "https://github.com/symfony/security-http/tree/v6.3.1"
  6978. },
  6979. "funding": [
  6980. {
  6981. "url": "https://symfony.com/sponsor",
  6982. "type": "custom"
  6983. },
  6984. {
  6985. "url": "https://github.com/fabpot",
  6986. "type": "github"
  6987. },
  6988. {
  6989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6990. "type": "tidelift"
  6991. }
  6992. ],
  6993. "time": "2023-06-18T15:50:12+00:00"
  6994. },
  6995. {
  6996. "name": "symfony/serializer",
  6997. "version": "v6.3.1",
  6998. "source": {
  6999. "type": "git",
  7000. "url": "https://github.com/symfony/serializer.git",
  7001. "reference": "1d238ee3180bc047f8ab713bfb73848d553f4407"
  7002. },
  7003. "dist": {
  7004. "type": "zip",
  7005. "url": "https://api.github.com/repos/symfony/serializer/zipball/1d238ee3180bc047f8ab713bfb73848d553f4407",
  7006. "reference": "1d238ee3180bc047f8ab713bfb73848d553f4407",
  7007. "shasum": ""
  7008. },
  7009. "require": {
  7010. "php": ">=8.1",
  7011. "symfony/polyfill-ctype": "~1.8"
  7012. },
  7013. "conflict": {
  7014. "doctrine/annotations": "<1.12",
  7015. "phpdocumentor/reflection-docblock": "<3.2.2",
  7016. "phpdocumentor/type-resolver": "<1.4.0",
  7017. "symfony/dependency-injection": "<5.4",
  7018. "symfony/property-access": "<5.4",
  7019. "symfony/property-info": "<5.4",
  7020. "symfony/uid": "<5.4",
  7021. "symfony/yaml": "<5.4"
  7022. },
  7023. "require-dev": {
  7024. "doctrine/annotations": "^1.12|^2",
  7025. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7026. "symfony/cache": "^5.4|^6.0",
  7027. "symfony/config": "^5.4|^6.0",
  7028. "symfony/console": "^5.4|^6.0",
  7029. "symfony/dependency-injection": "^5.4|^6.0",
  7030. "symfony/error-handler": "^5.4|^6.0",
  7031. "symfony/filesystem": "^5.4|^6.0",
  7032. "symfony/form": "^5.4|^6.0",
  7033. "symfony/http-foundation": "^5.4|^6.0",
  7034. "symfony/http-kernel": "^5.4|^6.0",
  7035. "symfony/mime": "^5.4|^6.0",
  7036. "symfony/property-access": "^5.4|^6.0",
  7037. "symfony/property-info": "^5.4|^6.0",
  7038. "symfony/uid": "^5.4|^6.0",
  7039. "symfony/validator": "^5.4|^6.0",
  7040. "symfony/var-dumper": "^5.4|^6.0",
  7041. "symfony/var-exporter": "^5.4|^6.0",
  7042. "symfony/yaml": "^5.4|^6.0"
  7043. },
  7044. "type": "library",
  7045. "autoload": {
  7046. "psr-4": {
  7047. "Symfony\\Component\\Serializer\\": ""
  7048. },
  7049. "exclude-from-classmap": [
  7050. "/Tests/"
  7051. ]
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Fabien Potencier",
  7060. "email": "fabien@symfony.com"
  7061. },
  7062. {
  7063. "name": "Symfony Community",
  7064. "homepage": "https://symfony.com/contributors"
  7065. }
  7066. ],
  7067. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7068. "homepage": "https://symfony.com",
  7069. "support": {
  7070. "source": "https://github.com/symfony/serializer/tree/v6.3.1"
  7071. },
  7072. "funding": [
  7073. {
  7074. "url": "https://symfony.com/sponsor",
  7075. "type": "custom"
  7076. },
  7077. {
  7078. "url": "https://github.com/fabpot",
  7079. "type": "github"
  7080. },
  7081. {
  7082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7083. "type": "tidelift"
  7084. }
  7085. ],
  7086. "time": "2023-06-21T19:54:33+00:00"
  7087. },
  7088. {
  7089. "name": "symfony/service-contracts",
  7090. "version": "v3.3.0",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://github.com/symfony/service-contracts.git",
  7094. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7099. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7100. "shasum": ""
  7101. },
  7102. "require": {
  7103. "php": ">=8.1",
  7104. "psr/container": "^2.0"
  7105. },
  7106. "conflict": {
  7107. "ext-psr": "<1.1|>=2"
  7108. },
  7109. "type": "library",
  7110. "extra": {
  7111. "branch-alias": {
  7112. "dev-main": "3.4-dev"
  7113. },
  7114. "thanks": {
  7115. "name": "symfony/contracts",
  7116. "url": "https://github.com/symfony/contracts"
  7117. }
  7118. },
  7119. "autoload": {
  7120. "psr-4": {
  7121. "Symfony\\Contracts\\Service\\": ""
  7122. },
  7123. "exclude-from-classmap": [
  7124. "/Test/"
  7125. ]
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "authors": [
  7132. {
  7133. "name": "Nicolas Grekas",
  7134. "email": "p@tchwork.com"
  7135. },
  7136. {
  7137. "name": "Symfony Community",
  7138. "homepage": "https://symfony.com/contributors"
  7139. }
  7140. ],
  7141. "description": "Generic abstractions related to writing services",
  7142. "homepage": "https://symfony.com",
  7143. "keywords": [
  7144. "abstractions",
  7145. "contracts",
  7146. "decoupling",
  7147. "interfaces",
  7148. "interoperability",
  7149. "standards"
  7150. ],
  7151. "support": {
  7152. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7153. },
  7154. "funding": [
  7155. {
  7156. "url": "https://symfony.com/sponsor",
  7157. "type": "custom"
  7158. },
  7159. {
  7160. "url": "https://github.com/fabpot",
  7161. "type": "github"
  7162. },
  7163. {
  7164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7165. "type": "tidelift"
  7166. }
  7167. ],
  7168. "time": "2023-05-23T14:45:45+00:00"
  7169. },
  7170. {
  7171. "name": "symfony/stopwatch",
  7172. "version": "v6.3.0",
  7173. "source": {
  7174. "type": "git",
  7175. "url": "https://github.com/symfony/stopwatch.git",
  7176. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2"
  7177. },
  7178. "dist": {
  7179. "type": "zip",
  7180. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7181. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7182. "shasum": ""
  7183. },
  7184. "require": {
  7185. "php": ">=8.1",
  7186. "symfony/service-contracts": "^2.5|^3"
  7187. },
  7188. "type": "library",
  7189. "autoload": {
  7190. "psr-4": {
  7191. "Symfony\\Component\\Stopwatch\\": ""
  7192. },
  7193. "exclude-from-classmap": [
  7194. "/Tests/"
  7195. ]
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Fabien Potencier",
  7204. "email": "fabien@symfony.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Provides a way to profile code",
  7212. "homepage": "https://symfony.com",
  7213. "support": {
  7214. "source": "https://github.com/symfony/stopwatch/tree/v6.3.0"
  7215. },
  7216. "funding": [
  7217. {
  7218. "url": "https://symfony.com/sponsor",
  7219. "type": "custom"
  7220. },
  7221. {
  7222. "url": "https://github.com/fabpot",
  7223. "type": "github"
  7224. },
  7225. {
  7226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7227. "type": "tidelift"
  7228. }
  7229. ],
  7230. "time": "2023-02-16T10:14:28+00:00"
  7231. },
  7232. {
  7233. "name": "symfony/string",
  7234. "version": "v6.3.0",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/symfony/string.git",
  7238. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  7243. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  7244. "shasum": ""
  7245. },
  7246. "require": {
  7247. "php": ">=8.1",
  7248. "symfony/polyfill-ctype": "~1.8",
  7249. "symfony/polyfill-intl-grapheme": "~1.0",
  7250. "symfony/polyfill-intl-normalizer": "~1.0",
  7251. "symfony/polyfill-mbstring": "~1.0"
  7252. },
  7253. "conflict": {
  7254. "symfony/translation-contracts": "<2.5"
  7255. },
  7256. "require-dev": {
  7257. "symfony/error-handler": "^5.4|^6.0",
  7258. "symfony/http-client": "^5.4|^6.0",
  7259. "symfony/intl": "^6.2",
  7260. "symfony/translation-contracts": "^2.5|^3.0",
  7261. "symfony/var-exporter": "^5.4|^6.0"
  7262. },
  7263. "type": "library",
  7264. "autoload": {
  7265. "files": [
  7266. "Resources/functions.php"
  7267. ],
  7268. "psr-4": {
  7269. "Symfony\\Component\\String\\": ""
  7270. },
  7271. "exclude-from-classmap": [
  7272. "/Tests/"
  7273. ]
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Nicolas Grekas",
  7282. "email": "p@tchwork.com"
  7283. },
  7284. {
  7285. "name": "Symfony Community",
  7286. "homepage": "https://symfony.com/contributors"
  7287. }
  7288. ],
  7289. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7290. "homepage": "https://symfony.com",
  7291. "keywords": [
  7292. "grapheme",
  7293. "i18n",
  7294. "string",
  7295. "unicode",
  7296. "utf-8",
  7297. "utf8"
  7298. ],
  7299. "support": {
  7300. "source": "https://github.com/symfony/string/tree/v6.3.0"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2023-03-21T21:06:29+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/translation",
  7320. "version": "v6.3.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/translation.git",
  7324. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
  7329. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
  7330. "shasum": ""
  7331. },
  7332. "require": {
  7333. "php": ">=8.1",
  7334. "symfony/polyfill-mbstring": "~1.0",
  7335. "symfony/translation-contracts": "^2.5|^3.0"
  7336. },
  7337. "conflict": {
  7338. "symfony/config": "<5.4",
  7339. "symfony/console": "<5.4",
  7340. "symfony/dependency-injection": "<5.4",
  7341. "symfony/http-client-contracts": "<2.5",
  7342. "symfony/http-kernel": "<5.4",
  7343. "symfony/service-contracts": "<2.5",
  7344. "symfony/twig-bundle": "<5.4",
  7345. "symfony/yaml": "<5.4"
  7346. },
  7347. "provide": {
  7348. "symfony/translation-implementation": "2.3|3.0"
  7349. },
  7350. "require-dev": {
  7351. "nikic/php-parser": "^4.13",
  7352. "psr/log": "^1|^2|^3",
  7353. "symfony/config": "^5.4|^6.0",
  7354. "symfony/console": "^5.4|^6.0",
  7355. "symfony/dependency-injection": "^5.4|^6.0",
  7356. "symfony/finder": "^5.4|^6.0",
  7357. "symfony/http-client-contracts": "^2.5|^3.0",
  7358. "symfony/http-kernel": "^5.4|^6.0",
  7359. "symfony/intl": "^5.4|^6.0",
  7360. "symfony/polyfill-intl-icu": "^1.21",
  7361. "symfony/routing": "^5.4|^6.0",
  7362. "symfony/service-contracts": "^2.5|^3",
  7363. "symfony/yaml": "^5.4|^6.0"
  7364. },
  7365. "type": "library",
  7366. "autoload": {
  7367. "files": [
  7368. "Resources/functions.php"
  7369. ],
  7370. "psr-4": {
  7371. "Symfony\\Component\\Translation\\": ""
  7372. },
  7373. "exclude-from-classmap": [
  7374. "/Tests/"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Fabien Potencier",
  7384. "email": "fabien@symfony.com"
  7385. },
  7386. {
  7387. "name": "Symfony Community",
  7388. "homepage": "https://symfony.com/contributors"
  7389. }
  7390. ],
  7391. "description": "Provides tools to internationalize your application",
  7392. "homepage": "https://symfony.com",
  7393. "support": {
  7394. "source": "https://github.com/symfony/translation/tree/v6.3.0"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2023-05-19T12:46:45+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/translation-contracts",
  7414. "version": "v3.3.0",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/translation-contracts.git",
  7418. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  7423. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "php": ">=8.1"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "branch-alias": {
  7432. "dev-main": "3.4-dev"
  7433. },
  7434. "thanks": {
  7435. "name": "symfony/contracts",
  7436. "url": "https://github.com/symfony/contracts"
  7437. }
  7438. },
  7439. "autoload": {
  7440. "psr-4": {
  7441. "Symfony\\Contracts\\Translation\\": ""
  7442. },
  7443. "exclude-from-classmap": [
  7444. "/Test/"
  7445. ]
  7446. },
  7447. "notification-url": "https://packagist.org/downloads/",
  7448. "license": [
  7449. "MIT"
  7450. ],
  7451. "authors": [
  7452. {
  7453. "name": "Nicolas Grekas",
  7454. "email": "p@tchwork.com"
  7455. },
  7456. {
  7457. "name": "Symfony Community",
  7458. "homepage": "https://symfony.com/contributors"
  7459. }
  7460. ],
  7461. "description": "Generic abstractions related to translation",
  7462. "homepage": "https://symfony.com",
  7463. "keywords": [
  7464. "abstractions",
  7465. "contracts",
  7466. "decoupling",
  7467. "interfaces",
  7468. "interoperability",
  7469. "standards"
  7470. ],
  7471. "support": {
  7472. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  7473. },
  7474. "funding": [
  7475. {
  7476. "url": "https://symfony.com/sponsor",
  7477. "type": "custom"
  7478. },
  7479. {
  7480. "url": "https://github.com/fabpot",
  7481. "type": "github"
  7482. },
  7483. {
  7484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7485. "type": "tidelift"
  7486. }
  7487. ],
  7488. "time": "2023-05-30T17:17:10+00:00"
  7489. },
  7490. {
  7491. "name": "symfony/twig-bridge",
  7492. "version": "v6.3.0",
  7493. "source": {
  7494. "type": "git",
  7495. "url": "https://github.com/symfony/twig-bridge.git",
  7496. "reference": "67a33c71062d7d931fe9a8cb7be79cca986a6c09"
  7497. },
  7498. "dist": {
  7499. "type": "zip",
  7500. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/67a33c71062d7d931fe9a8cb7be79cca986a6c09",
  7501. "reference": "67a33c71062d7d931fe9a8cb7be79cca986a6c09",
  7502. "shasum": ""
  7503. },
  7504. "require": {
  7505. "php": ">=8.1",
  7506. "symfony/translation-contracts": "^2.5|^3",
  7507. "twig/twig": "^2.13|^3.0.4"
  7508. },
  7509. "conflict": {
  7510. "phpdocumentor/reflection-docblock": "<3.2.2",
  7511. "phpdocumentor/type-resolver": "<1.4.0",
  7512. "symfony/console": "<5.4",
  7513. "symfony/form": "<6.3",
  7514. "symfony/http-foundation": "<5.4",
  7515. "symfony/http-kernel": "<6.2",
  7516. "symfony/mime": "<6.2",
  7517. "symfony/translation": "<5.4",
  7518. "symfony/workflow": "<5.4"
  7519. },
  7520. "require-dev": {
  7521. "doctrine/annotations": "^1.12|^2",
  7522. "egulias/email-validator": "^2.1.10|^3|^4",
  7523. "league/html-to-markdown": "^5.0",
  7524. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7525. "symfony/asset": "^5.4|^6.0",
  7526. "symfony/asset-mapper": "^6.3",
  7527. "symfony/console": "^5.4|^6.0",
  7528. "symfony/dependency-injection": "^5.4|^6.0",
  7529. "symfony/expression-language": "^5.4|^6.0",
  7530. "symfony/finder": "^5.4|^6.0",
  7531. "symfony/form": "^6.3",
  7532. "symfony/html-sanitizer": "^6.1",
  7533. "symfony/http-foundation": "^5.4|^6.0",
  7534. "symfony/http-kernel": "^6.2",
  7535. "symfony/intl": "^5.4|^6.0",
  7536. "symfony/mime": "^6.2",
  7537. "symfony/polyfill-intl-icu": "~1.0",
  7538. "symfony/property-info": "^5.4|^6.0",
  7539. "symfony/routing": "^5.4|^6.0",
  7540. "symfony/security-acl": "^2.8|^3.0",
  7541. "symfony/security-core": "^5.4|^6.0",
  7542. "symfony/security-csrf": "^5.4|^6.0",
  7543. "symfony/security-http": "^5.4|^6.0",
  7544. "symfony/serializer": "^6.2",
  7545. "symfony/stopwatch": "^5.4|^6.0",
  7546. "symfony/translation": "^6.1",
  7547. "symfony/web-link": "^5.4|^6.0",
  7548. "symfony/workflow": "^5.4|^6.0",
  7549. "symfony/yaml": "^5.4|^6.0",
  7550. "twig/cssinliner-extra": "^2.12|^3",
  7551. "twig/inky-extra": "^2.12|^3",
  7552. "twig/markdown-extra": "^2.12|^3"
  7553. },
  7554. "type": "symfony-bridge",
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Symfony\\Bridge\\Twig\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com"
  7571. },
  7572. {
  7573. "name": "Symfony Community",
  7574. "homepage": "https://symfony.com/contributors"
  7575. }
  7576. ],
  7577. "description": "Provides integration for Twig with various Symfony components",
  7578. "homepage": "https://symfony.com",
  7579. "support": {
  7580. "source": "https://github.com/symfony/twig-bridge/tree/v6.3.0"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2023-05-29T13:12:36+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/twig-bundle",
  7600. "version": "v6.3.0",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/twig-bundle.git",
  7604. "reference": "d0cd4d1675c0582d27c2e8bb0dc27c0303d8e3ea"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d0cd4d1675c0582d27c2e8bb0dc27c0303d8e3ea",
  7609. "reference": "d0cd4d1675c0582d27c2e8bb0dc27c0303d8e3ea",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "composer-runtime-api": ">=2.1",
  7614. "php": ">=8.1",
  7615. "symfony/config": "^6.1",
  7616. "symfony/dependency-injection": "^6.1",
  7617. "symfony/http-foundation": "^5.4|^6.0",
  7618. "symfony/http-kernel": "^6.2",
  7619. "symfony/twig-bridge": "^6.3",
  7620. "twig/twig": "^2.13|^3.0.4"
  7621. },
  7622. "conflict": {
  7623. "symfony/framework-bundle": "<5.4",
  7624. "symfony/translation": "<5.4"
  7625. },
  7626. "require-dev": {
  7627. "doctrine/annotations": "^1.10.4|^2",
  7628. "symfony/asset": "^5.4|^6.0",
  7629. "symfony/expression-language": "^5.4|^6.0",
  7630. "symfony/finder": "^5.4|^6.0",
  7631. "symfony/form": "^5.4|^6.0",
  7632. "symfony/framework-bundle": "^5.4|^6.0",
  7633. "symfony/routing": "^5.4|^6.0",
  7634. "symfony/stopwatch": "^5.4|^6.0",
  7635. "symfony/translation": "^5.4|^6.0",
  7636. "symfony/web-link": "^5.4|^6.0",
  7637. "symfony/yaml": "^5.4|^6.0"
  7638. },
  7639. "type": "symfony-bundle",
  7640. "autoload": {
  7641. "psr-4": {
  7642. "Symfony\\Bundle\\TwigBundle\\": ""
  7643. },
  7644. "exclude-from-classmap": [
  7645. "/Tests/"
  7646. ]
  7647. },
  7648. "notification-url": "https://packagist.org/downloads/",
  7649. "license": [
  7650. "MIT"
  7651. ],
  7652. "authors": [
  7653. {
  7654. "name": "Fabien Potencier",
  7655. "email": "fabien@symfony.com"
  7656. },
  7657. {
  7658. "name": "Symfony Community",
  7659. "homepage": "https://symfony.com/contributors"
  7660. }
  7661. ],
  7662. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7663. "homepage": "https://symfony.com",
  7664. "support": {
  7665. "source": "https://github.com/symfony/twig-bundle/tree/v6.3.0"
  7666. },
  7667. "funding": [
  7668. {
  7669. "url": "https://symfony.com/sponsor",
  7670. "type": "custom"
  7671. },
  7672. {
  7673. "url": "https://github.com/fabpot",
  7674. "type": "github"
  7675. },
  7676. {
  7677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7678. "type": "tidelift"
  7679. }
  7680. ],
  7681. "time": "2023-05-06T09:53:41+00:00"
  7682. },
  7683. {
  7684. "name": "symfony/validator",
  7685. "version": "v6.3.1",
  7686. "source": {
  7687. "type": "git",
  7688. "url": "https://github.com/symfony/validator.git",
  7689. "reference": "1b71f43c62ee867ab08195ba6039a1bc3e6654dc"
  7690. },
  7691. "dist": {
  7692. "type": "zip",
  7693. "url": "https://api.github.com/repos/symfony/validator/zipball/1b71f43c62ee867ab08195ba6039a1bc3e6654dc",
  7694. "reference": "1b71f43c62ee867ab08195ba6039a1bc3e6654dc",
  7695. "shasum": ""
  7696. },
  7697. "require": {
  7698. "php": ">=8.1",
  7699. "symfony/deprecation-contracts": "^2.5|^3",
  7700. "symfony/polyfill-ctype": "~1.8",
  7701. "symfony/polyfill-mbstring": "~1.0",
  7702. "symfony/polyfill-php83": "^1.27",
  7703. "symfony/translation-contracts": "^2.5|^3"
  7704. },
  7705. "conflict": {
  7706. "doctrine/annotations": "<1.13",
  7707. "doctrine/lexer": "<1.1",
  7708. "symfony/dependency-injection": "<5.4",
  7709. "symfony/expression-language": "<5.4",
  7710. "symfony/http-kernel": "<5.4",
  7711. "symfony/intl": "<5.4",
  7712. "symfony/property-info": "<5.4",
  7713. "symfony/translation": "<5.4",
  7714. "symfony/yaml": "<5.4"
  7715. },
  7716. "require-dev": {
  7717. "doctrine/annotations": "^1.13|^2",
  7718. "egulias/email-validator": "^2.1.10|^3|^4",
  7719. "symfony/cache": "^5.4|^6.0",
  7720. "symfony/config": "^5.4|^6.0",
  7721. "symfony/console": "^5.4|^6.0",
  7722. "symfony/dependency-injection": "^5.4|^6.0",
  7723. "symfony/expression-language": "^5.4|^6.0",
  7724. "symfony/finder": "^5.4|^6.0",
  7725. "symfony/http-client": "^5.4|^6.0",
  7726. "symfony/http-foundation": "^5.4|^6.0",
  7727. "symfony/http-kernel": "^5.4|^6.0",
  7728. "symfony/intl": "^5.4|^6.0",
  7729. "symfony/mime": "^5.4|^6.0",
  7730. "symfony/property-access": "^5.4|^6.0",
  7731. "symfony/property-info": "^5.4|^6.0",
  7732. "symfony/translation": "^5.4|^6.0",
  7733. "symfony/yaml": "^5.4|^6.0"
  7734. },
  7735. "type": "library",
  7736. "autoload": {
  7737. "psr-4": {
  7738. "Symfony\\Component\\Validator\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/"
  7742. ]
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Fabien Potencier",
  7751. "email": "fabien@symfony.com"
  7752. },
  7753. {
  7754. "name": "Symfony Community",
  7755. "homepage": "https://symfony.com/contributors"
  7756. }
  7757. ],
  7758. "description": "Provides tools to validate values",
  7759. "homepage": "https://symfony.com",
  7760. "support": {
  7761. "source": "https://github.com/symfony/validator/tree/v6.3.1"
  7762. },
  7763. "funding": [
  7764. {
  7765. "url": "https://symfony.com/sponsor",
  7766. "type": "custom"
  7767. },
  7768. {
  7769. "url": "https://github.com/fabpot",
  7770. "type": "github"
  7771. },
  7772. {
  7773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7774. "type": "tidelift"
  7775. }
  7776. ],
  7777. "time": "2023-06-21T12:08:28+00:00"
  7778. },
  7779. {
  7780. "name": "symfony/var-dumper",
  7781. "version": "v6.3.1",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/symfony/var-dumper.git",
  7785. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515",
  7790. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": ">=8.1",
  7795. "symfony/polyfill-mbstring": "~1.0"
  7796. },
  7797. "conflict": {
  7798. "symfony/console": "<5.4"
  7799. },
  7800. "require-dev": {
  7801. "ext-iconv": "*",
  7802. "symfony/console": "^5.4|^6.0",
  7803. "symfony/process": "^5.4|^6.0",
  7804. "symfony/uid": "^5.4|^6.0",
  7805. "twig/twig": "^2.13|^3.0.4"
  7806. },
  7807. "bin": [
  7808. "Resources/bin/var-dump-server"
  7809. ],
  7810. "type": "library",
  7811. "autoload": {
  7812. "files": [
  7813. "Resources/functions/dump.php"
  7814. ],
  7815. "psr-4": {
  7816. "Symfony\\Component\\VarDumper\\": ""
  7817. },
  7818. "exclude-from-classmap": [
  7819. "/Tests/"
  7820. ]
  7821. },
  7822. "notification-url": "https://packagist.org/downloads/",
  7823. "license": [
  7824. "MIT"
  7825. ],
  7826. "authors": [
  7827. {
  7828. "name": "Nicolas Grekas",
  7829. "email": "p@tchwork.com"
  7830. },
  7831. {
  7832. "name": "Symfony Community",
  7833. "homepage": "https://symfony.com/contributors"
  7834. }
  7835. ],
  7836. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7837. "homepage": "https://symfony.com",
  7838. "keywords": [
  7839. "debug",
  7840. "dump"
  7841. ],
  7842. "support": {
  7843. "source": "https://github.com/symfony/var-dumper/tree/v6.3.1"
  7844. },
  7845. "funding": [
  7846. {
  7847. "url": "https://symfony.com/sponsor",
  7848. "type": "custom"
  7849. },
  7850. {
  7851. "url": "https://github.com/fabpot",
  7852. "type": "github"
  7853. },
  7854. {
  7855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7856. "type": "tidelift"
  7857. }
  7858. ],
  7859. "time": "2023-06-21T12:08:28+00:00"
  7860. },
  7861. {
  7862. "name": "symfony/var-exporter",
  7863. "version": "v6.3.0",
  7864. "source": {
  7865. "type": "git",
  7866. "url": "https://github.com/symfony/var-exporter.git",
  7867. "reference": "db5416d04269f2827d8c54331ba4cfa42620d350"
  7868. },
  7869. "dist": {
  7870. "type": "zip",
  7871. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/db5416d04269f2827d8c54331ba4cfa42620d350",
  7872. "reference": "db5416d04269f2827d8c54331ba4cfa42620d350",
  7873. "shasum": ""
  7874. },
  7875. "require": {
  7876. "php": ">=8.1"
  7877. },
  7878. "require-dev": {
  7879. "symfony/var-dumper": "^5.4|^6.0"
  7880. },
  7881. "type": "library",
  7882. "autoload": {
  7883. "psr-4": {
  7884. "Symfony\\Component\\VarExporter\\": ""
  7885. },
  7886. "exclude-from-classmap": [
  7887. "/Tests/"
  7888. ]
  7889. },
  7890. "notification-url": "https://packagist.org/downloads/",
  7891. "license": [
  7892. "MIT"
  7893. ],
  7894. "authors": [
  7895. {
  7896. "name": "Nicolas Grekas",
  7897. "email": "p@tchwork.com"
  7898. },
  7899. {
  7900. "name": "Symfony Community",
  7901. "homepage": "https://symfony.com/contributors"
  7902. }
  7903. ],
  7904. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7905. "homepage": "https://symfony.com",
  7906. "keywords": [
  7907. "clone",
  7908. "construct",
  7909. "export",
  7910. "hydrate",
  7911. "instantiate",
  7912. "lazy-loading",
  7913. "proxy",
  7914. "serialize"
  7915. ],
  7916. "support": {
  7917. "source": "https://github.com/symfony/var-exporter/tree/v6.3.0"
  7918. },
  7919. "funding": [
  7920. {
  7921. "url": "https://symfony.com/sponsor",
  7922. "type": "custom"
  7923. },
  7924. {
  7925. "url": "https://github.com/fabpot",
  7926. "type": "github"
  7927. },
  7928. {
  7929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7930. "type": "tidelift"
  7931. }
  7932. ],
  7933. "time": "2023-04-21T08:48:44+00:00"
  7934. },
  7935. {
  7936. "name": "symfony/web-link",
  7937. "version": "v6.3.0",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/symfony/web-link.git",
  7941. "reference": "0989ca617d0703cdca501a245f10e194ff22315b"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/symfony/web-link/zipball/0989ca617d0703cdca501a245f10e194ff22315b",
  7946. "reference": "0989ca617d0703cdca501a245f10e194ff22315b",
  7947. "shasum": ""
  7948. },
  7949. "require": {
  7950. "php": ">=8.1",
  7951. "psr/link": "^1.1|^2.0"
  7952. },
  7953. "conflict": {
  7954. "symfony/http-kernel": "<5.4"
  7955. },
  7956. "provide": {
  7957. "psr/link-implementation": "1.0|2.0"
  7958. },
  7959. "require-dev": {
  7960. "symfony/http-kernel": "^5.4|^6.0"
  7961. },
  7962. "type": "library",
  7963. "autoload": {
  7964. "psr-4": {
  7965. "Symfony\\Component\\WebLink\\": ""
  7966. },
  7967. "exclude-from-classmap": [
  7968. "/Tests/"
  7969. ]
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Kévin Dunglas",
  7978. "email": "dunglas@gmail.com"
  7979. },
  7980. {
  7981. "name": "Symfony Community",
  7982. "homepage": "https://symfony.com/contributors"
  7983. }
  7984. ],
  7985. "description": "Manages links between resources",
  7986. "homepage": "https://symfony.com",
  7987. "keywords": [
  7988. "dns-prefetch",
  7989. "http",
  7990. "http2",
  7991. "link",
  7992. "performance",
  7993. "prefetch",
  7994. "preload",
  7995. "prerender",
  7996. "psr13",
  7997. "push"
  7998. ],
  7999. "support": {
  8000. "source": "https://github.com/symfony/web-link/tree/v6.3.0"
  8001. },
  8002. "funding": [
  8003. {
  8004. "url": "https://symfony.com/sponsor",
  8005. "type": "custom"
  8006. },
  8007. {
  8008. "url": "https://github.com/fabpot",
  8009. "type": "github"
  8010. },
  8011. {
  8012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8013. "type": "tidelift"
  8014. }
  8015. ],
  8016. "time": "2023-04-21T14:41:17+00:00"
  8017. },
  8018. {
  8019. "name": "symfony/webpack-encore-bundle",
  8020. "version": "v1.17.1",
  8021. "source": {
  8022. "type": "git",
  8023. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8024. "reference": "7e3b6f69bcfcbb40ecfe83ad7a77e44316d26573"
  8025. },
  8026. "dist": {
  8027. "type": "zip",
  8028. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/7e3b6f69bcfcbb40ecfe83ad7a77e44316d26573",
  8029. "reference": "7e3b6f69bcfcbb40ecfe83ad7a77e44316d26573",
  8030. "shasum": ""
  8031. },
  8032. "require": {
  8033. "php": ">=7.1.3",
  8034. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  8035. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8036. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  8037. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  8038. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8039. "symfony/polyfill-php80": "^1.25.0",
  8040. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  8041. },
  8042. "require-dev": {
  8043. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8044. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  8045. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  8046. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  8047. },
  8048. "type": "symfony-bundle",
  8049. "extra": {
  8050. "thanks": {
  8051. "name": "symfony/webpack-encore",
  8052. "url": "https://github.com/symfony/webpack-encore"
  8053. }
  8054. },
  8055. "autoload": {
  8056. "psr-4": {
  8057. "Symfony\\WebpackEncoreBundle\\": "src"
  8058. }
  8059. },
  8060. "notification-url": "https://packagist.org/downloads/",
  8061. "license": [
  8062. "MIT"
  8063. ],
  8064. "authors": [
  8065. {
  8066. "name": "Symfony Community",
  8067. "homepage": "https://symfony.com/contributors"
  8068. }
  8069. ],
  8070. "description": "Integration with your Symfony app & Webpack Encore!",
  8071. "support": {
  8072. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8073. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.17.1"
  8074. },
  8075. "funding": [
  8076. {
  8077. "url": "https://symfony.com/sponsor",
  8078. "type": "custom"
  8079. },
  8080. {
  8081. "url": "https://github.com/fabpot",
  8082. "type": "github"
  8083. },
  8084. {
  8085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8086. "type": "tidelift"
  8087. }
  8088. ],
  8089. "time": "2023-05-29T00:18:01+00:00"
  8090. },
  8091. {
  8092. "name": "symfony/yaml",
  8093. "version": "v6.3.0",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/symfony/yaml.git",
  8097. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  8102. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  8103. "shasum": ""
  8104. },
  8105. "require": {
  8106. "php": ">=8.1",
  8107. "symfony/polyfill-ctype": "^1.8"
  8108. },
  8109. "conflict": {
  8110. "symfony/console": "<5.4"
  8111. },
  8112. "require-dev": {
  8113. "symfony/console": "^5.4|^6.0"
  8114. },
  8115. "bin": [
  8116. "Resources/bin/yaml-lint"
  8117. ],
  8118. "type": "library",
  8119. "autoload": {
  8120. "psr-4": {
  8121. "Symfony\\Component\\Yaml\\": ""
  8122. },
  8123. "exclude-from-classmap": [
  8124. "/Tests/"
  8125. ]
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "MIT"
  8130. ],
  8131. "authors": [
  8132. {
  8133. "name": "Fabien Potencier",
  8134. "email": "fabien@symfony.com"
  8135. },
  8136. {
  8137. "name": "Symfony Community",
  8138. "homepage": "https://symfony.com/contributors"
  8139. }
  8140. ],
  8141. "description": "Loads and dumps YAML files",
  8142. "homepage": "https://symfony.com",
  8143. "support": {
  8144. "source": "https://github.com/symfony/yaml/tree/v6.3.0"
  8145. },
  8146. "funding": [
  8147. {
  8148. "url": "https://symfony.com/sponsor",
  8149. "type": "custom"
  8150. },
  8151. {
  8152. "url": "https://github.com/fabpot",
  8153. "type": "github"
  8154. },
  8155. {
  8156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8157. "type": "tidelift"
  8158. }
  8159. ],
  8160. "time": "2023-04-28T13:28:14+00:00"
  8161. },
  8162. {
  8163. "name": "twig/extra-bundle",
  8164. "version": "v3.6.1",
  8165. "source": {
  8166. "type": "git",
  8167. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8168. "reference": "802cc2dd46ec88285d6c7fa85c26ab7f2cd5bc49"
  8169. },
  8170. "dist": {
  8171. "type": "zip",
  8172. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/802cc2dd46ec88285d6c7fa85c26ab7f2cd5bc49",
  8173. "reference": "802cc2dd46ec88285d6c7fa85c26ab7f2cd5bc49",
  8174. "shasum": ""
  8175. },
  8176. "require": {
  8177. "php": ">=7.2.5",
  8178. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  8179. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  8180. "twig/twig": "^2.7|^3.0"
  8181. },
  8182. "require-dev": {
  8183. "league/commonmark": "^1.0|^2.0",
  8184. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  8185. "twig/cache-extra": "^3.0",
  8186. "twig/cssinliner-extra": "^2.12|^3.0",
  8187. "twig/html-extra": "^2.12|^3.0",
  8188. "twig/inky-extra": "^2.12|^3.0",
  8189. "twig/intl-extra": "^2.12|^3.0",
  8190. "twig/markdown-extra": "^2.12|^3.0",
  8191. "twig/string-extra": "^2.12|^3.0"
  8192. },
  8193. "type": "symfony-bundle",
  8194. "autoload": {
  8195. "psr-4": {
  8196. "Twig\\Extra\\TwigExtraBundle\\": ""
  8197. },
  8198. "exclude-from-classmap": [
  8199. "/Tests/"
  8200. ]
  8201. },
  8202. "notification-url": "https://packagist.org/downloads/",
  8203. "license": [
  8204. "MIT"
  8205. ],
  8206. "authors": [
  8207. {
  8208. "name": "Fabien Potencier",
  8209. "email": "fabien@symfony.com",
  8210. "homepage": "http://fabien.potencier.org",
  8211. "role": "Lead Developer"
  8212. }
  8213. ],
  8214. "description": "A Symfony bundle for extra Twig extensions",
  8215. "homepage": "https://twig.symfony.com",
  8216. "keywords": [
  8217. "bundle",
  8218. "extra",
  8219. "twig"
  8220. ],
  8221. "support": {
  8222. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.6.1"
  8223. },
  8224. "funding": [
  8225. {
  8226. "url": "https://github.com/fabpot",
  8227. "type": "github"
  8228. },
  8229. {
  8230. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8231. "type": "tidelift"
  8232. }
  8233. ],
  8234. "time": "2023-05-06T11:11:46+00:00"
  8235. },
  8236. {
  8237. "name": "twig/markdown-extra",
  8238. "version": "v3.6.0",
  8239. "source": {
  8240. "type": "git",
  8241. "url": "https://github.com/twigphp/markdown-extra.git",
  8242. "reference": "8f1179e279cea6ef14066a4560b859df58acd5d8"
  8243. },
  8244. "dist": {
  8245. "type": "zip",
  8246. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/8f1179e279cea6ef14066a4560b859df58acd5d8",
  8247. "reference": "8f1179e279cea6ef14066a4560b859df58acd5d8",
  8248. "shasum": ""
  8249. },
  8250. "require": {
  8251. "php": ">=7.1.3",
  8252. "twig/twig": "^2.7|^3.0"
  8253. },
  8254. "require-dev": {
  8255. "erusev/parsedown": "^1.7",
  8256. "league/commonmark": "^1.0|^2.0",
  8257. "league/html-to-markdown": "^4.8|^5.0",
  8258. "michelf/php-markdown": "^1.8|^2.0",
  8259. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8260. },
  8261. "type": "library",
  8262. "autoload": {
  8263. "psr-4": {
  8264. "Twig\\Extra\\Markdown\\": ""
  8265. },
  8266. "exclude-from-classmap": [
  8267. "/Tests/"
  8268. ]
  8269. },
  8270. "notification-url": "https://packagist.org/downloads/",
  8271. "license": [
  8272. "MIT"
  8273. ],
  8274. "authors": [
  8275. {
  8276. "name": "Fabien Potencier",
  8277. "email": "fabien@symfony.com",
  8278. "homepage": "http://fabien.potencier.org",
  8279. "role": "Lead Developer"
  8280. }
  8281. ],
  8282. "description": "A Twig extension for Markdown",
  8283. "homepage": "https://twig.symfony.com",
  8284. "keywords": [
  8285. "html",
  8286. "markdown",
  8287. "twig"
  8288. ],
  8289. "support": {
  8290. "source": "https://github.com/twigphp/markdown-extra/tree/v3.6.0"
  8291. },
  8292. "funding": [
  8293. {
  8294. "url": "https://github.com/fabpot",
  8295. "type": "github"
  8296. },
  8297. {
  8298. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8299. "type": "tidelift"
  8300. }
  8301. ],
  8302. "time": "2023-02-09T06:45:16+00:00"
  8303. },
  8304. {
  8305. "name": "twig/twig",
  8306. "version": "v3.6.1",
  8307. "source": {
  8308. "type": "git",
  8309. "url": "https://github.com/twigphp/Twig.git",
  8310. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  8311. },
  8312. "dist": {
  8313. "type": "zip",
  8314. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  8315. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  8316. "shasum": ""
  8317. },
  8318. "require": {
  8319. "php": ">=7.2.5",
  8320. "symfony/polyfill-ctype": "^1.8",
  8321. "symfony/polyfill-mbstring": "^1.3"
  8322. },
  8323. "require-dev": {
  8324. "psr/container": "^1.0|^2.0",
  8325. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8326. },
  8327. "type": "library",
  8328. "autoload": {
  8329. "psr-4": {
  8330. "Twig\\": "src/"
  8331. }
  8332. },
  8333. "notification-url": "https://packagist.org/downloads/",
  8334. "license": [
  8335. "BSD-3-Clause"
  8336. ],
  8337. "authors": [
  8338. {
  8339. "name": "Fabien Potencier",
  8340. "email": "fabien@symfony.com",
  8341. "homepage": "http://fabien.potencier.org",
  8342. "role": "Lead Developer"
  8343. },
  8344. {
  8345. "name": "Twig Team",
  8346. "role": "Contributors"
  8347. },
  8348. {
  8349. "name": "Armin Ronacher",
  8350. "email": "armin.ronacher@active-4.com",
  8351. "role": "Project Founder"
  8352. }
  8353. ],
  8354. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8355. "homepage": "https://twig.symfony.com",
  8356. "keywords": [
  8357. "templating"
  8358. ],
  8359. "support": {
  8360. "issues": "https://github.com/twigphp/Twig/issues",
  8361. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  8362. },
  8363. "funding": [
  8364. {
  8365. "url": "https://github.com/fabpot",
  8366. "type": "github"
  8367. },
  8368. {
  8369. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8370. "type": "tidelift"
  8371. }
  8372. ],
  8373. "time": "2023-06-08T12:52:13+00:00"
  8374. },
  8375. {
  8376. "name": "webmozart/assert",
  8377. "version": "1.11.0",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://github.com/webmozarts/assert.git",
  8381. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8386. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8387. "shasum": ""
  8388. },
  8389. "require": {
  8390. "ext-ctype": "*",
  8391. "php": "^7.2 || ^8.0"
  8392. },
  8393. "conflict": {
  8394. "phpstan/phpstan": "<0.12.20",
  8395. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8396. },
  8397. "require-dev": {
  8398. "phpunit/phpunit": "^8.5.13"
  8399. },
  8400. "type": "library",
  8401. "extra": {
  8402. "branch-alias": {
  8403. "dev-master": "1.10-dev"
  8404. }
  8405. },
  8406. "autoload": {
  8407. "psr-4": {
  8408. "Webmozart\\Assert\\": "src/"
  8409. }
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Bernhard Schussek",
  8418. "email": "bschussek@gmail.com"
  8419. }
  8420. ],
  8421. "description": "Assertions to validate method input/output with nice error messages.",
  8422. "keywords": [
  8423. "assert",
  8424. "check",
  8425. "validate"
  8426. ],
  8427. "support": {
  8428. "issues": "https://github.com/webmozarts/assert/issues",
  8429. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8430. },
  8431. "time": "2022-06-03T18:03:27+00:00"
  8432. }
  8433. ],
  8434. "packages-dev": [
  8435. {
  8436. "name": "myclabs/deep-copy",
  8437. "version": "1.11.1",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/myclabs/DeepCopy.git",
  8441. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8446. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8447. "shasum": ""
  8448. },
  8449. "require": {
  8450. "php": "^7.1 || ^8.0"
  8451. },
  8452. "conflict": {
  8453. "doctrine/collections": "<1.6.8",
  8454. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8455. },
  8456. "require-dev": {
  8457. "doctrine/collections": "^1.6.8",
  8458. "doctrine/common": "^2.13.3 || ^3.2.2",
  8459. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8460. },
  8461. "type": "library",
  8462. "autoload": {
  8463. "files": [
  8464. "src/DeepCopy/deep_copy.php"
  8465. ],
  8466. "psr-4": {
  8467. "DeepCopy\\": "src/DeepCopy/"
  8468. }
  8469. },
  8470. "notification-url": "https://packagist.org/downloads/",
  8471. "license": [
  8472. "MIT"
  8473. ],
  8474. "description": "Create deep copies (clones) of your objects",
  8475. "keywords": [
  8476. "clone",
  8477. "copy",
  8478. "duplicate",
  8479. "object",
  8480. "object graph"
  8481. ],
  8482. "support": {
  8483. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8484. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8489. "type": "tidelift"
  8490. }
  8491. ],
  8492. "time": "2023-03-08T13:26:56+00:00"
  8493. },
  8494. {
  8495. "name": "nikic/php-parser",
  8496. "version": "v4.16.0",
  8497. "source": {
  8498. "type": "git",
  8499. "url": "https://github.com/nikic/PHP-Parser.git",
  8500. "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
  8501. },
  8502. "dist": {
  8503. "type": "zip",
  8504. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
  8505. "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
  8506. "shasum": ""
  8507. },
  8508. "require": {
  8509. "ext-tokenizer": "*",
  8510. "php": ">=7.0"
  8511. },
  8512. "require-dev": {
  8513. "ircmaxell/php-yacc": "^0.0.7",
  8514. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8515. },
  8516. "bin": [
  8517. "bin/php-parse"
  8518. ],
  8519. "type": "library",
  8520. "extra": {
  8521. "branch-alias": {
  8522. "dev-master": "4.9-dev"
  8523. }
  8524. },
  8525. "autoload": {
  8526. "psr-4": {
  8527. "PhpParser\\": "lib/PhpParser"
  8528. }
  8529. },
  8530. "notification-url": "https://packagist.org/downloads/",
  8531. "license": [
  8532. "BSD-3-Clause"
  8533. ],
  8534. "authors": [
  8535. {
  8536. "name": "Nikita Popov"
  8537. }
  8538. ],
  8539. "description": "A PHP parser written in PHP",
  8540. "keywords": [
  8541. "parser",
  8542. "php"
  8543. ],
  8544. "support": {
  8545. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8546. "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
  8547. },
  8548. "time": "2023-06-25T14:52:30+00:00"
  8549. },
  8550. {
  8551. "name": "phar-io/manifest",
  8552. "version": "2.0.3",
  8553. "source": {
  8554. "type": "git",
  8555. "url": "https://github.com/phar-io/manifest.git",
  8556. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8557. },
  8558. "dist": {
  8559. "type": "zip",
  8560. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8561. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8562. "shasum": ""
  8563. },
  8564. "require": {
  8565. "ext-dom": "*",
  8566. "ext-phar": "*",
  8567. "ext-xmlwriter": "*",
  8568. "phar-io/version": "^3.0.1",
  8569. "php": "^7.2 || ^8.0"
  8570. },
  8571. "type": "library",
  8572. "extra": {
  8573. "branch-alias": {
  8574. "dev-master": "2.0.x-dev"
  8575. }
  8576. },
  8577. "autoload": {
  8578. "classmap": [
  8579. "src/"
  8580. ]
  8581. },
  8582. "notification-url": "https://packagist.org/downloads/",
  8583. "license": [
  8584. "BSD-3-Clause"
  8585. ],
  8586. "authors": [
  8587. {
  8588. "name": "Arne Blankerts",
  8589. "email": "arne@blankerts.de",
  8590. "role": "Developer"
  8591. },
  8592. {
  8593. "name": "Sebastian Heuer",
  8594. "email": "sebastian@phpeople.de",
  8595. "role": "Developer"
  8596. },
  8597. {
  8598. "name": "Sebastian Bergmann",
  8599. "email": "sebastian@phpunit.de",
  8600. "role": "Developer"
  8601. }
  8602. ],
  8603. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8604. "support": {
  8605. "issues": "https://github.com/phar-io/manifest/issues",
  8606. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8607. },
  8608. "time": "2021-07-20T11:28:43+00:00"
  8609. },
  8610. {
  8611. "name": "phar-io/version",
  8612. "version": "3.2.1",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/phar-io/version.git",
  8616. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8621. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": "^7.2 || ^8.0"
  8626. },
  8627. "type": "library",
  8628. "autoload": {
  8629. "classmap": [
  8630. "src/"
  8631. ]
  8632. },
  8633. "notification-url": "https://packagist.org/downloads/",
  8634. "license": [
  8635. "BSD-3-Clause"
  8636. ],
  8637. "authors": [
  8638. {
  8639. "name": "Arne Blankerts",
  8640. "email": "arne@blankerts.de",
  8641. "role": "Developer"
  8642. },
  8643. {
  8644. "name": "Sebastian Heuer",
  8645. "email": "sebastian@phpeople.de",
  8646. "role": "Developer"
  8647. },
  8648. {
  8649. "name": "Sebastian Bergmann",
  8650. "email": "sebastian@phpunit.de",
  8651. "role": "Developer"
  8652. }
  8653. ],
  8654. "description": "Library for handling version information and constraints",
  8655. "support": {
  8656. "issues": "https://github.com/phar-io/version/issues",
  8657. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8658. },
  8659. "time": "2022-02-21T01:04:05+00:00"
  8660. },
  8661. {
  8662. "name": "phpunit/php-code-coverage",
  8663. "version": "9.2.26",
  8664. "source": {
  8665. "type": "git",
  8666. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8667. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  8668. },
  8669. "dist": {
  8670. "type": "zip",
  8671. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8672. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8673. "shasum": ""
  8674. },
  8675. "require": {
  8676. "ext-dom": "*",
  8677. "ext-libxml": "*",
  8678. "ext-xmlwriter": "*",
  8679. "nikic/php-parser": "^4.15",
  8680. "php": ">=7.3",
  8681. "phpunit/php-file-iterator": "^3.0.3",
  8682. "phpunit/php-text-template": "^2.0.2",
  8683. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8684. "sebastian/complexity": "^2.0",
  8685. "sebastian/environment": "^5.1.2",
  8686. "sebastian/lines-of-code": "^1.0.3",
  8687. "sebastian/version": "^3.0.1",
  8688. "theseer/tokenizer": "^1.2.0"
  8689. },
  8690. "require-dev": {
  8691. "phpunit/phpunit": "^9.3"
  8692. },
  8693. "suggest": {
  8694. "ext-pcov": "PHP extension that provides line coverage",
  8695. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8696. },
  8697. "type": "library",
  8698. "extra": {
  8699. "branch-alias": {
  8700. "dev-master": "9.2-dev"
  8701. }
  8702. },
  8703. "autoload": {
  8704. "classmap": [
  8705. "src/"
  8706. ]
  8707. },
  8708. "notification-url": "https://packagist.org/downloads/",
  8709. "license": [
  8710. "BSD-3-Clause"
  8711. ],
  8712. "authors": [
  8713. {
  8714. "name": "Sebastian Bergmann",
  8715. "email": "sebastian@phpunit.de",
  8716. "role": "lead"
  8717. }
  8718. ],
  8719. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8720. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8721. "keywords": [
  8722. "coverage",
  8723. "testing",
  8724. "xunit"
  8725. ],
  8726. "support": {
  8727. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8728. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  8729. },
  8730. "funding": [
  8731. {
  8732. "url": "https://github.com/sebastianbergmann",
  8733. "type": "github"
  8734. }
  8735. ],
  8736. "time": "2023-03-06T12:58:08+00:00"
  8737. },
  8738. {
  8739. "name": "phpunit/php-file-iterator",
  8740. "version": "3.0.6",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8744. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8749. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "php": ">=7.3"
  8754. },
  8755. "require-dev": {
  8756. "phpunit/phpunit": "^9.3"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "branch-alias": {
  8761. "dev-master": "3.0-dev"
  8762. }
  8763. },
  8764. "autoload": {
  8765. "classmap": [
  8766. "src/"
  8767. ]
  8768. },
  8769. "notification-url": "https://packagist.org/downloads/",
  8770. "license": [
  8771. "BSD-3-Clause"
  8772. ],
  8773. "authors": [
  8774. {
  8775. "name": "Sebastian Bergmann",
  8776. "email": "sebastian@phpunit.de",
  8777. "role": "lead"
  8778. }
  8779. ],
  8780. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8781. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8782. "keywords": [
  8783. "filesystem",
  8784. "iterator"
  8785. ],
  8786. "support": {
  8787. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8788. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8789. },
  8790. "funding": [
  8791. {
  8792. "url": "https://github.com/sebastianbergmann",
  8793. "type": "github"
  8794. }
  8795. ],
  8796. "time": "2021-12-02T12:48:52+00:00"
  8797. },
  8798. {
  8799. "name": "phpunit/php-invoker",
  8800. "version": "3.1.1",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8804. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8809. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8810. "shasum": ""
  8811. },
  8812. "require": {
  8813. "php": ">=7.3"
  8814. },
  8815. "require-dev": {
  8816. "ext-pcntl": "*",
  8817. "phpunit/phpunit": "^9.3"
  8818. },
  8819. "suggest": {
  8820. "ext-pcntl": "*"
  8821. },
  8822. "type": "library",
  8823. "extra": {
  8824. "branch-alias": {
  8825. "dev-master": "3.1-dev"
  8826. }
  8827. },
  8828. "autoload": {
  8829. "classmap": [
  8830. "src/"
  8831. ]
  8832. },
  8833. "notification-url": "https://packagist.org/downloads/",
  8834. "license": [
  8835. "BSD-3-Clause"
  8836. ],
  8837. "authors": [
  8838. {
  8839. "name": "Sebastian Bergmann",
  8840. "email": "sebastian@phpunit.de",
  8841. "role": "lead"
  8842. }
  8843. ],
  8844. "description": "Invoke callables with a timeout",
  8845. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8846. "keywords": [
  8847. "process"
  8848. ],
  8849. "support": {
  8850. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8851. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8852. },
  8853. "funding": [
  8854. {
  8855. "url": "https://github.com/sebastianbergmann",
  8856. "type": "github"
  8857. }
  8858. ],
  8859. "time": "2020-09-28T05:58:55+00:00"
  8860. },
  8861. {
  8862. "name": "phpunit/php-text-template",
  8863. "version": "2.0.4",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8867. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8872. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": ">=7.3"
  8877. },
  8878. "require-dev": {
  8879. "phpunit/phpunit": "^9.3"
  8880. },
  8881. "type": "library",
  8882. "extra": {
  8883. "branch-alias": {
  8884. "dev-master": "2.0-dev"
  8885. }
  8886. },
  8887. "autoload": {
  8888. "classmap": [
  8889. "src/"
  8890. ]
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "BSD-3-Clause"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Sebastian Bergmann",
  8899. "email": "sebastian@phpunit.de",
  8900. "role": "lead"
  8901. }
  8902. ],
  8903. "description": "Simple template engine.",
  8904. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8905. "keywords": [
  8906. "template"
  8907. ],
  8908. "support": {
  8909. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8910. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://github.com/sebastianbergmann",
  8915. "type": "github"
  8916. }
  8917. ],
  8918. "time": "2020-10-26T05:33:50+00:00"
  8919. },
  8920. {
  8921. "name": "phpunit/php-timer",
  8922. "version": "5.0.3",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8926. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8931. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8932. "shasum": ""
  8933. },
  8934. "require": {
  8935. "php": ">=7.3"
  8936. },
  8937. "require-dev": {
  8938. "phpunit/phpunit": "^9.3"
  8939. },
  8940. "type": "library",
  8941. "extra": {
  8942. "branch-alias": {
  8943. "dev-master": "5.0-dev"
  8944. }
  8945. },
  8946. "autoload": {
  8947. "classmap": [
  8948. "src/"
  8949. ]
  8950. },
  8951. "notification-url": "https://packagist.org/downloads/",
  8952. "license": [
  8953. "BSD-3-Clause"
  8954. ],
  8955. "authors": [
  8956. {
  8957. "name": "Sebastian Bergmann",
  8958. "email": "sebastian@phpunit.de",
  8959. "role": "lead"
  8960. }
  8961. ],
  8962. "description": "Utility class for timing",
  8963. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8964. "keywords": [
  8965. "timer"
  8966. ],
  8967. "support": {
  8968. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8969. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://github.com/sebastianbergmann",
  8974. "type": "github"
  8975. }
  8976. ],
  8977. "time": "2020-10-26T13:16:10+00:00"
  8978. },
  8979. {
  8980. "name": "phpunit/phpunit",
  8981. "version": "9.6.10",
  8982. "source": {
  8983. "type": "git",
  8984. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8985. "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328"
  8986. },
  8987. "dist": {
  8988. "type": "zip",
  8989. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a6d351645c3fe5a30f5e86be6577d946af65a328",
  8990. "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328",
  8991. "shasum": ""
  8992. },
  8993. "require": {
  8994. "doctrine/instantiator": "^1.3.1 || ^2",
  8995. "ext-dom": "*",
  8996. "ext-json": "*",
  8997. "ext-libxml": "*",
  8998. "ext-mbstring": "*",
  8999. "ext-xml": "*",
  9000. "ext-xmlwriter": "*",
  9001. "myclabs/deep-copy": "^1.10.1",
  9002. "phar-io/manifest": "^2.0.3",
  9003. "phar-io/version": "^3.0.2",
  9004. "php": ">=7.3",
  9005. "phpunit/php-code-coverage": "^9.2.13",
  9006. "phpunit/php-file-iterator": "^3.0.5",
  9007. "phpunit/php-invoker": "^3.1.1",
  9008. "phpunit/php-text-template": "^2.0.3",
  9009. "phpunit/php-timer": "^5.0.2",
  9010. "sebastian/cli-parser": "^1.0.1",
  9011. "sebastian/code-unit": "^1.0.6",
  9012. "sebastian/comparator": "^4.0.8",
  9013. "sebastian/diff": "^4.0.3",
  9014. "sebastian/environment": "^5.1.3",
  9015. "sebastian/exporter": "^4.0.5",
  9016. "sebastian/global-state": "^5.0.1",
  9017. "sebastian/object-enumerator": "^4.0.3",
  9018. "sebastian/resource-operations": "^3.0.3",
  9019. "sebastian/type": "^3.2",
  9020. "sebastian/version": "^3.0.2"
  9021. },
  9022. "suggest": {
  9023. "ext-soap": "To be able to generate mocks based on WSDL files",
  9024. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9025. },
  9026. "bin": [
  9027. "phpunit"
  9028. ],
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-master": "9.6-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "files": [
  9037. "src/Framework/Assert/Functions.php"
  9038. ],
  9039. "classmap": [
  9040. "src/"
  9041. ]
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "BSD-3-Clause"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Sebastian Bergmann",
  9050. "email": "sebastian@phpunit.de",
  9051. "role": "lead"
  9052. }
  9053. ],
  9054. "description": "The PHP Unit Testing framework.",
  9055. "homepage": "https://phpunit.de/",
  9056. "keywords": [
  9057. "phpunit",
  9058. "testing",
  9059. "xunit"
  9060. ],
  9061. "support": {
  9062. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9063. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9064. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.10"
  9065. },
  9066. "funding": [
  9067. {
  9068. "url": "https://phpunit.de/sponsors.html",
  9069. "type": "custom"
  9070. },
  9071. {
  9072. "url": "https://github.com/sebastianbergmann",
  9073. "type": "github"
  9074. },
  9075. {
  9076. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9077. "type": "tidelift"
  9078. }
  9079. ],
  9080. "time": "2023-07-10T04:04:23+00:00"
  9081. },
  9082. {
  9083. "name": "sebastian/cli-parser",
  9084. "version": "1.0.1",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9088. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9093. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9094. "shasum": ""
  9095. },
  9096. "require": {
  9097. "php": ">=7.3"
  9098. },
  9099. "require-dev": {
  9100. "phpunit/phpunit": "^9.3"
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-master": "1.0-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "classmap": [
  9110. "src/"
  9111. ]
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "BSD-3-Clause"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Sebastian Bergmann",
  9120. "email": "sebastian@phpunit.de",
  9121. "role": "lead"
  9122. }
  9123. ],
  9124. "description": "Library for parsing CLI options",
  9125. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9126. "support": {
  9127. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9128. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2020-09-28T06:08:49+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/code-unit",
  9140. "version": "1.0.8",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9144. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9149. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "php": ">=7.3"
  9154. },
  9155. "require-dev": {
  9156. "phpunit/phpunit": "^9.3"
  9157. },
  9158. "type": "library",
  9159. "extra": {
  9160. "branch-alias": {
  9161. "dev-master": "1.0-dev"
  9162. }
  9163. },
  9164. "autoload": {
  9165. "classmap": [
  9166. "src/"
  9167. ]
  9168. },
  9169. "notification-url": "https://packagist.org/downloads/",
  9170. "license": [
  9171. "BSD-3-Clause"
  9172. ],
  9173. "authors": [
  9174. {
  9175. "name": "Sebastian Bergmann",
  9176. "email": "sebastian@phpunit.de",
  9177. "role": "lead"
  9178. }
  9179. ],
  9180. "description": "Collection of value objects that represent the PHP code units",
  9181. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9182. "support": {
  9183. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9184. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9185. },
  9186. "funding": [
  9187. {
  9188. "url": "https://github.com/sebastianbergmann",
  9189. "type": "github"
  9190. }
  9191. ],
  9192. "time": "2020-10-26T13:08:54+00:00"
  9193. },
  9194. {
  9195. "name": "sebastian/code-unit-reverse-lookup",
  9196. "version": "2.0.3",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9200. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9205. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "php": ">=7.3"
  9210. },
  9211. "require-dev": {
  9212. "phpunit/phpunit": "^9.3"
  9213. },
  9214. "type": "library",
  9215. "extra": {
  9216. "branch-alias": {
  9217. "dev-master": "2.0-dev"
  9218. }
  9219. },
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de"
  9233. }
  9234. ],
  9235. "description": "Looks up which function or method a line of code belongs to",
  9236. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9237. "support": {
  9238. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9239. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://github.com/sebastianbergmann",
  9244. "type": "github"
  9245. }
  9246. ],
  9247. "time": "2020-09-28T05:30:19+00:00"
  9248. },
  9249. {
  9250. "name": "sebastian/comparator",
  9251. "version": "4.0.8",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/comparator.git",
  9255. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9260. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=7.3",
  9265. "sebastian/diff": "^4.0",
  9266. "sebastian/exporter": "^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. "name": "Jeff Welch",
  9293. "email": "whatthejeff@gmail.com"
  9294. },
  9295. {
  9296. "name": "Volker Dusch",
  9297. "email": "github@wallbash.com"
  9298. },
  9299. {
  9300. "name": "Bernhard Schussek",
  9301. "email": "bschussek@2bepublished.at"
  9302. }
  9303. ],
  9304. "description": "Provides the functionality to compare PHP values for equality",
  9305. "homepage": "https://github.com/sebastianbergmann/comparator",
  9306. "keywords": [
  9307. "comparator",
  9308. "compare",
  9309. "equality"
  9310. ],
  9311. "support": {
  9312. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9313. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9314. },
  9315. "funding": [
  9316. {
  9317. "url": "https://github.com/sebastianbergmann",
  9318. "type": "github"
  9319. }
  9320. ],
  9321. "time": "2022-09-14T12:41:17+00:00"
  9322. },
  9323. {
  9324. "name": "sebastian/complexity",
  9325. "version": "2.0.2",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/sebastianbergmann/complexity.git",
  9329. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9334. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9335. "shasum": ""
  9336. },
  9337. "require": {
  9338. "nikic/php-parser": "^4.7",
  9339. "php": ">=7.3"
  9340. },
  9341. "require-dev": {
  9342. "phpunit/phpunit": "^9.3"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-master": "2.0-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de",
  9363. "role": "lead"
  9364. }
  9365. ],
  9366. "description": "Library for calculating the complexity of PHP code units",
  9367. "homepage": "https://github.com/sebastianbergmann/complexity",
  9368. "support": {
  9369. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9370. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://github.com/sebastianbergmann",
  9375. "type": "github"
  9376. }
  9377. ],
  9378. "time": "2020-10-26T15:52:27+00:00"
  9379. },
  9380. {
  9381. "name": "sebastian/diff",
  9382. "version": "4.0.5",
  9383. "source": {
  9384. "type": "git",
  9385. "url": "https://github.com/sebastianbergmann/diff.git",
  9386. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9387. },
  9388. "dist": {
  9389. "type": "zip",
  9390. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9391. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9392. "shasum": ""
  9393. },
  9394. "require": {
  9395. "php": ">=7.3"
  9396. },
  9397. "require-dev": {
  9398. "phpunit/phpunit": "^9.3",
  9399. "symfony/process": "^4.2 || ^5"
  9400. },
  9401. "type": "library",
  9402. "extra": {
  9403. "branch-alias": {
  9404. "dev-master": "4.0-dev"
  9405. }
  9406. },
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Sebastian Bergmann",
  9419. "email": "sebastian@phpunit.de"
  9420. },
  9421. {
  9422. "name": "Kore Nordmann",
  9423. "email": "mail@kore-nordmann.de"
  9424. }
  9425. ],
  9426. "description": "Diff implementation",
  9427. "homepage": "https://github.com/sebastianbergmann/diff",
  9428. "keywords": [
  9429. "diff",
  9430. "udiff",
  9431. "unidiff",
  9432. "unified diff"
  9433. ],
  9434. "support": {
  9435. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9436. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9437. },
  9438. "funding": [
  9439. {
  9440. "url": "https://github.com/sebastianbergmann",
  9441. "type": "github"
  9442. }
  9443. ],
  9444. "time": "2023-05-07T05:35:17+00:00"
  9445. },
  9446. {
  9447. "name": "sebastian/environment",
  9448. "version": "5.1.5",
  9449. "source": {
  9450. "type": "git",
  9451. "url": "https://github.com/sebastianbergmann/environment.git",
  9452. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9453. },
  9454. "dist": {
  9455. "type": "zip",
  9456. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9457. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9458. "shasum": ""
  9459. },
  9460. "require": {
  9461. "php": ">=7.3"
  9462. },
  9463. "require-dev": {
  9464. "phpunit/phpunit": "^9.3"
  9465. },
  9466. "suggest": {
  9467. "ext-posix": "*"
  9468. },
  9469. "type": "library",
  9470. "extra": {
  9471. "branch-alias": {
  9472. "dev-master": "5.1-dev"
  9473. }
  9474. },
  9475. "autoload": {
  9476. "classmap": [
  9477. "src/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "BSD-3-Clause"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Sebastian Bergmann",
  9487. "email": "sebastian@phpunit.de"
  9488. }
  9489. ],
  9490. "description": "Provides functionality to handle HHVM/PHP environments",
  9491. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9492. "keywords": [
  9493. "Xdebug",
  9494. "environment",
  9495. "hhvm"
  9496. ],
  9497. "support": {
  9498. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9499. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9500. },
  9501. "funding": [
  9502. {
  9503. "url": "https://github.com/sebastianbergmann",
  9504. "type": "github"
  9505. }
  9506. ],
  9507. "time": "2023-02-03T06:03:51+00:00"
  9508. },
  9509. {
  9510. "name": "sebastian/exporter",
  9511. "version": "4.0.5",
  9512. "source": {
  9513. "type": "git",
  9514. "url": "https://github.com/sebastianbergmann/exporter.git",
  9515. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9516. },
  9517. "dist": {
  9518. "type": "zip",
  9519. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9520. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9521. "shasum": ""
  9522. },
  9523. "require": {
  9524. "php": ">=7.3",
  9525. "sebastian/recursion-context": "^4.0"
  9526. },
  9527. "require-dev": {
  9528. "ext-mbstring": "*",
  9529. "phpunit/phpunit": "^9.3"
  9530. },
  9531. "type": "library",
  9532. "extra": {
  9533. "branch-alias": {
  9534. "dev-master": "4.0-dev"
  9535. }
  9536. },
  9537. "autoload": {
  9538. "classmap": [
  9539. "src/"
  9540. ]
  9541. },
  9542. "notification-url": "https://packagist.org/downloads/",
  9543. "license": [
  9544. "BSD-3-Clause"
  9545. ],
  9546. "authors": [
  9547. {
  9548. "name": "Sebastian Bergmann",
  9549. "email": "sebastian@phpunit.de"
  9550. },
  9551. {
  9552. "name": "Jeff Welch",
  9553. "email": "whatthejeff@gmail.com"
  9554. },
  9555. {
  9556. "name": "Volker Dusch",
  9557. "email": "github@wallbash.com"
  9558. },
  9559. {
  9560. "name": "Adam Harvey",
  9561. "email": "aharvey@php.net"
  9562. },
  9563. {
  9564. "name": "Bernhard Schussek",
  9565. "email": "bschussek@gmail.com"
  9566. }
  9567. ],
  9568. "description": "Provides the functionality to export PHP variables for visualization",
  9569. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9570. "keywords": [
  9571. "export",
  9572. "exporter"
  9573. ],
  9574. "support": {
  9575. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9576. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9577. },
  9578. "funding": [
  9579. {
  9580. "url": "https://github.com/sebastianbergmann",
  9581. "type": "github"
  9582. }
  9583. ],
  9584. "time": "2022-09-14T06:03:37+00:00"
  9585. },
  9586. {
  9587. "name": "sebastian/global-state",
  9588. "version": "5.0.5",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/sebastianbergmann/global-state.git",
  9592. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9597. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=7.3",
  9602. "sebastian/object-reflector": "^2.0",
  9603. "sebastian/recursion-context": "^4.0"
  9604. },
  9605. "require-dev": {
  9606. "ext-dom": "*",
  9607. "phpunit/phpunit": "^9.3"
  9608. },
  9609. "suggest": {
  9610. "ext-uopz": "*"
  9611. },
  9612. "type": "library",
  9613. "extra": {
  9614. "branch-alias": {
  9615. "dev-master": "5.0-dev"
  9616. }
  9617. },
  9618. "autoload": {
  9619. "classmap": [
  9620. "src/"
  9621. ]
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "BSD-3-Clause"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Sebastian Bergmann",
  9630. "email": "sebastian@phpunit.de"
  9631. }
  9632. ],
  9633. "description": "Snapshotting of global state",
  9634. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9635. "keywords": [
  9636. "global state"
  9637. ],
  9638. "support": {
  9639. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9640. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9641. },
  9642. "funding": [
  9643. {
  9644. "url": "https://github.com/sebastianbergmann",
  9645. "type": "github"
  9646. }
  9647. ],
  9648. "time": "2022-02-14T08:28:10+00:00"
  9649. },
  9650. {
  9651. "name": "sebastian/lines-of-code",
  9652. "version": "1.0.3",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9656. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9661. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "nikic/php-parser": "^4.6",
  9666. "php": ">=7.3"
  9667. },
  9668. "require-dev": {
  9669. "phpunit/phpunit": "^9.3"
  9670. },
  9671. "type": "library",
  9672. "extra": {
  9673. "branch-alias": {
  9674. "dev-master": "1.0-dev"
  9675. }
  9676. },
  9677. "autoload": {
  9678. "classmap": [
  9679. "src/"
  9680. ]
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "BSD-3-Clause"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Sebastian Bergmann",
  9689. "email": "sebastian@phpunit.de",
  9690. "role": "lead"
  9691. }
  9692. ],
  9693. "description": "Library for counting the lines of code in PHP source code",
  9694. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9695. "support": {
  9696. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9697. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9698. },
  9699. "funding": [
  9700. {
  9701. "url": "https://github.com/sebastianbergmann",
  9702. "type": "github"
  9703. }
  9704. ],
  9705. "time": "2020-11-28T06:42:11+00:00"
  9706. },
  9707. {
  9708. "name": "sebastian/object-enumerator",
  9709. "version": "4.0.4",
  9710. "source": {
  9711. "type": "git",
  9712. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9713. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9714. },
  9715. "dist": {
  9716. "type": "zip",
  9717. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9718. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9719. "shasum": ""
  9720. },
  9721. "require": {
  9722. "php": ">=7.3",
  9723. "sebastian/object-reflector": "^2.0",
  9724. "sebastian/recursion-context": "^4.0"
  9725. },
  9726. "require-dev": {
  9727. "phpunit/phpunit": "^9.3"
  9728. },
  9729. "type": "library",
  9730. "extra": {
  9731. "branch-alias": {
  9732. "dev-master": "4.0-dev"
  9733. }
  9734. },
  9735. "autoload": {
  9736. "classmap": [
  9737. "src/"
  9738. ]
  9739. },
  9740. "notification-url": "https://packagist.org/downloads/",
  9741. "license": [
  9742. "BSD-3-Clause"
  9743. ],
  9744. "authors": [
  9745. {
  9746. "name": "Sebastian Bergmann",
  9747. "email": "sebastian@phpunit.de"
  9748. }
  9749. ],
  9750. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9751. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9752. "support": {
  9753. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9754. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9755. },
  9756. "funding": [
  9757. {
  9758. "url": "https://github.com/sebastianbergmann",
  9759. "type": "github"
  9760. }
  9761. ],
  9762. "time": "2020-10-26T13:12:34+00:00"
  9763. },
  9764. {
  9765. "name": "sebastian/object-reflector",
  9766. "version": "2.0.4",
  9767. "source": {
  9768. "type": "git",
  9769. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9770. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9771. },
  9772. "dist": {
  9773. "type": "zip",
  9774. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9775. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9776. "shasum": ""
  9777. },
  9778. "require": {
  9779. "php": ">=7.3"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^9.3"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "2.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Sebastian Bergmann",
  9802. "email": "sebastian@phpunit.de"
  9803. }
  9804. ],
  9805. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9806. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9807. "support": {
  9808. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9809. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9810. },
  9811. "funding": [
  9812. {
  9813. "url": "https://github.com/sebastianbergmann",
  9814. "type": "github"
  9815. }
  9816. ],
  9817. "time": "2020-10-26T13:14:26+00:00"
  9818. },
  9819. {
  9820. "name": "sebastian/recursion-context",
  9821. "version": "4.0.5",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9825. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9830. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": ">=7.3"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^9.3"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "4.0-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de"
  9858. },
  9859. {
  9860. "name": "Jeff Welch",
  9861. "email": "whatthejeff@gmail.com"
  9862. },
  9863. {
  9864. "name": "Adam Harvey",
  9865. "email": "aharvey@php.net"
  9866. }
  9867. ],
  9868. "description": "Provides functionality to recursively process PHP variables",
  9869. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9870. "support": {
  9871. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9872. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9873. },
  9874. "funding": [
  9875. {
  9876. "url": "https://github.com/sebastianbergmann",
  9877. "type": "github"
  9878. }
  9879. ],
  9880. "time": "2023-02-03T06:07:39+00:00"
  9881. },
  9882. {
  9883. "name": "sebastian/resource-operations",
  9884. "version": "3.0.3",
  9885. "source": {
  9886. "type": "git",
  9887. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9888. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9889. },
  9890. "dist": {
  9891. "type": "zip",
  9892. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9893. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9894. "shasum": ""
  9895. },
  9896. "require": {
  9897. "php": ">=7.3"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^9.0"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-master": "3.0-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "classmap": [
  9910. "src/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Sebastian Bergmann",
  9920. "email": "sebastian@phpunit.de"
  9921. }
  9922. ],
  9923. "description": "Provides a list of PHP built-in functions that operate on resources",
  9924. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9925. "support": {
  9926. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9927. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://github.com/sebastianbergmann",
  9932. "type": "github"
  9933. }
  9934. ],
  9935. "time": "2020-09-28T06:45:17+00:00"
  9936. },
  9937. {
  9938. "name": "sebastian/type",
  9939. "version": "3.2.1",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/sebastianbergmann/type.git",
  9943. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9948. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=7.3"
  9953. },
  9954. "require-dev": {
  9955. "phpunit/phpunit": "^9.5"
  9956. },
  9957. "type": "library",
  9958. "extra": {
  9959. "branch-alias": {
  9960. "dev-master": "3.2-dev"
  9961. }
  9962. },
  9963. "autoload": {
  9964. "classmap": [
  9965. "src/"
  9966. ]
  9967. },
  9968. "notification-url": "https://packagist.org/downloads/",
  9969. "license": [
  9970. "BSD-3-Clause"
  9971. ],
  9972. "authors": [
  9973. {
  9974. "name": "Sebastian Bergmann",
  9975. "email": "sebastian@phpunit.de",
  9976. "role": "lead"
  9977. }
  9978. ],
  9979. "description": "Collection of value objects that represent the types of the PHP type system",
  9980. "homepage": "https://github.com/sebastianbergmann/type",
  9981. "support": {
  9982. "issues": "https://github.com/sebastianbergmann/type/issues",
  9983. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9984. },
  9985. "funding": [
  9986. {
  9987. "url": "https://github.com/sebastianbergmann",
  9988. "type": "github"
  9989. }
  9990. ],
  9991. "time": "2023-02-03T06:13:03+00:00"
  9992. },
  9993. {
  9994. "name": "sebastian/version",
  9995. "version": "3.0.2",
  9996. "source": {
  9997. "type": "git",
  9998. "url": "https://github.com/sebastianbergmann/version.git",
  9999. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10000. },
  10001. "dist": {
  10002. "type": "zip",
  10003. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10004. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10005. "shasum": ""
  10006. },
  10007. "require": {
  10008. "php": ">=7.3"
  10009. },
  10010. "type": "library",
  10011. "extra": {
  10012. "branch-alias": {
  10013. "dev-master": "3.0-dev"
  10014. }
  10015. },
  10016. "autoload": {
  10017. "classmap": [
  10018. "src/"
  10019. ]
  10020. },
  10021. "notification-url": "https://packagist.org/downloads/",
  10022. "license": [
  10023. "BSD-3-Clause"
  10024. ],
  10025. "authors": [
  10026. {
  10027. "name": "Sebastian Bergmann",
  10028. "email": "sebastian@phpunit.de",
  10029. "role": "lead"
  10030. }
  10031. ],
  10032. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10033. "homepage": "https://github.com/sebastianbergmann/version",
  10034. "support": {
  10035. "issues": "https://github.com/sebastianbergmann/version/issues",
  10036. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10037. },
  10038. "funding": [
  10039. {
  10040. "url": "https://github.com/sebastianbergmann",
  10041. "type": "github"
  10042. }
  10043. ],
  10044. "time": "2020-09-28T06:39:44+00:00"
  10045. },
  10046. {
  10047. "name": "symfony/browser-kit",
  10048. "version": "v6.3.0",
  10049. "source": {
  10050. "type": "git",
  10051. "url": "https://github.com/symfony/browser-kit.git",
  10052. "reference": "0eb7228e7c435169e65c911ba8d107d56d850049"
  10053. },
  10054. "dist": {
  10055. "type": "zip",
  10056. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/0eb7228e7c435169e65c911ba8d107d56d850049",
  10057. "reference": "0eb7228e7c435169e65c911ba8d107d56d850049",
  10058. "shasum": ""
  10059. },
  10060. "require": {
  10061. "php": ">=8.1",
  10062. "symfony/dom-crawler": "^5.4|^6.0"
  10063. },
  10064. "require-dev": {
  10065. "symfony/css-selector": "^5.4|^6.0",
  10066. "symfony/http-client": "^5.4|^6.0",
  10067. "symfony/mime": "^5.4|^6.0",
  10068. "symfony/process": "^5.4|^6.0"
  10069. },
  10070. "type": "library",
  10071. "autoload": {
  10072. "psr-4": {
  10073. "Symfony\\Component\\BrowserKit\\": ""
  10074. },
  10075. "exclude-from-classmap": [
  10076. "/Tests/"
  10077. ]
  10078. },
  10079. "notification-url": "https://packagist.org/downloads/",
  10080. "license": [
  10081. "MIT"
  10082. ],
  10083. "authors": [
  10084. {
  10085. "name": "Fabien Potencier",
  10086. "email": "fabien@symfony.com"
  10087. },
  10088. {
  10089. "name": "Symfony Community",
  10090. "homepage": "https://symfony.com/contributors"
  10091. }
  10092. ],
  10093. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10094. "homepage": "https://symfony.com",
  10095. "support": {
  10096. "source": "https://github.com/symfony/browser-kit/tree/v6.3.0"
  10097. },
  10098. "funding": [
  10099. {
  10100. "url": "https://symfony.com/sponsor",
  10101. "type": "custom"
  10102. },
  10103. {
  10104. "url": "https://github.com/fabpot",
  10105. "type": "github"
  10106. },
  10107. {
  10108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10109. "type": "tidelift"
  10110. }
  10111. ],
  10112. "time": "2023-04-25T10:46:17+00:00"
  10113. },
  10114. {
  10115. "name": "symfony/css-selector",
  10116. "version": "v6.3.0",
  10117. "source": {
  10118. "type": "git",
  10119. "url": "https://github.com/symfony/css-selector.git",
  10120. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf"
  10121. },
  10122. "dist": {
  10123. "type": "zip",
  10124. "url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  10125. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  10126. "shasum": ""
  10127. },
  10128. "require": {
  10129. "php": ">=8.1"
  10130. },
  10131. "type": "library",
  10132. "autoload": {
  10133. "psr-4": {
  10134. "Symfony\\Component\\CssSelector\\": ""
  10135. },
  10136. "exclude-from-classmap": [
  10137. "/Tests/"
  10138. ]
  10139. },
  10140. "notification-url": "https://packagist.org/downloads/",
  10141. "license": [
  10142. "MIT"
  10143. ],
  10144. "authors": [
  10145. {
  10146. "name": "Fabien Potencier",
  10147. "email": "fabien@symfony.com"
  10148. },
  10149. {
  10150. "name": "Jean-François Simon",
  10151. "email": "jeanfrancois.simon@sensiolabs.com"
  10152. },
  10153. {
  10154. "name": "Symfony Community",
  10155. "homepage": "https://symfony.com/contributors"
  10156. }
  10157. ],
  10158. "description": "Converts CSS selectors to XPath expressions",
  10159. "homepage": "https://symfony.com",
  10160. "support": {
  10161. "source": "https://github.com/symfony/css-selector/tree/v6.3.0"
  10162. },
  10163. "funding": [
  10164. {
  10165. "url": "https://symfony.com/sponsor",
  10166. "type": "custom"
  10167. },
  10168. {
  10169. "url": "https://github.com/fabpot",
  10170. "type": "github"
  10171. },
  10172. {
  10173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10174. "type": "tidelift"
  10175. }
  10176. ],
  10177. "time": "2023-03-20T16:43:42+00:00"
  10178. },
  10179. {
  10180. "name": "symfony/debug-bundle",
  10181. "version": "v6.3.0",
  10182. "source": {
  10183. "type": "git",
  10184. "url": "https://github.com/symfony/debug-bundle.git",
  10185. "reference": "02fe831f7cdd472c561116189bcc30d0759665e7"
  10186. },
  10187. "dist": {
  10188. "type": "zip",
  10189. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/02fe831f7cdd472c561116189bcc30d0759665e7",
  10190. "reference": "02fe831f7cdd472c561116189bcc30d0759665e7",
  10191. "shasum": ""
  10192. },
  10193. "require": {
  10194. "ext-xml": "*",
  10195. "php": ">=8.1",
  10196. "symfony/dependency-injection": "^5.4|^6.0",
  10197. "symfony/http-kernel": "^5.4|^6.0",
  10198. "symfony/twig-bridge": "^5.4|^6.0",
  10199. "symfony/var-dumper": "^5.4|^6.0"
  10200. },
  10201. "conflict": {
  10202. "symfony/config": "<5.4",
  10203. "symfony/dependency-injection": "<5.4"
  10204. },
  10205. "require-dev": {
  10206. "symfony/config": "^5.4|^6.0",
  10207. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10208. },
  10209. "type": "symfony-bundle",
  10210. "autoload": {
  10211. "psr-4": {
  10212. "Symfony\\Bundle\\DebugBundle\\": ""
  10213. },
  10214. "exclude-from-classmap": [
  10215. "/Tests/"
  10216. ]
  10217. },
  10218. "notification-url": "https://packagist.org/downloads/",
  10219. "license": [
  10220. "MIT"
  10221. ],
  10222. "authors": [
  10223. {
  10224. "name": "Fabien Potencier",
  10225. "email": "fabien@symfony.com"
  10226. },
  10227. {
  10228. "name": "Symfony Community",
  10229. "homepage": "https://symfony.com/contributors"
  10230. }
  10231. ],
  10232. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10233. "homepage": "https://symfony.com",
  10234. "support": {
  10235. "source": "https://github.com/symfony/debug-bundle/tree/v6.3.0"
  10236. },
  10237. "funding": [
  10238. {
  10239. "url": "https://symfony.com/sponsor",
  10240. "type": "custom"
  10241. },
  10242. {
  10243. "url": "https://github.com/fabpot",
  10244. "type": "github"
  10245. },
  10246. {
  10247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10248. "type": "tidelift"
  10249. }
  10250. ],
  10251. "time": "2023-05-25T12:58:06+00:00"
  10252. },
  10253. {
  10254. "name": "symfony/dom-crawler",
  10255. "version": "v6.3.1",
  10256. "source": {
  10257. "type": "git",
  10258. "url": "https://github.com/symfony/dom-crawler.git",
  10259. "reference": "8aa333f41f05afc7fc285a976b58272fd90fc212"
  10260. },
  10261. "dist": {
  10262. "type": "zip",
  10263. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8aa333f41f05afc7fc285a976b58272fd90fc212",
  10264. "reference": "8aa333f41f05afc7fc285a976b58272fd90fc212",
  10265. "shasum": ""
  10266. },
  10267. "require": {
  10268. "masterminds/html5": "^2.6",
  10269. "php": ">=8.1",
  10270. "symfony/polyfill-ctype": "~1.8",
  10271. "symfony/polyfill-mbstring": "~1.0"
  10272. },
  10273. "require-dev": {
  10274. "symfony/css-selector": "^5.4|^6.0"
  10275. },
  10276. "type": "library",
  10277. "autoload": {
  10278. "psr-4": {
  10279. "Symfony\\Component\\DomCrawler\\": ""
  10280. },
  10281. "exclude-from-classmap": [
  10282. "/Tests/"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "MIT"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Fabien Potencier",
  10292. "email": "fabien@symfony.com"
  10293. },
  10294. {
  10295. "name": "Symfony Community",
  10296. "homepage": "https://symfony.com/contributors"
  10297. }
  10298. ],
  10299. "description": "Eases DOM navigation for HTML and XML documents",
  10300. "homepage": "https://symfony.com",
  10301. "support": {
  10302. "source": "https://github.com/symfony/dom-crawler/tree/v6.3.1"
  10303. },
  10304. "funding": [
  10305. {
  10306. "url": "https://symfony.com/sponsor",
  10307. "type": "custom"
  10308. },
  10309. {
  10310. "url": "https://github.com/fabpot",
  10311. "type": "github"
  10312. },
  10313. {
  10314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10315. "type": "tidelift"
  10316. }
  10317. ],
  10318. "time": "2023-06-05T15:30:22+00:00"
  10319. },
  10320. {
  10321. "name": "symfony/maker-bundle",
  10322. "version": "v1.50.0",
  10323. "source": {
  10324. "type": "git",
  10325. "url": "https://github.com/symfony/maker-bundle.git",
  10326. "reference": "a1733f849b999460c308e66f6392fb09b621fa86"
  10327. },
  10328. "dist": {
  10329. "type": "zip",
  10330. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a1733f849b999460c308e66f6392fb09b621fa86",
  10331. "reference": "a1733f849b999460c308e66f6392fb09b621fa86",
  10332. "shasum": ""
  10333. },
  10334. "require": {
  10335. "doctrine/inflector": "^2.0",
  10336. "nikic/php-parser": "^4.11",
  10337. "php": ">=8.0",
  10338. "symfony/config": "^5.4.7|^6.0",
  10339. "symfony/console": "^5.4.7|^6.0",
  10340. "symfony/dependency-injection": "^5.4.7|^6.0",
  10341. "symfony/deprecation-contracts": "^2.2|^3",
  10342. "symfony/filesystem": "^5.4.7|^6.0",
  10343. "symfony/finder": "^5.4.3|^6.0",
  10344. "symfony/framework-bundle": "^5.4.7|^6.0",
  10345. "symfony/http-kernel": "^5.4.7|^6.0",
  10346. "symfony/process": "^5.4.7|^6.0"
  10347. },
  10348. "conflict": {
  10349. "doctrine/doctrine-bundle": "<2.4",
  10350. "doctrine/orm": "<2.10",
  10351. "symfony/doctrine-bridge": "<5.4"
  10352. },
  10353. "require-dev": {
  10354. "composer/semver": "^3.0",
  10355. "doctrine/doctrine-bundle": "^2.4",
  10356. "doctrine/orm": "^2.10.0",
  10357. "symfony/http-client": "^5.4.7|^6.0",
  10358. "symfony/phpunit-bridge": "^5.4.17|^6.0",
  10359. "symfony/polyfill-php80": "^1.16.0",
  10360. "symfony/security-core": "^5.4.7|^6.0",
  10361. "symfony/yaml": "^5.4.3|^6.0",
  10362. "twig/twig": "^2.0|^3.0"
  10363. },
  10364. "type": "symfony-bundle",
  10365. "extra": {
  10366. "branch-alias": {
  10367. "dev-main": "1.0-dev"
  10368. }
  10369. },
  10370. "autoload": {
  10371. "psr-4": {
  10372. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10373. }
  10374. },
  10375. "notification-url": "https://packagist.org/downloads/",
  10376. "license": [
  10377. "MIT"
  10378. ],
  10379. "authors": [
  10380. {
  10381. "name": "Symfony Community",
  10382. "homepage": "https://symfony.com/contributors"
  10383. }
  10384. ],
  10385. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10386. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10387. "keywords": [
  10388. "code generator",
  10389. "dev",
  10390. "generator",
  10391. "scaffold",
  10392. "scaffolding"
  10393. ],
  10394. "support": {
  10395. "issues": "https://github.com/symfony/maker-bundle/issues",
  10396. "source": "https://github.com/symfony/maker-bundle/tree/v1.50.0"
  10397. },
  10398. "funding": [
  10399. {
  10400. "url": "https://symfony.com/sponsor",
  10401. "type": "custom"
  10402. },
  10403. {
  10404. "url": "https://github.com/fabpot",
  10405. "type": "github"
  10406. },
  10407. {
  10408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10409. "type": "tidelift"
  10410. }
  10411. ],
  10412. "time": "2023-07-10T18:21:57+00:00"
  10413. },
  10414. {
  10415. "name": "symfony/phpunit-bridge",
  10416. "version": "v6.3.1",
  10417. "source": {
  10418. "type": "git",
  10419. "url": "https://github.com/symfony/phpunit-bridge.git",
  10420. "reference": "0b0bf59b0d9bd1422145a123a67fb12af546ef0d"
  10421. },
  10422. "dist": {
  10423. "type": "zip",
  10424. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/0b0bf59b0d9bd1422145a123a67fb12af546ef0d",
  10425. "reference": "0b0bf59b0d9bd1422145a123a67fb12af546ef0d",
  10426. "shasum": ""
  10427. },
  10428. "require": {
  10429. "php": ">=7.1.3"
  10430. },
  10431. "conflict": {
  10432. "phpunit/phpunit": "<7.5|9.1.2"
  10433. },
  10434. "require-dev": {
  10435. "symfony/deprecation-contracts": "^2.5|^3.0",
  10436. "symfony/error-handler": "^5.4|^6.0",
  10437. "symfony/polyfill-php81": "^1.27"
  10438. },
  10439. "bin": [
  10440. "bin/simple-phpunit"
  10441. ],
  10442. "type": "symfony-bridge",
  10443. "extra": {
  10444. "thanks": {
  10445. "name": "phpunit/phpunit",
  10446. "url": "https://github.com/sebastianbergmann/phpunit"
  10447. }
  10448. },
  10449. "autoload": {
  10450. "files": [
  10451. "bootstrap.php"
  10452. ],
  10453. "psr-4": {
  10454. "Symfony\\Bridge\\PhpUnit\\": ""
  10455. },
  10456. "exclude-from-classmap": [
  10457. "/Tests/"
  10458. ]
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "MIT"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Nicolas Grekas",
  10467. "email": "p@tchwork.com"
  10468. },
  10469. {
  10470. "name": "Symfony Community",
  10471. "homepage": "https://symfony.com/contributors"
  10472. }
  10473. ],
  10474. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10475. "homepage": "https://symfony.com",
  10476. "support": {
  10477. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.3.1"
  10478. },
  10479. "funding": [
  10480. {
  10481. "url": "https://symfony.com/sponsor",
  10482. "type": "custom"
  10483. },
  10484. {
  10485. "url": "https://github.com/fabpot",
  10486. "type": "github"
  10487. },
  10488. {
  10489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10490. "type": "tidelift"
  10491. }
  10492. ],
  10493. "time": "2023-06-23T13:25:16+00:00"
  10494. },
  10495. {
  10496. "name": "symfony/web-profiler-bundle",
  10497. "version": "v6.3.1",
  10498. "source": {
  10499. "type": "git",
  10500. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10501. "reference": "4a6cf8cb093e720c7ae4d55b1af848ce7e9abd36"
  10502. },
  10503. "dist": {
  10504. "type": "zip",
  10505. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/4a6cf8cb093e720c7ae4d55b1af848ce7e9abd36",
  10506. "reference": "4a6cf8cb093e720c7ae4d55b1af848ce7e9abd36",
  10507. "shasum": ""
  10508. },
  10509. "require": {
  10510. "php": ">=8.1",
  10511. "symfony/config": "^5.4|^6.0",
  10512. "symfony/framework-bundle": "^5.4|^6.0",
  10513. "symfony/http-kernel": "^6.3",
  10514. "symfony/routing": "^5.4|^6.0",
  10515. "symfony/twig-bundle": "^5.4|^6.0",
  10516. "twig/twig": "^2.13|^3.0.4"
  10517. },
  10518. "conflict": {
  10519. "symfony/form": "<5.4",
  10520. "symfony/mailer": "<5.4",
  10521. "symfony/messenger": "<5.4"
  10522. },
  10523. "require-dev": {
  10524. "symfony/browser-kit": "^5.4|^6.0",
  10525. "symfony/console": "^5.4|^6.0",
  10526. "symfony/css-selector": "^5.4|^6.0",
  10527. "symfony/stopwatch": "^5.4|^6.0"
  10528. },
  10529. "type": "symfony-bundle",
  10530. "autoload": {
  10531. "psr-4": {
  10532. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10533. },
  10534. "exclude-from-classmap": [
  10535. "/Tests/"
  10536. ]
  10537. },
  10538. "notification-url": "https://packagist.org/downloads/",
  10539. "license": [
  10540. "MIT"
  10541. ],
  10542. "authors": [
  10543. {
  10544. "name": "Fabien Potencier",
  10545. "email": "fabien@symfony.com"
  10546. },
  10547. {
  10548. "name": "Symfony Community",
  10549. "homepage": "https://symfony.com/contributors"
  10550. }
  10551. ],
  10552. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10553. "homepage": "https://symfony.com",
  10554. "keywords": [
  10555. "dev"
  10556. ],
  10557. "support": {
  10558. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.3.1"
  10559. },
  10560. "funding": [
  10561. {
  10562. "url": "https://symfony.com/sponsor",
  10563. "type": "custom"
  10564. },
  10565. {
  10566. "url": "https://github.com/fabpot",
  10567. "type": "github"
  10568. },
  10569. {
  10570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10571. "type": "tidelift"
  10572. }
  10573. ],
  10574. "time": "2023-06-24T11:51:27+00:00"
  10575. },
  10576. {
  10577. "name": "theseer/tokenizer",
  10578. "version": "1.2.1",
  10579. "source": {
  10580. "type": "git",
  10581. "url": "https://github.com/theseer/tokenizer.git",
  10582. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10583. },
  10584. "dist": {
  10585. "type": "zip",
  10586. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10587. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10588. "shasum": ""
  10589. },
  10590. "require": {
  10591. "ext-dom": "*",
  10592. "ext-tokenizer": "*",
  10593. "ext-xmlwriter": "*",
  10594. "php": "^7.2 || ^8.0"
  10595. },
  10596. "type": "library",
  10597. "autoload": {
  10598. "classmap": [
  10599. "src/"
  10600. ]
  10601. },
  10602. "notification-url": "https://packagist.org/downloads/",
  10603. "license": [
  10604. "BSD-3-Clause"
  10605. ],
  10606. "authors": [
  10607. {
  10608. "name": "Arne Blankerts",
  10609. "email": "arne@blankerts.de",
  10610. "role": "Developer"
  10611. }
  10612. ],
  10613. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10614. "support": {
  10615. "issues": "https://github.com/theseer/tokenizer/issues",
  10616. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10617. },
  10618. "funding": [
  10619. {
  10620. "url": "https://github.com/theseer",
  10621. "type": "github"
  10622. }
  10623. ],
  10624. "time": "2021-07-28T10:34:58+00:00"
  10625. }
  10626. ],
  10627. "aliases": [],
  10628. "minimum-stability": "stable",
  10629. "stability-flags": [],
  10630. "prefer-stable": false,
  10631. "prefer-lowest": false,
  10632. "platform": {
  10633. "php": "^8.1",
  10634. "ext-ctype": "*",
  10635. "ext-iconv": "*"
  10636. },
  10637. "platform-dev": [],
  10638. "platform-overrides": {
  10639. "php": "8.1"
  10640. },
  10641. "plugin-api-version": "2.3.0"
  10642. }