composer.lock 327 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991
  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": "e7399b1e69a6d2a028b33f90c1ba4a28",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  62. },
  63. "time": "2023-11-14T13:51:46+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.3.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770",
  76. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-alpha4",
  95. "drupal/coder": "8.3.22",
  96. "drupal/core": "10.1.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.0",
  99. "phpunit/phpunit": "^9.5",
  100. "squizlabs/php_codesniffer": "^3.7",
  101. "symfony/var-dumper": "^6.3",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.14.0"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.3.0"
  122. },
  123. "time": "2023-10-21T12:57:05+00:00"
  124. },
  125. {
  126. "name": "commerceguys/addressing",
  127. "version": "v2.2.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/commerceguys/addressing.git",
  131. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  136. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "doctrine/collections": "^1.6 || ^2.0",
  141. "php": ">=8.0"
  142. },
  143. "require-dev": {
  144. "ext-json": "*",
  145. "mikey179/vfsstream": "^1.6.11",
  146. "phpunit/phpunit": "^9.6",
  147. "squizlabs/php_codesniffer": "^3.7",
  148. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  149. },
  150. "suggest": {
  151. "symfony/validator": "to validate addresses"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "2.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "CommerceGuys\\Addressing\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Bojan Zivanovic"
  171. },
  172. {
  173. "name": "Damien Tournoud"
  174. }
  175. ],
  176. "description": "Addressing library powered by CLDR and Google's address data.",
  177. "keywords": [
  178. "address",
  179. "internationalization",
  180. "localization",
  181. "postal"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/commerceguys/addressing/issues",
  185. "source": "https://github.com/commerceguys/addressing/tree/v2.2.0"
  186. },
  187. "time": "2024-02-25T11:22:16+00:00"
  188. },
  189. {
  190. "name": "composer/installers",
  191. "version": "v1.12.0",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/installers.git",
  195. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  200. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "composer-plugin-api": "^1.0 || ^2.0"
  205. },
  206. "replace": {
  207. "roundcube/plugin-installer": "*",
  208. "shama/baton": "*"
  209. },
  210. "require-dev": {
  211. "composer/composer": "1.6.* || ^2.0",
  212. "composer/semver": "^1 || ^3",
  213. "phpstan/phpstan": "^0.12.55",
  214. "phpstan/phpstan-phpunit": "^0.12.16",
  215. "symfony/phpunit-bridge": "^4.2 || ^5",
  216. "symfony/process": "^2.3"
  217. },
  218. "type": "composer-plugin",
  219. "extra": {
  220. "class": "Composer\\Installers\\Plugin",
  221. "branch-alias": {
  222. "dev-main": "1.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "Composer\\Installers\\": "src/Composer/Installers"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Kyle Robinson Young",
  237. "email": "kyle@dontkry.com",
  238. "homepage": "https://github.com/shama"
  239. }
  240. ],
  241. "description": "A multi-framework Composer library installer",
  242. "homepage": "https://composer.github.io/installers/",
  243. "keywords": [
  244. "Craft",
  245. "Dolibarr",
  246. "Eliasis",
  247. "Hurad",
  248. "ImageCMS",
  249. "Kanboard",
  250. "Lan Management System",
  251. "MODX Evo",
  252. "MantisBT",
  253. "Mautic",
  254. "Maya",
  255. "OXID",
  256. "Plentymarkets",
  257. "Porto",
  258. "RadPHP",
  259. "SMF",
  260. "Starbug",
  261. "Thelia",
  262. "Whmcs",
  263. "WolfCMS",
  264. "agl",
  265. "aimeos",
  266. "annotatecms",
  267. "attogram",
  268. "bitrix",
  269. "cakephp",
  270. "chef",
  271. "cockpit",
  272. "codeigniter",
  273. "concrete5",
  274. "croogo",
  275. "dokuwiki",
  276. "drupal",
  277. "eZ Platform",
  278. "elgg",
  279. "expressionengine",
  280. "fuelphp",
  281. "grav",
  282. "installer",
  283. "itop",
  284. "joomla",
  285. "known",
  286. "kohana",
  287. "laravel",
  288. "lavalite",
  289. "lithium",
  290. "magento",
  291. "majima",
  292. "mako",
  293. "mediawiki",
  294. "miaoxing",
  295. "modulework",
  296. "modx",
  297. "moodle",
  298. "osclass",
  299. "pantheon",
  300. "phpbb",
  301. "piwik",
  302. "ppi",
  303. "processwire",
  304. "puppet",
  305. "pxcms",
  306. "reindex",
  307. "roundcube",
  308. "shopware",
  309. "silverstripe",
  310. "sydes",
  311. "sylius",
  312. "symfony",
  313. "tastyigniter",
  314. "typo3",
  315. "wordpress",
  316. "yawik",
  317. "zend",
  318. "zikula"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/composer/installers/issues",
  322. "source": "https://github.com/composer/installers/tree/v1.12.0"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://packagist.com",
  327. "type": "custom"
  328. },
  329. {
  330. "url": "https://github.com/composer",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "time": "2021-09-13T08:19:44+00:00"
  339. },
  340. {
  341. "name": "composer/semver",
  342. "version": "3.4.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/composer/semver.git",
  346. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  351. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^5.3.2 || ^7.0 || ^8.0"
  356. },
  357. "require-dev": {
  358. "phpstan/phpstan": "^1.4",
  359. "symfony/phpunit-bridge": "^4.2 || ^5"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-main": "3.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "Composer\\Semver\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Nils Adermann",
  379. "email": "naderman@naderman.de",
  380. "homepage": "http://www.naderman.de"
  381. },
  382. {
  383. "name": "Jordi Boggiano",
  384. "email": "j.boggiano@seld.be",
  385. "homepage": "http://seld.be"
  386. },
  387. {
  388. "name": "Rob Bast",
  389. "email": "rob.bast@gmail.com",
  390. "homepage": "http://robbast.nl"
  391. }
  392. ],
  393. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  394. "keywords": [
  395. "semantic",
  396. "semver",
  397. "validation",
  398. "versioning"
  399. ],
  400. "support": {
  401. "irc": "ircs://irc.libera.chat:6697/composer",
  402. "issues": "https://github.com/composer/semver/issues",
  403. "source": "https://github.com/composer/semver/tree/3.4.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://packagist.com",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://github.com/composer",
  412. "type": "github"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2023-08-31T09:50:34+00:00"
  420. },
  421. {
  422. "name": "consolidation/annotated-command",
  423. "version": "4.9.2",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/consolidation/annotated-command.git",
  427. "reference": "b5255dcbee1de95036185062a103dabc622224de"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de",
  432. "reference": "b5255dcbee1de95036185062a103dabc622224de",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "consolidation/output-formatters": "^4.3.1",
  437. "php": ">=7.1.3",
  438. "psr/log": "^1 || ^2 || ^3",
  439. "symfony/console": "^4.4.8 || ^5 || ^6",
  440. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  441. "symfony/finder": "^4.4.8 || ^5 || ^6"
  442. },
  443. "require-dev": {
  444. "composer-runtime-api": "^2.0",
  445. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  446. "squizlabs/php_codesniffer": "^3",
  447. "yoast/phpunit-polyfills": "^0.2.0"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-main": "4.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Consolidation\\AnnotatedCommand\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Greg Anderson",
  467. "email": "greg.1.anderson@greenknowe.org"
  468. }
  469. ],
  470. "description": "Initialize Symfony Console commands from annotated command class methods.",
  471. "support": {
  472. "issues": "https://github.com/consolidation/annotated-command/issues",
  473. "source": "https://github.com/consolidation/annotated-command/tree/4.9.2"
  474. },
  475. "time": "2023-12-26T14:30:50+00:00"
  476. },
  477. {
  478. "name": "consolidation/config",
  479. "version": "2.1.2",
  480. "source": {
  481. "type": "git",
  482. "url": "https://github.com/consolidation/config.git",
  483. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  484. },
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  488. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  493. "grasmash/expander": "^2.0.1 || ^3",
  494. "php": ">=7.1.3",
  495. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  496. },
  497. "require-dev": {
  498. "ext-json": "*",
  499. "phpunit/phpunit": ">=7.5.20",
  500. "squizlabs/php_codesniffer": "^3",
  501. "symfony/console": "^4 || ^5 || ^6",
  502. "symfony/yaml": "^4 || ^5 || ^6",
  503. "yoast/phpunit-polyfills": "^1"
  504. },
  505. "suggest": {
  506. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  507. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "2.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Consolidation\\Config\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Greg Anderson",
  527. "email": "greg.1.anderson@greenknowe.org"
  528. }
  529. ],
  530. "description": "Provide configuration services for a commandline tool.",
  531. "support": {
  532. "issues": "https://github.com/consolidation/config/issues",
  533. "source": "https://github.com/consolidation/config/tree/2.1.2"
  534. },
  535. "time": "2022-10-06T17:48:03+00:00"
  536. },
  537. {
  538. "name": "consolidation/filter-via-dot-access-data",
  539. "version": "2.0.2",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  543. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  548. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  549. "shasum": ""
  550. },
  551. "require": {
  552. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  553. "php": ">=7.1.3"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  557. "squizlabs/php_codesniffer": "^3",
  558. "yoast/phpunit-polyfills": "^0.2.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-main": "2.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Consolidation\\Filter\\": "src"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Greg Anderson",
  578. "email": "greg.1.anderson@greenknowe.org"
  579. }
  580. ],
  581. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  582. "support": {
  583. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  584. },
  585. "time": "2021-12-30T03:56:08+00:00"
  586. },
  587. {
  588. "name": "consolidation/log",
  589. "version": "3.0.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/consolidation/log.git",
  593. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  598. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=8.0.0",
  603. "psr/log": "^3",
  604. "symfony/console": "^5 || ^6"
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": ">=7.5.20",
  608. "squizlabs/php_codesniffer": "^3",
  609. "yoast/phpunit-polyfills": "^0.2.0"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-main": "2.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Consolidation\\Log\\": "src"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Greg Anderson",
  629. "email": "greg.1.anderson@greenknowe.org"
  630. }
  631. ],
  632. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  633. "support": {
  634. "issues": "https://github.com/consolidation/log/issues",
  635. "source": "https://github.com/consolidation/log/tree/3.0.0"
  636. },
  637. "time": "2022-04-05T16:53:32+00:00"
  638. },
  639. {
  640. "name": "consolidation/output-formatters",
  641. "version": "4.3.2",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/consolidation/output-formatters.git",
  645. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  650. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  655. "php": ">=7.1.3",
  656. "symfony/console": "^4 || ^5 || ^6",
  657. "symfony/finder": "^4 || ^5 || ^6"
  658. },
  659. "require-dev": {
  660. "php-coveralls/php-coveralls": "^2.4.2",
  661. "phpunit/phpunit": "^7 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3",
  663. "symfony/var-dumper": "^4 || ^5 || ^6",
  664. "symfony/yaml": "^4 || ^5 || ^6",
  665. "yoast/phpunit-polyfills": "^1"
  666. },
  667. "suggest": {
  668. "symfony/var-dumper": "For using the var_dump formatter"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "Consolidation\\OutputFormatters\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Greg Anderson",
  683. "email": "greg.1.anderson@greenknowe.org"
  684. }
  685. ],
  686. "description": "Format text by applying transformations provided by plug-in formatters.",
  687. "support": {
  688. "issues": "https://github.com/consolidation/output-formatters/issues",
  689. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  690. },
  691. "time": "2023-07-06T04:45:41+00:00"
  692. },
  693. {
  694. "name": "consolidation/robo",
  695. "version": "4.0.6",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/consolidation/robo.git",
  699. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  704. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "consolidation/annotated-command": "^4.8.1",
  709. "consolidation/config": "^2.0.1",
  710. "consolidation/log": "^2.0.2 || ^3",
  711. "consolidation/output-formatters": "^4.1.2",
  712. "consolidation/self-update": "^2.0",
  713. "league/container": "^3.3.1 || ^4.0",
  714. "php": ">=8.0",
  715. "phpowermove/docblock": "^4.0",
  716. "symfony/console": "^6",
  717. "symfony/event-dispatcher": "^6",
  718. "symfony/filesystem": "^6",
  719. "symfony/finder": "^6",
  720. "symfony/process": "^6",
  721. "symfony/yaml": "^6"
  722. },
  723. "conflict": {
  724. "codegyre/robo": "*"
  725. },
  726. "require-dev": {
  727. "natxet/cssmin": "3.0.4",
  728. "patchwork/jsqueeze": "^2",
  729. "pear/archive_tar": "^1.4.4",
  730. "phpunit/phpunit": "^7.5.20 || ^8",
  731. "squizlabs/php_codesniffer": "^3.6",
  732. "yoast/phpunit-polyfills": "^0.2.0"
  733. },
  734. "suggest": {
  735. "natxet/cssmin": "For minifying CSS files in taskMinify",
  736. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  737. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  738. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  739. },
  740. "bin": [
  741. "robo"
  742. ],
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Robo\\": "src"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Davert",
  756. "email": "davert.php@resend.cc"
  757. }
  758. ],
  759. "description": "Modern task runner",
  760. "support": {
  761. "issues": "https://github.com/consolidation/robo/issues",
  762. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  763. },
  764. "time": "2023-04-30T21:49:04+00:00"
  765. },
  766. {
  767. "name": "consolidation/self-update",
  768. "version": "2.2.0",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/consolidation/self-update.git",
  772. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  777. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "composer/semver": "^3.2",
  782. "php": ">=5.5.0",
  783. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  784. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  785. },
  786. "bin": [
  787. "scripts/release"
  788. ],
  789. "type": "library",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-main": "2.x-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "SelfUpdate\\": "src"
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Alexander Menk",
  807. "email": "menk@mestrona.net"
  808. },
  809. {
  810. "name": "Greg Anderson",
  811. "email": "greg.1.anderson@greenknowe.org"
  812. }
  813. ],
  814. "description": "Provides a self:update command for Symfony Console applications.",
  815. "support": {
  816. "issues": "https://github.com/consolidation/self-update/issues",
  817. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  818. },
  819. "time": "2023-03-18T01:37:41+00:00"
  820. },
  821. {
  822. "name": "consolidation/site-alias",
  823. "version": "4.0.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/consolidation/site-alias.git",
  827. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  832. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "consolidation/config": "^1.2.1 || ^2",
  837. "php": ">=7.4",
  838. "symfony/filesystem": "^5.4 || ^6",
  839. "symfony/finder": "^5 || ^6"
  840. },
  841. "require-dev": {
  842. "php-coveralls/php-coveralls": "^2.4.2",
  843. "phpunit/phpunit": ">=7",
  844. "squizlabs/php_codesniffer": "^3",
  845. "symfony/var-dumper": "^4",
  846. "yoast/phpunit-polyfills": "^0.2.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-main": "4.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "Consolidation\\SiteAlias\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Moshe Weitzman",
  870. "email": "weitzman@tejasa.com"
  871. }
  872. ],
  873. "description": "Manage alias records for local and remote sites.",
  874. "support": {
  875. "issues": "https://github.com/consolidation/site-alias/issues",
  876. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  877. },
  878. "time": "2023-04-29T17:18:10+00:00"
  879. },
  880. {
  881. "name": "consolidation/site-process",
  882. "version": "5.2.0",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/consolidation/site-process.git",
  886. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  891. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "consolidation/config": "^2",
  896. "consolidation/site-alias": "^3 || ^4",
  897. "php": ">=8.0.14",
  898. "symfony/console": "^5.4 || ^6",
  899. "symfony/process": "^6"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": "^9",
  903. "squizlabs/php_codesniffer": "^3"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-main": "5.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Consolidation\\SiteProcess\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. },
  925. {
  926. "name": "Moshe Weitzman",
  927. "email": "weitzman@tejasa.com"
  928. }
  929. ],
  930. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  931. "support": {
  932. "issues": "https://github.com/consolidation/site-process/issues",
  933. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  934. },
  935. "time": "2022-12-06T17:57:16+00:00"
  936. },
  937. {
  938. "name": "dflydev/dot-access-data",
  939. "version": "v3.0.2",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  943. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  948. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "php": "^7.1 || ^8.0"
  953. },
  954. "require-dev": {
  955. "phpstan/phpstan": "^0.12.42",
  956. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  957. "scrutinizer/ocular": "1.6.0",
  958. "squizlabs/php_codesniffer": "^3.5",
  959. "vimeo/psalm": "^4.0.0"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-main": "3.x-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "Dflydev\\DotAccessData\\": "src/"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. },
  987. {
  988. "name": "Carlos Frutos",
  989. "email": "carlos@kiwing.it",
  990. "homepage": "https://github.com/cfrutos"
  991. },
  992. {
  993. "name": "Colin O'Dell",
  994. "email": "colinodell@gmail.com",
  995. "homepage": "https://www.colinodell.com"
  996. }
  997. ],
  998. "description": "Given a deep data structure, access data by dot notation.",
  999. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1000. "keywords": [
  1001. "access",
  1002. "data",
  1003. "dot",
  1004. "notation"
  1005. ],
  1006. "support": {
  1007. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1008. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1009. },
  1010. "time": "2022-10-27T11:44:00+00:00"
  1011. },
  1012. {
  1013. "name": "doctrine/annotations",
  1014. "version": "1.14.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/doctrine/annotations.git",
  1018. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1023. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "doctrine/lexer": "^1 || ^2",
  1028. "ext-tokenizer": "*",
  1029. "php": "^7.1 || ^8.0",
  1030. "psr/cache": "^1 || ^2 || ^3"
  1031. },
  1032. "require-dev": {
  1033. "doctrine/cache": "^1.11 || ^2.0",
  1034. "doctrine/coding-standard": "^9 || ^10",
  1035. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1036. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1037. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1038. "vimeo/psalm": "^4.10"
  1039. },
  1040. "suggest": {
  1041. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1042. },
  1043. "type": "library",
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Guilherme Blanco",
  1056. "email": "guilhermeblanco@gmail.com"
  1057. },
  1058. {
  1059. "name": "Roman Borschel",
  1060. "email": "roman@code-factory.org"
  1061. },
  1062. {
  1063. "name": "Benjamin Eberlei",
  1064. "email": "kontakt@beberlei.de"
  1065. },
  1066. {
  1067. "name": "Jonathan Wage",
  1068. "email": "jonwage@gmail.com"
  1069. },
  1070. {
  1071. "name": "Johannes Schmitt",
  1072. "email": "schmittjoh@gmail.com"
  1073. }
  1074. ],
  1075. "description": "Docblock Annotations Parser",
  1076. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1077. "keywords": [
  1078. "annotations",
  1079. "docblock",
  1080. "parser"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/doctrine/annotations/issues",
  1084. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1085. },
  1086. "time": "2023-02-01T09:20:38+00:00"
  1087. },
  1088. {
  1089. "name": "doctrine/collections",
  1090. "version": "2.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/doctrine/collections.git",
  1094. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/doctrine/collections/zipball/07e16cd7b80a2cffed99e36b541876af172f0257",
  1099. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "doctrine/deprecations": "^1",
  1104. "php": "^8.1"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/coding-standard": "^12",
  1108. "ext-json": "*",
  1109. "phpstan/phpstan": "^1.8",
  1110. "phpstan/phpstan-phpunit": "^1.0",
  1111. "phpunit/phpunit": "^10.5",
  1112. "vimeo/psalm": "^5.11"
  1113. },
  1114. "type": "library",
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Doctrine\\Common\\Collections\\": "src"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Guilherme Blanco",
  1127. "email": "guilhermeblanco@gmail.com"
  1128. },
  1129. {
  1130. "name": "Roman Borschel",
  1131. "email": "roman@code-factory.org"
  1132. },
  1133. {
  1134. "name": "Benjamin Eberlei",
  1135. "email": "kontakt@beberlei.de"
  1136. },
  1137. {
  1138. "name": "Jonathan Wage",
  1139. "email": "jonwage@gmail.com"
  1140. },
  1141. {
  1142. "name": "Johannes Schmitt",
  1143. "email": "schmittjoh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1147. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1148. "keywords": [
  1149. "array",
  1150. "collections",
  1151. "iterators",
  1152. "php"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/doctrine/collections/issues",
  1156. "source": "https://github.com/doctrine/collections/tree/2.2.0"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://www.doctrine-project.org/sponsorship.html",
  1161. "type": "custom"
  1162. },
  1163. {
  1164. "url": "https://www.patreon.com/phpdoctrine",
  1165. "type": "patreon"
  1166. },
  1167. {
  1168. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1169. "type": "tidelift"
  1170. }
  1171. ],
  1172. "time": "2024-02-25T22:55:36+00:00"
  1173. },
  1174. {
  1175. "name": "doctrine/deprecations",
  1176. "version": "1.1.3",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/doctrine/deprecations.git",
  1180. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1185. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "php": "^7.1 || ^8.0"
  1190. },
  1191. "require-dev": {
  1192. "doctrine/coding-standard": "^9",
  1193. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1194. "phpstan/phpstan-phpunit": "^1.0",
  1195. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1196. "psalm/plugin-phpunit": "0.18.4",
  1197. "psr/log": "^1 || ^2 || ^3",
  1198. "vimeo/psalm": "4.30.0 || 5.12.0"
  1199. },
  1200. "suggest": {
  1201. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1202. },
  1203. "type": "library",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "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.",
  1214. "homepage": "https://www.doctrine-project.org/",
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/deprecations/issues",
  1217. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1218. },
  1219. "time": "2024-01-30T19:34:25+00:00"
  1220. },
  1221. {
  1222. "name": "doctrine/lexer",
  1223. "version": "2.1.1",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/doctrine/lexer.git",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1232. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "doctrine/deprecations": "^1.0",
  1237. "php": "^7.1 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "doctrine/coding-standard": "^9 || ^12",
  1241. "phpstan/phpstan": "^1.3",
  1242. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1243. "psalm/plugin-phpunit": "^0.18.3",
  1244. "vimeo/psalm": "^4.11 || ^5.21"
  1245. },
  1246. "type": "library",
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Doctrine\\Common\\Lexer\\": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Guilherme Blanco",
  1259. "email": "guilhermeblanco@gmail.com"
  1260. },
  1261. {
  1262. "name": "Roman Borschel",
  1263. "email": "roman@code-factory.org"
  1264. },
  1265. {
  1266. "name": "Johannes Schmitt",
  1267. "email": "schmittjoh@gmail.com"
  1268. }
  1269. ],
  1270. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1271. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1272. "keywords": [
  1273. "annotations",
  1274. "docblock",
  1275. "lexer",
  1276. "parser",
  1277. "php"
  1278. ],
  1279. "support": {
  1280. "issues": "https://github.com/doctrine/lexer/issues",
  1281. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1282. },
  1283. "funding": [
  1284. {
  1285. "url": "https://www.doctrine-project.org/sponsorship.html",
  1286. "type": "custom"
  1287. },
  1288. {
  1289. "url": "https://www.patreon.com/phpdoctrine",
  1290. "type": "patreon"
  1291. },
  1292. {
  1293. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1294. "type": "tidelift"
  1295. }
  1296. ],
  1297. "time": "2024-02-05T11:35:39+00:00"
  1298. },
  1299. {
  1300. "name": "drupal/address",
  1301. "version": "2.0.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://git.drupalcode.org/project/address.git",
  1305. "reference": "2.0.1"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://ftp.drupal.org/files/projects/address-2.0.1.zip",
  1310. "reference": "2.0.1",
  1311. "shasum": "47e166dc46b1a2e17470738e8321bc20fa9e8e24"
  1312. },
  1313. "require": {
  1314. "commerceguys/addressing": "^2.1.1",
  1315. "drupal/core": "^9.5 || ^10",
  1316. "php": "^8.0"
  1317. },
  1318. "require-dev": {
  1319. "drupal/diff": "^1",
  1320. "drupal/feeds": "^3",
  1321. "drupal/token": "^1"
  1322. },
  1323. "type": "drupal-module",
  1324. "extra": {
  1325. "drupal": {
  1326. "version": "2.0.1",
  1327. "datestamp": "1708373992",
  1328. "security-coverage": {
  1329. "status": "covered",
  1330. "message": "Covered by Drupal's security advisory policy"
  1331. }
  1332. }
  1333. },
  1334. "notification-url": "https://packages.drupal.org/8/downloads",
  1335. "license": [
  1336. "GPL-2.0-or-later"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "bojanz",
  1341. "homepage": "https://www.drupal.org/user/86106"
  1342. },
  1343. {
  1344. "name": "Centarro",
  1345. "homepage": "https://www.drupal.org/user/3661446"
  1346. },
  1347. {
  1348. "name": "dww",
  1349. "homepage": "https://www.drupal.org/user/46549"
  1350. },
  1351. {
  1352. "name": "jsacksick",
  1353. "homepage": "https://www.drupal.org/user/972218"
  1354. },
  1355. {
  1356. "name": "rszrama",
  1357. "homepage": "https://www.drupal.org/user/49344"
  1358. }
  1359. ],
  1360. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1361. "homepage": "http://drupal.org/project/address",
  1362. "support": {
  1363. "source": "https://git.drupalcode.org/project/address"
  1364. }
  1365. },
  1366. {
  1367. "name": "drupal/address_map_link",
  1368. "version": "1.4.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://git.drupalcode.org/project/address_map_link.git",
  1372. "reference": "8.x-1.4"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://ftp.drupal.org/files/projects/address_map_link-8.x-1.4.zip",
  1377. "reference": "8.x-1.4",
  1378. "shasum": "854c86a4e4ac6ef492e502659acf8eed89e56058"
  1379. },
  1380. "require": {
  1381. "drupal/address": "^1.0 || ^2.0",
  1382. "drupal/core": "^9.2 || ^10",
  1383. "php": "^7.3 || ^8.0"
  1384. },
  1385. "type": "drupal-module",
  1386. "extra": {
  1387. "drupal": {
  1388. "version": "8.x-1.4",
  1389. "datestamp": "1708441555",
  1390. "security-coverage": {
  1391. "status": "covered",
  1392. "message": "Covered by Drupal's security advisory policy"
  1393. }
  1394. }
  1395. },
  1396. "notification-url": "https://packages.drupal.org/8/downloads",
  1397. "license": [
  1398. "GPL-2.0-or-later"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Chris Snyder",
  1403. "homepage": "https://www.drupal.org/u/chrissnyder",
  1404. "email": "chris@chrissnyder.org",
  1405. "role": "Maintainer"
  1406. }
  1407. ],
  1408. "description": "Provides a link to an external mapping site for an address field.",
  1409. "homepage": "https://www.drupal.org/project/address_map_link",
  1410. "keywords": [
  1411. "Drupal"
  1412. ],
  1413. "support": {
  1414. "source": "https://cgit.drupalcode.org/address_map_link",
  1415. "issues": "https://www.drupal.org/project/issues/address_map_link"
  1416. }
  1417. },
  1418. {
  1419. "name": "drupal/audiofield",
  1420. "version": "1.13.0",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://git.drupalcode.org/project/audiofield.git",
  1424. "reference": "8.x-1.13"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1429. "reference": "8.x-1.13",
  1430. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1431. },
  1432. "require": {
  1433. "drupal/core": "^8 || ^9 || ^10"
  1434. },
  1435. "type": "drupal-module",
  1436. "extra": {
  1437. "drupal": {
  1438. "version": "8.x-1.13",
  1439. "datestamp": "1681143245",
  1440. "security-coverage": {
  1441. "status": "covered",
  1442. "message": "Covered by Drupal's security advisory policy"
  1443. }
  1444. },
  1445. "drush": {
  1446. "services": {
  1447. "drush.services.yml": "^9"
  1448. }
  1449. }
  1450. },
  1451. "notification-url": "https://packages.drupal.org/8/downloads",
  1452. "license": [
  1453. "GPL-2.0-or-later"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Daniel Moberly",
  1458. "homepage": "https://www.drupal.org/u/danielmoberly",
  1459. "role": "Maintainer"
  1460. },
  1461. {
  1462. "name": "tamerzg",
  1463. "homepage": "https://www.drupal.org/user/464564"
  1464. }
  1465. ],
  1466. "description": "AudioField Module",
  1467. "homepage": "https://www.drupal.org/project/audiofield",
  1468. "support": {
  1469. "source": "https://git.drupalcode.org/project/audiofield",
  1470. "issues": "https://www.drupal.org/project/issues/audiofield"
  1471. }
  1472. },
  1473. {
  1474. "name": "drupal/backup_migrate",
  1475. "version": "5.0.3",
  1476. "source": {
  1477. "type": "git",
  1478. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  1479. "reference": "5.0.3"
  1480. },
  1481. "dist": {
  1482. "type": "zip",
  1483. "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
  1484. "reference": "5.0.3",
  1485. "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
  1486. },
  1487. "require": {
  1488. "drupal/core": "^9.3 || ^10"
  1489. },
  1490. "suggest": {
  1491. "defuse/php-encryption": "Optional encryption of saved backups."
  1492. },
  1493. "type": "drupal-module",
  1494. "extra": {
  1495. "drupal": {
  1496. "version": "5.0.3",
  1497. "datestamp": "1671366510",
  1498. "security-coverage": {
  1499. "status": "covered",
  1500. "message": "Covered by Drupal's security advisory policy"
  1501. }
  1502. }
  1503. },
  1504. "notification-url": "https://packages.drupal.org/8/downloads",
  1505. "license": [
  1506. "GPL-2.0-or-later"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "See contributors",
  1511. "homepage": "https://www.drupal.org/node/189065/committers",
  1512. "role": "Developer"
  1513. },
  1514. {
  1515. "name": "DamienMcKenna",
  1516. "homepage": "https://www.drupal.org/user/108450"
  1517. },
  1518. {
  1519. "name": "dgorton",
  1520. "homepage": "https://www.drupal.org/user/19044"
  1521. },
  1522. {
  1523. "name": "ikit-claw",
  1524. "homepage": "https://www.drupal.org/user/3285813"
  1525. },
  1526. {
  1527. "name": "ronan",
  1528. "homepage": "https://www.drupal.org/user/72815"
  1529. }
  1530. ],
  1531. "description": "Backup and Migrate Drupal Module",
  1532. "homepage": "https://www.drupal.org/project/backup_migrate",
  1533. "support": {
  1534. "source": "https://git.drupalcode.org/project/backup_migrate",
  1535. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  1536. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  1537. }
  1538. },
  1539. {
  1540. "name": "drupal/charts",
  1541. "version": "5.0.11",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://git.drupalcode.org/project/charts.git",
  1545. "reference": "5.0.11"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://ftp.drupal.org/files/projects/charts-5.0.11.zip",
  1550. "reference": "5.0.11",
  1551. "shasum": "fcffd70c4bbaf74809528993ed42ad0fb6db2b75"
  1552. },
  1553. "require": {
  1554. "drupal/core": "^9.2 || ^10"
  1555. },
  1556. "type": "drupal-module",
  1557. "extra": {
  1558. "drupal": {
  1559. "version": "5.0.11",
  1560. "datestamp": "1706650372",
  1561. "security-coverage": {
  1562. "status": "covered",
  1563. "message": "Covered by Drupal's security advisory policy"
  1564. }
  1565. }
  1566. },
  1567. "notification-url": "https://packages.drupal.org/8/downloads",
  1568. "license": [
  1569. "GPL-2.0-or-later"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "andileco",
  1574. "homepage": "https://www.drupal.org/user/2054544"
  1575. },
  1576. {
  1577. "name": "nikathone",
  1578. "homepage": "https://www.drupal.org/user/2421800"
  1579. },
  1580. {
  1581. "name": "quicksketch",
  1582. "homepage": "https://www.drupal.org/user/35821"
  1583. }
  1584. ],
  1585. "description": "A charting API for Drupal that provides chart elements and integration with Views.",
  1586. "homepage": "https://www.drupal.org/project/charts",
  1587. "support": {
  1588. "source": "https://git.drupalcode.org/project/charts"
  1589. }
  1590. },
  1591. {
  1592. "name": "drupal/core",
  1593. "version": "10.2.3",
  1594. "source": {
  1595. "type": "git",
  1596. "url": "https://github.com/drupal/core.git",
  1597. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7"
  1598. },
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7",
  1602. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7",
  1603. "shasum": ""
  1604. },
  1605. "require": {
  1606. "asm89/stack-cors": "^2.1",
  1607. "composer-runtime-api": "^2.1",
  1608. "composer/semver": "^3.3",
  1609. "doctrine/annotations": "^1.14",
  1610. "egulias/email-validator": "^3.2.1|^4.0",
  1611. "ext-date": "*",
  1612. "ext-dom": "*",
  1613. "ext-filter": "*",
  1614. "ext-gd": "*",
  1615. "ext-hash": "*",
  1616. "ext-json": "*",
  1617. "ext-pcre": "*",
  1618. "ext-pdo": "*",
  1619. "ext-session": "*",
  1620. "ext-simplexml": "*",
  1621. "ext-spl": "*",
  1622. "ext-tokenizer": "*",
  1623. "ext-xml": "*",
  1624. "guzzlehttp/guzzle": "^7.5",
  1625. "guzzlehttp/psr7": "^2.4.5",
  1626. "masterminds/html5": "^2.7",
  1627. "mck89/peast": "^1.14",
  1628. "pear/archive_tar": "^1.4.14",
  1629. "php": ">=8.1.0",
  1630. "psr/log": "^3.0",
  1631. "sebastian/diff": "^4",
  1632. "symfony/console": "^6.4",
  1633. "symfony/dependency-injection": "^6.4",
  1634. "symfony/event-dispatcher": "^6.4",
  1635. "symfony/filesystem": "^6.4",
  1636. "symfony/finder": "^6.4",
  1637. "symfony/http-foundation": "^6.4",
  1638. "symfony/http-kernel": "^6.4",
  1639. "symfony/mailer": "^6.4",
  1640. "symfony/mime": "^6.4",
  1641. "symfony/polyfill-iconv": "^1.26",
  1642. "symfony/process": "^6.4",
  1643. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  1644. "symfony/routing": "^6.4",
  1645. "symfony/serializer": "^6.4",
  1646. "symfony/validator": "^6.4",
  1647. "symfony/yaml": "^6.4",
  1648. "twig/twig": "^3.5.0"
  1649. },
  1650. "conflict": {
  1651. "drush/drush": "<12.4.3"
  1652. },
  1653. "replace": {
  1654. "drupal/core-annotation": "self.version",
  1655. "drupal/core-assertion": "self.version",
  1656. "drupal/core-class-finder": "self.version",
  1657. "drupal/core-datetime": "self.version",
  1658. "drupal/core-dependency-injection": "self.version",
  1659. "drupal/core-diff": "self.version",
  1660. "drupal/core-discovery": "self.version",
  1661. "drupal/core-event-dispatcher": "self.version",
  1662. "drupal/core-file-cache": "self.version",
  1663. "drupal/core-file-security": "self.version",
  1664. "drupal/core-filesystem": "self.version",
  1665. "drupal/core-front-matter": "self.version",
  1666. "drupal/core-gettext": "self.version",
  1667. "drupal/core-graph": "self.version",
  1668. "drupal/core-http-foundation": "self.version",
  1669. "drupal/core-php-storage": "self.version",
  1670. "drupal/core-plugin": "self.version",
  1671. "drupal/core-proxy-builder": "self.version",
  1672. "drupal/core-render": "self.version",
  1673. "drupal/core-serialization": "self.version",
  1674. "drupal/core-transliteration": "self.version",
  1675. "drupal/core-utility": "self.version",
  1676. "drupal/core-uuid": "self.version",
  1677. "drupal/core-version": "self.version"
  1678. },
  1679. "suggest": {
  1680. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  1681. },
  1682. "type": "drupal-core",
  1683. "extra": {
  1684. "drupal-scaffold": {
  1685. "file-mapping": {
  1686. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  1687. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  1688. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  1689. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  1690. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  1691. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  1692. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  1693. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  1694. "[web-root]/index.php": "assets/scaffold/files/index.php",
  1695. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  1696. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  1697. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  1698. "[web-root]/update.php": "assets/scaffold/files/update.php",
  1699. "[web-root]/web.config": "assets/scaffold/files/web.config",
  1700. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  1701. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  1702. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  1703. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  1704. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  1705. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  1706. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  1707. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  1708. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  1709. }
  1710. }
  1711. },
  1712. "autoload": {
  1713. "files": [
  1714. "includes/bootstrap.inc"
  1715. ],
  1716. "psr-4": {
  1717. "Drupal\\Core\\": "lib/Drupal/Core",
  1718. "Drupal\\Component\\": "lib/Drupal/Component"
  1719. },
  1720. "classmap": [
  1721. "lib/Drupal.php",
  1722. "lib/Drupal/Component/DependencyInjection/Container.php",
  1723. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  1724. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  1725. "lib/Drupal/Component/Utility/Timer.php",
  1726. "lib/Drupal/Component/Utility/Unicode.php",
  1727. "lib/Drupal/Core/Cache/Cache.php",
  1728. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  1729. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  1730. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  1731. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  1732. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  1733. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  1734. "lib/Drupal/Core/Database/Connection.php",
  1735. "lib/Drupal/Core/Database/Database.php",
  1736. "lib/Drupal/Core/Database/StatementInterface.php",
  1737. "lib/Drupal/Core/DependencyInjection/Container.php",
  1738. "lib/Drupal/Core/DrupalKernel.php",
  1739. "lib/Drupal/Core/DrupalKernelInterface.php",
  1740. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  1741. "lib/Drupal/Core/Site/Settings.php"
  1742. ]
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  1749. "support": {
  1750. "source": "https://github.com/drupal/core/tree/10.2.3"
  1751. },
  1752. "time": "2024-02-07T22:44:48+00:00"
  1753. },
  1754. {
  1755. "name": "drupal/core-composer-scaffold",
  1756. "version": "10.2.3",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/drupal/core-composer-scaffold.git",
  1760. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f",
  1765. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "composer-plugin-api": "^2",
  1770. "php": ">=7.3.0"
  1771. },
  1772. "conflict": {
  1773. "drupal-composer/drupal-scaffold": "*"
  1774. },
  1775. "require-dev": {
  1776. "composer/composer": "^1.8@stable"
  1777. },
  1778. "type": "composer-plugin",
  1779. "extra": {
  1780. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  1781. "branch-alias": {
  1782. "dev-master": "1.0.x-dev"
  1783. }
  1784. },
  1785. "autoload": {
  1786. "psr-4": {
  1787. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  1788. }
  1789. },
  1790. "notification-url": "https://packagist.org/downloads/",
  1791. "license": [
  1792. "GPL-2.0-or-later"
  1793. ],
  1794. "description": "A flexible Composer project scaffold builder.",
  1795. "homepage": "https://www.drupal.org/project/drupal",
  1796. "keywords": [
  1797. "drupal"
  1798. ],
  1799. "support": {
  1800. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3"
  1801. },
  1802. "time": "2024-01-26T14:59:30+00:00"
  1803. },
  1804. {
  1805. "name": "drupal/core-project-message",
  1806. "version": "10.2.3",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/drupal/core-project-message.git",
  1810. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1815. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "composer-plugin-api": "^2",
  1820. "php": ">=7.3.0"
  1821. },
  1822. "type": "composer-plugin",
  1823. "extra": {
  1824. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  1825. },
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  1829. }
  1830. },
  1831. "notification-url": "https://packagist.org/downloads/",
  1832. "license": [
  1833. "GPL-2.0-or-later"
  1834. ],
  1835. "description": "Adds a message after Composer installation.",
  1836. "homepage": "https://www.drupal.org/project/drupal",
  1837. "keywords": [
  1838. "drupal"
  1839. ],
  1840. "support": {
  1841. "source": "https://github.com/drupal/core-project-message/tree/10.2.3"
  1842. },
  1843. "time": "2023-07-24T07:55:25+00:00"
  1844. },
  1845. {
  1846. "name": "drupal/core-recommended",
  1847. "version": "10.2.3",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/drupal/core-recommended.git",
  1851. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1856. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "asm89/stack-cors": "~v2.2.0",
  1861. "composer/semver": "~3.4.0",
  1862. "doctrine/annotations": "~1.14.3",
  1863. "doctrine/deprecations": "~1.1.2",
  1864. "doctrine/lexer": "~2.1.0",
  1865. "drupal/core": "10.2.3",
  1866. "egulias/email-validator": "~4.0.2",
  1867. "guzzlehttp/guzzle": "~7.8.1",
  1868. "guzzlehttp/promises": "~2.0.2",
  1869. "guzzlehttp/psr7": "~2.6.2",
  1870. "masterminds/html5": "~2.8.1",
  1871. "mck89/peast": "~v1.15.4",
  1872. "pear/archive_tar": "~1.4.14",
  1873. "pear/console_getopt": "~v1.4.3",
  1874. "pear/pear-core-minimal": "~v1.10.14",
  1875. "pear/pear_exception": "~v1.0.2",
  1876. "psr/cache": "~3.0.0",
  1877. "psr/container": "~2.0.2",
  1878. "psr/event-dispatcher": "~1.0.0",
  1879. "psr/http-client": "~1.0.3",
  1880. "psr/http-factory": "~1.0.2",
  1881. "psr/log": "~3.0.0",
  1882. "ralouphie/getallheaders": "~3.0.3",
  1883. "sebastian/diff": "~4.0.5",
  1884. "symfony/console": "~v6.4.1",
  1885. "symfony/dependency-injection": "~v6.4.1",
  1886. "symfony/deprecation-contracts": "~v3.4.0",
  1887. "symfony/error-handler": "~v6.4.0",
  1888. "symfony/event-dispatcher": "~v6.4.0",
  1889. "symfony/event-dispatcher-contracts": "~v3.4.0",
  1890. "symfony/filesystem": "~v6.4.0",
  1891. "symfony/finder": "~v6.4.0",
  1892. "symfony/http-foundation": "~v6.4.0",
  1893. "symfony/http-kernel": "~v6.4.1",
  1894. "symfony/mailer": "~v6.4.0",
  1895. "symfony/mime": "~v6.4.0",
  1896. "symfony/polyfill-ctype": "~v1.28.0",
  1897. "symfony/polyfill-iconv": "~v1.28.0",
  1898. "symfony/polyfill-intl-grapheme": "~v1.28.0",
  1899. "symfony/polyfill-intl-idn": "~v1.28.0",
  1900. "symfony/polyfill-intl-normalizer": "~v1.28.0",
  1901. "symfony/polyfill-mbstring": "~v1.28.0",
  1902. "symfony/polyfill-php83": "~v1.28.0",
  1903. "symfony/process": "~v6.4.0",
  1904. "symfony/psr-http-message-bridge": "~v6.4.0",
  1905. "symfony/routing": "~v6.4.1",
  1906. "symfony/serializer": "~v6.4.1",
  1907. "symfony/service-contracts": "~v3.4.0",
  1908. "symfony/string": "~v6.4.0",
  1909. "symfony/translation-contracts": "~v3.4.0",
  1910. "symfony/validator": "~v6.4.0",
  1911. "symfony/var-dumper": "~v6.4.0",
  1912. "symfony/var-exporter": "~v6.4.1",
  1913. "symfony/yaml": "~v6.4.0",
  1914. "twig/twig": "~v3.8.0"
  1915. },
  1916. "conflict": {
  1917. "webflo/drupal-core-strict": "*"
  1918. },
  1919. "type": "metapackage",
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "GPL-2.0-or-later"
  1923. ],
  1924. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  1925. "support": {
  1926. "source": "https://github.com/drupal/core-recommended/tree/10.2.3"
  1927. },
  1928. "time": "2024-02-07T22:44:48+00:00"
  1929. },
  1930. {
  1931. "name": "drupal/ctools",
  1932. "version": "4.0.4",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://git.drupalcode.org/project/ctools.git",
  1936. "reference": "4.0.4"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  1941. "reference": "4.0.4",
  1942. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  1943. },
  1944. "require": {
  1945. "drupal/core": "^9.3 || ^10"
  1946. },
  1947. "type": "drupal-module",
  1948. "extra": {
  1949. "drupal": {
  1950. "version": "4.0.4",
  1951. "datestamp": "1684299878",
  1952. "security-coverage": {
  1953. "status": "covered",
  1954. "message": "Covered by Drupal's security advisory policy"
  1955. }
  1956. },
  1957. "branch-alias": {
  1958. "dev-8.x-3.x": "3.x-dev"
  1959. }
  1960. },
  1961. "notification-url": "https://packages.drupal.org/8/downloads",
  1962. "license": [
  1963. "GPL-2.0-or-later"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Kris Vanderwater (EclipseGc)",
  1968. "homepage": "https://www.drupal.org/u/eclipsegc",
  1969. "role": "Maintainer"
  1970. },
  1971. {
  1972. "name": "Jakob Perry (japerry)",
  1973. "homepage": "https://www.drupal.org/u/japerry",
  1974. "role": "Maintainer"
  1975. },
  1976. {
  1977. "name": "Tim Plunkett (tim.plunkett)",
  1978. "homepage": "https://www.drupal.org/u/timplunkett",
  1979. "role": "Maintainer"
  1980. },
  1981. {
  1982. "name": "James Gilliland (neclimdul)",
  1983. "homepage": "https://www.drupal.org/u/neclimdul",
  1984. "role": "Maintainer"
  1985. },
  1986. {
  1987. "name": "Daniel Wehner (dawehner)",
  1988. "homepage": "https://www.drupal.org/u/dawehner",
  1989. "role": "Maintainer"
  1990. },
  1991. {
  1992. "name": "joelpittet",
  1993. "homepage": "https://www.drupal.org/user/160302"
  1994. },
  1995. {
  1996. "name": "merlinofchaos",
  1997. "homepage": "https://www.drupal.org/user/26979"
  1998. },
  1999. {
  2000. "name": "neclimdul",
  2001. "homepage": "https://www.drupal.org/user/48673"
  2002. },
  2003. {
  2004. "name": "sdboyer",
  2005. "homepage": "https://www.drupal.org/user/146719"
  2006. },
  2007. {
  2008. "name": "sun",
  2009. "homepage": "https://www.drupal.org/user/54136"
  2010. },
  2011. {
  2012. "name": "tim.plunkett",
  2013. "homepage": "https://www.drupal.org/user/241634"
  2014. }
  2015. ],
  2016. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2017. "homepage": "https://www.drupal.org/project/ctools",
  2018. "support": {
  2019. "source": "https://git.drupalcode.org/project/ctools",
  2020. "issues": "https://www.drupal.org/project/issues/ctools"
  2021. }
  2022. },
  2023. {
  2024. "name": "drupal/entity_browser",
  2025. "version": "2.10.0",
  2026. "source": {
  2027. "type": "git",
  2028. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2029. "reference": "8.x-2.10"
  2030. },
  2031. "dist": {
  2032. "type": "zip",
  2033. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.10.zip",
  2034. "reference": "8.x-2.10",
  2035. "shasum": "d52548ea66dc56108c2e211aeaff6e1cc0522e85"
  2036. },
  2037. "require": {
  2038. "drupal/core": "^9.5 || ^10"
  2039. },
  2040. "conflict": {
  2041. "drupal/media_entity": "1.*"
  2042. },
  2043. "require-dev": {
  2044. "drupal/ckeditor": "^1.0",
  2045. "drupal/embed": "^1.0",
  2046. "drupal/entity_embed": "^1.0",
  2047. "drupal/entity_reference_revisions": "^1.0",
  2048. "drupal/entityqueue": "^1.0",
  2049. "drupal/inline_entity_form": "^1.0@rc",
  2050. "drupal/paragraphs": "^1.0",
  2051. "drupal/token": "^1.0"
  2052. },
  2053. "type": "drupal-module",
  2054. "extra": {
  2055. "drupal": {
  2056. "version": "8.x-2.10",
  2057. "datestamp": "1702325310",
  2058. "security-coverage": {
  2059. "status": "covered",
  2060. "message": "Covered by Drupal's security advisory policy"
  2061. }
  2062. }
  2063. },
  2064. "notification-url": "https://packages.drupal.org/8/downloads",
  2065. "license": [
  2066. "GPL-2.0+"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "Janez Urevc",
  2071. "homepage": "https://github.com/slashrsm",
  2072. "role": "Maintainer"
  2073. },
  2074. {
  2075. "name": "Primoz Hmeljak",
  2076. "homepage": "https://github.com/primsi",
  2077. "role": "Maintainer"
  2078. },
  2079. {
  2080. "name": "See other contributors",
  2081. "homepage": "https://www.drupal.org/node/1943336/committers",
  2082. "role": "contributor"
  2083. },
  2084. {
  2085. "name": "Drupal Media Team",
  2086. "homepage": "https://www.drupal.org/user/3260690"
  2087. },
  2088. {
  2089. "name": "marcingy",
  2090. "homepage": "https://www.drupal.org/user/77320"
  2091. },
  2092. {
  2093. "name": "oknate",
  2094. "homepage": "https://www.drupal.org/user/471638"
  2095. },
  2096. {
  2097. "name": "Primsi",
  2098. "homepage": "https://www.drupal.org/user/282629"
  2099. },
  2100. {
  2101. "name": "samuel.mortenson",
  2102. "homepage": "https://www.drupal.org/user/2582268"
  2103. },
  2104. {
  2105. "name": "slashrsm",
  2106. "homepage": "https://www.drupal.org/user/744628"
  2107. }
  2108. ],
  2109. "description": "Entity browsing and selecting component.",
  2110. "homepage": "https://drupal.org/project/entity_browser",
  2111. "support": {
  2112. "source": "https://git.drupalcode.org/project/entity_browser",
  2113. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2114. "irc": "irc://irc.freenode.org/drupal-contribute"
  2115. }
  2116. },
  2117. {
  2118. "name": "drupal/entity_browser_enhanced",
  2119. "version": "2.0.0",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2123. "reference": "2.0.0"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  2128. "reference": "2.0.0",
  2129. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  2130. },
  2131. "require": {
  2132. "drupal/core": "^9 || ^10",
  2133. "drupal/entity_browser": "~2.0"
  2134. },
  2135. "type": "drupal-module",
  2136. "extra": {
  2137. "drupal": {
  2138. "version": "2.0.0",
  2139. "datestamp": "1697211243",
  2140. "security-coverage": {
  2141. "status": "covered",
  2142. "message": "Covered by Drupal's security advisory policy"
  2143. }
  2144. }
  2145. },
  2146. "notification-url": "https://packages.drupal.org/8/downloads",
  2147. "license": [
  2148. "GPL-2.0-or-later"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Vardot",
  2153. "homepage": "https://www.drupal.org/vardot",
  2154. "role": "Maintainer"
  2155. },
  2156. {
  2157. "name": "Rajab Natshah",
  2158. "homepage": "https://www.drupal.org/user/1414312"
  2159. }
  2160. ],
  2161. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2162. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2163. "support": {
  2164. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2165. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2166. }
  2167. },
  2168. {
  2169. "name": "drupal/entity_reference_revisions",
  2170. "version": "1.11.0",
  2171. "source": {
  2172. "type": "git",
  2173. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2174. "reference": "8.x-1.11"
  2175. },
  2176. "dist": {
  2177. "type": "zip",
  2178. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip",
  2179. "reference": "8.x-1.11",
  2180. "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5"
  2181. },
  2182. "require": {
  2183. "drupal/core": "^9 || ^10"
  2184. },
  2185. "require-dev": {
  2186. "drupal/diff": "1.x-dev"
  2187. },
  2188. "type": "drupal-module",
  2189. "extra": {
  2190. "drupal": {
  2191. "version": "8.x-1.11",
  2192. "datestamp": "1705140721",
  2193. "security-coverage": {
  2194. "status": "covered",
  2195. "message": "Covered by Drupal's security advisory policy"
  2196. }
  2197. },
  2198. "drush": {
  2199. "services": {
  2200. "drush.services.yml": "^9 || ^10 || ^11"
  2201. }
  2202. }
  2203. },
  2204. "notification-url": "https://packages.drupal.org/8/downloads",
  2205. "license": [
  2206. "GPL-2.0-or-later"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Berdir",
  2211. "homepage": "https://www.drupal.org/user/214652"
  2212. },
  2213. {
  2214. "name": "Frans",
  2215. "homepage": "https://www.drupal.org/user/514222"
  2216. },
  2217. {
  2218. "name": "jeroen.b",
  2219. "homepage": "https://www.drupal.org/user/1853532"
  2220. },
  2221. {
  2222. "name": "miro_dietiker",
  2223. "homepage": "https://www.drupal.org/user/227761"
  2224. }
  2225. ],
  2226. "description": "Entity Reference Revisions",
  2227. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2228. "support": {
  2229. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2230. }
  2231. },
  2232. {
  2233. "name": "drupal/field_group",
  2234. "version": "3.4.0",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://git.drupalcode.org/project/field_group.git",
  2238. "reference": "8.x-3.4"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip",
  2243. "reference": "8.x-3.4",
  2244. "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94"
  2245. },
  2246. "require": {
  2247. "drupal/core": "^9.2 || ^10"
  2248. },
  2249. "type": "drupal-module",
  2250. "extra": {
  2251. "drupal": {
  2252. "version": "8.x-3.4",
  2253. "datestamp": "1667241979",
  2254. "security-coverage": {
  2255. "status": "covered",
  2256. "message": "Covered by Drupal's security advisory policy"
  2257. }
  2258. }
  2259. },
  2260. "notification-url": "https://packages.drupal.org/8/downloads",
  2261. "license": [
  2262. "GPL-2.0-or-later"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Anybody",
  2267. "homepage": "https://www.drupal.org/user/291091"
  2268. },
  2269. {
  2270. "name": "Hydra",
  2271. "homepage": "https://www.drupal.org/user/647364"
  2272. },
  2273. {
  2274. "name": "jyve",
  2275. "homepage": "https://www.drupal.org/user/591438"
  2276. },
  2277. {
  2278. "name": "nils.destoop",
  2279. "homepage": "https://www.drupal.org/user/361625"
  2280. },
  2281. {
  2282. "name": "Stalski",
  2283. "homepage": "https://www.drupal.org/user/322618"
  2284. },
  2285. {
  2286. "name": "swentel",
  2287. "homepage": "https://www.drupal.org/user/107403"
  2288. }
  2289. ],
  2290. "description": "Provides the field_group module.",
  2291. "homepage": "https://www.drupal.org/project/field_group",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/field_group",
  2294. "issues": "https://www.drupal.org/project/issues/field_group"
  2295. }
  2296. },
  2297. {
  2298. "name": "drupal/field_pager",
  2299. "version": "2.0.0-beta2",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/field_pager.git",
  2303. "reference": "2.0.0-beta2"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/field_pager-2.0.0-beta2.zip",
  2308. "reference": "2.0.0-beta2",
  2309. "shasum": "33a7589e908c5b86b928e8e0e4bb562d7337dc15"
  2310. },
  2311. "require": {
  2312. "drupal/core": "^8 || ^9 || ^10"
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "drupal": {
  2317. "version": "2.0.0-beta2",
  2318. "datestamp": "1678960516",
  2319. "security-coverage": {
  2320. "status": "not-covered",
  2321. "message": "Project has not opted into security advisory coverage!"
  2322. }
  2323. }
  2324. },
  2325. "notification-url": "https://packages.drupal.org/8/downloads",
  2326. "license": [
  2327. "GPL-2.0-or-later"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "NuWans",
  2332. "homepage": "https://www.drupal.org/user/3250178"
  2333. }
  2334. ],
  2335. "description": "Field Pager (field_pager) To use fields as multiple pages",
  2336. "homepage": "https://www.drupal.org/project/field_pager",
  2337. "support": {
  2338. "source": "https://git.drupalcode.org/project/field_pager"
  2339. }
  2340. },
  2341. {
  2342. "name": "drupal/field_token_value",
  2343. "version": "3.0.2",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2347. "reference": "3.0.2"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip",
  2352. "reference": "3.0.2",
  2353. "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad"
  2354. },
  2355. "require": {
  2356. "drupal/core": "^8 || ^9 || ^10",
  2357. "drupal/token": "*"
  2358. },
  2359. "type": "drupal-module",
  2360. "extra": {
  2361. "drupal": {
  2362. "version": "3.0.2",
  2363. "datestamp": "1696584829",
  2364. "security-coverage": {
  2365. "status": "covered",
  2366. "message": "Covered by Drupal's security advisory policy"
  2367. }
  2368. }
  2369. },
  2370. "notification-url": "https://packages.drupal.org/8/downloads",
  2371. "license": [
  2372. "GPL-2.0-or-later"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "haydent",
  2377. "homepage": "https://www.drupal.org/user/2763191"
  2378. }
  2379. ],
  2380. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2381. "homepage": "https://www.drupal.org/project/field_token_value",
  2382. "support": {
  2383. "source": "https://git.drupalcode.org/project/field_token_value"
  2384. }
  2385. },
  2386. {
  2387. "name": "drupal/geofield",
  2388. "version": "1.57.0",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://git.drupalcode.org/project/geofield.git",
  2392. "reference": "8.x-1.57"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.57.zip",
  2397. "reference": "8.x-1.57",
  2398. "shasum": "17155834e7abe78b5710907d1f2897f3a01c5702"
  2399. },
  2400. "require": {
  2401. "drupal/core": "^8.8 || ^9 || ^10",
  2402. "itamair/geophp": "^1.3"
  2403. },
  2404. "require-dev": {
  2405. "drupal/diff": "^1.1",
  2406. "drupal/feeds": "^3.0@beta"
  2407. },
  2408. "type": "drupal-module",
  2409. "extra": {
  2410. "drupal": {
  2411. "version": "8.x-1.57",
  2412. "datestamp": "1701039529",
  2413. "security-coverage": {
  2414. "status": "covered",
  2415. "message": "Covered by Drupal's security advisory policy"
  2416. }
  2417. }
  2418. },
  2419. "notification-url": "https://packages.drupal.org/8/downloads",
  2420. "license": [
  2421. "GPL-2.0+"
  2422. ],
  2423. "authors": [
  2424. {
  2425. "name": "Italo Mairo",
  2426. "homepage": "https://www.drupal.org/u/itamair",
  2427. "role": "Drupal 8+ Maintainer"
  2428. },
  2429. {
  2430. "name": "Brandon Morrison",
  2431. "homepage": "https://www.drupal.org/u/brandonian",
  2432. "role": "Drupal 7 Maintainer"
  2433. },
  2434. {
  2435. "name": "Pablo López",
  2436. "homepage": "https://www.drupal.org/u/plopesc",
  2437. "role": "Drupal 7 Maintainer"
  2438. }
  2439. ],
  2440. "description": "Stores geographic and location data (points, lines, and polygons).",
  2441. "homepage": "https://www.drupal.org/project/geofield",
  2442. "support": {
  2443. "source": "https://git.drupalcode.org/project/geofield",
  2444. "issues": "https://www.drupal.org/project/issues/geofield",
  2445. "irc": "irc://irc.freenode.org/drupal-contribute"
  2446. }
  2447. },
  2448. {
  2449. "name": "drupal/geolocation",
  2450. "version": "3.12.0",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://git.drupalcode.org/project/geolocation.git",
  2454. "reference": "8.x-3.12"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip",
  2459. "reference": "8.x-3.12",
  2460. "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a"
  2461. },
  2462. "require": {
  2463. "drupal/core": "^9.3 || ^10",
  2464. "drupal/jquery_ui": "*",
  2465. "drupal/jquery_ui_autocomplete": "^2.0",
  2466. "php": "^7.3 || ^8.0"
  2467. },
  2468. "require-dev": {
  2469. "drupal/address": "*",
  2470. "drupal/geofield": "*",
  2471. "drupal/geolocation_demo": "*",
  2472. "drupal/geolocation_geometry": "*",
  2473. "drupal/geolocation_geometry_data": "*",
  2474. "drupal/geolocation_google_maps": "*",
  2475. "drupal/geolocation_google_maps_demo": "*",
  2476. "drupal/geolocation_google_static_maps": "*",
  2477. "drupal/geolocation_leaflet": "*",
  2478. "drupal/geolocation_leaflet_demo": "*",
  2479. "drupal/search_api": "*",
  2480. "drupal/search_api_location": "*",
  2481. "drupal/search_api_location_views": "*"
  2482. },
  2483. "type": "drupal-module",
  2484. "extra": {
  2485. "drupal": {
  2486. "version": "8.x-3.12",
  2487. "datestamp": "1673282362",
  2488. "security-coverage": {
  2489. "status": "covered",
  2490. "message": "Covered by Drupal's security advisory policy"
  2491. }
  2492. }
  2493. },
  2494. "notification-url": "https://packages.drupal.org/8/downloads",
  2495. "license": [
  2496. "GPL-2.0-or-later"
  2497. ],
  2498. "authors": [
  2499. {
  2500. "name": "derjochenmeyer",
  2501. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  2502. },
  2503. {
  2504. "name": "cadamski",
  2505. "homepage": "https://www.drupal.org/u/cadamski"
  2506. }
  2507. ],
  2508. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  2509. "homepage": "https://www.drupal.org/project/geolocation",
  2510. "support": {
  2511. "source": "https://git.drupal.org/project/geolocation.git",
  2512. "issues": "https://www.drupal.org/project/issues/geolocation"
  2513. }
  2514. },
  2515. {
  2516. "name": "drupal/jquery_ui",
  2517. "version": "1.6.0",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2521. "reference": "8.x-1.6"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  2526. "reference": "8.x-1.6",
  2527. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  2528. },
  2529. "require": {
  2530. "drupal/core": "^9.2 || ^10"
  2531. },
  2532. "type": "drupal-module",
  2533. "extra": {
  2534. "drupal": {
  2535. "version": "8.x-1.6",
  2536. "datestamp": "1668521197",
  2537. "security-coverage": {
  2538. "status": "covered",
  2539. "message": "Covered by Drupal's security advisory policy"
  2540. }
  2541. }
  2542. },
  2543. "notification-url": "https://packages.drupal.org/8/downloads",
  2544. "license": [
  2545. "GPL-2.0-or-later"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "bnjmnm",
  2550. "homepage": "https://www.drupal.org/user/2369194"
  2551. },
  2552. {
  2553. "name": "jjeff",
  2554. "homepage": "https://www.drupal.org/user/17190"
  2555. },
  2556. {
  2557. "name": "lauriii",
  2558. "homepage": "https://www.drupal.org/user/1078742"
  2559. },
  2560. {
  2561. "name": "litwol",
  2562. "homepage": "https://www.drupal.org/user/78134"
  2563. },
  2564. {
  2565. "name": "mfb",
  2566. "homepage": "https://www.drupal.org/user/12302"
  2567. },
  2568. {
  2569. "name": "mfer",
  2570. "homepage": "https://www.drupal.org/user/25701"
  2571. },
  2572. {
  2573. "name": "mikelutz",
  2574. "homepage": "https://www.drupal.org/user/2972409"
  2575. },
  2576. {
  2577. "name": "nod_",
  2578. "homepage": "https://www.drupal.org/user/598310"
  2579. },
  2580. {
  2581. "name": "phenaproxima",
  2582. "homepage": "https://www.drupal.org/user/205645"
  2583. },
  2584. {
  2585. "name": "RobLoach",
  2586. "homepage": "https://www.drupal.org/user/61114"
  2587. },
  2588. {
  2589. "name": "sun",
  2590. "homepage": "https://www.drupal.org/user/54136"
  2591. },
  2592. {
  2593. "name": "webchick",
  2594. "homepage": "https://www.drupal.org/user/24967"
  2595. },
  2596. {
  2597. "name": "Wim Leers",
  2598. "homepage": "https://www.drupal.org/user/99777"
  2599. },
  2600. {
  2601. "name": "zrpnr",
  2602. "homepage": "https://www.drupal.org/user/1448368"
  2603. }
  2604. ],
  2605. "description": "Provides jQuery UI library.",
  2606. "homepage": "https://www.drupal.org/project/jquery_ui",
  2607. "support": {
  2608. "source": "https://git.drupalcode.org/project/jquery_ui"
  2609. }
  2610. },
  2611. {
  2612. "name": "drupal/jquery_ui_autocomplete",
  2613. "version": "2.0.0",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
  2617. "reference": "2.0.0"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip",
  2622. "reference": "2.0.0",
  2623. "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7"
  2624. },
  2625. "require": {
  2626. "drupal/core": "^9.2 || ^10",
  2627. "drupal/jquery_ui": "^1.6",
  2628. "drupal/jquery_ui_menu": "^2"
  2629. },
  2630. "type": "drupal-module",
  2631. "extra": {
  2632. "drupal": {
  2633. "version": "2.0.0",
  2634. "datestamp": "1670871461",
  2635. "security-coverage": {
  2636. "status": "covered",
  2637. "message": "Covered by Drupal's security advisory policy"
  2638. }
  2639. }
  2640. },
  2641. "notification-url": "https://packages.drupal.org/8/downloads",
  2642. "license": [
  2643. "GPL-2.0-or-later"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "bnjmnm",
  2648. "homepage": "https://www.drupal.org/user/2369194"
  2649. },
  2650. {
  2651. "name": "lauriii",
  2652. "homepage": "https://www.drupal.org/user/1078742"
  2653. },
  2654. {
  2655. "name": "nod_",
  2656. "homepage": "https://www.drupal.org/user/598310"
  2657. },
  2658. {
  2659. "name": "phenaproxima",
  2660. "homepage": "https://www.drupal.org/user/205645"
  2661. },
  2662. {
  2663. "name": "Wim Leers",
  2664. "homepage": "https://www.drupal.org/user/99777"
  2665. },
  2666. {
  2667. "name": "zrpnr",
  2668. "homepage": "https://www.drupal.org/user/1448368"
  2669. }
  2670. ],
  2671. "description": "Provides jQuery UI Autocomplete library.",
  2672. "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
  2673. "support": {
  2674. "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
  2675. }
  2676. },
  2677. {
  2678. "name": "drupal/jquery_ui_draggable",
  2679. "version": "2.0.0",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2683. "reference": "2.0.0"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  2688. "reference": "2.0.0",
  2689. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  2690. },
  2691. "require": {
  2692. "drupal/core": "^9.2 || ^10",
  2693. "drupal/jquery_ui": "^1.6"
  2694. },
  2695. "type": "drupal-module",
  2696. "extra": {
  2697. "drupal": {
  2698. "version": "2.0.0",
  2699. "datestamp": "1670871516",
  2700. "security-coverage": {
  2701. "status": "covered",
  2702. "message": "Covered by Drupal's security advisory policy"
  2703. }
  2704. }
  2705. },
  2706. "notification-url": "https://packages.drupal.org/8/downloads",
  2707. "license": [
  2708. "GPL-2.0-or-later"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "bnjmnm",
  2713. "homepage": "https://www.drupal.org/user/2369194"
  2714. },
  2715. {
  2716. "name": "lauriii",
  2717. "homepage": "https://www.drupal.org/user/1078742"
  2718. },
  2719. {
  2720. "name": "zrpnr",
  2721. "homepage": "https://www.drupal.org/user/1448368"
  2722. }
  2723. ],
  2724. "description": "Provides jQuery UI Draggable library.",
  2725. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2726. "support": {
  2727. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2728. }
  2729. },
  2730. {
  2731. "name": "drupal/jquery_ui_droppable",
  2732. "version": "2.0.0",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  2736. "reference": "2.0.0"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.0.0.zip",
  2741. "reference": "2.0.0",
  2742. "shasum": "758f52e68b04e74f1a96240b22090fcae1945898"
  2743. },
  2744. "require": {
  2745. "drupal/core": "^9.2 || ^10",
  2746. "drupal/jquery_ui": "^1.6",
  2747. "drupal/jquery_ui_draggable": "^2"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "2.0.0",
  2753. "datestamp": "1670871520",
  2754. "security-coverage": {
  2755. "status": "covered",
  2756. "message": "Covered by Drupal's security advisory policy"
  2757. }
  2758. }
  2759. },
  2760. "notification-url": "https://packages.drupal.org/8/downloads",
  2761. "license": [
  2762. "GPL-2.0-or-later"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "bnjmnm",
  2767. "homepage": "https://www.drupal.org/user/2369194"
  2768. },
  2769. {
  2770. "name": "lauriii",
  2771. "homepage": "https://www.drupal.org/user/1078742"
  2772. },
  2773. {
  2774. "name": "zrpnr",
  2775. "homepage": "https://www.drupal.org/user/1448368"
  2776. }
  2777. ],
  2778. "description": "Provides jQuery UI Droppable library.",
  2779. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  2780. "support": {
  2781. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  2782. }
  2783. },
  2784. {
  2785. "name": "drupal/jquery_ui_menu",
  2786. "version": "2.0.0",
  2787. "source": {
  2788. "type": "git",
  2789. "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
  2790. "reference": "2.0.0"
  2791. },
  2792. "dist": {
  2793. "type": "zip",
  2794. "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip",
  2795. "reference": "2.0.0",
  2796. "shasum": "5e1b56bf457669c7779a81784f49da63e3956854"
  2797. },
  2798. "require": {
  2799. "drupal/core": "^9.2 || ^10",
  2800. "drupal/jquery_ui": "^1.6"
  2801. },
  2802. "type": "drupal-module",
  2803. "extra": {
  2804. "drupal": {
  2805. "version": "2.0.0",
  2806. "datestamp": "1670871546",
  2807. "security-coverage": {
  2808. "status": "covered",
  2809. "message": "Covered by Drupal's security advisory policy"
  2810. }
  2811. }
  2812. },
  2813. "notification-url": "https://packages.drupal.org/8/downloads",
  2814. "license": [
  2815. "GPL-2.0-or-later"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "bnjmnm",
  2820. "homepage": "https://www.drupal.org/user/2369194"
  2821. },
  2822. {
  2823. "name": "lauriii",
  2824. "homepage": "https://www.drupal.org/user/1078742"
  2825. },
  2826. {
  2827. "name": "nod_",
  2828. "homepage": "https://www.drupal.org/user/598310"
  2829. },
  2830. {
  2831. "name": "phenaproxima",
  2832. "homepage": "https://www.drupal.org/user/205645"
  2833. },
  2834. {
  2835. "name": "Wim Leers",
  2836. "homepage": "https://www.drupal.org/user/99777"
  2837. },
  2838. {
  2839. "name": "zrpnr",
  2840. "homepage": "https://www.drupal.org/user/1448368"
  2841. }
  2842. ],
  2843. "description": "Provides jQuery UI Menu library.",
  2844. "homepage": "https://www.drupal.org/project/jquery_ui_menu",
  2845. "support": {
  2846. "source": "https://git.drupalcode.org/project/jquery_ui_menu"
  2847. }
  2848. },
  2849. {
  2850. "name": "drupal/linkit",
  2851. "version": "6.1.2",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://git.drupalcode.org/project/linkit.git",
  2855. "reference": "6.1.2"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  2860. "reference": "6.1.2",
  2861. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  2862. },
  2863. "require": {
  2864. "drupal/core": "^10.1"
  2865. },
  2866. "require-dev": {
  2867. "drupal/ckeditor": "*",
  2868. "drupal/imce": "*"
  2869. },
  2870. "type": "drupal-module",
  2871. "extra": {
  2872. "drupal": {
  2873. "version": "6.1.2",
  2874. "datestamp": "1696865478",
  2875. "security-coverage": {
  2876. "status": "covered",
  2877. "message": "Covered by Drupal's security advisory policy"
  2878. }
  2879. }
  2880. },
  2881. "notification-url": "https://packages.drupal.org/8/downloads",
  2882. "license": [
  2883. "GPL-2.0-or-later"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "Emil Stjerneman",
  2888. "homepage": "https://stjerneman.com",
  2889. "email": "emil@stjerneman.com",
  2890. "role": "Maintainer"
  2891. },
  2892. {
  2893. "name": "johnwebdev",
  2894. "homepage": "https://www.drupal.org/user/3331569"
  2895. },
  2896. {
  2897. "name": "mark_fullmer",
  2898. "homepage": "https://www.drupal.org/user/2612816"
  2899. }
  2900. ],
  2901. "description": "Linkit - Enriched linking experience",
  2902. "homepage": "http://drupal.org/project/linkit",
  2903. "support": {
  2904. "source": "http://cgit.drupalcode.org/linkit",
  2905. "issues": "http://drupal.org/project/linkit"
  2906. }
  2907. },
  2908. {
  2909. "name": "drupal/masonry",
  2910. "version": "4.0.0",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://git.drupalcode.org/project/masonry.git",
  2914. "reference": "4.0.0"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://ftp.drupal.org/files/projects/masonry-4.0.0.zip",
  2919. "reference": "4.0.0",
  2920. "shasum": "5062350d5f68d84077a393ce5b8cdc11ff66d0cd"
  2921. },
  2922. "require": {
  2923. "drupal/core": "^8 || ^9 || ^10"
  2924. },
  2925. "type": "drupal-module",
  2926. "extra": {
  2927. "drupal": {
  2928. "version": "4.0.0",
  2929. "datestamp": "1690017720",
  2930. "security-coverage": {
  2931. "status": "covered",
  2932. "message": "Covered by Drupal's security advisory policy"
  2933. }
  2934. }
  2935. },
  2936. "notification-url": "https://packages.drupal.org/8/downloads",
  2937. "license": [
  2938. "GPL-2.0-or-later"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Dominique Clause (Dom.)",
  2943. "homepage": "https://www.drupal.org/u/dom",
  2944. "role": "Maintainer"
  2945. },
  2946. {
  2947. "name": "Dom.",
  2948. "homepage": "https://www.drupal.org/user/801982"
  2949. }
  2950. ],
  2951. "description": "Masonry integrates with Masonry library",
  2952. "homepage": "https://www.drupal.org/project/masonry",
  2953. "support": {
  2954. "source": "https://git.drupalcode.org/project/masonry",
  2955. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  2956. }
  2957. },
  2958. {
  2959. "name": "drupal/matomo",
  2960. "version": "1.23.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://git.drupalcode.org/project/matomo.git",
  2964. "reference": "8.x-1.23"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  2969. "reference": "8.x-1.23",
  2970. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  2971. },
  2972. "require": {
  2973. "drupal/core": "^9.0 || ^10"
  2974. },
  2975. "conflict": {
  2976. "drupal/csp": "<1.12"
  2977. },
  2978. "require-dev": {
  2979. "drupal/csp": "~1.12",
  2980. "drupal/php": "~1.1",
  2981. "drupal/token": "~1.9"
  2982. },
  2983. "type": "drupal-module",
  2984. "extra": {
  2985. "drupal": {
  2986. "version": "8.x-1.23",
  2987. "datestamp": "1700936102",
  2988. "security-coverage": {
  2989. "status": "covered",
  2990. "message": "Covered by Drupal's security advisory policy"
  2991. }
  2992. }
  2993. },
  2994. "notification-url": "https://packages.drupal.org/8/downloads",
  2995. "license": [
  2996. "GPL-2.0-or-later"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "C-Logemann",
  3001. "homepage": "https://www.drupal.org/user/218368"
  3002. },
  3003. {
  3004. "name": "Grimreaper",
  3005. "homepage": "https://www.drupal.org/user/2388214"
  3006. },
  3007. {
  3008. "name": "hass",
  3009. "homepage": "https://www.drupal.org/user/85918"
  3010. },
  3011. {
  3012. "name": "shelane",
  3013. "homepage": "https://www.drupal.org/user/2674989"
  3014. }
  3015. ],
  3016. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  3017. "homepage": "https://www.drupal.org/project/matomo",
  3018. "support": {
  3019. "source": "https://git.drupalcode.org/project/matomo"
  3020. }
  3021. },
  3022. {
  3023. "name": "drupal/mediteran",
  3024. "version": "1.32.0",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://git.drupalcode.org/project/mediteran.git",
  3028. "reference": "8.x-1.32"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.32.zip",
  3033. "reference": "8.x-1.32",
  3034. "shasum": "85e0a94bf5f98626e1eb2c88f6b9467c1fdaf9ec"
  3035. },
  3036. "require": {
  3037. "drupal/core": "^9.2 || ^10"
  3038. },
  3039. "type": "drupal-theme",
  3040. "extra": {
  3041. "drupal": {
  3042. "version": "8.x-1.32",
  3043. "datestamp": "1699979844",
  3044. "security-coverage": {
  3045. "status": "covered",
  3046. "message": "Covered by Drupal's security advisory policy"
  3047. }
  3048. }
  3049. },
  3050. "notification-url": "https://packages.drupal.org/8/downloads",
  3051. "license": [
  3052. "GPL-2.0-or-later"
  3053. ],
  3054. "authors": [
  3055. {
  3056. "name": "bataboza",
  3057. "homepage": "https://www.drupal.org/user/3581173"
  3058. },
  3059. {
  3060. "name": "doxigo",
  3061. "homepage": "https://www.drupal.org/user/1331334"
  3062. },
  3063. {
  3064. "name": "dqd",
  3065. "homepage": "https://www.drupal.org/user/1001934"
  3066. },
  3067. {
  3068. "name": "Hosisam",
  3069. "homepage": "https://www.drupal.org/user/3449435"
  3070. },
  3071. {
  3072. "name": "Nitin shrivastava",
  3073. "homepage": "https://www.drupal.org/user/3725211"
  3074. },
  3075. {
  3076. "name": "paulrad",
  3077. "homepage": "https://www.drupal.org/user/3722439"
  3078. },
  3079. {
  3080. "name": "szeidler",
  3081. "homepage": "https://www.drupal.org/user/767652"
  3082. }
  3083. ],
  3084. "description": "Mediteran is a clean and simple administration theme designed by <a href=\"https://drupalation.com\" target=\"_blank\">Drupalation</a> and supported by <a href=\"https://ramsalt.com\" target=\"_blank\">Ramsalt</a>.",
  3085. "homepage": "https://www.drupal.org/project/mediteran",
  3086. "support": {
  3087. "source": "https://git.drupalcode.org/project/mediteran"
  3088. }
  3089. },
  3090. {
  3091. "name": "drupal/metatag",
  3092. "version": "1.26.0",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://git.drupalcode.org/project/metatag.git",
  3096. "reference": "8.x-1.26"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3101. "reference": "8.x-1.26",
  3102. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3103. },
  3104. "require": {
  3105. "drupal/core": "^9.3 || ^10",
  3106. "drupal/token": "^1.0"
  3107. },
  3108. "require-dev": {
  3109. "drupal/devel": "^4.0 || ^5.0",
  3110. "drupal/hal": "^9 || ^1 || ^2",
  3111. "drupal/metatag_dc": "*",
  3112. "drupal/metatag_open_graph": "*",
  3113. "drupal/page_manager": "^4.0",
  3114. "drupal/panelizer": "^4.0",
  3115. "drupal/redirect": "^1.0",
  3116. "drupal/webprofiler": "^9 || ^10",
  3117. "mpyw/phpunit-patch-serializable-comparison": "*"
  3118. },
  3119. "type": "drupal-module",
  3120. "extra": {
  3121. "drupal": {
  3122. "version": "8.x-1.26",
  3123. "datestamp": "1687856123",
  3124. "security-coverage": {
  3125. "status": "covered",
  3126. "message": "Covered by Drupal's security advisory policy"
  3127. }
  3128. }
  3129. },
  3130. "notification-url": "https://packages.drupal.org/8/downloads",
  3131. "license": [
  3132. "GPL-2.0-or-later"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "See contributors",
  3137. "homepage": "https://www.drupal.org/node/640498/committers",
  3138. "role": "Developer"
  3139. },
  3140. {
  3141. "name": "Dave Reid",
  3142. "homepage": "https://www.drupal.org/user/53892"
  3143. }
  3144. ],
  3145. "description": "Manage meta tags for all entities.",
  3146. "homepage": "https://www.drupal.org/project/metatag",
  3147. "keywords": [
  3148. "Drupal",
  3149. "seo"
  3150. ],
  3151. "support": {
  3152. "source": "https://git.drupalcode.org/project/metatag",
  3153. "issues": "https://www.drupal.org/project/issues/metatag",
  3154. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3155. }
  3156. },
  3157. {
  3158. "name": "drupal/page_manager",
  3159. "version": "4.0.0-rc2",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://git.drupalcode.org/project/page_manager.git",
  3163. "reference": "8.x-4.0-rc2"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3168. "reference": "8.x-4.0-rc2",
  3169. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3170. },
  3171. "require": {
  3172. "drupal/core": "^9.3 || ^10",
  3173. "drupal/ctools": "^3.11 || ^4.0"
  3174. },
  3175. "type": "drupal-module",
  3176. "extra": {
  3177. "drupal": {
  3178. "version": "8.x-4.0-rc2",
  3179. "datestamp": "1671210021",
  3180. "security-coverage": {
  3181. "status": "not-covered",
  3182. "message": "RC releases are not covered by Drupal security advisories."
  3183. }
  3184. },
  3185. "branch-alias": {
  3186. "dev-8.x-4.x": "4.x-dev"
  3187. }
  3188. },
  3189. "notification-url": "https://packages.drupal.org/8/downloads",
  3190. "license": [
  3191. "GPL-2.0-or-later"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Tim Plunkett",
  3196. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3197. "role": "Maintainer"
  3198. },
  3199. {
  3200. "name": "EclipseGc",
  3201. "homepage": "https://www.drupal.org/user/61203"
  3202. },
  3203. {
  3204. "name": "ivnish",
  3205. "homepage": "https://www.drupal.org/user/3547706"
  3206. },
  3207. {
  3208. "name": "japerry",
  3209. "homepage": "https://www.drupal.org/user/45640"
  3210. },
  3211. {
  3212. "name": "joelpittet",
  3213. "homepage": "https://www.drupal.org/user/160302"
  3214. },
  3215. {
  3216. "name": "manuel.adan",
  3217. "homepage": "https://www.drupal.org/user/516420"
  3218. },
  3219. {
  3220. "name": "phenaproxima",
  3221. "homepage": "https://www.drupal.org/user/205645"
  3222. }
  3223. ],
  3224. "description": "Provides a way to place blocks on a custom page.",
  3225. "homepage": "https://www.drupal.org/project/page_manager",
  3226. "support": {
  3227. "source": "https://git.drupal.org/project/page_manager.git",
  3228. "issues": "https://www.drupal.org/project/issues/page_manager",
  3229. "irc": "irc://irc.freenode.org/drupal-contribute"
  3230. }
  3231. },
  3232. {
  3233. "name": "drupal/panels",
  3234. "version": "dev-4.x",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://git.drupalcode.org/project/panels.git",
  3238. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3239. },
  3240. "require": {
  3241. "drupal/core": "^9.2 || ^10",
  3242. "drupal/ctools": "^3.12 || ^4.0",
  3243. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3244. },
  3245. "require-dev": {
  3246. "drupal/jquery_ui_droppable": "*",
  3247. "drupal/page_manager": "^4"
  3248. },
  3249. "type": "drupal-module",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-4.x": "4.x-dev",
  3253. "dev-8.x-4.x": "4.x-dev"
  3254. },
  3255. "drupal": {
  3256. "version": "8.x-4.7+5-dev",
  3257. "datestamp": "1693457160",
  3258. "security-coverage": {
  3259. "status": "not-covered",
  3260. "message": "Dev releases are not covered by Drupal security advisories."
  3261. }
  3262. }
  3263. },
  3264. "notification-url": "https://packages.drupal.org/8/downloads",
  3265. "license": [
  3266. "GPL-2.0+"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Jakob Perry",
  3271. "homepage": "https://www.drupal.org/u/japerry"
  3272. },
  3273. {
  3274. "name": "Samuel Mortenson",
  3275. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3276. },
  3277. {
  3278. "name": "See other contributors",
  3279. "homepage": "https://www.drupal.org/node/74958/committers"
  3280. },
  3281. {
  3282. "name": "joelpittet",
  3283. "homepage": "https://www.drupal.org/user/160302"
  3284. },
  3285. {
  3286. "name": "Letharion",
  3287. "homepage": "https://www.drupal.org/user/373603"
  3288. },
  3289. {
  3290. "name": "merlinofchaos",
  3291. "homepage": "https://www.drupal.org/user/26979"
  3292. },
  3293. {
  3294. "name": "neclimdul",
  3295. "homepage": "https://www.drupal.org/user/48673"
  3296. },
  3297. {
  3298. "name": "phenaproxima",
  3299. "homepage": "https://www.drupal.org/user/205645"
  3300. },
  3301. {
  3302. "name": "samuel.mortenson",
  3303. "homepage": "https://www.drupal.org/user/2582268"
  3304. }
  3305. ],
  3306. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3307. "homepage": "https://www.drupal.org/project/panels",
  3308. "support": {
  3309. "source": "http://git.drupal.org/project/panels.git",
  3310. "issues": "https://www.drupal.org/project/issues/panels",
  3311. "irc": "irc://irc.freenode.org/drupal-scotch"
  3312. }
  3313. },
  3314. {
  3315. "name": "drupal/paragraphs",
  3316. "version": "1.17.0",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3320. "reference": "8.x-1.17"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3325. "reference": "8.x-1.17",
  3326. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3327. },
  3328. "require": {
  3329. "drupal/core": "^9.3 || ^10",
  3330. "drupal/entity_reference_revisions": "~1.3"
  3331. },
  3332. "require-dev": {
  3333. "drupal/block_field": "1.x-dev",
  3334. "drupal/diff": "1.x-dev",
  3335. "drupal/entity_browser": "2.x-dev",
  3336. "drupal/entity_usage": "2.x-dev",
  3337. "drupal/field_group": "3.x-dev",
  3338. "drupal/inline_entity_form": "1.x-dev",
  3339. "drupal/paragraphs-paragraphs_library": "*",
  3340. "drupal/replicate": "1.x-dev",
  3341. "drupal/search_api": "^1",
  3342. "drupal/search_api_db": "*"
  3343. },
  3344. "suggest": {
  3345. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3346. },
  3347. "type": "drupal-module",
  3348. "extra": {
  3349. "drupal": {
  3350. "version": "8.x-1.17",
  3351. "datestamp": "1705234146",
  3352. "security-coverage": {
  3353. "status": "covered",
  3354. "message": "Covered by Drupal's security advisory policy"
  3355. }
  3356. }
  3357. },
  3358. "notification-url": "https://packages.drupal.org/8/downloads",
  3359. "license": [
  3360. "GPL-2.0-or-later"
  3361. ],
  3362. "authors": [
  3363. {
  3364. "name": "Berdir",
  3365. "homepage": "https://www.drupal.org/user/214652"
  3366. },
  3367. {
  3368. "name": "Frans",
  3369. "homepage": "https://www.drupal.org/user/514222"
  3370. },
  3371. {
  3372. "name": "jeroen.b",
  3373. "homepage": "https://www.drupal.org/user/1853532"
  3374. },
  3375. {
  3376. "name": "jstoller",
  3377. "homepage": "https://www.drupal.org/user/99012"
  3378. },
  3379. {
  3380. "name": "miro_dietiker",
  3381. "homepage": "https://www.drupal.org/user/227761"
  3382. },
  3383. {
  3384. "name": "Primsi",
  3385. "homepage": "https://www.drupal.org/user/282629"
  3386. }
  3387. ],
  3388. "description": "Enables the creation of Paragraphs entities.",
  3389. "homepage": "https://www.drupal.org/project/paragraphs",
  3390. "support": {
  3391. "source": "https://git.drupalcode.org/project/paragraphs"
  3392. }
  3393. },
  3394. {
  3395. "name": "drupal/pathauto",
  3396. "version": "1.12.0",
  3397. "source": {
  3398. "type": "git",
  3399. "url": "https://git.drupalcode.org/project/pathauto.git",
  3400. "reference": "8.x-1.12"
  3401. },
  3402. "dist": {
  3403. "type": "zip",
  3404. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3405. "reference": "8.x-1.12",
  3406. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3407. },
  3408. "require": {
  3409. "drupal/core": "^9.3 || ^10",
  3410. "drupal/ctools": "*",
  3411. "drupal/token": "*"
  3412. },
  3413. "suggest": {
  3414. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  3415. },
  3416. "type": "drupal-module",
  3417. "extra": {
  3418. "drupal": {
  3419. "version": "8.x-1.12",
  3420. "datestamp": "1696776683",
  3421. "security-coverage": {
  3422. "status": "covered",
  3423. "message": "Covered by Drupal's security advisory policy"
  3424. }
  3425. },
  3426. "drush": {
  3427. "services": {
  3428. "drush.services.yml": "^9 || ^10"
  3429. }
  3430. }
  3431. },
  3432. "notification-url": "https://packages.drupal.org/8/downloads",
  3433. "license": [
  3434. "GPL-2.0-or-later"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "Berdir",
  3439. "homepage": "https://www.drupal.org/user/214652"
  3440. },
  3441. {
  3442. "name": "Dave Reid",
  3443. "homepage": "https://www.drupal.org/user/53892"
  3444. },
  3445. {
  3446. "name": "Freso",
  3447. "homepage": "https://www.drupal.org/user/27504"
  3448. },
  3449. {
  3450. "name": "greggles",
  3451. "homepage": "https://www.drupal.org/user/36762"
  3452. }
  3453. ],
  3454. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3455. "homepage": "https://www.drupal.org/project/pathauto",
  3456. "support": {
  3457. "source": "https://cgit.drupalcode.org/pathauto",
  3458. "issues": "https://www.drupal.org/project/issues/pathauto",
  3459. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3460. }
  3461. },
  3462. {
  3463. "name": "drupal/redirect",
  3464. "version": "1.9.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://git.drupalcode.org/project/redirect.git",
  3468. "reference": "8.x-1.9"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3473. "reference": "8.x-1.9",
  3474. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3475. },
  3476. "require": {
  3477. "drupal/core": "^9.2 || ^10"
  3478. },
  3479. "type": "drupal-module",
  3480. "extra": {
  3481. "drupal": {
  3482. "version": "8.x-1.9",
  3483. "datestamp": "1693393506",
  3484. "security-coverage": {
  3485. "status": "covered",
  3486. "message": "Covered by Drupal's security advisory policy"
  3487. }
  3488. }
  3489. },
  3490. "notification-url": "https://packages.drupal.org/8/downloads",
  3491. "license": [
  3492. "GPL-2.0-or-later"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "Berdir",
  3497. "homepage": "https://www.drupal.org/user/214652"
  3498. },
  3499. {
  3500. "name": "Dave Reid",
  3501. "homepage": "https://www.drupal.org/user/53892"
  3502. },
  3503. {
  3504. "name": "Kristen Pol",
  3505. "homepage": "https://www.drupal.org/user/8389"
  3506. },
  3507. {
  3508. "name": "pifagor",
  3509. "homepage": "https://www.drupal.org/user/2375692"
  3510. }
  3511. ],
  3512. "description": "Allows users to redirect from old URLs to new URLs.",
  3513. "homepage": "https://www.drupal.org/project/redirect",
  3514. "support": {
  3515. "source": "https://git.drupalcode.org/project/redirect"
  3516. }
  3517. },
  3518. {
  3519. "name": "drupal/redirect_after_login",
  3520. "version": "2.8.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3524. "reference": "8.x-2.8"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3529. "reference": "8.x-2.8",
  3530. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3531. },
  3532. "require": {
  3533. "drupal/core": "^9.3 || ^10"
  3534. },
  3535. "type": "drupal-module",
  3536. "extra": {
  3537. "drupal": {
  3538. "version": "8.x-2.8",
  3539. "datestamp": "1698918366",
  3540. "security-coverage": {
  3541. "status": "covered",
  3542. "message": "Covered by Drupal's security advisory policy"
  3543. }
  3544. }
  3545. },
  3546. "notification-url": "https://packages.drupal.org/8/downloads",
  3547. "license": [
  3548. "GPL-2.0-or-later"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "Shamsher Alam",
  3553. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3554. "role": "Author"
  3555. },
  3556. {
  3557. "name": "prempatel2447",
  3558. "homepage": "https://www.drupal.org/user/3250112"
  3559. },
  3560. {
  3561. "name": "rahul-kr-sh",
  3562. "homepage": "https://www.drupal.org/user/3561577"
  3563. },
  3564. {
  3565. "name": "Shamsher_Alam",
  3566. "homepage": "https://www.drupal.org/user/2742027"
  3567. },
  3568. {
  3569. "name": "VladimirAus",
  3570. "homepage": "https://www.drupal.org/user/673120"
  3571. }
  3572. ],
  3573. "description": "Redirect user after login to a configured url",
  3574. "homepage": "https://drupal.org/project/redirect_after_login",
  3575. "support": {
  3576. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3577. }
  3578. },
  3579. {
  3580. "name": "drupal/redis",
  3581. "version": "1.7.0",
  3582. "source": {
  3583. "type": "git",
  3584. "url": "https://git.drupalcode.org/project/redis.git",
  3585. "reference": "8.x-1.7"
  3586. },
  3587. "dist": {
  3588. "type": "zip",
  3589. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3590. "reference": "8.x-1.7",
  3591. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3592. },
  3593. "require": {
  3594. "drupal/core": "^9.3 || ^10"
  3595. },
  3596. "suggest": {
  3597. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3598. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3599. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3600. },
  3601. "type": "drupal-module",
  3602. "extra": {
  3603. "drupal": {
  3604. "version": "8.x-1.7",
  3605. "datestamp": "1686175620",
  3606. "security-coverage": {
  3607. "status": "covered",
  3608. "message": "Covered by Drupal's security advisory policy"
  3609. }
  3610. }
  3611. },
  3612. "autoload": {
  3613. "psr-4": {
  3614. "Drupal\\redis\\": "src"
  3615. }
  3616. },
  3617. "notification-url": "https://packages.drupal.org/8/downloads",
  3618. "license": [
  3619. "GPL-2.0-or-later"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "Berdir",
  3624. "homepage": "https://www.drupal.org/user/214652"
  3625. },
  3626. {
  3627. "name": "greg.1.anderson",
  3628. "homepage": "https://www.drupal.org/user/438598"
  3629. },
  3630. {
  3631. "name": "kporras07",
  3632. "homepage": "https://www.drupal.org/user/1349780"
  3633. },
  3634. {
  3635. "name": "pounard",
  3636. "homepage": "https://www.drupal.org/user/240164"
  3637. }
  3638. ],
  3639. "description": "Integration of Drupal with the Redis key-value store.",
  3640. "homepage": "https://www.drupal.org/project/redis",
  3641. "support": {
  3642. "source": "https://git.drupalcode.org/project/redis"
  3643. }
  3644. },
  3645. {
  3646. "name": "drupal/schema_metatag",
  3647. "version": "2.5.0",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3651. "reference": "8.x-2.5"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3656. "reference": "8.x-2.5",
  3657. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3658. },
  3659. "require": {
  3660. "drupal/core": "^9.0 || ^10",
  3661. "drupal/metatag": "^1.0"
  3662. },
  3663. "require-dev": {
  3664. "drupal/coder": "^8.3",
  3665. "drupal/metatag_views": "*",
  3666. "drupal/schema_article": "*",
  3667. "drupal/schema_organization": "*",
  3668. "phpcompatibility/php-compatibility": "^9.3"
  3669. },
  3670. "type": "drupal-module",
  3671. "extra": {
  3672. "drupal": {
  3673. "version": "8.x-2.5",
  3674. "datestamp": "1687460392",
  3675. "security-coverage": {
  3676. "status": "covered",
  3677. "message": "Covered by Drupal's security advisory policy"
  3678. }
  3679. }
  3680. },
  3681. "notification-url": "https://packages.drupal.org/8/downloads",
  3682. "license": [
  3683. "GPL-2.0-or-later"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "DamienMcKenna",
  3688. "homepage": "https://www.drupal.org/user/108450"
  3689. },
  3690. {
  3691. "name": "KarenS",
  3692. "homepage": "https://www.drupal.org/user/45874"
  3693. },
  3694. {
  3695. "name": "wells",
  3696. "homepage": "https://www.drupal.org/user/2452278"
  3697. }
  3698. ],
  3699. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3700. "homepage": "https://www.drupal.org/project/schema_metatag",
  3701. "keywords": [
  3702. "Drupal"
  3703. ],
  3704. "support": {
  3705. "source": "https://git.drupalcode.org/project/schema_metatag",
  3706. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3707. }
  3708. },
  3709. {
  3710. "name": "drupal/search_api",
  3711. "version": "1.31.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://git.drupalcode.org/project/search_api.git",
  3715. "reference": "8.x-1.31"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3720. "reference": "8.x-1.31",
  3721. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3722. },
  3723. "require": {
  3724. "drupal/core": "^10.0"
  3725. },
  3726. "conflict": {
  3727. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3728. },
  3729. "require-dev": {
  3730. "drupal/language_fallback_fix": "@dev",
  3731. "drupal/search_api_autocomplete": "@dev",
  3732. "drupal/search_api_db": "*"
  3733. },
  3734. "suggest": {
  3735. "drupal/facets": "Adds the ability to create faceted searches.",
  3736. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3737. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3738. },
  3739. "type": "drupal-module",
  3740. "extra": {
  3741. "drupal": {
  3742. "version": "8.x-1.31",
  3743. "datestamp": "1700926323",
  3744. "security-coverage": {
  3745. "status": "covered",
  3746. "message": "Covered by Drupal's security advisory policy"
  3747. }
  3748. },
  3749. "drush": {
  3750. "services": {
  3751. "drush.services.yml": "^9 || ^10 || ^11"
  3752. }
  3753. }
  3754. },
  3755. "notification-url": "https://packages.drupal.org/8/downloads",
  3756. "license": [
  3757. "GPL-2.0-or-later"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Thomas Seidl",
  3762. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3763. },
  3764. {
  3765. "name": "Nick Veenhof",
  3766. "homepage": "https://www.drupal.org/u/nick_vh"
  3767. },
  3768. {
  3769. "name": "See other contributors",
  3770. "homepage": "https://www.drupal.org/node/790418/committers"
  3771. }
  3772. ],
  3773. "description": "Provides a generic framework for modules offering search capabilities.",
  3774. "homepage": "https://www.drupal.org/project/search_api",
  3775. "support": {
  3776. "source": "https://git.drupalcode.org/project/search_api",
  3777. "issues": "https://www.drupal.org/project/issues/search_api",
  3778. "irc": "irc://irc.freenode.org/drupal-search-api"
  3779. }
  3780. },
  3781. {
  3782. "name": "drupal/site_settings",
  3783. "version": "1.20.0",
  3784. "source": {
  3785. "type": "git",
  3786. "url": "https://git.drupalcode.org/project/site_settings.git",
  3787. "reference": "8.x-1.20"
  3788. },
  3789. "dist": {
  3790. "type": "zip",
  3791. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  3792. "reference": "8.x-1.20",
  3793. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  3794. },
  3795. "require": {
  3796. "drupal/core": "^8 || ^9 || ^10"
  3797. },
  3798. "type": "drupal-module",
  3799. "extra": {
  3800. "drupal": {
  3801. "version": "8.x-1.20",
  3802. "datestamp": "1669790573",
  3803. "security-coverage": {
  3804. "status": "covered",
  3805. "message": "Covered by Drupal's security advisory policy"
  3806. }
  3807. }
  3808. },
  3809. "notification-url": "https://packages.drupal.org/8/downloads",
  3810. "license": [
  3811. "GPL-2.0+"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "bobi-mel",
  3816. "homepage": "https://www.drupal.org/user/3741631"
  3817. },
  3818. {
  3819. "name": "bohart",
  3820. "homepage": "https://www.drupal.org/user/289861"
  3821. },
  3822. {
  3823. "name": "scott_euser",
  3824. "homepage": "https://www.drupal.org/user/3267594"
  3825. }
  3826. ],
  3827. "description": "Provides a site settings entity",
  3828. "homepage": "https://www.drupal.org/project/site_settings",
  3829. "keywords": [
  3830. "Drupal"
  3831. ],
  3832. "support": {
  3833. "source": "http://cgit.drupalcode.org/site_settings",
  3834. "issues": "http://drupal.org/project/issues/site_settings"
  3835. }
  3836. },
  3837. {
  3838. "name": "drupal/subpathauto",
  3839. "version": "1.3.0",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://git.drupalcode.org/project/subpathauto.git",
  3843. "reference": "8.x-1.3"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  3848. "reference": "8.x-1.3",
  3849. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  3850. },
  3851. "require": {
  3852. "drupal/core": "^8.8 || ^9 || ^10"
  3853. },
  3854. "require-dev": {
  3855. "drupal/redirect": "*"
  3856. },
  3857. "type": "drupal-module",
  3858. "extra": {
  3859. "drupal": {
  3860. "version": "8.x-1.3",
  3861. "datestamp": "1676316639",
  3862. "security-coverage": {
  3863. "status": "covered",
  3864. "message": "Covered by Drupal's security advisory policy"
  3865. }
  3866. }
  3867. },
  3868. "notification-url": "https://packages.drupal.org/8/downloads",
  3869. "license": [
  3870. "GPL-2.0-or-later"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "Dave Reid",
  3875. "homepage": "https://www.drupal.org/user/53892"
  3876. },
  3877. {
  3878. "name": "lauriii",
  3879. "homepage": "https://www.drupal.org/user/1078742"
  3880. },
  3881. {
  3882. "name": "NickDickinsonWilde",
  3883. "homepage": "https://www.drupal.org/user/3094661"
  3884. }
  3885. ],
  3886. "description": "Provides support for extending sub-paths of URL aliases.",
  3887. "homepage": "https://www.drupal.org/project/subpathauto",
  3888. "support": {
  3889. "source": "https://cgit.drupalcode.org/subpathauto",
  3890. "issues": "https://www.drupal.org/project/issues/subpathauto"
  3891. }
  3892. },
  3893. {
  3894. "name": "drupal/tacjs",
  3895. "version": "6.4.0",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://git.drupalcode.org/project/tacjs.git",
  3899. "reference": "8.x-6.4"
  3900. },
  3901. "dist": {
  3902. "type": "zip",
  3903. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.4.zip",
  3904. "reference": "8.x-6.4",
  3905. "shasum": "20a23611b6ea7a5f3b8d2d5ec9ce714cd3e00d77"
  3906. },
  3907. "require": {
  3908. "drupal/core": "^8.8 || ^9 || ^10"
  3909. },
  3910. "type": "drupal-module",
  3911. "extra": {
  3912. "drupal": {
  3913. "version": "8.x-6.4",
  3914. "datestamp": "1687974794",
  3915. "security-coverage": {
  3916. "status": "covered",
  3917. "message": "Covered by Drupal's security advisory policy"
  3918. }
  3919. }
  3920. },
  3921. "notification-url": "https://packages.drupal.org/8/downloads",
  3922. "license": [
  3923. "GPL-2.0-or-later"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "asmaakhalfi",
  3928. "homepage": "https://www.drupal.org/user/3587145"
  3929. },
  3930. {
  3931. "name": "boulaffasae",
  3932. "homepage": "https://www.drupal.org/user/3584750"
  3933. },
  3934. {
  3935. "name": "chaimaariz",
  3936. "homepage": "https://www.drupal.org/user/3549766"
  3937. },
  3938. {
  3939. "name": "k.asmouh",
  3940. "homepage": "https://www.drupal.org/user/3135943"
  3941. },
  3942. {
  3943. "name": "lamlih",
  3944. "homepage": "https://www.drupal.org/user/3708454"
  3945. },
  3946. {
  3947. "name": "mably",
  3948. "homepage": "https://www.drupal.org/user/3375160"
  3949. },
  3950. {
  3951. "name": "netsliver",
  3952. "homepage": "https://www.drupal.org/user/3082011"
  3953. },
  3954. {
  3955. "name": "prudloff",
  3956. "homepage": "https://www.drupal.org/user/3611858"
  3957. }
  3958. ],
  3959. "description": "Comply to the European cookie law using tarteaucitron.js.",
  3960. "homepage": "https://www.drupal.org/project/tacjs",
  3961. "keywords": [
  3962. "Drupal",
  3963. "tacjs"
  3964. ],
  3965. "support": {
  3966. "source": "https://git.drupalcode.org/project/tacjs",
  3967. "issues": "https://www.drupal.org/project/issues/tacjs"
  3968. }
  3969. },
  3970. {
  3971. "name": "drupal/time_range",
  3972. "version": "9.0.2",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://git.drupalcode.org/project/time_range.git",
  3976. "reference": "9.0.2"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  3981. "reference": "9.0.2",
  3982. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  3983. },
  3984. "require": {
  3985. "drupal/core": "^8 || ^9 || ^10"
  3986. },
  3987. "type": "drupal-module",
  3988. "extra": {
  3989. "drupal": {
  3990. "version": "9.0.2",
  3991. "datestamp": "1688992195",
  3992. "security-coverage": {
  3993. "status": "covered",
  3994. "message": "Covered by Drupal's security advisory policy"
  3995. }
  3996. }
  3997. },
  3998. "notification-url": "https://packages.drupal.org/8/downloads",
  3999. "license": [
  4000. "GPL-2.0+"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "dravenk",
  4005. "homepage": "https://www.drupal.org/user/3452417"
  4006. }
  4007. ],
  4008. "description": "Provides the form widget to fill in time range.",
  4009. "homepage": "https://github.com/DravenK/time-range.git",
  4010. "support": {
  4011. "source": "https://github.com/DravenK/time-range.git",
  4012. "issues": "https://github.com/DravenK/time-range/issues"
  4013. }
  4014. },
  4015. {
  4016. "name": "drupal/token",
  4017. "version": "1.13.0",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://git.drupalcode.org/project/token.git",
  4021. "reference": "8.x-1.13"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  4026. "reference": "8.x-1.13",
  4027. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  4028. },
  4029. "require": {
  4030. "drupal/core": "^9.2 || ^10"
  4031. },
  4032. "type": "drupal-module",
  4033. "extra": {
  4034. "drupal": {
  4035. "version": "8.x-1.13",
  4036. "datestamp": "1697885927",
  4037. "security-coverage": {
  4038. "status": "covered",
  4039. "message": "Covered by Drupal's security advisory policy"
  4040. }
  4041. },
  4042. "drush": {
  4043. "services": {
  4044. "drush.services.yml": ">=9"
  4045. }
  4046. }
  4047. },
  4048. "notification-url": "https://packages.drupal.org/8/downloads",
  4049. "license": [
  4050. "GPL-2.0-or-later"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Berdir",
  4055. "homepage": "https://www.drupal.org/user/214652"
  4056. },
  4057. {
  4058. "name": "Dave Reid",
  4059. "homepage": "https://www.drupal.org/user/53892"
  4060. },
  4061. {
  4062. "name": "eaton",
  4063. "homepage": "https://www.drupal.org/user/16496"
  4064. },
  4065. {
  4066. "name": "fago",
  4067. "homepage": "https://www.drupal.org/user/16747"
  4068. },
  4069. {
  4070. "name": "greggles",
  4071. "homepage": "https://www.drupal.org/user/36762"
  4072. },
  4073. {
  4074. "name": "mikeryan",
  4075. "homepage": "https://www.drupal.org/user/4420"
  4076. }
  4077. ],
  4078. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4079. "homepage": "https://www.drupal.org/project/token",
  4080. "support": {
  4081. "source": "https://git.drupalcode.org/project/token"
  4082. }
  4083. },
  4084. {
  4085. "name": "drupal/transliterate_filenames",
  4086. "version": "2.0.2",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://git.drupalcode.org/project/transliterate_filenames.git",
  4090. "reference": "2.0.2"
  4091. },
  4092. "dist": {
  4093. "type": "zip",
  4094. "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-2.0.2.zip",
  4095. "reference": "2.0.2",
  4096. "shasum": "204bcd65f79eeb6c4a43b3c63d0bbd325edfb127"
  4097. },
  4098. "require": {
  4099. "drupal/core": "^9.3 || ^10"
  4100. },
  4101. "type": "drupal-module",
  4102. "extra": {
  4103. "drupal": {
  4104. "version": "2.0.2",
  4105. "datestamp": "1698338671",
  4106. "security-coverage": {
  4107. "status": "covered",
  4108. "message": "Covered by Drupal's security advisory policy"
  4109. }
  4110. }
  4111. },
  4112. "notification-url": "https://packages.drupal.org/8/downloads",
  4113. "license": [
  4114. "GPL-2.0-or-later"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "Alexander Dubovskoy",
  4119. "homepage": "https://www.drupal.org/u/adubovskoy",
  4120. "role": "Maintainer"
  4121. },
  4122. {
  4123. "name": "Andrei Ivnitskii",
  4124. "homepage": "https://www.drupal.org/u/ivnish",
  4125. "role": "Maintainer"
  4126. },
  4127. {
  4128. "name": "Krzysztof Domański",
  4129. "homepage": "https://www.drupal.org/user/3572982"
  4130. }
  4131. ],
  4132. "description": "Transliteration for all uploading files (includes fields and ckeditor inline upload)",
  4133. "homepage": "https://www.drupal.org/project/transliterate_filenames",
  4134. "support": {
  4135. "source": "https://git.drupalcode.org/project/transliterate_filenames",
  4136. "issues": "https://www.drupal.org/project/issues/transliterate_filenames"
  4137. }
  4138. },
  4139. {
  4140. "name": "drupal/video_embed_field",
  4141. "version": "2.5.0",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4145. "reference": "8.x-2.5"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4150. "reference": "8.x-2.5",
  4151. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4152. },
  4153. "require": {
  4154. "drupal/core": "^9.2 || ^10"
  4155. },
  4156. "require-dev": {
  4157. "drupal/ckeditor": "^1",
  4158. "drupal/colorbox": "^2",
  4159. "drupal/video_embed_media": "*"
  4160. },
  4161. "type": "drupal-module",
  4162. "extra": {
  4163. "drupal": {
  4164. "version": "8.x-2.5",
  4165. "datestamp": "1671413311",
  4166. "security-coverage": {
  4167. "status": "covered",
  4168. "message": "Covered by Drupal's security advisory policy"
  4169. }
  4170. }
  4171. },
  4172. "notification-url": "https://packages.drupal.org/8/downloads",
  4173. "license": [
  4174. "GPL-2.0-or-later"
  4175. ],
  4176. "authors": [
  4177. {
  4178. "name": "abhinesh",
  4179. "homepage": "https://www.drupal.org/user/3645979"
  4180. },
  4181. {
  4182. "name": "jec006",
  4183. "homepage": "https://www.drupal.org/user/855980"
  4184. },
  4185. {
  4186. "name": "plopesc",
  4187. "homepage": "https://www.drupal.org/user/282415"
  4188. },
  4189. {
  4190. "name": "Sam152",
  4191. "homepage": "https://www.drupal.org/user/1485048"
  4192. }
  4193. ],
  4194. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4195. "homepage": "https://www.drupal.org/project/video_embed_field",
  4196. "support": {
  4197. "source": "https://git.drupalcode.org/project/video_embed_field"
  4198. }
  4199. },
  4200. {
  4201. "name": "drupal/views_url_path_arguments",
  4202. "version": "1.2.0",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4206. "reference": "8.x-1.2"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4211. "reference": "8.x-1.2",
  4212. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4213. },
  4214. "require": {
  4215. "drupal/core": "^8 || ^9 || ^10"
  4216. },
  4217. "type": "drupal-module",
  4218. "extra": {
  4219. "drupal": {
  4220. "version": "8.x-1.2",
  4221. "datestamp": "1689607584",
  4222. "security-coverage": {
  4223. "status": "covered",
  4224. "message": "Covered by Drupal's security advisory policy"
  4225. }
  4226. }
  4227. },
  4228. "notification-url": "https://packages.drupal.org/8/downloads",
  4229. "license": [
  4230. "GPL-2.0+"
  4231. ],
  4232. "authors": [
  4233. {
  4234. "name": "heddn",
  4235. "homepage": "https://www.drupal.org/user/1463982"
  4236. }
  4237. ],
  4238. "description": "Simple module to convert a view argument's entity id into its url path.",
  4239. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4240. "keywords": [
  4241. "Drupal"
  4242. ],
  4243. "support": {
  4244. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4245. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4246. }
  4247. },
  4248. {
  4249. "name": "drush/drush",
  4250. "version": "12.4.3",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/drush-ops/drush.git",
  4254. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4259. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "chi-teck/drupal-code-generator": "^3.0",
  4264. "composer-runtime-api": "^2.2",
  4265. "composer/semver": "^1.4 || ^3",
  4266. "consolidation/annotated-command": "^4.9.1",
  4267. "consolidation/config": "^2.1.2",
  4268. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4269. "consolidation/output-formatters": "^4.3.2",
  4270. "consolidation/robo": "^4.0.6",
  4271. "consolidation/site-alias": "^4",
  4272. "consolidation/site-process": "^5.2.0",
  4273. "ext-dom": "*",
  4274. "grasmash/yaml-cli": "^3.1",
  4275. "guzzlehttp/guzzle": "^7.0",
  4276. "league/container": "^4",
  4277. "php": ">=8.1",
  4278. "psy/psysh": "~0.11",
  4279. "symfony/event-dispatcher": "^6",
  4280. "symfony/filesystem": "^6.1",
  4281. "symfony/finder": "^6",
  4282. "symfony/var-dumper": "^6.0",
  4283. "symfony/yaml": "^6.0",
  4284. "webflo/drupal-finder": "^1.2"
  4285. },
  4286. "conflict": {
  4287. "drupal/core": "< 10.0",
  4288. "drupal/migrate_run": "*",
  4289. "drupal/migrate_tools": "<= 5"
  4290. },
  4291. "require-dev": {
  4292. "composer/installers": "^2",
  4293. "cweagans/composer-patches": "~1.0",
  4294. "drupal/core-recommended": "^10",
  4295. "drupal/semver_example": "2.3.0",
  4296. "phpunit/phpunit": "^9",
  4297. "rector/rector": "^0.12",
  4298. "squizlabs/php_codesniffer": "^3.7"
  4299. },
  4300. "bin": [
  4301. "drush"
  4302. ],
  4303. "type": "library",
  4304. "extra": {
  4305. "installer-paths": {
  4306. "sut/core": [
  4307. "type:drupal-core"
  4308. ],
  4309. "sut/libraries/{$name}": [
  4310. "type:drupal-library"
  4311. ],
  4312. "sut/modules/unish/{$name}": [
  4313. "drupal/devel"
  4314. ],
  4315. "sut/themes/unish/{$name}": [
  4316. "drupal/empty_theme"
  4317. ],
  4318. "sut/modules/contrib/{$name}": [
  4319. "type:drupal-module"
  4320. ],
  4321. "sut/profiles/contrib/{$name}": [
  4322. "type:drupal-profile"
  4323. ],
  4324. "sut/themes/contrib/{$name}": [
  4325. "type:drupal-theme"
  4326. ],
  4327. "sut/drush/contrib/{$name}": [
  4328. "type:drupal-drush"
  4329. ]
  4330. }
  4331. },
  4332. "autoload": {
  4333. "psr-4": {
  4334. "Drush\\": "src/"
  4335. }
  4336. },
  4337. "notification-url": "https://packagist.org/downloads/",
  4338. "license": [
  4339. "GPL-2.0-or-later"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "Moshe Weitzman",
  4344. "email": "weitzman@tejasa.com"
  4345. },
  4346. {
  4347. "name": "Owen Barton",
  4348. "email": "drupal@owenbarton.com"
  4349. },
  4350. {
  4351. "name": "Greg Anderson",
  4352. "email": "greg.1.anderson@greenknowe.org"
  4353. },
  4354. {
  4355. "name": "Jonathan Araña Cruz",
  4356. "email": "jonhattan@faita.net"
  4357. },
  4358. {
  4359. "name": "Jonathan Hedstrom",
  4360. "email": "jhedstrom@gmail.com"
  4361. },
  4362. {
  4363. "name": "Christopher Gervais",
  4364. "email": "chris@ergonlogic.com"
  4365. },
  4366. {
  4367. "name": "Dave Reid",
  4368. "email": "dave@davereid.net"
  4369. },
  4370. {
  4371. "name": "Damian Lee",
  4372. "email": "damiankloip@googlemail.com"
  4373. }
  4374. ],
  4375. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  4376. "homepage": "http://www.drush.org",
  4377. "support": {
  4378. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4379. "issues": "https://github.com/drush-ops/drush/issues",
  4380. "security": "https://github.com/drush-ops/drush/security/advisories",
  4381. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4382. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4383. },
  4384. "funding": [
  4385. {
  4386. "url": "https://github.com/weitzman",
  4387. "type": "github"
  4388. }
  4389. ],
  4390. "time": "2023-11-16T22:57:24+00:00"
  4391. },
  4392. {
  4393. "name": "egulias/email-validator",
  4394. "version": "4.0.2",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/egulias/EmailValidator.git",
  4398. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4403. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "doctrine/lexer": "^2.0 || ^3.0",
  4408. "php": ">=8.1",
  4409. "symfony/polyfill-intl-idn": "^1.26"
  4410. },
  4411. "require-dev": {
  4412. "phpunit/phpunit": "^10.2",
  4413. "vimeo/psalm": "^5.12"
  4414. },
  4415. "suggest": {
  4416. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4417. },
  4418. "type": "library",
  4419. "extra": {
  4420. "branch-alias": {
  4421. "dev-master": "4.0.x-dev"
  4422. }
  4423. },
  4424. "autoload": {
  4425. "psr-4": {
  4426. "Egulias\\EmailValidator\\": "src"
  4427. }
  4428. },
  4429. "notification-url": "https://packagist.org/downloads/",
  4430. "license": [
  4431. "MIT"
  4432. ],
  4433. "authors": [
  4434. {
  4435. "name": "Eduardo Gulias Davis"
  4436. }
  4437. ],
  4438. "description": "A library for validating emails against several RFCs",
  4439. "homepage": "https://github.com/egulias/EmailValidator",
  4440. "keywords": [
  4441. "email",
  4442. "emailvalidation",
  4443. "emailvalidator",
  4444. "validation",
  4445. "validator"
  4446. ],
  4447. "support": {
  4448. "issues": "https://github.com/egulias/EmailValidator/issues",
  4449. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4450. },
  4451. "funding": [
  4452. {
  4453. "url": "https://github.com/egulias",
  4454. "type": "github"
  4455. }
  4456. ],
  4457. "time": "2023-10-06T06:47:41+00:00"
  4458. },
  4459. {
  4460. "name": "grasmash/expander",
  4461. "version": "3.0.0",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/grasmash/expander.git",
  4465. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4470. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "dflydev/dot-access-data": "^3.0.0",
  4475. "php": ">=8.0",
  4476. "psr/log": "^2 | ^3"
  4477. },
  4478. "require-dev": {
  4479. "greg-1-anderson/composer-test-scenarios": "^1",
  4480. "php-coveralls/php-coveralls": "^2.5",
  4481. "phpunit/phpunit": "^9",
  4482. "squizlabs/php_codesniffer": "^3.3"
  4483. },
  4484. "type": "library",
  4485. "extra": {
  4486. "branch-alias": {
  4487. "dev-master": "1.x-dev"
  4488. }
  4489. },
  4490. "autoload": {
  4491. "psr-4": {
  4492. "Grasmash\\Expander\\": "src/"
  4493. }
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "Matthew Grasmick"
  4502. }
  4503. ],
  4504. "description": "Expands internal property references in PHP arrays file.",
  4505. "support": {
  4506. "issues": "https://github.com/grasmash/expander/issues",
  4507. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4508. },
  4509. "time": "2022-05-10T13:14:49+00:00"
  4510. },
  4511. {
  4512. "name": "grasmash/yaml-cli",
  4513. "version": "3.1.0",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/grasmash/yaml-cli.git",
  4517. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4522. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "dflydev/dot-access-data": "^3",
  4527. "php": ">=8.0",
  4528. "symfony/console": "^6",
  4529. "symfony/filesystem": "^6",
  4530. "symfony/yaml": "^6"
  4531. },
  4532. "require-dev": {
  4533. "php-coveralls/php-coveralls": "^2",
  4534. "phpunit/phpunit": "^9",
  4535. "squizlabs/php_codesniffer": "^3.0"
  4536. },
  4537. "bin": [
  4538. "bin/yaml-cli"
  4539. ],
  4540. "type": "library",
  4541. "extra": {
  4542. "branch-alias": {
  4543. "dev-master": "3.x-dev"
  4544. }
  4545. },
  4546. "autoload": {
  4547. "psr-4": {
  4548. "Grasmash\\YamlCli\\": "src/"
  4549. }
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "authors": [
  4556. {
  4557. "name": "Matthew Grasmick"
  4558. }
  4559. ],
  4560. "description": "A command line tool for reading and manipulating yaml files.",
  4561. "support": {
  4562. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4563. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4564. },
  4565. "time": "2022-05-09T20:22:34+00:00"
  4566. },
  4567. {
  4568. "name": "guzzlehttp/guzzle",
  4569. "version": "7.8.1",
  4570. "source": {
  4571. "type": "git",
  4572. "url": "https://github.com/guzzle/guzzle.git",
  4573. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4574. },
  4575. "dist": {
  4576. "type": "zip",
  4577. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4578. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4579. "shasum": ""
  4580. },
  4581. "require": {
  4582. "ext-json": "*",
  4583. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4584. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4585. "php": "^7.2.5 || ^8.0",
  4586. "psr/http-client": "^1.0",
  4587. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4588. },
  4589. "provide": {
  4590. "psr/http-client-implementation": "1.0"
  4591. },
  4592. "require-dev": {
  4593. "bamarni/composer-bin-plugin": "^1.8.2",
  4594. "ext-curl": "*",
  4595. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4596. "php-http/message-factory": "^1.1",
  4597. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4598. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4599. },
  4600. "suggest": {
  4601. "ext-curl": "Required for CURL handler support",
  4602. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4603. "psr/log": "Required for using the Log middleware"
  4604. },
  4605. "type": "library",
  4606. "extra": {
  4607. "bamarni-bin": {
  4608. "bin-links": true,
  4609. "forward-command": false
  4610. }
  4611. },
  4612. "autoload": {
  4613. "files": [
  4614. "src/functions_include.php"
  4615. ],
  4616. "psr-4": {
  4617. "GuzzleHttp\\": "src/"
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Graham Campbell",
  4627. "email": "hello@gjcampbell.co.uk",
  4628. "homepage": "https://github.com/GrahamCampbell"
  4629. },
  4630. {
  4631. "name": "Michael Dowling",
  4632. "email": "mtdowling@gmail.com",
  4633. "homepage": "https://github.com/mtdowling"
  4634. },
  4635. {
  4636. "name": "Jeremy Lindblom",
  4637. "email": "jeremeamia@gmail.com",
  4638. "homepage": "https://github.com/jeremeamia"
  4639. },
  4640. {
  4641. "name": "George Mponos",
  4642. "email": "gmponos@gmail.com",
  4643. "homepage": "https://github.com/gmponos"
  4644. },
  4645. {
  4646. "name": "Tobias Nyholm",
  4647. "email": "tobias.nyholm@gmail.com",
  4648. "homepage": "https://github.com/Nyholm"
  4649. },
  4650. {
  4651. "name": "Márk Sági-Kazár",
  4652. "email": "mark.sagikazar@gmail.com",
  4653. "homepage": "https://github.com/sagikazarmark"
  4654. },
  4655. {
  4656. "name": "Tobias Schultze",
  4657. "email": "webmaster@tubo-world.de",
  4658. "homepage": "https://github.com/Tobion"
  4659. }
  4660. ],
  4661. "description": "Guzzle is a PHP HTTP client library",
  4662. "keywords": [
  4663. "client",
  4664. "curl",
  4665. "framework",
  4666. "http",
  4667. "http client",
  4668. "psr-18",
  4669. "psr-7",
  4670. "rest",
  4671. "web service"
  4672. ],
  4673. "support": {
  4674. "issues": "https://github.com/guzzle/guzzle/issues",
  4675. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://github.com/GrahamCampbell",
  4680. "type": "github"
  4681. },
  4682. {
  4683. "url": "https://github.com/Nyholm",
  4684. "type": "github"
  4685. },
  4686. {
  4687. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4688. "type": "tidelift"
  4689. }
  4690. ],
  4691. "time": "2023-12-03T20:35:24+00:00"
  4692. },
  4693. {
  4694. "name": "guzzlehttp/promises",
  4695. "version": "2.0.2",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://github.com/guzzle/promises.git",
  4699. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  4704. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  4705. "shasum": ""
  4706. },
  4707. "require": {
  4708. "php": "^7.2.5 || ^8.0"
  4709. },
  4710. "require-dev": {
  4711. "bamarni/composer-bin-plugin": "^1.8.2",
  4712. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4713. },
  4714. "type": "library",
  4715. "extra": {
  4716. "bamarni-bin": {
  4717. "bin-links": true,
  4718. "forward-command": false
  4719. }
  4720. },
  4721. "autoload": {
  4722. "psr-4": {
  4723. "GuzzleHttp\\Promise\\": "src/"
  4724. }
  4725. },
  4726. "notification-url": "https://packagist.org/downloads/",
  4727. "license": [
  4728. "MIT"
  4729. ],
  4730. "authors": [
  4731. {
  4732. "name": "Graham Campbell",
  4733. "email": "hello@gjcampbell.co.uk",
  4734. "homepage": "https://github.com/GrahamCampbell"
  4735. },
  4736. {
  4737. "name": "Michael Dowling",
  4738. "email": "mtdowling@gmail.com",
  4739. "homepage": "https://github.com/mtdowling"
  4740. },
  4741. {
  4742. "name": "Tobias Nyholm",
  4743. "email": "tobias.nyholm@gmail.com",
  4744. "homepage": "https://github.com/Nyholm"
  4745. },
  4746. {
  4747. "name": "Tobias Schultze",
  4748. "email": "webmaster@tubo-world.de",
  4749. "homepage": "https://github.com/Tobion"
  4750. }
  4751. ],
  4752. "description": "Guzzle promises library",
  4753. "keywords": [
  4754. "promise"
  4755. ],
  4756. "support": {
  4757. "issues": "https://github.com/guzzle/promises/issues",
  4758. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  4759. },
  4760. "funding": [
  4761. {
  4762. "url": "https://github.com/GrahamCampbell",
  4763. "type": "github"
  4764. },
  4765. {
  4766. "url": "https://github.com/Nyholm",
  4767. "type": "github"
  4768. },
  4769. {
  4770. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4771. "type": "tidelift"
  4772. }
  4773. ],
  4774. "time": "2023-12-03T20:19:20+00:00"
  4775. },
  4776. {
  4777. "name": "guzzlehttp/psr7",
  4778. "version": "2.6.2",
  4779. "source": {
  4780. "type": "git",
  4781. "url": "https://github.com/guzzle/psr7.git",
  4782. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  4783. },
  4784. "dist": {
  4785. "type": "zip",
  4786. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4787. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4788. "shasum": ""
  4789. },
  4790. "require": {
  4791. "php": "^7.2.5 || ^8.0",
  4792. "psr/http-factory": "^1.0",
  4793. "psr/http-message": "^1.1 || ^2.0",
  4794. "ralouphie/getallheaders": "^3.0"
  4795. },
  4796. "provide": {
  4797. "psr/http-factory-implementation": "1.0",
  4798. "psr/http-message-implementation": "1.0"
  4799. },
  4800. "require-dev": {
  4801. "bamarni/composer-bin-plugin": "^1.8.2",
  4802. "http-interop/http-factory-tests": "^0.9",
  4803. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4804. },
  4805. "suggest": {
  4806. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "bamarni-bin": {
  4811. "bin-links": true,
  4812. "forward-command": false
  4813. }
  4814. },
  4815. "autoload": {
  4816. "psr-4": {
  4817. "GuzzleHttp\\Psr7\\": "src/"
  4818. }
  4819. },
  4820. "notification-url": "https://packagist.org/downloads/",
  4821. "license": [
  4822. "MIT"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Graham Campbell",
  4827. "email": "hello@gjcampbell.co.uk",
  4828. "homepage": "https://github.com/GrahamCampbell"
  4829. },
  4830. {
  4831. "name": "Michael Dowling",
  4832. "email": "mtdowling@gmail.com",
  4833. "homepage": "https://github.com/mtdowling"
  4834. },
  4835. {
  4836. "name": "George Mponos",
  4837. "email": "gmponos@gmail.com",
  4838. "homepage": "https://github.com/gmponos"
  4839. },
  4840. {
  4841. "name": "Tobias Nyholm",
  4842. "email": "tobias.nyholm@gmail.com",
  4843. "homepage": "https://github.com/Nyholm"
  4844. },
  4845. {
  4846. "name": "Márk Sági-Kazár",
  4847. "email": "mark.sagikazar@gmail.com",
  4848. "homepage": "https://github.com/sagikazarmark"
  4849. },
  4850. {
  4851. "name": "Tobias Schultze",
  4852. "email": "webmaster@tubo-world.de",
  4853. "homepage": "https://github.com/Tobion"
  4854. },
  4855. {
  4856. "name": "Márk Sági-Kazár",
  4857. "email": "mark.sagikazar@gmail.com",
  4858. "homepage": "https://sagikazarmark.hu"
  4859. }
  4860. ],
  4861. "description": "PSR-7 message implementation that also provides common utility methods",
  4862. "keywords": [
  4863. "http",
  4864. "message",
  4865. "psr-7",
  4866. "request",
  4867. "response",
  4868. "stream",
  4869. "uri",
  4870. "url"
  4871. ],
  4872. "support": {
  4873. "issues": "https://github.com/guzzle/psr7/issues",
  4874. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  4875. },
  4876. "funding": [
  4877. {
  4878. "url": "https://github.com/GrahamCampbell",
  4879. "type": "github"
  4880. },
  4881. {
  4882. "url": "https://github.com/Nyholm",
  4883. "type": "github"
  4884. },
  4885. {
  4886. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  4887. "type": "tidelift"
  4888. }
  4889. ],
  4890. "time": "2023-12-03T20:05:35+00:00"
  4891. },
  4892. {
  4893. "name": "itamair/geophp",
  4894. "version": "1.6",
  4895. "source": {
  4896. "type": "git",
  4897. "url": "https://github.com/itamair/geoPHP.git",
  4898. "reference": "f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6"
  4899. },
  4900. "dist": {
  4901. "type": "zip",
  4902. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6",
  4903. "reference": "f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6",
  4904. "shasum": ""
  4905. },
  4906. "require-dev": {
  4907. "phpunit/phpunit": "4.1.* || 9.5.*"
  4908. },
  4909. "type": "library",
  4910. "autoload": {
  4911. "classmap": [
  4912. "geoPHP.inc"
  4913. ]
  4914. },
  4915. "notification-url": "https://packagist.org/downloads/",
  4916. "license": [
  4917. "GPL-2.0+"
  4918. ],
  4919. "authors": [
  4920. {
  4921. "name": "Italo Mairo",
  4922. "homepage": "https://www.linkedin.com/in/italomairo/",
  4923. "role": "Maintanier of this Library Repo"
  4924. },
  4925. {
  4926. "name": "Patrick Hayes",
  4927. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  4928. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  4929. }
  4930. ],
  4931. "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.",
  4932. "homepage": "https://github.com/itamair/geoPHP",
  4933. "support": {
  4934. "source": "https://github.com/itamair/geoPHP/tree/1.6"
  4935. },
  4936. "time": "2023-12-23T23:28:59+00:00"
  4937. },
  4938. {
  4939. "name": "league/container",
  4940. "version": "4.2.0",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://github.com/thephpleague/container.git",
  4944. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4949. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  4950. "shasum": ""
  4951. },
  4952. "require": {
  4953. "php": "^7.2 || ^8.0",
  4954. "psr/container": "^1.1 || ^2.0"
  4955. },
  4956. "provide": {
  4957. "psr/container-implementation": "^1.0"
  4958. },
  4959. "replace": {
  4960. "orno/di": "~2.0"
  4961. },
  4962. "require-dev": {
  4963. "nette/php-generator": "^3.4",
  4964. "nikic/php-parser": "^4.10",
  4965. "phpstan/phpstan": "^0.12.47",
  4966. "phpunit/phpunit": "^8.5.17",
  4967. "roave/security-advisories": "dev-latest",
  4968. "scrutinizer/ocular": "^1.8",
  4969. "squizlabs/php_codesniffer": "^3.6"
  4970. },
  4971. "type": "library",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-master": "4.x-dev",
  4975. "dev-4.x": "4.x-dev",
  4976. "dev-3.x": "3.x-dev",
  4977. "dev-2.x": "2.x-dev",
  4978. "dev-1.x": "1.x-dev"
  4979. }
  4980. },
  4981. "autoload": {
  4982. "psr-4": {
  4983. "League\\Container\\": "src"
  4984. }
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Phil Bennett",
  4993. "email": "mail@philbennett.co.uk",
  4994. "role": "Developer"
  4995. }
  4996. ],
  4997. "description": "A fast and intuitive dependency injection container.",
  4998. "homepage": "https://github.com/thephpleague/container",
  4999. "keywords": [
  5000. "container",
  5001. "dependency",
  5002. "di",
  5003. "injection",
  5004. "league",
  5005. "provider",
  5006. "service"
  5007. ],
  5008. "support": {
  5009. "issues": "https://github.com/thephpleague/container/issues",
  5010. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  5011. },
  5012. "funding": [
  5013. {
  5014. "url": "https://github.com/philipobenito",
  5015. "type": "github"
  5016. }
  5017. ],
  5018. "time": "2021-11-16T10:29:06+00:00"
  5019. },
  5020. {
  5021. "name": "masterminds/html5",
  5022. "version": "2.8.1",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/Masterminds/html5-php.git",
  5026. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5031. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "ext-dom": "*",
  5036. "php": ">=5.3.0"
  5037. },
  5038. "require-dev": {
  5039. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  5040. },
  5041. "type": "library",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-master": "2.7-dev"
  5045. }
  5046. },
  5047. "autoload": {
  5048. "psr-4": {
  5049. "Masterminds\\": "src"
  5050. }
  5051. },
  5052. "notification-url": "https://packagist.org/downloads/",
  5053. "license": [
  5054. "MIT"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Matt Butcher",
  5059. "email": "technosophos@gmail.com"
  5060. },
  5061. {
  5062. "name": "Matt Farina",
  5063. "email": "matt@mattfarina.com"
  5064. },
  5065. {
  5066. "name": "Asmir Mustafic",
  5067. "email": "goetas@gmail.com"
  5068. }
  5069. ],
  5070. "description": "An HTML5 parser and serializer.",
  5071. "homepage": "http://masterminds.github.io/html5-php",
  5072. "keywords": [
  5073. "HTML5",
  5074. "dom",
  5075. "html",
  5076. "parser",
  5077. "querypath",
  5078. "serializer",
  5079. "xml"
  5080. ],
  5081. "support": {
  5082. "issues": "https://github.com/Masterminds/html5-php/issues",
  5083. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  5084. },
  5085. "time": "2023-05-10T11:58:31+00:00"
  5086. },
  5087. {
  5088. "name": "mck89/peast",
  5089. "version": "v1.15.4",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/mck89/peast.git",
  5093. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5098. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5099. "shasum": ""
  5100. },
  5101. "require": {
  5102. "ext-mbstring": "*",
  5103. "php": ">=5.4.0"
  5104. },
  5105. "require-dev": {
  5106. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5107. },
  5108. "type": "library",
  5109. "extra": {
  5110. "branch-alias": {
  5111. "dev-master": "1.15.4-dev"
  5112. }
  5113. },
  5114. "autoload": {
  5115. "psr-4": {
  5116. "Peast\\": "lib/Peast/"
  5117. }
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "BSD-3-Clause"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Marco Marchiò",
  5126. "email": "marco.mm89@gmail.com"
  5127. }
  5128. ],
  5129. "description": "Peast is PHP library that generates AST for JavaScript code",
  5130. "support": {
  5131. "issues": "https://github.com/mck89/peast/issues",
  5132. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  5133. },
  5134. "time": "2023-08-12T08:29:29+00:00"
  5135. },
  5136. {
  5137. "name": "nikic/php-parser",
  5138. "version": "v5.0.1",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/nikic/PHP-Parser.git",
  5142. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  5147. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  5148. "shasum": ""
  5149. },
  5150. "require": {
  5151. "ext-ctype": "*",
  5152. "ext-json": "*",
  5153. "ext-tokenizer": "*",
  5154. "php": ">=7.4"
  5155. },
  5156. "require-dev": {
  5157. "ircmaxell/php-yacc": "^0.0.7",
  5158. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5159. },
  5160. "bin": [
  5161. "bin/php-parse"
  5162. ],
  5163. "type": "library",
  5164. "extra": {
  5165. "branch-alias": {
  5166. "dev-master": "5.0-dev"
  5167. }
  5168. },
  5169. "autoload": {
  5170. "psr-4": {
  5171. "PhpParser\\": "lib/PhpParser"
  5172. }
  5173. },
  5174. "notification-url": "https://packagist.org/downloads/",
  5175. "license": [
  5176. "BSD-3-Clause"
  5177. ],
  5178. "authors": [
  5179. {
  5180. "name": "Nikita Popov"
  5181. }
  5182. ],
  5183. "description": "A PHP parser written in PHP",
  5184. "keywords": [
  5185. "parser",
  5186. "php"
  5187. ],
  5188. "support": {
  5189. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5190. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5191. },
  5192. "time": "2024-02-21T19:24:10+00:00"
  5193. },
  5194. {
  5195. "name": "pear/archive_tar",
  5196. "version": "1.4.14",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/pear/Archive_Tar.git",
  5200. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5205. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "pear/pear-core-minimal": "^1.10.0alpha2",
  5210. "php": ">=5.2.0"
  5211. },
  5212. "require-dev": {
  5213. "phpunit/phpunit": "*"
  5214. },
  5215. "suggest": {
  5216. "ext-bz2": "Bz2 compression support.",
  5217. "ext-xz": "Lzma2 compression support.",
  5218. "ext-zlib": "Gzip compression support."
  5219. },
  5220. "type": "library",
  5221. "extra": {
  5222. "branch-alias": {
  5223. "dev-master": "1.4.x-dev"
  5224. }
  5225. },
  5226. "autoload": {
  5227. "psr-0": {
  5228. "Archive_Tar": ""
  5229. }
  5230. },
  5231. "notification-url": "https://packagist.org/downloads/",
  5232. "include-path": [
  5233. "./"
  5234. ],
  5235. "license": [
  5236. "BSD-3-Clause"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Vincent Blavet",
  5241. "email": "vincent@phpconcept.net"
  5242. },
  5243. {
  5244. "name": "Greg Beaver",
  5245. "email": "greg@chiaraquartet.net"
  5246. },
  5247. {
  5248. "name": "Michiel Rook",
  5249. "email": "mrook@php.net"
  5250. }
  5251. ],
  5252. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5253. "homepage": "https://github.com/pear/Archive_Tar",
  5254. "keywords": [
  5255. "archive",
  5256. "tar"
  5257. ],
  5258. "support": {
  5259. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5260. "source": "https://github.com/pear/Archive_Tar"
  5261. },
  5262. "funding": [
  5263. {
  5264. "url": "https://github.com/mrook",
  5265. "type": "github"
  5266. },
  5267. {
  5268. "url": "https://www.patreon.com/michielrook",
  5269. "type": "patreon"
  5270. }
  5271. ],
  5272. "time": "2021-07-20T13:53:39+00:00"
  5273. },
  5274. {
  5275. "name": "pear/console_getopt",
  5276. "version": "v1.4.3",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/pear/Console_Getopt.git",
  5280. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5285. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5286. "shasum": ""
  5287. },
  5288. "type": "library",
  5289. "autoload": {
  5290. "psr-0": {
  5291. "Console": "./"
  5292. }
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "include-path": [
  5296. "./"
  5297. ],
  5298. "license": [
  5299. "BSD-2-Clause"
  5300. ],
  5301. "authors": [
  5302. {
  5303. "name": "Andrei Zmievski",
  5304. "email": "andrei@php.net",
  5305. "role": "Lead"
  5306. },
  5307. {
  5308. "name": "Stig Bakken",
  5309. "email": "stig@php.net",
  5310. "role": "Developer"
  5311. },
  5312. {
  5313. "name": "Greg Beaver",
  5314. "email": "cellog@php.net",
  5315. "role": "Helper"
  5316. }
  5317. ],
  5318. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5319. "support": {
  5320. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5321. "source": "https://github.com/pear/Console_Getopt"
  5322. },
  5323. "time": "2019-11-20T18:27:48+00:00"
  5324. },
  5325. {
  5326. "name": "pear/pear-core-minimal",
  5327. "version": "v1.10.14",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/pear/pear-core-minimal.git",
  5331. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5336. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "pear/console_getopt": "~1.4",
  5341. "pear/pear_exception": "~1.0",
  5342. "php": ">=5.4"
  5343. },
  5344. "replace": {
  5345. "rsky/pear-core-min": "self.version"
  5346. },
  5347. "type": "library",
  5348. "autoload": {
  5349. "psr-0": {
  5350. "": "src/"
  5351. }
  5352. },
  5353. "notification-url": "https://packagist.org/downloads/",
  5354. "include-path": [
  5355. "src/"
  5356. ],
  5357. "license": [
  5358. "BSD-3-Clause"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Christian Weiske",
  5363. "email": "cweiske@php.net",
  5364. "role": "Lead"
  5365. }
  5366. ],
  5367. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5368. "support": {
  5369. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5370. "source": "https://github.com/pear/pear-core-minimal"
  5371. },
  5372. "time": "2023-11-26T16:15:38+00:00"
  5373. },
  5374. {
  5375. "name": "pear/pear_exception",
  5376. "version": "v1.0.2",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/pear/PEAR_Exception.git",
  5380. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5385. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5386. "shasum": ""
  5387. },
  5388. "require": {
  5389. "php": ">=5.2.0"
  5390. },
  5391. "require-dev": {
  5392. "phpunit/phpunit": "<9"
  5393. },
  5394. "type": "class",
  5395. "extra": {
  5396. "branch-alias": {
  5397. "dev-master": "1.0.x-dev"
  5398. }
  5399. },
  5400. "autoload": {
  5401. "classmap": [
  5402. "PEAR/"
  5403. ]
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "include-path": [
  5407. "."
  5408. ],
  5409. "license": [
  5410. "BSD-2-Clause"
  5411. ],
  5412. "authors": [
  5413. {
  5414. "name": "Helgi Thormar",
  5415. "email": "dufuz@php.net"
  5416. },
  5417. {
  5418. "name": "Greg Beaver",
  5419. "email": "cellog@php.net"
  5420. }
  5421. ],
  5422. "description": "The PEAR Exception base class.",
  5423. "homepage": "https://github.com/pear/PEAR_Exception",
  5424. "keywords": [
  5425. "exception"
  5426. ],
  5427. "support": {
  5428. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5429. "source": "https://github.com/pear/PEAR_Exception"
  5430. },
  5431. "time": "2021-03-21T15:43:46+00:00"
  5432. },
  5433. {
  5434. "name": "phootwork/collection",
  5435. "version": "v3.2.2",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/phootwork/collection.git",
  5439. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5444. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5445. "shasum": ""
  5446. },
  5447. "require": {
  5448. "phootwork/lang": "^3.0",
  5449. "php": ">=8.0"
  5450. },
  5451. "type": "library",
  5452. "autoload": {
  5453. "psr-4": {
  5454. "phootwork\\collection\\": ""
  5455. }
  5456. },
  5457. "notification-url": "https://packagist.org/downloads/",
  5458. "license": [
  5459. "MIT"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "Thomas Gossmann",
  5464. "homepage": "http://gos.si"
  5465. }
  5466. ],
  5467. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5468. "homepage": "https://phootwork.github.io/collection/",
  5469. "keywords": [
  5470. "Array object",
  5471. "Text object",
  5472. "collection",
  5473. "collections",
  5474. "json",
  5475. "list",
  5476. "map",
  5477. "queue",
  5478. "set",
  5479. "stack",
  5480. "xml"
  5481. ],
  5482. "support": {
  5483. "issues": "https://github.com/phootwork/phootwork/issues",
  5484. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5485. },
  5486. "time": "2022-08-27T12:51:24+00:00"
  5487. },
  5488. {
  5489. "name": "phootwork/lang",
  5490. "version": "v3.2.2",
  5491. "source": {
  5492. "type": "git",
  5493. "url": "https://github.com/phootwork/lang.git",
  5494. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5495. },
  5496. "dist": {
  5497. "type": "zip",
  5498. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5499. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5500. "shasum": ""
  5501. },
  5502. "require": {
  5503. "php": ">=8.0",
  5504. "symfony/polyfill-mbstring": "^1.12",
  5505. "symfony/polyfill-php81": "^1.22"
  5506. },
  5507. "type": "library",
  5508. "autoload": {
  5509. "psr-4": {
  5510. "phootwork\\lang\\": ""
  5511. }
  5512. },
  5513. "notification-url": "https://packagist.org/downloads/",
  5514. "license": [
  5515. "MIT"
  5516. ],
  5517. "authors": [
  5518. {
  5519. "name": "Thomas Gossmann",
  5520. "homepage": "http://gos.si"
  5521. }
  5522. ],
  5523. "description": "Missing PHP language constructs",
  5524. "homepage": "https://phootwork.github.io/lang/",
  5525. "keywords": [
  5526. "array",
  5527. "comparator",
  5528. "comparison",
  5529. "string"
  5530. ],
  5531. "support": {
  5532. "issues": "https://github.com/phootwork/phootwork/issues",
  5533. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5534. },
  5535. "time": "2023-05-26T05:37:59+00:00"
  5536. },
  5537. {
  5538. "name": "phpowermove/docblock",
  5539. "version": "v4.0",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/phpowermove/docblock.git",
  5543. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5548. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "phootwork/collection": "^3.0",
  5553. "phootwork/lang": "^3.0",
  5554. "php": ">=8.0"
  5555. },
  5556. "require-dev": {
  5557. "phootwork/php-cs-fixer-config": "^0.4",
  5558. "phpunit/phpunit": "^9.0",
  5559. "psalm/phar": "^4.3"
  5560. },
  5561. "type": "library",
  5562. "autoload": {
  5563. "psr-4": {
  5564. "phpowermove\\docblock\\": "src/"
  5565. }
  5566. },
  5567. "notification-url": "https://packagist.org/downloads/",
  5568. "license": [
  5569. "MIT"
  5570. ],
  5571. "authors": [
  5572. {
  5573. "name": "Thomas Gossmann",
  5574. "homepage": "http://gos.si"
  5575. }
  5576. ],
  5577. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5578. "keywords": [
  5579. "docblock",
  5580. "generator",
  5581. "parser"
  5582. ],
  5583. "support": {
  5584. "issues": "https://github.com/phpowermove/docblock/issues",
  5585. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5586. },
  5587. "time": "2021-09-22T16:57:06+00:00"
  5588. },
  5589. {
  5590. "name": "psr/cache",
  5591. "version": "3.0.0",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/php-fig/cache.git",
  5595. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5600. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "php": ">=8.0.0"
  5605. },
  5606. "type": "library",
  5607. "extra": {
  5608. "branch-alias": {
  5609. "dev-master": "1.0.x-dev"
  5610. }
  5611. },
  5612. "autoload": {
  5613. "psr-4": {
  5614. "Psr\\Cache\\": "src/"
  5615. }
  5616. },
  5617. "notification-url": "https://packagist.org/downloads/",
  5618. "license": [
  5619. "MIT"
  5620. ],
  5621. "authors": [
  5622. {
  5623. "name": "PHP-FIG",
  5624. "homepage": "https://www.php-fig.org/"
  5625. }
  5626. ],
  5627. "description": "Common interface for caching libraries",
  5628. "keywords": [
  5629. "cache",
  5630. "psr",
  5631. "psr-6"
  5632. ],
  5633. "support": {
  5634. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5635. },
  5636. "time": "2021-02-03T23:26:27+00:00"
  5637. },
  5638. {
  5639. "name": "psr/container",
  5640. "version": "2.0.2",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/php-fig/container.git",
  5644. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5649. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": ">=7.4.0"
  5654. },
  5655. "type": "library",
  5656. "extra": {
  5657. "branch-alias": {
  5658. "dev-master": "2.0.x-dev"
  5659. }
  5660. },
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Psr\\Container\\": "src/"
  5664. }
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "PHP-FIG",
  5673. "homepage": "https://www.php-fig.org/"
  5674. }
  5675. ],
  5676. "description": "Common Container Interface (PHP FIG PSR-11)",
  5677. "homepage": "https://github.com/php-fig/container",
  5678. "keywords": [
  5679. "PSR-11",
  5680. "container",
  5681. "container-interface",
  5682. "container-interop",
  5683. "psr"
  5684. ],
  5685. "support": {
  5686. "issues": "https://github.com/php-fig/container/issues",
  5687. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5688. },
  5689. "time": "2021-11-05T16:47:00+00:00"
  5690. },
  5691. {
  5692. "name": "psr/event-dispatcher",
  5693. "version": "1.0.0",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://github.com/php-fig/event-dispatcher.git",
  5697. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5702. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5703. "shasum": ""
  5704. },
  5705. "require": {
  5706. "php": ">=7.2.0"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "branch-alias": {
  5711. "dev-master": "1.0.x-dev"
  5712. }
  5713. },
  5714. "autoload": {
  5715. "psr-4": {
  5716. "Psr\\EventDispatcher\\": "src/"
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "PHP-FIG",
  5726. "homepage": "http://www.php-fig.org/"
  5727. }
  5728. ],
  5729. "description": "Standard interfaces for event handling.",
  5730. "keywords": [
  5731. "events",
  5732. "psr",
  5733. "psr-14"
  5734. ],
  5735. "support": {
  5736. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5737. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5738. },
  5739. "time": "2019-01-08T18:20:26+00:00"
  5740. },
  5741. {
  5742. "name": "psr/http-client",
  5743. "version": "1.0.3",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://github.com/php-fig/http-client.git",
  5747. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5752. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5753. "shasum": ""
  5754. },
  5755. "require": {
  5756. "php": "^7.0 || ^8.0",
  5757. "psr/http-message": "^1.0 || ^2.0"
  5758. },
  5759. "type": "library",
  5760. "extra": {
  5761. "branch-alias": {
  5762. "dev-master": "1.0.x-dev"
  5763. }
  5764. },
  5765. "autoload": {
  5766. "psr-4": {
  5767. "Psr\\Http\\Client\\": "src/"
  5768. }
  5769. },
  5770. "notification-url": "https://packagist.org/downloads/",
  5771. "license": [
  5772. "MIT"
  5773. ],
  5774. "authors": [
  5775. {
  5776. "name": "PHP-FIG",
  5777. "homepage": "https://www.php-fig.org/"
  5778. }
  5779. ],
  5780. "description": "Common interface for HTTP clients",
  5781. "homepage": "https://github.com/php-fig/http-client",
  5782. "keywords": [
  5783. "http",
  5784. "http-client",
  5785. "psr",
  5786. "psr-18"
  5787. ],
  5788. "support": {
  5789. "source": "https://github.com/php-fig/http-client"
  5790. },
  5791. "time": "2023-09-23T14:17:50+00:00"
  5792. },
  5793. {
  5794. "name": "psr/http-factory",
  5795. "version": "1.0.2",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/php-fig/http-factory.git",
  5799. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5804. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5805. "shasum": ""
  5806. },
  5807. "require": {
  5808. "php": ">=7.0.0",
  5809. "psr/http-message": "^1.0 || ^2.0"
  5810. },
  5811. "type": "library",
  5812. "extra": {
  5813. "branch-alias": {
  5814. "dev-master": "1.0.x-dev"
  5815. }
  5816. },
  5817. "autoload": {
  5818. "psr-4": {
  5819. "Psr\\Http\\Message\\": "src/"
  5820. }
  5821. },
  5822. "notification-url": "https://packagist.org/downloads/",
  5823. "license": [
  5824. "MIT"
  5825. ],
  5826. "authors": [
  5827. {
  5828. "name": "PHP-FIG",
  5829. "homepage": "https://www.php-fig.org/"
  5830. }
  5831. ],
  5832. "description": "Common interfaces for PSR-7 HTTP message factories",
  5833. "keywords": [
  5834. "factory",
  5835. "http",
  5836. "message",
  5837. "psr",
  5838. "psr-17",
  5839. "psr-7",
  5840. "request",
  5841. "response"
  5842. ],
  5843. "support": {
  5844. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5845. },
  5846. "time": "2023-04-10T20:10:41+00:00"
  5847. },
  5848. {
  5849. "name": "psr/http-message",
  5850. "version": "2.0",
  5851. "source": {
  5852. "type": "git",
  5853. "url": "https://github.com/php-fig/http-message.git",
  5854. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5855. },
  5856. "dist": {
  5857. "type": "zip",
  5858. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5859. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5860. "shasum": ""
  5861. },
  5862. "require": {
  5863. "php": "^7.2 || ^8.0"
  5864. },
  5865. "type": "library",
  5866. "extra": {
  5867. "branch-alias": {
  5868. "dev-master": "2.0.x-dev"
  5869. }
  5870. },
  5871. "autoload": {
  5872. "psr-4": {
  5873. "Psr\\Http\\Message\\": "src/"
  5874. }
  5875. },
  5876. "notification-url": "https://packagist.org/downloads/",
  5877. "license": [
  5878. "MIT"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "PHP-FIG",
  5883. "homepage": "https://www.php-fig.org/"
  5884. }
  5885. ],
  5886. "description": "Common interface for HTTP messages",
  5887. "homepage": "https://github.com/php-fig/http-message",
  5888. "keywords": [
  5889. "http",
  5890. "http-message",
  5891. "psr",
  5892. "psr-7",
  5893. "request",
  5894. "response"
  5895. ],
  5896. "support": {
  5897. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5898. },
  5899. "time": "2023-04-04T09:54:51+00:00"
  5900. },
  5901. {
  5902. "name": "psr/log",
  5903. "version": "3.0.0",
  5904. "source": {
  5905. "type": "git",
  5906. "url": "https://github.com/php-fig/log.git",
  5907. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5908. },
  5909. "dist": {
  5910. "type": "zip",
  5911. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5912. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5913. "shasum": ""
  5914. },
  5915. "require": {
  5916. "php": ">=8.0.0"
  5917. },
  5918. "type": "library",
  5919. "extra": {
  5920. "branch-alias": {
  5921. "dev-master": "3.x-dev"
  5922. }
  5923. },
  5924. "autoload": {
  5925. "psr-4": {
  5926. "Psr\\Log\\": "src"
  5927. }
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "PHP-FIG",
  5936. "homepage": "https://www.php-fig.org/"
  5937. }
  5938. ],
  5939. "description": "Common interface for logging libraries",
  5940. "homepage": "https://github.com/php-fig/log",
  5941. "keywords": [
  5942. "log",
  5943. "psr",
  5944. "psr-3"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5948. },
  5949. "time": "2021-07-14T16:46:02+00:00"
  5950. },
  5951. {
  5952. "name": "psy/psysh",
  5953. "version": "v0.12.0",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/bobthecow/psysh.git",
  5957. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5962. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "ext-json": "*",
  5967. "ext-tokenizer": "*",
  5968. "nikic/php-parser": "^5.0 || ^4.0",
  5969. "php": "^8.0 || ^7.4",
  5970. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5971. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5972. },
  5973. "conflict": {
  5974. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5975. },
  5976. "require-dev": {
  5977. "bamarni/composer-bin-plugin": "^1.2"
  5978. },
  5979. "suggest": {
  5980. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5981. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5982. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5983. },
  5984. "bin": [
  5985. "bin/psysh"
  5986. ],
  5987. "type": "library",
  5988. "extra": {
  5989. "branch-alias": {
  5990. "dev-main": "0.12.x-dev"
  5991. },
  5992. "bamarni-bin": {
  5993. "bin-links": false,
  5994. "forward-command": false
  5995. }
  5996. },
  5997. "autoload": {
  5998. "files": [
  5999. "src/functions.php"
  6000. ],
  6001. "psr-4": {
  6002. "Psy\\": "src/"
  6003. }
  6004. },
  6005. "notification-url": "https://packagist.org/downloads/",
  6006. "license": [
  6007. "MIT"
  6008. ],
  6009. "authors": [
  6010. {
  6011. "name": "Justin Hileman",
  6012. "email": "justin@justinhileman.info",
  6013. "homepage": "http://justinhileman.com"
  6014. }
  6015. ],
  6016. "description": "An interactive shell for modern PHP.",
  6017. "homepage": "http://psysh.org",
  6018. "keywords": [
  6019. "REPL",
  6020. "console",
  6021. "interactive",
  6022. "shell"
  6023. ],
  6024. "support": {
  6025. "issues": "https://github.com/bobthecow/psysh/issues",
  6026. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  6027. },
  6028. "time": "2023-12-20T15:28:09+00:00"
  6029. },
  6030. {
  6031. "name": "ralouphie/getallheaders",
  6032. "version": "3.0.3",
  6033. "source": {
  6034. "type": "git",
  6035. "url": "https://github.com/ralouphie/getallheaders.git",
  6036. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6037. },
  6038. "dist": {
  6039. "type": "zip",
  6040. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6041. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6042. "shasum": ""
  6043. },
  6044. "require": {
  6045. "php": ">=5.6"
  6046. },
  6047. "require-dev": {
  6048. "php-coveralls/php-coveralls": "^2.1",
  6049. "phpunit/phpunit": "^5 || ^6.5"
  6050. },
  6051. "type": "library",
  6052. "autoload": {
  6053. "files": [
  6054. "src/getallheaders.php"
  6055. ]
  6056. },
  6057. "notification-url": "https://packagist.org/downloads/",
  6058. "license": [
  6059. "MIT"
  6060. ],
  6061. "authors": [
  6062. {
  6063. "name": "Ralph Khattar",
  6064. "email": "ralph.khattar@gmail.com"
  6065. }
  6066. ],
  6067. "description": "A polyfill for getallheaders.",
  6068. "support": {
  6069. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6070. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6071. },
  6072. "time": "2019-03-08T08:55:37+00:00"
  6073. },
  6074. {
  6075. "name": "sebastian/diff",
  6076. "version": "4.0.6",
  6077. "source": {
  6078. "type": "git",
  6079. "url": "https://github.com/sebastianbergmann/diff.git",
  6080. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  6081. },
  6082. "dist": {
  6083. "type": "zip",
  6084. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6085. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6086. "shasum": ""
  6087. },
  6088. "require": {
  6089. "php": ">=7.3"
  6090. },
  6091. "require-dev": {
  6092. "phpunit/phpunit": "^9.3",
  6093. "symfony/process": "^4.2 || ^5"
  6094. },
  6095. "type": "library",
  6096. "extra": {
  6097. "branch-alias": {
  6098. "dev-master": "4.0-dev"
  6099. }
  6100. },
  6101. "autoload": {
  6102. "classmap": [
  6103. "src/"
  6104. ]
  6105. },
  6106. "notification-url": "https://packagist.org/downloads/",
  6107. "license": [
  6108. "BSD-3-Clause"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "Sebastian Bergmann",
  6113. "email": "sebastian@phpunit.de"
  6114. },
  6115. {
  6116. "name": "Kore Nordmann",
  6117. "email": "mail@kore-nordmann.de"
  6118. }
  6119. ],
  6120. "description": "Diff implementation",
  6121. "homepage": "https://github.com/sebastianbergmann/diff",
  6122. "keywords": [
  6123. "diff",
  6124. "udiff",
  6125. "unidiff",
  6126. "unified diff"
  6127. ],
  6128. "support": {
  6129. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6130. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  6131. },
  6132. "funding": [
  6133. {
  6134. "url": "https://github.com/sebastianbergmann",
  6135. "type": "github"
  6136. }
  6137. ],
  6138. "time": "2024-03-02T06:30:58+00:00"
  6139. },
  6140. {
  6141. "name": "symfony/console",
  6142. "version": "v6.4.4",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/symfony/console.git",
  6146. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  6151. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  6152. "shasum": ""
  6153. },
  6154. "require": {
  6155. "php": ">=8.1",
  6156. "symfony/deprecation-contracts": "^2.5|^3",
  6157. "symfony/polyfill-mbstring": "~1.0",
  6158. "symfony/service-contracts": "^2.5|^3",
  6159. "symfony/string": "^5.4|^6.0|^7.0"
  6160. },
  6161. "conflict": {
  6162. "symfony/dependency-injection": "<5.4",
  6163. "symfony/dotenv": "<5.4",
  6164. "symfony/event-dispatcher": "<5.4",
  6165. "symfony/lock": "<5.4",
  6166. "symfony/process": "<5.4"
  6167. },
  6168. "provide": {
  6169. "psr/log-implementation": "1.0|2.0|3.0"
  6170. },
  6171. "require-dev": {
  6172. "psr/log": "^1|^2|^3",
  6173. "symfony/config": "^5.4|^6.0|^7.0",
  6174. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6175. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6176. "symfony/http-foundation": "^6.4|^7.0",
  6177. "symfony/http-kernel": "^6.4|^7.0",
  6178. "symfony/lock": "^5.4|^6.0|^7.0",
  6179. "symfony/messenger": "^5.4|^6.0|^7.0",
  6180. "symfony/process": "^5.4|^6.0|^7.0",
  6181. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6182. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6183. },
  6184. "type": "library",
  6185. "autoload": {
  6186. "psr-4": {
  6187. "Symfony\\Component\\Console\\": ""
  6188. },
  6189. "exclude-from-classmap": [
  6190. "/Tests/"
  6191. ]
  6192. },
  6193. "notification-url": "https://packagist.org/downloads/",
  6194. "license": [
  6195. "MIT"
  6196. ],
  6197. "authors": [
  6198. {
  6199. "name": "Fabien Potencier",
  6200. "email": "fabien@symfony.com"
  6201. },
  6202. {
  6203. "name": "Symfony Community",
  6204. "homepage": "https://symfony.com/contributors"
  6205. }
  6206. ],
  6207. "description": "Eases the creation of beautiful and testable command line interfaces",
  6208. "homepage": "https://symfony.com",
  6209. "keywords": [
  6210. "cli",
  6211. "command-line",
  6212. "console",
  6213. "terminal"
  6214. ],
  6215. "support": {
  6216. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6217. },
  6218. "funding": [
  6219. {
  6220. "url": "https://symfony.com/sponsor",
  6221. "type": "custom"
  6222. },
  6223. {
  6224. "url": "https://github.com/fabpot",
  6225. "type": "github"
  6226. },
  6227. {
  6228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6229. "type": "tidelift"
  6230. }
  6231. ],
  6232. "time": "2024-02-22T20:27:10+00:00"
  6233. },
  6234. {
  6235. "name": "symfony/dependency-injection",
  6236. "version": "v6.4.4",
  6237. "source": {
  6238. "type": "git",
  6239. "url": "https://github.com/symfony/dependency-injection.git",
  6240. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6241. },
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6245. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6246. "shasum": ""
  6247. },
  6248. "require": {
  6249. "php": ">=8.1",
  6250. "psr/container": "^1.1|^2.0",
  6251. "symfony/deprecation-contracts": "^2.5|^3",
  6252. "symfony/service-contracts": "^2.5|^3.0",
  6253. "symfony/var-exporter": "^6.2.10|^7.0"
  6254. },
  6255. "conflict": {
  6256. "ext-psr": "<1.1|>=2",
  6257. "symfony/config": "<6.1",
  6258. "symfony/finder": "<5.4",
  6259. "symfony/proxy-manager-bridge": "<6.3",
  6260. "symfony/yaml": "<5.4"
  6261. },
  6262. "provide": {
  6263. "psr/container-implementation": "1.1|2.0",
  6264. "symfony/service-implementation": "1.1|2.0|3.0"
  6265. },
  6266. "require-dev": {
  6267. "symfony/config": "^6.1|^7.0",
  6268. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6269. "symfony/yaml": "^5.4|^6.0|^7.0"
  6270. },
  6271. "type": "library",
  6272. "autoload": {
  6273. "psr-4": {
  6274. "Symfony\\Component\\DependencyInjection\\": ""
  6275. },
  6276. "exclude-from-classmap": [
  6277. "/Tests/"
  6278. ]
  6279. },
  6280. "notification-url": "https://packagist.org/downloads/",
  6281. "license": [
  6282. "MIT"
  6283. ],
  6284. "authors": [
  6285. {
  6286. "name": "Fabien Potencier",
  6287. "email": "fabien@symfony.com"
  6288. },
  6289. {
  6290. "name": "Symfony Community",
  6291. "homepage": "https://symfony.com/contributors"
  6292. }
  6293. ],
  6294. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6295. "homepage": "https://symfony.com",
  6296. "support": {
  6297. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2024-02-22T20:27:10+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/deprecation-contracts",
  6317. "version": "v3.4.0",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/deprecation-contracts.git",
  6321. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6326. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "php": ">=8.1"
  6331. },
  6332. "type": "library",
  6333. "extra": {
  6334. "branch-alias": {
  6335. "dev-main": "3.4-dev"
  6336. },
  6337. "thanks": {
  6338. "name": "symfony/contracts",
  6339. "url": "https://github.com/symfony/contracts"
  6340. }
  6341. },
  6342. "autoload": {
  6343. "files": [
  6344. "function.php"
  6345. ]
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "MIT"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Nicolas Grekas",
  6354. "email": "p@tchwork.com"
  6355. },
  6356. {
  6357. "name": "Symfony Community",
  6358. "homepage": "https://symfony.com/contributors"
  6359. }
  6360. ],
  6361. "description": "A generic function and convention to trigger deprecation notices",
  6362. "homepage": "https://symfony.com",
  6363. "support": {
  6364. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6365. },
  6366. "funding": [
  6367. {
  6368. "url": "https://symfony.com/sponsor",
  6369. "type": "custom"
  6370. },
  6371. {
  6372. "url": "https://github.com/fabpot",
  6373. "type": "github"
  6374. },
  6375. {
  6376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6377. "type": "tidelift"
  6378. }
  6379. ],
  6380. "time": "2023-05-23T14:45:45+00:00"
  6381. },
  6382. {
  6383. "name": "symfony/error-handler",
  6384. "version": "v6.4.4",
  6385. "source": {
  6386. "type": "git",
  6387. "url": "https://github.com/symfony/error-handler.git",
  6388. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6389. },
  6390. "dist": {
  6391. "type": "zip",
  6392. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6393. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6394. "shasum": ""
  6395. },
  6396. "require": {
  6397. "php": ">=8.1",
  6398. "psr/log": "^1|^2|^3",
  6399. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6400. },
  6401. "conflict": {
  6402. "symfony/deprecation-contracts": "<2.5",
  6403. "symfony/http-kernel": "<6.4"
  6404. },
  6405. "require-dev": {
  6406. "symfony/deprecation-contracts": "^2.5|^3",
  6407. "symfony/http-kernel": "^6.4|^7.0",
  6408. "symfony/serializer": "^5.4|^6.0|^7.0"
  6409. },
  6410. "bin": [
  6411. "Resources/bin/patch-type-declarations"
  6412. ],
  6413. "type": "library",
  6414. "autoload": {
  6415. "psr-4": {
  6416. "Symfony\\Component\\ErrorHandler\\": ""
  6417. },
  6418. "exclude-from-classmap": [
  6419. "/Tests/"
  6420. ]
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "MIT"
  6425. ],
  6426. "authors": [
  6427. {
  6428. "name": "Fabien Potencier",
  6429. "email": "fabien@symfony.com"
  6430. },
  6431. {
  6432. "name": "Symfony Community",
  6433. "homepage": "https://symfony.com/contributors"
  6434. }
  6435. ],
  6436. "description": "Provides tools to manage errors and ease debugging PHP code",
  6437. "homepage": "https://symfony.com",
  6438. "support": {
  6439. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6440. },
  6441. "funding": [
  6442. {
  6443. "url": "https://symfony.com/sponsor",
  6444. "type": "custom"
  6445. },
  6446. {
  6447. "url": "https://github.com/fabpot",
  6448. "type": "github"
  6449. },
  6450. {
  6451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6452. "type": "tidelift"
  6453. }
  6454. ],
  6455. "time": "2024-02-22T20:27:10+00:00"
  6456. },
  6457. {
  6458. "name": "symfony/event-dispatcher",
  6459. "version": "v6.4.3",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/symfony/event-dispatcher.git",
  6463. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6468. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6469. "shasum": ""
  6470. },
  6471. "require": {
  6472. "php": ">=8.1",
  6473. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6474. },
  6475. "conflict": {
  6476. "symfony/dependency-injection": "<5.4",
  6477. "symfony/service-contracts": "<2.5"
  6478. },
  6479. "provide": {
  6480. "psr/event-dispatcher-implementation": "1.0",
  6481. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6482. },
  6483. "require-dev": {
  6484. "psr/log": "^1|^2|^3",
  6485. "symfony/config": "^5.4|^6.0|^7.0",
  6486. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6487. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6488. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6489. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6490. "symfony/service-contracts": "^2.5|^3",
  6491. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6492. },
  6493. "type": "library",
  6494. "autoload": {
  6495. "psr-4": {
  6496. "Symfony\\Component\\EventDispatcher\\": ""
  6497. },
  6498. "exclude-from-classmap": [
  6499. "/Tests/"
  6500. ]
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "MIT"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Fabien Potencier",
  6509. "email": "fabien@symfony.com"
  6510. },
  6511. {
  6512. "name": "Symfony Community",
  6513. "homepage": "https://symfony.com/contributors"
  6514. }
  6515. ],
  6516. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6517. "homepage": "https://symfony.com",
  6518. "support": {
  6519. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6520. },
  6521. "funding": [
  6522. {
  6523. "url": "https://symfony.com/sponsor",
  6524. "type": "custom"
  6525. },
  6526. {
  6527. "url": "https://github.com/fabpot",
  6528. "type": "github"
  6529. },
  6530. {
  6531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6532. "type": "tidelift"
  6533. }
  6534. ],
  6535. "time": "2024-01-23T14:51:35+00:00"
  6536. },
  6537. {
  6538. "name": "symfony/event-dispatcher-contracts",
  6539. "version": "v3.4.0",
  6540. "source": {
  6541. "type": "git",
  6542. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6543. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6544. },
  6545. "dist": {
  6546. "type": "zip",
  6547. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6548. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6549. "shasum": ""
  6550. },
  6551. "require": {
  6552. "php": ">=8.1",
  6553. "psr/event-dispatcher": "^1"
  6554. },
  6555. "type": "library",
  6556. "extra": {
  6557. "branch-alias": {
  6558. "dev-main": "3.4-dev"
  6559. },
  6560. "thanks": {
  6561. "name": "symfony/contracts",
  6562. "url": "https://github.com/symfony/contracts"
  6563. }
  6564. },
  6565. "autoload": {
  6566. "psr-4": {
  6567. "Symfony\\Contracts\\EventDispatcher\\": ""
  6568. }
  6569. },
  6570. "notification-url": "https://packagist.org/downloads/",
  6571. "license": [
  6572. "MIT"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "Nicolas Grekas",
  6577. "email": "p@tchwork.com"
  6578. },
  6579. {
  6580. "name": "Symfony Community",
  6581. "homepage": "https://symfony.com/contributors"
  6582. }
  6583. ],
  6584. "description": "Generic abstractions related to dispatching event",
  6585. "homepage": "https://symfony.com",
  6586. "keywords": [
  6587. "abstractions",
  6588. "contracts",
  6589. "decoupling",
  6590. "interfaces",
  6591. "interoperability",
  6592. "standards"
  6593. ],
  6594. "support": {
  6595. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6596. },
  6597. "funding": [
  6598. {
  6599. "url": "https://symfony.com/sponsor",
  6600. "type": "custom"
  6601. },
  6602. {
  6603. "url": "https://github.com/fabpot",
  6604. "type": "github"
  6605. },
  6606. {
  6607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6608. "type": "tidelift"
  6609. }
  6610. ],
  6611. "time": "2023-05-23T14:45:45+00:00"
  6612. },
  6613. {
  6614. "name": "symfony/filesystem",
  6615. "version": "v6.4.3",
  6616. "source": {
  6617. "type": "git",
  6618. "url": "https://github.com/symfony/filesystem.git",
  6619. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6620. },
  6621. "dist": {
  6622. "type": "zip",
  6623. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6624. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6625. "shasum": ""
  6626. },
  6627. "require": {
  6628. "php": ">=8.1",
  6629. "symfony/polyfill-ctype": "~1.8",
  6630. "symfony/polyfill-mbstring": "~1.8"
  6631. },
  6632. "type": "library",
  6633. "autoload": {
  6634. "psr-4": {
  6635. "Symfony\\Component\\Filesystem\\": ""
  6636. },
  6637. "exclude-from-classmap": [
  6638. "/Tests/"
  6639. ]
  6640. },
  6641. "notification-url": "https://packagist.org/downloads/",
  6642. "license": [
  6643. "MIT"
  6644. ],
  6645. "authors": [
  6646. {
  6647. "name": "Fabien Potencier",
  6648. "email": "fabien@symfony.com"
  6649. },
  6650. {
  6651. "name": "Symfony Community",
  6652. "homepage": "https://symfony.com/contributors"
  6653. }
  6654. ],
  6655. "description": "Provides basic utilities for the filesystem",
  6656. "homepage": "https://symfony.com",
  6657. "support": {
  6658. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6659. },
  6660. "funding": [
  6661. {
  6662. "url": "https://symfony.com/sponsor",
  6663. "type": "custom"
  6664. },
  6665. {
  6666. "url": "https://github.com/fabpot",
  6667. "type": "github"
  6668. },
  6669. {
  6670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6671. "type": "tidelift"
  6672. }
  6673. ],
  6674. "time": "2024-01-23T14:51:35+00:00"
  6675. },
  6676. {
  6677. "name": "symfony/finder",
  6678. "version": "v6.4.0",
  6679. "source": {
  6680. "type": "git",
  6681. "url": "https://github.com/symfony/finder.git",
  6682. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6683. },
  6684. "dist": {
  6685. "type": "zip",
  6686. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6687. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6688. "shasum": ""
  6689. },
  6690. "require": {
  6691. "php": ">=8.1"
  6692. },
  6693. "require-dev": {
  6694. "symfony/filesystem": "^6.0|^7.0"
  6695. },
  6696. "type": "library",
  6697. "autoload": {
  6698. "psr-4": {
  6699. "Symfony\\Component\\Finder\\": ""
  6700. },
  6701. "exclude-from-classmap": [
  6702. "/Tests/"
  6703. ]
  6704. },
  6705. "notification-url": "https://packagist.org/downloads/",
  6706. "license": [
  6707. "MIT"
  6708. ],
  6709. "authors": [
  6710. {
  6711. "name": "Fabien Potencier",
  6712. "email": "fabien@symfony.com"
  6713. },
  6714. {
  6715. "name": "Symfony Community",
  6716. "homepage": "https://symfony.com/contributors"
  6717. }
  6718. ],
  6719. "description": "Finds files and directories via an intuitive fluent interface",
  6720. "homepage": "https://symfony.com",
  6721. "support": {
  6722. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6723. },
  6724. "funding": [
  6725. {
  6726. "url": "https://symfony.com/sponsor",
  6727. "type": "custom"
  6728. },
  6729. {
  6730. "url": "https://github.com/fabpot",
  6731. "type": "github"
  6732. },
  6733. {
  6734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6735. "type": "tidelift"
  6736. }
  6737. ],
  6738. "time": "2023-10-31T17:30:12+00:00"
  6739. },
  6740. {
  6741. "name": "symfony/http-foundation",
  6742. "version": "v6.4.4",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/symfony/http-foundation.git",
  6746. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6751. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "php": ">=8.1",
  6756. "symfony/deprecation-contracts": "^2.5|^3",
  6757. "symfony/polyfill-mbstring": "~1.1",
  6758. "symfony/polyfill-php83": "^1.27"
  6759. },
  6760. "conflict": {
  6761. "symfony/cache": "<6.3"
  6762. },
  6763. "require-dev": {
  6764. "doctrine/dbal": "^2.13.1|^3|^4",
  6765. "predis/predis": "^1.1|^2.0",
  6766. "symfony/cache": "^6.3|^7.0",
  6767. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6768. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6769. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  6770. "symfony/mime": "^5.4|^6.0|^7.0",
  6771. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  6772. },
  6773. "type": "library",
  6774. "autoload": {
  6775. "psr-4": {
  6776. "Symfony\\Component\\HttpFoundation\\": ""
  6777. },
  6778. "exclude-from-classmap": [
  6779. "/Tests/"
  6780. ]
  6781. },
  6782. "notification-url": "https://packagist.org/downloads/",
  6783. "license": [
  6784. "MIT"
  6785. ],
  6786. "authors": [
  6787. {
  6788. "name": "Fabien Potencier",
  6789. "email": "fabien@symfony.com"
  6790. },
  6791. {
  6792. "name": "Symfony Community",
  6793. "homepage": "https://symfony.com/contributors"
  6794. }
  6795. ],
  6796. "description": "Defines an object-oriented layer for the HTTP specification",
  6797. "homepage": "https://symfony.com",
  6798. "support": {
  6799. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  6800. },
  6801. "funding": [
  6802. {
  6803. "url": "https://symfony.com/sponsor",
  6804. "type": "custom"
  6805. },
  6806. {
  6807. "url": "https://github.com/fabpot",
  6808. "type": "github"
  6809. },
  6810. {
  6811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6812. "type": "tidelift"
  6813. }
  6814. ],
  6815. "time": "2024-02-08T15:01:18+00:00"
  6816. },
  6817. {
  6818. "name": "symfony/http-kernel",
  6819. "version": "v6.4.4",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/symfony/http-kernel.git",
  6823. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  6828. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  6829. "shasum": ""
  6830. },
  6831. "require": {
  6832. "php": ">=8.1",
  6833. "psr/log": "^1|^2|^3",
  6834. "symfony/deprecation-contracts": "^2.5|^3",
  6835. "symfony/error-handler": "^6.4|^7.0",
  6836. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6837. "symfony/http-foundation": "^6.4|^7.0",
  6838. "symfony/polyfill-ctype": "^1.8"
  6839. },
  6840. "conflict": {
  6841. "symfony/browser-kit": "<5.4",
  6842. "symfony/cache": "<5.4",
  6843. "symfony/config": "<6.1",
  6844. "symfony/console": "<5.4",
  6845. "symfony/dependency-injection": "<6.4",
  6846. "symfony/doctrine-bridge": "<5.4",
  6847. "symfony/form": "<5.4",
  6848. "symfony/http-client": "<5.4",
  6849. "symfony/http-client-contracts": "<2.5",
  6850. "symfony/mailer": "<5.4",
  6851. "symfony/messenger": "<5.4",
  6852. "symfony/translation": "<5.4",
  6853. "symfony/translation-contracts": "<2.5",
  6854. "symfony/twig-bridge": "<5.4",
  6855. "symfony/validator": "<6.4",
  6856. "symfony/var-dumper": "<6.3",
  6857. "twig/twig": "<2.13"
  6858. },
  6859. "provide": {
  6860. "psr/log-implementation": "1.0|2.0|3.0"
  6861. },
  6862. "require-dev": {
  6863. "psr/cache": "^1.0|^2.0|^3.0",
  6864. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6865. "symfony/clock": "^6.2|^7.0",
  6866. "symfony/config": "^6.1|^7.0",
  6867. "symfony/console": "^5.4|^6.0|^7.0",
  6868. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6869. "symfony/dependency-injection": "^6.4|^7.0",
  6870. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6871. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6872. "symfony/finder": "^5.4|^6.0|^7.0",
  6873. "symfony/http-client-contracts": "^2.5|^3",
  6874. "symfony/process": "^5.4|^6.0|^7.0",
  6875. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  6876. "symfony/routing": "^5.4|^6.0|^7.0",
  6877. "symfony/serializer": "^6.4.4|^7.0.4",
  6878. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6879. "symfony/translation": "^5.4|^6.0|^7.0",
  6880. "symfony/translation-contracts": "^2.5|^3",
  6881. "symfony/uid": "^5.4|^6.0|^7.0",
  6882. "symfony/validator": "^6.4|^7.0",
  6883. "symfony/var-exporter": "^6.2|^7.0",
  6884. "twig/twig": "^2.13|^3.0.4"
  6885. },
  6886. "type": "library",
  6887. "autoload": {
  6888. "psr-4": {
  6889. "Symfony\\Component\\HttpKernel\\": ""
  6890. },
  6891. "exclude-from-classmap": [
  6892. "/Tests/"
  6893. ]
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "MIT"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Fabien Potencier",
  6902. "email": "fabien@symfony.com"
  6903. },
  6904. {
  6905. "name": "Symfony Community",
  6906. "homepage": "https://symfony.com/contributors"
  6907. }
  6908. ],
  6909. "description": "Provides a structured process for converting a Request into a Response",
  6910. "homepage": "https://symfony.com",
  6911. "support": {
  6912. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  6913. },
  6914. "funding": [
  6915. {
  6916. "url": "https://symfony.com/sponsor",
  6917. "type": "custom"
  6918. },
  6919. {
  6920. "url": "https://github.com/fabpot",
  6921. "type": "github"
  6922. },
  6923. {
  6924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6925. "type": "tidelift"
  6926. }
  6927. ],
  6928. "time": "2024-02-27T06:32:13+00:00"
  6929. },
  6930. {
  6931. "name": "symfony/mailer",
  6932. "version": "v6.4.4",
  6933. "source": {
  6934. "type": "git",
  6935. "url": "https://github.com/symfony/mailer.git",
  6936. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  6937. },
  6938. "dist": {
  6939. "type": "zip",
  6940. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  6941. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  6942. "shasum": ""
  6943. },
  6944. "require": {
  6945. "egulias/email-validator": "^2.1.10|^3|^4",
  6946. "php": ">=8.1",
  6947. "psr/event-dispatcher": "^1",
  6948. "psr/log": "^1|^2|^3",
  6949. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6950. "symfony/mime": "^6.2|^7.0",
  6951. "symfony/service-contracts": "^2.5|^3"
  6952. },
  6953. "conflict": {
  6954. "symfony/http-client-contracts": "<2.5",
  6955. "symfony/http-kernel": "<5.4",
  6956. "symfony/messenger": "<6.2",
  6957. "symfony/mime": "<6.2",
  6958. "symfony/twig-bridge": "<6.2.1"
  6959. },
  6960. "require-dev": {
  6961. "symfony/console": "^5.4|^6.0|^7.0",
  6962. "symfony/http-client": "^5.4|^6.0|^7.0",
  6963. "symfony/messenger": "^6.2|^7.0",
  6964. "symfony/twig-bridge": "^6.2|^7.0"
  6965. },
  6966. "type": "library",
  6967. "autoload": {
  6968. "psr-4": {
  6969. "Symfony\\Component\\Mailer\\": ""
  6970. },
  6971. "exclude-from-classmap": [
  6972. "/Tests/"
  6973. ]
  6974. },
  6975. "notification-url": "https://packagist.org/downloads/",
  6976. "license": [
  6977. "MIT"
  6978. ],
  6979. "authors": [
  6980. {
  6981. "name": "Fabien Potencier",
  6982. "email": "fabien@symfony.com"
  6983. },
  6984. {
  6985. "name": "Symfony Community",
  6986. "homepage": "https://symfony.com/contributors"
  6987. }
  6988. ],
  6989. "description": "Helps sending emails",
  6990. "homepage": "https://symfony.com",
  6991. "support": {
  6992. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  6993. },
  6994. "funding": [
  6995. {
  6996. "url": "https://symfony.com/sponsor",
  6997. "type": "custom"
  6998. },
  6999. {
  7000. "url": "https://github.com/fabpot",
  7001. "type": "github"
  7002. },
  7003. {
  7004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7005. "type": "tidelift"
  7006. }
  7007. ],
  7008. "time": "2024-02-03T21:33:47+00:00"
  7009. },
  7010. {
  7011. "name": "symfony/mime",
  7012. "version": "v6.4.3",
  7013. "source": {
  7014. "type": "git",
  7015. "url": "https://github.com/symfony/mime.git",
  7016. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  7017. },
  7018. "dist": {
  7019. "type": "zip",
  7020. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  7021. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  7022. "shasum": ""
  7023. },
  7024. "require": {
  7025. "php": ">=8.1",
  7026. "symfony/deprecation-contracts": "^2.5|^3",
  7027. "symfony/polyfill-intl-idn": "^1.10",
  7028. "symfony/polyfill-mbstring": "^1.0"
  7029. },
  7030. "conflict": {
  7031. "egulias/email-validator": "~3.0.0",
  7032. "phpdocumentor/reflection-docblock": "<3.2.2",
  7033. "phpdocumentor/type-resolver": "<1.4.0",
  7034. "symfony/mailer": "<5.4",
  7035. "symfony/serializer": "<6.3.2"
  7036. },
  7037. "require-dev": {
  7038. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7039. "league/html-to-markdown": "^5.0",
  7040. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7041. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7042. "symfony/property-access": "^5.4|^6.0|^7.0",
  7043. "symfony/property-info": "^5.4|^6.0|^7.0",
  7044. "symfony/serializer": "^6.3.2|^7.0"
  7045. },
  7046. "type": "library",
  7047. "autoload": {
  7048. "psr-4": {
  7049. "Symfony\\Component\\Mime\\": ""
  7050. },
  7051. "exclude-from-classmap": [
  7052. "/Tests/"
  7053. ]
  7054. },
  7055. "notification-url": "https://packagist.org/downloads/",
  7056. "license": [
  7057. "MIT"
  7058. ],
  7059. "authors": [
  7060. {
  7061. "name": "Fabien Potencier",
  7062. "email": "fabien@symfony.com"
  7063. },
  7064. {
  7065. "name": "Symfony Community",
  7066. "homepage": "https://symfony.com/contributors"
  7067. }
  7068. ],
  7069. "description": "Allows manipulating MIME messages",
  7070. "homepage": "https://symfony.com",
  7071. "keywords": [
  7072. "mime",
  7073. "mime-type"
  7074. ],
  7075. "support": {
  7076. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7077. },
  7078. "funding": [
  7079. {
  7080. "url": "https://symfony.com/sponsor",
  7081. "type": "custom"
  7082. },
  7083. {
  7084. "url": "https://github.com/fabpot",
  7085. "type": "github"
  7086. },
  7087. {
  7088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7089. "type": "tidelift"
  7090. }
  7091. ],
  7092. "time": "2024-01-30T08:32:12+00:00"
  7093. },
  7094. {
  7095. "name": "symfony/polyfill-ctype",
  7096. "version": "v1.28.0",
  7097. "source": {
  7098. "type": "git",
  7099. "url": "https://github.com/symfony/polyfill-ctype.git",
  7100. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7101. },
  7102. "dist": {
  7103. "type": "zip",
  7104. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7105. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7106. "shasum": ""
  7107. },
  7108. "require": {
  7109. "php": ">=7.1"
  7110. },
  7111. "provide": {
  7112. "ext-ctype": "*"
  7113. },
  7114. "suggest": {
  7115. "ext-ctype": "For best performance"
  7116. },
  7117. "type": "library",
  7118. "extra": {
  7119. "branch-alias": {
  7120. "dev-main": "1.28-dev"
  7121. },
  7122. "thanks": {
  7123. "name": "symfony/polyfill",
  7124. "url": "https://github.com/symfony/polyfill"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "files": [
  7129. "bootstrap.php"
  7130. ],
  7131. "psr-4": {
  7132. "Symfony\\Polyfill\\Ctype\\": ""
  7133. }
  7134. },
  7135. "notification-url": "https://packagist.org/downloads/",
  7136. "license": [
  7137. "MIT"
  7138. ],
  7139. "authors": [
  7140. {
  7141. "name": "Gert de Pagter",
  7142. "email": "BackEndTea@gmail.com"
  7143. },
  7144. {
  7145. "name": "Symfony Community",
  7146. "homepage": "https://symfony.com/contributors"
  7147. }
  7148. ],
  7149. "description": "Symfony polyfill for ctype functions",
  7150. "homepage": "https://symfony.com",
  7151. "keywords": [
  7152. "compatibility",
  7153. "ctype",
  7154. "polyfill",
  7155. "portable"
  7156. ],
  7157. "support": {
  7158. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7159. },
  7160. "funding": [
  7161. {
  7162. "url": "https://symfony.com/sponsor",
  7163. "type": "custom"
  7164. },
  7165. {
  7166. "url": "https://github.com/fabpot",
  7167. "type": "github"
  7168. },
  7169. {
  7170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7171. "type": "tidelift"
  7172. }
  7173. ],
  7174. "time": "2023-01-26T09:26:14+00:00"
  7175. },
  7176. {
  7177. "name": "symfony/polyfill-iconv",
  7178. "version": "v1.28.0",
  7179. "source": {
  7180. "type": "git",
  7181. "url": "https://github.com/symfony/polyfill-iconv.git",
  7182. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7183. },
  7184. "dist": {
  7185. "type": "zip",
  7186. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7187. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7188. "shasum": ""
  7189. },
  7190. "require": {
  7191. "php": ">=7.1"
  7192. },
  7193. "provide": {
  7194. "ext-iconv": "*"
  7195. },
  7196. "suggest": {
  7197. "ext-iconv": "For best performance"
  7198. },
  7199. "type": "library",
  7200. "extra": {
  7201. "branch-alias": {
  7202. "dev-main": "1.28-dev"
  7203. },
  7204. "thanks": {
  7205. "name": "symfony/polyfill",
  7206. "url": "https://github.com/symfony/polyfill"
  7207. }
  7208. },
  7209. "autoload": {
  7210. "files": [
  7211. "bootstrap.php"
  7212. ],
  7213. "psr-4": {
  7214. "Symfony\\Polyfill\\Iconv\\": ""
  7215. }
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Nicolas Grekas",
  7224. "email": "p@tchwork.com"
  7225. },
  7226. {
  7227. "name": "Symfony Community",
  7228. "homepage": "https://symfony.com/contributors"
  7229. }
  7230. ],
  7231. "description": "Symfony polyfill for the Iconv extension",
  7232. "homepage": "https://symfony.com",
  7233. "keywords": [
  7234. "compatibility",
  7235. "iconv",
  7236. "polyfill",
  7237. "portable",
  7238. "shim"
  7239. ],
  7240. "support": {
  7241. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7242. },
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2023-01-26T09:26:14+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/polyfill-intl-grapheme",
  7261. "version": "v1.28.0",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7265. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7270. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": ">=7.1"
  7275. },
  7276. "suggest": {
  7277. "ext-intl": "For best performance"
  7278. },
  7279. "type": "library",
  7280. "extra": {
  7281. "branch-alias": {
  7282. "dev-main": "1.28-dev"
  7283. },
  7284. "thanks": {
  7285. "name": "symfony/polyfill",
  7286. "url": "https://github.com/symfony/polyfill"
  7287. }
  7288. },
  7289. "autoload": {
  7290. "files": [
  7291. "bootstrap.php"
  7292. ],
  7293. "psr-4": {
  7294. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7295. }
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Nicolas Grekas",
  7304. "email": "p@tchwork.com"
  7305. },
  7306. {
  7307. "name": "Symfony Community",
  7308. "homepage": "https://symfony.com/contributors"
  7309. }
  7310. ],
  7311. "description": "Symfony polyfill for intl's grapheme_* functions",
  7312. "homepage": "https://symfony.com",
  7313. "keywords": [
  7314. "compatibility",
  7315. "grapheme",
  7316. "intl",
  7317. "polyfill",
  7318. "portable",
  7319. "shim"
  7320. ],
  7321. "support": {
  7322. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7323. },
  7324. "funding": [
  7325. {
  7326. "url": "https://symfony.com/sponsor",
  7327. "type": "custom"
  7328. },
  7329. {
  7330. "url": "https://github.com/fabpot",
  7331. "type": "github"
  7332. },
  7333. {
  7334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7335. "type": "tidelift"
  7336. }
  7337. ],
  7338. "time": "2023-01-26T09:26:14+00:00"
  7339. },
  7340. {
  7341. "name": "symfony/polyfill-intl-idn",
  7342. "version": "v1.28.0",
  7343. "source": {
  7344. "type": "git",
  7345. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7346. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7347. },
  7348. "dist": {
  7349. "type": "zip",
  7350. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7351. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7352. "shasum": ""
  7353. },
  7354. "require": {
  7355. "php": ">=7.1",
  7356. "symfony/polyfill-intl-normalizer": "^1.10",
  7357. "symfony/polyfill-php72": "^1.10"
  7358. },
  7359. "suggest": {
  7360. "ext-intl": "For best performance"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-main": "1.28-dev"
  7366. },
  7367. "thanks": {
  7368. "name": "symfony/polyfill",
  7369. "url": "https://github.com/symfony/polyfill"
  7370. }
  7371. },
  7372. "autoload": {
  7373. "files": [
  7374. "bootstrap.php"
  7375. ],
  7376. "psr-4": {
  7377. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7378. }
  7379. },
  7380. "notification-url": "https://packagist.org/downloads/",
  7381. "license": [
  7382. "MIT"
  7383. ],
  7384. "authors": [
  7385. {
  7386. "name": "Laurent Bassin",
  7387. "email": "laurent@bassin.info"
  7388. },
  7389. {
  7390. "name": "Trevor Rowbotham",
  7391. "email": "trevor.rowbotham@pm.me"
  7392. },
  7393. {
  7394. "name": "Symfony Community",
  7395. "homepage": "https://symfony.com/contributors"
  7396. }
  7397. ],
  7398. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7399. "homepage": "https://symfony.com",
  7400. "keywords": [
  7401. "compatibility",
  7402. "idn",
  7403. "intl",
  7404. "polyfill",
  7405. "portable",
  7406. "shim"
  7407. ],
  7408. "support": {
  7409. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7410. },
  7411. "funding": [
  7412. {
  7413. "url": "https://symfony.com/sponsor",
  7414. "type": "custom"
  7415. },
  7416. {
  7417. "url": "https://github.com/fabpot",
  7418. "type": "github"
  7419. },
  7420. {
  7421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7422. "type": "tidelift"
  7423. }
  7424. ],
  7425. "time": "2023-01-26T09:30:37+00:00"
  7426. },
  7427. {
  7428. "name": "symfony/polyfill-intl-normalizer",
  7429. "version": "v1.28.0",
  7430. "source": {
  7431. "type": "git",
  7432. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7433. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7434. },
  7435. "dist": {
  7436. "type": "zip",
  7437. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7438. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7439. "shasum": ""
  7440. },
  7441. "require": {
  7442. "php": ">=7.1"
  7443. },
  7444. "suggest": {
  7445. "ext-intl": "For best performance"
  7446. },
  7447. "type": "library",
  7448. "extra": {
  7449. "branch-alias": {
  7450. "dev-main": "1.28-dev"
  7451. },
  7452. "thanks": {
  7453. "name": "symfony/polyfill",
  7454. "url": "https://github.com/symfony/polyfill"
  7455. }
  7456. },
  7457. "autoload": {
  7458. "files": [
  7459. "bootstrap.php"
  7460. ],
  7461. "psr-4": {
  7462. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7463. },
  7464. "classmap": [
  7465. "Resources/stubs"
  7466. ]
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Nicolas Grekas",
  7475. "email": "p@tchwork.com"
  7476. },
  7477. {
  7478. "name": "Symfony Community",
  7479. "homepage": "https://symfony.com/contributors"
  7480. }
  7481. ],
  7482. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7483. "homepage": "https://symfony.com",
  7484. "keywords": [
  7485. "compatibility",
  7486. "intl",
  7487. "normalizer",
  7488. "polyfill",
  7489. "portable",
  7490. "shim"
  7491. ],
  7492. "support": {
  7493. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://symfony.com/sponsor",
  7498. "type": "custom"
  7499. },
  7500. {
  7501. "url": "https://github.com/fabpot",
  7502. "type": "github"
  7503. },
  7504. {
  7505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7506. "type": "tidelift"
  7507. }
  7508. ],
  7509. "time": "2023-01-26T09:26:14+00:00"
  7510. },
  7511. {
  7512. "name": "symfony/polyfill-mbstring",
  7513. "version": "v1.28.0",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7517. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7522. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7523. "shasum": ""
  7524. },
  7525. "require": {
  7526. "php": ">=7.1"
  7527. },
  7528. "provide": {
  7529. "ext-mbstring": "*"
  7530. },
  7531. "suggest": {
  7532. "ext-mbstring": "For best performance"
  7533. },
  7534. "type": "library",
  7535. "extra": {
  7536. "branch-alias": {
  7537. "dev-main": "1.28-dev"
  7538. },
  7539. "thanks": {
  7540. "name": "symfony/polyfill",
  7541. "url": "https://github.com/symfony/polyfill"
  7542. }
  7543. },
  7544. "autoload": {
  7545. "files": [
  7546. "bootstrap.php"
  7547. ],
  7548. "psr-4": {
  7549. "Symfony\\Polyfill\\Mbstring\\": ""
  7550. }
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "authors": [
  7557. {
  7558. "name": "Nicolas Grekas",
  7559. "email": "p@tchwork.com"
  7560. },
  7561. {
  7562. "name": "Symfony Community",
  7563. "homepage": "https://symfony.com/contributors"
  7564. }
  7565. ],
  7566. "description": "Symfony polyfill for the Mbstring extension",
  7567. "homepage": "https://symfony.com",
  7568. "keywords": [
  7569. "compatibility",
  7570. "mbstring",
  7571. "polyfill",
  7572. "portable",
  7573. "shim"
  7574. ],
  7575. "support": {
  7576. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://symfony.com/sponsor",
  7581. "type": "custom"
  7582. },
  7583. {
  7584. "url": "https://github.com/fabpot",
  7585. "type": "github"
  7586. },
  7587. {
  7588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7589. "type": "tidelift"
  7590. }
  7591. ],
  7592. "time": "2023-07-28T09:04:16+00:00"
  7593. },
  7594. {
  7595. "name": "symfony/polyfill-php72",
  7596. "version": "v1.29.0",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/symfony/polyfill-php72.git",
  7600. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7605. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": ">=7.1"
  7610. },
  7611. "type": "library",
  7612. "extra": {
  7613. "thanks": {
  7614. "name": "symfony/polyfill",
  7615. "url": "https://github.com/symfony/polyfill"
  7616. }
  7617. },
  7618. "autoload": {
  7619. "files": [
  7620. "bootstrap.php"
  7621. ],
  7622. "psr-4": {
  7623. "Symfony\\Polyfill\\Php72\\": ""
  7624. }
  7625. },
  7626. "notification-url": "https://packagist.org/downloads/",
  7627. "license": [
  7628. "MIT"
  7629. ],
  7630. "authors": [
  7631. {
  7632. "name": "Nicolas Grekas",
  7633. "email": "p@tchwork.com"
  7634. },
  7635. {
  7636. "name": "Symfony Community",
  7637. "homepage": "https://symfony.com/contributors"
  7638. }
  7639. ],
  7640. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7641. "homepage": "https://symfony.com",
  7642. "keywords": [
  7643. "compatibility",
  7644. "polyfill",
  7645. "portable",
  7646. "shim"
  7647. ],
  7648. "support": {
  7649. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7650. },
  7651. "funding": [
  7652. {
  7653. "url": "https://symfony.com/sponsor",
  7654. "type": "custom"
  7655. },
  7656. {
  7657. "url": "https://github.com/fabpot",
  7658. "type": "github"
  7659. },
  7660. {
  7661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7662. "type": "tidelift"
  7663. }
  7664. ],
  7665. "time": "2024-01-29T20:11:03+00:00"
  7666. },
  7667. {
  7668. "name": "symfony/polyfill-php80",
  7669. "version": "v1.29.0",
  7670. "source": {
  7671. "type": "git",
  7672. "url": "https://github.com/symfony/polyfill-php80.git",
  7673. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7674. },
  7675. "dist": {
  7676. "type": "zip",
  7677. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7678. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7679. "shasum": ""
  7680. },
  7681. "require": {
  7682. "php": ">=7.1"
  7683. },
  7684. "type": "library",
  7685. "extra": {
  7686. "thanks": {
  7687. "name": "symfony/polyfill",
  7688. "url": "https://github.com/symfony/polyfill"
  7689. }
  7690. },
  7691. "autoload": {
  7692. "files": [
  7693. "bootstrap.php"
  7694. ],
  7695. "psr-4": {
  7696. "Symfony\\Polyfill\\Php80\\": ""
  7697. },
  7698. "classmap": [
  7699. "Resources/stubs"
  7700. ]
  7701. },
  7702. "notification-url": "https://packagist.org/downloads/",
  7703. "license": [
  7704. "MIT"
  7705. ],
  7706. "authors": [
  7707. {
  7708. "name": "Ion Bazan",
  7709. "email": "ion.bazan@gmail.com"
  7710. },
  7711. {
  7712. "name": "Nicolas Grekas",
  7713. "email": "p@tchwork.com"
  7714. },
  7715. {
  7716. "name": "Symfony Community",
  7717. "homepage": "https://symfony.com/contributors"
  7718. }
  7719. ],
  7720. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7721. "homepage": "https://symfony.com",
  7722. "keywords": [
  7723. "compatibility",
  7724. "polyfill",
  7725. "portable",
  7726. "shim"
  7727. ],
  7728. "support": {
  7729. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7730. },
  7731. "funding": [
  7732. {
  7733. "url": "https://symfony.com/sponsor",
  7734. "type": "custom"
  7735. },
  7736. {
  7737. "url": "https://github.com/fabpot",
  7738. "type": "github"
  7739. },
  7740. {
  7741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7742. "type": "tidelift"
  7743. }
  7744. ],
  7745. "time": "2024-01-29T20:11:03+00:00"
  7746. },
  7747. {
  7748. "name": "symfony/polyfill-php81",
  7749. "version": "v1.29.0",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/symfony/polyfill-php81.git",
  7753. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  7758. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  7759. "shasum": ""
  7760. },
  7761. "require": {
  7762. "php": ">=7.1"
  7763. },
  7764. "type": "library",
  7765. "extra": {
  7766. "thanks": {
  7767. "name": "symfony/polyfill",
  7768. "url": "https://github.com/symfony/polyfill"
  7769. }
  7770. },
  7771. "autoload": {
  7772. "files": [
  7773. "bootstrap.php"
  7774. ],
  7775. "psr-4": {
  7776. "Symfony\\Polyfill\\Php81\\": ""
  7777. },
  7778. "classmap": [
  7779. "Resources/stubs"
  7780. ]
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "Nicolas Grekas",
  7789. "email": "p@tchwork.com"
  7790. },
  7791. {
  7792. "name": "Symfony Community",
  7793. "homepage": "https://symfony.com/contributors"
  7794. }
  7795. ],
  7796. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7797. "homepage": "https://symfony.com",
  7798. "keywords": [
  7799. "compatibility",
  7800. "polyfill",
  7801. "portable",
  7802. "shim"
  7803. ],
  7804. "support": {
  7805. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  7806. },
  7807. "funding": [
  7808. {
  7809. "url": "https://symfony.com/sponsor",
  7810. "type": "custom"
  7811. },
  7812. {
  7813. "url": "https://github.com/fabpot",
  7814. "type": "github"
  7815. },
  7816. {
  7817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7818. "type": "tidelift"
  7819. }
  7820. ],
  7821. "time": "2024-01-29T20:11:03+00:00"
  7822. },
  7823. {
  7824. "name": "symfony/polyfill-php83",
  7825. "version": "v1.28.0",
  7826. "source": {
  7827. "type": "git",
  7828. "url": "https://github.com/symfony/polyfill-php83.git",
  7829. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7830. },
  7831. "dist": {
  7832. "type": "zip",
  7833. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7834. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7835. "shasum": ""
  7836. },
  7837. "require": {
  7838. "php": ">=7.1",
  7839. "symfony/polyfill-php80": "^1.14"
  7840. },
  7841. "type": "library",
  7842. "extra": {
  7843. "branch-alias": {
  7844. "dev-main": "1.28-dev"
  7845. },
  7846. "thanks": {
  7847. "name": "symfony/polyfill",
  7848. "url": "https://github.com/symfony/polyfill"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "files": [
  7853. "bootstrap.php"
  7854. ],
  7855. "psr-4": {
  7856. "Symfony\\Polyfill\\Php83\\": ""
  7857. },
  7858. "classmap": [
  7859. "Resources/stubs"
  7860. ]
  7861. },
  7862. "notification-url": "https://packagist.org/downloads/",
  7863. "license": [
  7864. "MIT"
  7865. ],
  7866. "authors": [
  7867. {
  7868. "name": "Nicolas Grekas",
  7869. "email": "p@tchwork.com"
  7870. },
  7871. {
  7872. "name": "Symfony Community",
  7873. "homepage": "https://symfony.com/contributors"
  7874. }
  7875. ],
  7876. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7877. "homepage": "https://symfony.com",
  7878. "keywords": [
  7879. "compatibility",
  7880. "polyfill",
  7881. "portable",
  7882. "shim"
  7883. ],
  7884. "support": {
  7885. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7886. },
  7887. "funding": [
  7888. {
  7889. "url": "https://symfony.com/sponsor",
  7890. "type": "custom"
  7891. },
  7892. {
  7893. "url": "https://github.com/fabpot",
  7894. "type": "github"
  7895. },
  7896. {
  7897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7898. "type": "tidelift"
  7899. }
  7900. ],
  7901. "time": "2023-08-16T06:22:46+00:00"
  7902. },
  7903. {
  7904. "name": "symfony/process",
  7905. "version": "v6.4.4",
  7906. "source": {
  7907. "type": "git",
  7908. "url": "https://github.com/symfony/process.git",
  7909. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  7910. },
  7911. "dist": {
  7912. "type": "zip",
  7913. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  7914. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  7915. "shasum": ""
  7916. },
  7917. "require": {
  7918. "php": ">=8.1"
  7919. },
  7920. "type": "library",
  7921. "autoload": {
  7922. "psr-4": {
  7923. "Symfony\\Component\\Process\\": ""
  7924. },
  7925. "exclude-from-classmap": [
  7926. "/Tests/"
  7927. ]
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "MIT"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Fabien Potencier",
  7936. "email": "fabien@symfony.com"
  7937. },
  7938. {
  7939. "name": "Symfony Community",
  7940. "homepage": "https://symfony.com/contributors"
  7941. }
  7942. ],
  7943. "description": "Executes commands in sub-processes",
  7944. "homepage": "https://symfony.com",
  7945. "support": {
  7946. "source": "https://github.com/symfony/process/tree/v6.4.4"
  7947. },
  7948. "funding": [
  7949. {
  7950. "url": "https://symfony.com/sponsor",
  7951. "type": "custom"
  7952. },
  7953. {
  7954. "url": "https://github.com/fabpot",
  7955. "type": "github"
  7956. },
  7957. {
  7958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7959. "type": "tidelift"
  7960. }
  7961. ],
  7962. "time": "2024-02-20T12:31:00+00:00"
  7963. },
  7964. {
  7965. "name": "symfony/psr-http-message-bridge",
  7966. "version": "v6.4.3",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7970. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  7975. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "php": ">=8.1",
  7980. "psr/http-message": "^1.0|^2.0",
  7981. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  7982. },
  7983. "conflict": {
  7984. "php-http/discovery": "<1.15",
  7985. "symfony/http-kernel": "<6.2"
  7986. },
  7987. "require-dev": {
  7988. "nyholm/psr7": "^1.1",
  7989. "php-http/discovery": "^1.15",
  7990. "psr/log": "^1.1.4|^2|^3",
  7991. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7992. "symfony/config": "^5.4|^6.0|^7.0",
  7993. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7994. "symfony/framework-bundle": "^6.2|^7.0",
  7995. "symfony/http-kernel": "^6.2|^7.0"
  7996. },
  7997. "type": "symfony-bridge",
  7998. "autoload": {
  7999. "psr-4": {
  8000. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8001. },
  8002. "exclude-from-classmap": [
  8003. "/Tests/"
  8004. ]
  8005. },
  8006. "notification-url": "https://packagist.org/downloads/",
  8007. "license": [
  8008. "MIT"
  8009. ],
  8010. "authors": [
  8011. {
  8012. "name": "Fabien Potencier",
  8013. "email": "fabien@symfony.com"
  8014. },
  8015. {
  8016. "name": "Symfony Community",
  8017. "homepage": "https://symfony.com/contributors"
  8018. }
  8019. ],
  8020. "description": "PSR HTTP message bridge",
  8021. "homepage": "https://symfony.com",
  8022. "keywords": [
  8023. "http",
  8024. "http-message",
  8025. "psr-17",
  8026. "psr-7"
  8027. ],
  8028. "support": {
  8029. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  8030. },
  8031. "funding": [
  8032. {
  8033. "url": "https://symfony.com/sponsor",
  8034. "type": "custom"
  8035. },
  8036. {
  8037. "url": "https://github.com/fabpot",
  8038. "type": "github"
  8039. },
  8040. {
  8041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8042. "type": "tidelift"
  8043. }
  8044. ],
  8045. "time": "2024-01-23T14:51:35+00:00"
  8046. },
  8047. {
  8048. "name": "symfony/routing",
  8049. "version": "v6.4.3",
  8050. "source": {
  8051. "type": "git",
  8052. "url": "https://github.com/symfony/routing.git",
  8053. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  8054. },
  8055. "dist": {
  8056. "type": "zip",
  8057. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8058. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8059. "shasum": ""
  8060. },
  8061. "require": {
  8062. "php": ">=8.1",
  8063. "symfony/deprecation-contracts": "^2.5|^3"
  8064. },
  8065. "conflict": {
  8066. "doctrine/annotations": "<1.12",
  8067. "symfony/config": "<6.2",
  8068. "symfony/dependency-injection": "<5.4",
  8069. "symfony/yaml": "<5.4"
  8070. },
  8071. "require-dev": {
  8072. "doctrine/annotations": "^1.12|^2",
  8073. "psr/log": "^1|^2|^3",
  8074. "symfony/config": "^6.2|^7.0",
  8075. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8076. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8077. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8078. "symfony/yaml": "^5.4|^6.0|^7.0"
  8079. },
  8080. "type": "library",
  8081. "autoload": {
  8082. "psr-4": {
  8083. "Symfony\\Component\\Routing\\": ""
  8084. },
  8085. "exclude-from-classmap": [
  8086. "/Tests/"
  8087. ]
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Fabien Potencier",
  8096. "email": "fabien@symfony.com"
  8097. },
  8098. {
  8099. "name": "Symfony Community",
  8100. "homepage": "https://symfony.com/contributors"
  8101. }
  8102. ],
  8103. "description": "Maps an HTTP request to a set of configuration variables",
  8104. "homepage": "https://symfony.com",
  8105. "keywords": [
  8106. "router",
  8107. "routing",
  8108. "uri",
  8109. "url"
  8110. ],
  8111. "support": {
  8112. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8113. },
  8114. "funding": [
  8115. {
  8116. "url": "https://symfony.com/sponsor",
  8117. "type": "custom"
  8118. },
  8119. {
  8120. "url": "https://github.com/fabpot",
  8121. "type": "github"
  8122. },
  8123. {
  8124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8125. "type": "tidelift"
  8126. }
  8127. ],
  8128. "time": "2024-01-30T13:55:02+00:00"
  8129. },
  8130. {
  8131. "name": "symfony/serializer",
  8132. "version": "v6.4.4",
  8133. "source": {
  8134. "type": "git",
  8135. "url": "https://github.com/symfony/serializer.git",
  8136. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  8137. },
  8138. "dist": {
  8139. "type": "zip",
  8140. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8141. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8142. "shasum": ""
  8143. },
  8144. "require": {
  8145. "php": ">=8.1",
  8146. "symfony/deprecation-contracts": "^2.5|^3",
  8147. "symfony/polyfill-ctype": "~1.8"
  8148. },
  8149. "conflict": {
  8150. "doctrine/annotations": "<1.12",
  8151. "phpdocumentor/reflection-docblock": "<3.2.2",
  8152. "phpdocumentor/type-resolver": "<1.4.0",
  8153. "symfony/dependency-injection": "<5.4",
  8154. "symfony/property-access": "<5.4",
  8155. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  8156. "symfony/uid": "<5.4",
  8157. "symfony/validator": "<6.4",
  8158. "symfony/yaml": "<5.4"
  8159. },
  8160. "require-dev": {
  8161. "doctrine/annotations": "^1.12|^2",
  8162. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8163. "seld/jsonlint": "^1.10",
  8164. "symfony/cache": "^5.4|^6.0|^7.0",
  8165. "symfony/config": "^5.4|^6.0|^7.0",
  8166. "symfony/console": "^5.4|^6.0|^7.0",
  8167. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8168. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8169. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8170. "symfony/form": "^5.4|^6.0|^7.0",
  8171. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8172. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8173. "symfony/messenger": "^5.4|^6.0|^7.0",
  8174. "symfony/mime": "^5.4|^6.0|^7.0",
  8175. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8176. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8177. "symfony/translation-contracts": "^2.5|^3",
  8178. "symfony/uid": "^5.4|^6.0|^7.0",
  8179. "symfony/validator": "^6.4|^7.0",
  8180. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8181. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8182. "symfony/yaml": "^5.4|^6.0|^7.0"
  8183. },
  8184. "type": "library",
  8185. "autoload": {
  8186. "psr-4": {
  8187. "Symfony\\Component\\Serializer\\": ""
  8188. },
  8189. "exclude-from-classmap": [
  8190. "/Tests/"
  8191. ]
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "MIT"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Fabien Potencier",
  8200. "email": "fabien@symfony.com"
  8201. },
  8202. {
  8203. "name": "Symfony Community",
  8204. "homepage": "https://symfony.com/contributors"
  8205. }
  8206. ],
  8207. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8208. "homepage": "https://symfony.com",
  8209. "support": {
  8210. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8211. },
  8212. "funding": [
  8213. {
  8214. "url": "https://symfony.com/sponsor",
  8215. "type": "custom"
  8216. },
  8217. {
  8218. "url": "https://github.com/fabpot",
  8219. "type": "github"
  8220. },
  8221. {
  8222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8223. "type": "tidelift"
  8224. }
  8225. ],
  8226. "time": "2024-02-22T20:27:10+00:00"
  8227. },
  8228. {
  8229. "name": "symfony/service-contracts",
  8230. "version": "v3.4.1",
  8231. "source": {
  8232. "type": "git",
  8233. "url": "https://github.com/symfony/service-contracts.git",
  8234. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8235. },
  8236. "dist": {
  8237. "type": "zip",
  8238. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8239. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8240. "shasum": ""
  8241. },
  8242. "require": {
  8243. "php": ">=8.1",
  8244. "psr/container": "^1.1|^2.0"
  8245. },
  8246. "conflict": {
  8247. "ext-psr": "<1.1|>=2"
  8248. },
  8249. "type": "library",
  8250. "extra": {
  8251. "branch-alias": {
  8252. "dev-main": "3.4-dev"
  8253. },
  8254. "thanks": {
  8255. "name": "symfony/contracts",
  8256. "url": "https://github.com/symfony/contracts"
  8257. }
  8258. },
  8259. "autoload": {
  8260. "psr-4": {
  8261. "Symfony\\Contracts\\Service\\": ""
  8262. },
  8263. "exclude-from-classmap": [
  8264. "/Test/"
  8265. ]
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Nicolas Grekas",
  8274. "email": "p@tchwork.com"
  8275. },
  8276. {
  8277. "name": "Symfony Community",
  8278. "homepage": "https://symfony.com/contributors"
  8279. }
  8280. ],
  8281. "description": "Generic abstractions related to writing services",
  8282. "homepage": "https://symfony.com",
  8283. "keywords": [
  8284. "abstractions",
  8285. "contracts",
  8286. "decoupling",
  8287. "interfaces",
  8288. "interoperability",
  8289. "standards"
  8290. ],
  8291. "support": {
  8292. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8293. },
  8294. "funding": [
  8295. {
  8296. "url": "https://symfony.com/sponsor",
  8297. "type": "custom"
  8298. },
  8299. {
  8300. "url": "https://github.com/fabpot",
  8301. "type": "github"
  8302. },
  8303. {
  8304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8305. "type": "tidelift"
  8306. }
  8307. ],
  8308. "time": "2023-12-26T14:02:43+00:00"
  8309. },
  8310. {
  8311. "name": "symfony/string",
  8312. "version": "v6.4.4",
  8313. "source": {
  8314. "type": "git",
  8315. "url": "https://github.com/symfony/string.git",
  8316. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8317. },
  8318. "dist": {
  8319. "type": "zip",
  8320. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8321. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8322. "shasum": ""
  8323. },
  8324. "require": {
  8325. "php": ">=8.1",
  8326. "symfony/polyfill-ctype": "~1.8",
  8327. "symfony/polyfill-intl-grapheme": "~1.0",
  8328. "symfony/polyfill-intl-normalizer": "~1.0",
  8329. "symfony/polyfill-mbstring": "~1.0"
  8330. },
  8331. "conflict": {
  8332. "symfony/translation-contracts": "<2.5"
  8333. },
  8334. "require-dev": {
  8335. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8336. "symfony/http-client": "^5.4|^6.0|^7.0",
  8337. "symfony/intl": "^6.2|^7.0",
  8338. "symfony/translation-contracts": "^2.5|^3.0",
  8339. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8340. },
  8341. "type": "library",
  8342. "autoload": {
  8343. "files": [
  8344. "Resources/functions.php"
  8345. ],
  8346. "psr-4": {
  8347. "Symfony\\Component\\String\\": ""
  8348. },
  8349. "exclude-from-classmap": [
  8350. "/Tests/"
  8351. ]
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "MIT"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "Nicolas Grekas",
  8360. "email": "p@tchwork.com"
  8361. },
  8362. {
  8363. "name": "Symfony Community",
  8364. "homepage": "https://symfony.com/contributors"
  8365. }
  8366. ],
  8367. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8368. "homepage": "https://symfony.com",
  8369. "keywords": [
  8370. "grapheme",
  8371. "i18n",
  8372. "string",
  8373. "unicode",
  8374. "utf-8",
  8375. "utf8"
  8376. ],
  8377. "support": {
  8378. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8379. },
  8380. "funding": [
  8381. {
  8382. "url": "https://symfony.com/sponsor",
  8383. "type": "custom"
  8384. },
  8385. {
  8386. "url": "https://github.com/fabpot",
  8387. "type": "github"
  8388. },
  8389. {
  8390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8391. "type": "tidelift"
  8392. }
  8393. ],
  8394. "time": "2024-02-01T13:16:41+00:00"
  8395. },
  8396. {
  8397. "name": "symfony/translation-contracts",
  8398. "version": "v3.4.1",
  8399. "source": {
  8400. "type": "git",
  8401. "url": "https://github.com/symfony/translation-contracts.git",
  8402. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8403. },
  8404. "dist": {
  8405. "type": "zip",
  8406. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8407. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8408. "shasum": ""
  8409. },
  8410. "require": {
  8411. "php": ">=8.1"
  8412. },
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-main": "3.4-dev"
  8417. },
  8418. "thanks": {
  8419. "name": "symfony/contracts",
  8420. "url": "https://github.com/symfony/contracts"
  8421. }
  8422. },
  8423. "autoload": {
  8424. "psr-4": {
  8425. "Symfony\\Contracts\\Translation\\": ""
  8426. },
  8427. "exclude-from-classmap": [
  8428. "/Test/"
  8429. ]
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "Nicolas Grekas",
  8438. "email": "p@tchwork.com"
  8439. },
  8440. {
  8441. "name": "Symfony Community",
  8442. "homepage": "https://symfony.com/contributors"
  8443. }
  8444. ],
  8445. "description": "Generic abstractions related to translation",
  8446. "homepage": "https://symfony.com",
  8447. "keywords": [
  8448. "abstractions",
  8449. "contracts",
  8450. "decoupling",
  8451. "interfaces",
  8452. "interoperability",
  8453. "standards"
  8454. ],
  8455. "support": {
  8456. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8457. },
  8458. "funding": [
  8459. {
  8460. "url": "https://symfony.com/sponsor",
  8461. "type": "custom"
  8462. },
  8463. {
  8464. "url": "https://github.com/fabpot",
  8465. "type": "github"
  8466. },
  8467. {
  8468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8469. "type": "tidelift"
  8470. }
  8471. ],
  8472. "time": "2023-12-26T14:02:43+00:00"
  8473. },
  8474. {
  8475. "name": "symfony/validator",
  8476. "version": "v6.4.4",
  8477. "source": {
  8478. "type": "git",
  8479. "url": "https://github.com/symfony/validator.git",
  8480. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8481. },
  8482. "dist": {
  8483. "type": "zip",
  8484. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8485. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8486. "shasum": ""
  8487. },
  8488. "require": {
  8489. "php": ">=8.1",
  8490. "symfony/deprecation-contracts": "^2.5|^3",
  8491. "symfony/polyfill-ctype": "~1.8",
  8492. "symfony/polyfill-mbstring": "~1.0",
  8493. "symfony/polyfill-php83": "^1.27",
  8494. "symfony/translation-contracts": "^2.5|^3"
  8495. },
  8496. "conflict": {
  8497. "doctrine/annotations": "<1.13",
  8498. "doctrine/lexer": "<1.1",
  8499. "symfony/dependency-injection": "<5.4",
  8500. "symfony/expression-language": "<5.4",
  8501. "symfony/http-kernel": "<5.4",
  8502. "symfony/intl": "<5.4",
  8503. "symfony/property-info": "<5.4",
  8504. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8505. "symfony/yaml": "<5.4"
  8506. },
  8507. "require-dev": {
  8508. "doctrine/annotations": "^1.13|^2",
  8509. "egulias/email-validator": "^2.1.10|^3|^4",
  8510. "symfony/cache": "^5.4|^6.0|^7.0",
  8511. "symfony/config": "^5.4|^6.0|^7.0",
  8512. "symfony/console": "^5.4|^6.0|^7.0",
  8513. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8514. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8515. "symfony/finder": "^5.4|^6.0|^7.0",
  8516. "symfony/http-client": "^5.4|^6.0|^7.0",
  8517. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8518. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8519. "symfony/intl": "^5.4|^6.0|^7.0",
  8520. "symfony/mime": "^5.4|^6.0|^7.0",
  8521. "symfony/property-access": "^5.4|^6.0|^7.0",
  8522. "symfony/property-info": "^5.4|^6.0|^7.0",
  8523. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8524. "symfony/yaml": "^5.4|^6.0|^7.0"
  8525. },
  8526. "type": "library",
  8527. "autoload": {
  8528. "psr-4": {
  8529. "Symfony\\Component\\Validator\\": ""
  8530. },
  8531. "exclude-from-classmap": [
  8532. "/Tests/"
  8533. ]
  8534. },
  8535. "notification-url": "https://packagist.org/downloads/",
  8536. "license": [
  8537. "MIT"
  8538. ],
  8539. "authors": [
  8540. {
  8541. "name": "Fabien Potencier",
  8542. "email": "fabien@symfony.com"
  8543. },
  8544. {
  8545. "name": "Symfony Community",
  8546. "homepage": "https://symfony.com/contributors"
  8547. }
  8548. ],
  8549. "description": "Provides tools to validate values",
  8550. "homepage": "https://symfony.com",
  8551. "support": {
  8552. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8553. },
  8554. "funding": [
  8555. {
  8556. "url": "https://symfony.com/sponsor",
  8557. "type": "custom"
  8558. },
  8559. {
  8560. "url": "https://github.com/fabpot",
  8561. "type": "github"
  8562. },
  8563. {
  8564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8565. "type": "tidelift"
  8566. }
  8567. ],
  8568. "time": "2024-02-22T20:27:10+00:00"
  8569. },
  8570. {
  8571. "name": "symfony/var-dumper",
  8572. "version": "v6.4.4",
  8573. "source": {
  8574. "type": "git",
  8575. "url": "https://github.com/symfony/var-dumper.git",
  8576. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8577. },
  8578. "dist": {
  8579. "type": "zip",
  8580. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8581. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8582. "shasum": ""
  8583. },
  8584. "require": {
  8585. "php": ">=8.1",
  8586. "symfony/deprecation-contracts": "^2.5|^3",
  8587. "symfony/polyfill-mbstring": "~1.0"
  8588. },
  8589. "conflict": {
  8590. "symfony/console": "<5.4"
  8591. },
  8592. "require-dev": {
  8593. "ext-iconv": "*",
  8594. "symfony/console": "^5.4|^6.0|^7.0",
  8595. "symfony/error-handler": "^6.3|^7.0",
  8596. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8597. "symfony/process": "^5.4|^6.0|^7.0",
  8598. "symfony/uid": "^5.4|^6.0|^7.0",
  8599. "twig/twig": "^2.13|^3.0.4"
  8600. },
  8601. "bin": [
  8602. "Resources/bin/var-dump-server"
  8603. ],
  8604. "type": "library",
  8605. "autoload": {
  8606. "files": [
  8607. "Resources/functions/dump.php"
  8608. ],
  8609. "psr-4": {
  8610. "Symfony\\Component\\VarDumper\\": ""
  8611. },
  8612. "exclude-from-classmap": [
  8613. "/Tests/"
  8614. ]
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Nicolas Grekas",
  8623. "email": "p@tchwork.com"
  8624. },
  8625. {
  8626. "name": "Symfony Community",
  8627. "homepage": "https://symfony.com/contributors"
  8628. }
  8629. ],
  8630. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8631. "homepage": "https://symfony.com",
  8632. "keywords": [
  8633. "debug",
  8634. "dump"
  8635. ],
  8636. "support": {
  8637. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8638. },
  8639. "funding": [
  8640. {
  8641. "url": "https://symfony.com/sponsor",
  8642. "type": "custom"
  8643. },
  8644. {
  8645. "url": "https://github.com/fabpot",
  8646. "type": "github"
  8647. },
  8648. {
  8649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8650. "type": "tidelift"
  8651. }
  8652. ],
  8653. "time": "2024-02-15T11:23:52+00:00"
  8654. },
  8655. {
  8656. "name": "symfony/var-exporter",
  8657. "version": "v6.4.4",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/symfony/var-exporter.git",
  8661. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8666. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": ">=8.1",
  8671. "symfony/deprecation-contracts": "^2.5|^3"
  8672. },
  8673. "require-dev": {
  8674. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8675. },
  8676. "type": "library",
  8677. "autoload": {
  8678. "psr-4": {
  8679. "Symfony\\Component\\VarExporter\\": ""
  8680. },
  8681. "exclude-from-classmap": [
  8682. "/Tests/"
  8683. ]
  8684. },
  8685. "notification-url": "https://packagist.org/downloads/",
  8686. "license": [
  8687. "MIT"
  8688. ],
  8689. "authors": [
  8690. {
  8691. "name": "Nicolas Grekas",
  8692. "email": "p@tchwork.com"
  8693. },
  8694. {
  8695. "name": "Symfony Community",
  8696. "homepage": "https://symfony.com/contributors"
  8697. }
  8698. ],
  8699. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8700. "homepage": "https://symfony.com",
  8701. "keywords": [
  8702. "clone",
  8703. "construct",
  8704. "export",
  8705. "hydrate",
  8706. "instantiate",
  8707. "lazy-loading",
  8708. "proxy",
  8709. "serialize"
  8710. ],
  8711. "support": {
  8712. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  8713. },
  8714. "funding": [
  8715. {
  8716. "url": "https://symfony.com/sponsor",
  8717. "type": "custom"
  8718. },
  8719. {
  8720. "url": "https://github.com/fabpot",
  8721. "type": "github"
  8722. },
  8723. {
  8724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8725. "type": "tidelift"
  8726. }
  8727. ],
  8728. "time": "2024-02-26T08:37:45+00:00"
  8729. },
  8730. {
  8731. "name": "symfony/yaml",
  8732. "version": "v6.4.3",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/symfony/yaml.git",
  8736. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  8741. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": ">=8.1",
  8746. "symfony/deprecation-contracts": "^2.5|^3",
  8747. "symfony/polyfill-ctype": "^1.8"
  8748. },
  8749. "conflict": {
  8750. "symfony/console": "<5.4"
  8751. },
  8752. "require-dev": {
  8753. "symfony/console": "^5.4|^6.0|^7.0"
  8754. },
  8755. "bin": [
  8756. "Resources/bin/yaml-lint"
  8757. ],
  8758. "type": "library",
  8759. "autoload": {
  8760. "psr-4": {
  8761. "Symfony\\Component\\Yaml\\": ""
  8762. },
  8763. "exclude-from-classmap": [
  8764. "/Tests/"
  8765. ]
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "MIT"
  8770. ],
  8771. "authors": [
  8772. {
  8773. "name": "Fabien Potencier",
  8774. "email": "fabien@symfony.com"
  8775. },
  8776. {
  8777. "name": "Symfony Community",
  8778. "homepage": "https://symfony.com/contributors"
  8779. }
  8780. ],
  8781. "description": "Loads and dumps YAML files",
  8782. "homepage": "https://symfony.com",
  8783. "support": {
  8784. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  8785. },
  8786. "funding": [
  8787. {
  8788. "url": "https://symfony.com/sponsor",
  8789. "type": "custom"
  8790. },
  8791. {
  8792. "url": "https://github.com/fabpot",
  8793. "type": "github"
  8794. },
  8795. {
  8796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8797. "type": "tidelift"
  8798. }
  8799. ],
  8800. "time": "2024-01-23T14:51:35+00:00"
  8801. },
  8802. {
  8803. "name": "twbs/bootstrap",
  8804. "version": "v4.5.0",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/twbs/bootstrap.git",
  8808. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8813. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8814. "shasum": ""
  8815. },
  8816. "replace": {
  8817. "twitter/bootstrap": "self.version"
  8818. },
  8819. "type": "library",
  8820. "extra": {
  8821. "branch-alias": {
  8822. "dev-master": "3.3.x-dev"
  8823. }
  8824. },
  8825. "notification-url": "https://packagist.org/downloads/",
  8826. "license": [
  8827. "MIT"
  8828. ],
  8829. "authors": [
  8830. {
  8831. "name": "Mark Otto",
  8832. "email": "markdotto@gmail.com"
  8833. },
  8834. {
  8835. "name": "Jacob Thornton",
  8836. "email": "jacobthornton@gmail.com"
  8837. }
  8838. ],
  8839. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  8840. "homepage": "https://getbootstrap.com/",
  8841. "keywords": [
  8842. "JS",
  8843. "css",
  8844. "framework",
  8845. "front-end",
  8846. "mobile-first",
  8847. "responsive",
  8848. "sass",
  8849. "web"
  8850. ],
  8851. "support": {
  8852. "issues": "https://github.com/twbs/bootstrap/issues",
  8853. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  8854. },
  8855. "funding": [
  8856. {
  8857. "url": "https://opencollective.com/bootstrap",
  8858. "type": "open_collective"
  8859. }
  8860. ],
  8861. "time": "2020-05-12T17:44:42+00:00"
  8862. },
  8863. {
  8864. "name": "twig/twig",
  8865. "version": "v3.8.0",
  8866. "source": {
  8867. "type": "git",
  8868. "url": "https://github.com/twigphp/Twig.git",
  8869. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8870. },
  8871. "dist": {
  8872. "type": "zip",
  8873. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8874. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8875. "shasum": ""
  8876. },
  8877. "require": {
  8878. "php": ">=7.2.5",
  8879. "symfony/polyfill-ctype": "^1.8",
  8880. "symfony/polyfill-mbstring": "^1.3",
  8881. "symfony/polyfill-php80": "^1.22"
  8882. },
  8883. "require-dev": {
  8884. "psr/container": "^1.0|^2.0",
  8885. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8886. },
  8887. "type": "library",
  8888. "autoload": {
  8889. "psr-4": {
  8890. "Twig\\": "src/"
  8891. }
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "BSD-3-Clause"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Fabien Potencier",
  8900. "email": "fabien@symfony.com",
  8901. "homepage": "http://fabien.potencier.org",
  8902. "role": "Lead Developer"
  8903. },
  8904. {
  8905. "name": "Twig Team",
  8906. "role": "Contributors"
  8907. },
  8908. {
  8909. "name": "Armin Ronacher",
  8910. "email": "armin.ronacher@active-4.com",
  8911. "role": "Project Founder"
  8912. }
  8913. ],
  8914. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8915. "homepage": "https://twig.symfony.com",
  8916. "keywords": [
  8917. "templating"
  8918. ],
  8919. "support": {
  8920. "issues": "https://github.com/twigphp/Twig/issues",
  8921. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8922. },
  8923. "funding": [
  8924. {
  8925. "url": "https://github.com/fabpot",
  8926. "type": "github"
  8927. },
  8928. {
  8929. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8930. "type": "tidelift"
  8931. }
  8932. ],
  8933. "time": "2023-11-21T18:54:41+00:00"
  8934. },
  8935. {
  8936. "name": "webflo/drupal-finder",
  8937. "version": "1.2.2",
  8938. "source": {
  8939. "type": "git",
  8940. "url": "https://github.com/webflo/drupal-finder.git",
  8941. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  8942. },
  8943. "dist": {
  8944. "type": "zip",
  8945. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8946. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  8947. "shasum": ""
  8948. },
  8949. "require": {
  8950. "ext-json": "*"
  8951. },
  8952. "require-dev": {
  8953. "mikey179/vfsstream": "^1.6",
  8954. "phpunit/phpunit": "^4.8"
  8955. },
  8956. "type": "library",
  8957. "autoload": {
  8958. "classmap": [
  8959. "src/DrupalFinder.php"
  8960. ]
  8961. },
  8962. "notification-url": "https://packagist.org/downloads/",
  8963. "license": [
  8964. "GPL-2.0-or-later"
  8965. ],
  8966. "authors": [
  8967. {
  8968. "name": "Florian Weber",
  8969. "email": "florian@webflo.org"
  8970. }
  8971. ],
  8972. "description": "Helper class to locate a Drupal installation from a given path.",
  8973. "support": {
  8974. "issues": "https://github.com/webflo/drupal-finder/issues",
  8975. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  8976. },
  8977. "time": "2020-10-27T09:42:17+00:00"
  8978. }
  8979. ],
  8980. "packages-dev": [],
  8981. "aliases": [],
  8982. "minimum-stability": "dev",
  8983. "stability-flags": {
  8984. "drupal/field_pager": 10
  8985. },
  8986. "prefer-stable": true,
  8987. "prefer-lowest": false,
  8988. "platform": [],
  8989. "platform-dev": [],
  8990. "plugin-api-version": "2.6.0"
  8991. }